Commit bc7cce92518d57ab2b62be1ba6f5215ad9762272

Authored by Dmitriy Zaporozhets
2 parents 69577b57 d5788921

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? :)
app/assets/stylesheets/sections/profile.scss
@@ -76,7 +76,7 @@ @@ -76,7 +76,7 @@
76 } 76 }
77 77
78 &.modern { 78 &.modern {
79 - background: #345; 79 + background: #009871;
80 } 80 }
81 81
82 &.gray { 82 &.gray {
app/assets/stylesheets/themes/ui_modern.scss
@@ -16,24 +16,29 @@ @@ -16,24 +16,29 @@
16 @extend .header-dark; 16 @extend .header-dark;
17 &.navbar-gitlab { 17 &.navbar-gitlab {
18 .navbar-inner { 18 .navbar-inner {
19 - background: #345;  
20 - border-bottom: 1px solid #234; 19 + background: #00AC7E;
  20 + border-bottom: 1px solid #00AC7E;
21 .app_logo, .navbar-toggle { 21 .app_logo, .navbar-toggle {
22 &:hover { 22 &:hover {
23 - background-color: #234; 23 + background-color: #009C6E;
24 } 24 }
25 } 25 }
26 .separator { 26 .separator {
27 - background: #234;  
28 - border-left: 1px solid #456; 27 + background: #009C6F;
  28 + border-left: 1px solid #10BC8E;
29 } 29 }
30 .nav > li > a { 30 .nav > li > a {
31 - color: #89A; 31 + color: #ADC;
  32 + text-shadow: none;
32 } 33 }
33 .search-input { 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 }