Welcome to mirror list, hosted at ThFree Co, Russian Federation.

theme.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a7c83a880f6f0beb4cef9c66f60408d79969613c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
module Gitlab
  class Theme
    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)

    def self.css_class_by_id(id)
      themes = {
        BASIC  => "ui_basic",
        MARS   => "ui_mars",
        MODERN => "ui_modern",
        GRAY   => "ui_gray",
        COLOR  => "ui_color"
      }

      id ||= Gitlab.config.gitlab.default_theme

      return themes[id]
    end

    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
  end
end