Select Git revision
Forked from
GitLab.org / GitLab FOSS
48428 commits behind the upstream repository.
-
Dmitriy Zaporozhets authoredDmitriy Zaporozhets authored
theme.rb 268 B
module Gitlab
class Theme
def self.css_class_by_id(id)
themes = {
1 => "ui_basic",
2 => "ui_mars",
3 => "ui_modern",
4 => "ui_gray",
5 => "ui_color"
}
id ||= 1
return themes[id]
end
end
end