Commit f90c5655447233cf2228223b7625c78f6e3bdb62
1 parent
e6affad9
Exists in
master
and in
4 other branches
UI changes: removed box shadow for ui-box and file-holder
Showing
7 changed files
with
11 additions
and
21 deletions
Show diff stats
app/assets/stylesheets/gitlab_bootstrap/blocks.scss
app/assets/stylesheets/gitlab_bootstrap/files.scss
... | ... | @@ -3,18 +3,18 @@ |
3 | 3 | * |
4 | 4 | */ |
5 | 5 | .file-holder { |
6 | - border: 1px solid #BBB; | |
6 | + border: 1px solid #CCC; | |
7 | 7 | margin-bottom: 1em; |
8 | - @include solid-shade; | |
9 | 8 | |
10 | 9 | .file-title { |
11 | 10 | border-bottom: 1px solid #bbb; |
12 | 11 | @include bg-dark-gray-gradient; |
12 | + text-shadow: 0 1px 1px #fff; | |
13 | 13 | margin: 0; |
14 | 14 | font-weight: normal; |
15 | 15 | font-weight: bold; |
16 | 16 | text-align: left; |
17 | - color: #666; | |
17 | + color: $style_color; | |
18 | 18 | padding: 9px 10px; |
19 | 19 | height: 18px; |
20 | 20 | ... | ... |
app/assets/stylesheets/gitlab_bootstrap/lists.scss
app/assets/stylesheets/gitlab_bootstrap/tables.scss
1 | 1 | table { |
2 | 2 | @extend .table; |
3 | 3 | @extend .table-striped; |
4 | - @include solid-shade; | |
5 | - border: 1px solid #bbb; | |
4 | + border: 1px solid #CCC; | |
6 | 5 | width: 100%; |
7 | 6 | |
8 | 7 | &.low { |
... | ... | @@ -20,7 +19,7 @@ table { |
20 | 19 | th { |
21 | 20 | font-weight: bold; |
22 | 21 | vertical-align: middle; |
23 | - border-bottom: 1px solid #bbb; | |
22 | + border-bottom: 1px solid #CCC; | |
24 | 23 | text-shadow: 0 1px 1px #fff; |
25 | 24 | @include bg-dark-gray-gradient; |
26 | 25 | |
... | ... | @@ -46,11 +45,11 @@ table { |
46 | 45 | } |
47 | 46 | |
48 | 47 | &:first-child { |
49 | - border-left: 1px solid #bbb; | |
48 | + border-left: 1px solid #CCC; | |
50 | 49 | } |
51 | 50 | |
52 | 51 | &:last-child { |
53 | - border-right: 1px solid #bbb; | |
52 | + border-right: 1px solid #CCC; | |
54 | 53 | } |
55 | 54 | } |
56 | 55 | ... | ... |
app/assets/stylesheets/sections/issues.scss
... | ... | @@ -88,14 +88,11 @@ input.check_all_issues { |
88 | 88 | } |
89 | 89 | |
90 | 90 | .update_selected_issues { |
91 | - position: relative; | |
92 | - top:5px; | |
93 | 91 | margin-left: 4px; |
94 | - float: left; | |
95 | 92 | } |
96 | 93 | |
97 | 94 | .update_issues_text { |
98 | - padding: 3px; | |
95 | + padding: 5px; | |
99 | 96 | line-height: 28px; |
100 | 97 | float: left; |
101 | 98 | color: #479; | ... | ... |
app/assets/stylesheets/sections/nav.scss
... | ... | @@ -7,7 +7,7 @@ |
7 | 7 | |
8 | 8 | ul { |
9 | 9 | margin: auto; |
10 | - height: 42px; | |
10 | + height: 40px; | |
11 | 11 | overflow: hidden; |
12 | 12 | .count { |
13 | 13 | font-weight: normal; |
... | ... | @@ -74,7 +74,7 @@ |
74 | 74 | text-align: center; |
75 | 75 | font-weight: normal; |
76 | 76 | height: 38px; |
77 | - line-height: 36px; | |
77 | + line-height: 34px; | |
78 | 78 | color: #777; |
79 | 79 | text-shadow: 0 1px 1px white; |
80 | 80 | padding: 0 10px; | ... | ... |