2012-06-11 13:52:32 -04:00
|
|
|
module Gitlab
|
|
|
|
class Theme
|
2014-07-16 14:12:46 -04:00
|
|
|
BASIC = 1 unless const_defined?(:BASIC)
|
|
|
|
MARS = 2 unless const_defined?(:MARS)
|
|
|
|
MODERN = 3 unless const_defined?(:MODERN)
|
|
|
|
GRAY = 4 unless const_defined?(:GRAY)
|
|
|
|
COLOR = 5 unless const_defined?(:COLOR)
|
2015-03-12 00:29:11 -04:00
|
|
|
BLUE = 6 unless const_defined?(:BLUE)
|
2013-06-20 04:46:54 -04:00
|
|
|
|
2012-06-11 13:52:32 -04:00
|
|
|
def self.css_class_by_id(id)
|
2012-11-20 23:14:05 -05:00
|
|
|
themes = {
|
2013-06-20 04:46:54 -04:00
|
|
|
BASIC => "ui_basic",
|
|
|
|
MARS => "ui_mars",
|
|
|
|
MODERN => "ui_modern",
|
|
|
|
GRAY => "ui_gray",
|
2015-03-12 00:29:11 -04:00
|
|
|
COLOR => "ui_color",
|
|
|
|
BLUE => "ui_blue"
|
2012-06-11 13:52:32 -04:00
|
|
|
}
|
|
|
|
|
2014-01-10 06:58:52 -05:00
|
|
|
id ||= Gitlab.config.gitlab.default_theme
|
2012-06-11 13:52:32 -04:00
|
|
|
|
2015-03-24 21:35:57 -04:00
|
|
|
themes[id]
|
2012-06-11 13:52:32 -04:00
|
|
|
end
|
2014-12-14 20:01:59 -05:00
|
|
|
|
|
|
|
def self.type_css_class_by_id(id)
|
|
|
|
types = {
|
|
|
|
BASIC => 'light_theme',
|
|
|
|
MARS => 'dark_theme',
|
|
|
|
MODERN => 'dark_theme',
|
|
|
|
GRAY => 'dark_theme',
|
|
|
|
COLOR => 'dark_theme'
|
|
|
|
}
|
|
|
|
|
|
|
|
id ||= Gitlab.config.gitlab.default_theme
|
|
|
|
|
|
|
|
types[id]
|
|
|
|
end
|
2012-06-11 13:52:32 -04:00
|
|
|
end
|
|
|
|
end
|