Skip to content
This repository was archived by the owner on May 24, 2018. It is now read-only.

Commit 10a238d

Browse files
committed
Merge pull request #356 from Unity-Technologies/CDSK-894-remove-Trunk-from-project-page
CDSK-894 - remove Trunk from project page
2 parents 4e81a45 + acc7d10 commit 10a238d

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

master/buildbot/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1525078658
1+
1525084848

www/prod/css/default.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -961,7 +961,7 @@ ul.top-menu>li>a:hover{opacity:.5}
961961
.blue-btn:hover,.clear-btn:hover,.grey-btn:hover,.red-btn:hover,a.grey-btn:hover{color:#A4A4A4}
962962
.blue-btn{background-image:-moz-linear-gradient(bottom,#5eaaad 10%,#438e89 100%);background-image:-webkit-linear-gradient(bottom,#5eaaad 10%,#438e89 100%);background-image:-o-linear-gradient(bottom,#5eaaad 10%,#438e89 100%);background-image:-ms-linear-gradient(bottom,#5eaaad 10%,#438e89 100%);background-image:linear-gradient(bottom,#5eaaad 10%,#438e89 100%);border:1px solid #417c7e;border-bottom:1px solid #6D6D6D;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.45) inset,1px 1px 0 #fff;box-shadow:0 1px 0 rgba(255,255,255,.45) inset,1px 1px 0 #fff;-webkit-border-radius:6px;-moz-border-radius:6px;-ms-border-radius:6px;-o-border-radius:6px;border-radius:6px;color:#F7F7F7;display:inline-block;font-size:10px;font-weight:700;letter-spacing:.3px;padding:8px 10px;text-shadow:0 -1px 0 rgba(0,0,0,.44);text-transform:uppercase}
963963
.blue-btn:hover{color:rgba(247,247,247,.72)}
964-
.red-btn{background-image:-moz-linear-gradient(bottom,#d9534f 10%,#d9534f 100%);background-image:-webkit-linear-gradient(bottom,#d9534f 10%,#d9534f 100%);background-image:-o-linear-gradient(bottom,#d9534f 10%,#d9534f 100%);background-image:-ms-linear-gradient(bottom,#d9534f 10%,#d9534f 100%);background-image:linear-gradient(bottom,#d9534f 10%,#d9534f 100%);border:1px solid #d9534f;border-bottom:1px solid #d9534f;color:#444}
964+
.red-btn{background-image:-moz-linear-gradient(bottom,#d9534f 10%,#d9534f 100%)!important;background-image:-webkit-linear-gradient(bottom,#d9534f 10%,#d9534f 100%)!important;background-image:-o-linear-gradient(bottom,#d9534f 10%,#d9534f 100%)!important;background-image:-ms-linear-gradient(bottom,#d9534f 10%,#d9534f 100%)!important;background-image:linear-gradient(bottom,#d9534f 10%,#d9534f 100%)!important;border:1px solid #d9534f;border-bottom:1px solid #d9534f;color:#444}
965965
.red-btn:hover{color:#5eaaad}
966966
.grey-btn{background-image:-moz-linear-gradient(bottom,#eee 10%,#999 100%);background-image:-webkit-linear-gradient(bottom,#eee 10%,#999 100%);background-image:-o-linear-gradient(bottom,#eee 10%,#999 100%);background-image:-ms-linear-gradient(bottom,#eee 10%,#999 100%);background-image:linear-gradient(bottom,#eee 10%,#999 100%);border:1px solid #eee;border-bottom:1px solid #999;color:#444}
967967
.grey-btn:hover{color:#5eaaad}

www/prod/script/main.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

www/prod/script/main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

www/sass/modules/page-elements/_buttons.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ a.grey-btn,
6969
}
7070

7171
.red-btn {
72-
@include bgimage(linear-gradient(bottom, $brand-danger 10%, $brand-danger 100%));
72+
@include bgimage(linear-gradient(bottom, $brand-danger 10%, $brand-danger 100%) !important);
7373
border: 1px solid $brand-danger;
7474
border-bottom:1px solid $brand-danger;
7575
color: $text-color;

www/script/project/rtBuilders.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ define(function (require) {
129129

130130
$.each(builder.tags, function eachBuilderTag(i, tag) {
131131
// If we found a branch tag then add it
132-
if (rtBuilders.tagAsBranchRegex.exec(tag)) {
132+
if (rtBuilders.tagAsBranchRegex.exec(tag.toLowerCase())) {
133133
branch_tags.add(tag.toLowerCase());
134134
}
135135
});
@@ -282,7 +282,7 @@ define(function (require) {
282282
if (tag.indexOf("-") > -1) {
283283
return tag.toLowerCase().indexOf(branch_type.toLowerCase()) > -1;
284284
}
285-
return !rtBuilders.tagAsBranchRegex.exec(tag);
285+
return !rtBuilders.tagAsBranchRegex.exec(tag.toLowerCase());
286286
},
287287
setHideUnstable: function setHideUnstable(hidden) {
288288
hideUnstable = hidden;

0 commit comments

Comments
 (0)