Add blue theme to GitLab

This commit is contained in:
Dmitriy Zaporozhets 2015-03-11 21:29:11 -07:00
parent 85e3b25c04
commit 158507d942
4 changed files with 18 additions and 1 deletions

View File

@ -80,6 +80,10 @@
&.violet {
background: #548;
}
&.blue {
background: #2980b9;
}
}
}
}

View File

@ -0,0 +1,6 @@
/**
* Modern GitLab UI theme
*/
.ui_blue {
@include dark-theme(#BECDE9, #2980b9, #1970a9, #096099);
}

View File

@ -33,6 +33,11 @@
.prev.violet
= f.radio_button :theme_id, 5
Violet
= label_tag do
.prev.blue
= f.radio_button :theme_id, 6
Blue
%br
.clearfix

View File

@ -5,6 +5,7 @@ module Gitlab
MODERN = 3 unless const_defined?(:MODERN)
GRAY = 4 unless const_defined?(:GRAY)
COLOR = 5 unless const_defined?(:COLOR)
BLUE = 6 unless const_defined?(:BLUE)
def self.css_class_by_id(id)
themes = {
@ -12,7 +13,8 @@ module Gitlab
MARS => "ui_mars",
MODERN => "ui_modern",
GRAY => "ui_gray",
COLOR => "ui_color"
COLOR => "ui_color",
BLUE => "ui_blue"
}
id ||= Gitlab.config.gitlab.default_theme