Commit bc7cce92518d57ab2b62be1ba6f5215ad9762272
Exists in
spb-stable
and in
2 other branches
Merge branch 'green-theme' into 'master'
Green theme Because we have 3 dark themes with similar colours. So it makes sense to replace one with something colourful. So why not green? :)
Showing
2 changed files
with
13 additions
and
8 deletions
Show diff stats
app/assets/stylesheets/sections/profile.scss
app/assets/stylesheets/themes/ui_modern.scss
... | ... | @@ -16,24 +16,29 @@ |
16 | 16 | @extend .header-dark; |
17 | 17 | &.navbar-gitlab { |
18 | 18 | .navbar-inner { |
19 | - background: #345; | |
20 | - border-bottom: 1px solid #234; | |
19 | + background: #00AC7E; | |
20 | + border-bottom: 1px solid #00AC7E; | |
21 | 21 | .app_logo, .navbar-toggle { |
22 | 22 | &:hover { |
23 | - background-color: #234; | |
23 | + background-color: #009C6E; | |
24 | 24 | } |
25 | 25 | } |
26 | 26 | .separator { |
27 | - background: #234; | |
28 | - border-left: 1px solid #456; | |
27 | + background: #009C6F; | |
28 | + border-left: 1px solid #10BC8E; | |
29 | 29 | } |
30 | 30 | .nav > li > a { |
31 | - color: #89A; | |
31 | + color: #ADC; | |
32 | + text-shadow: none; | |
32 | 33 | } |
33 | 34 | .search-input { |
34 | - border-color: #89A; | |
35 | + border-color: #7fd5be; | |
35 | 36 | } |
36 | 37 | } |
37 | 38 | } |
38 | 39 | } |
40 | + | |
41 | + .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { | |
42 | + background: #00AC7E; | |
43 | + } | |
39 | 44 | } | ... | ... |