theme.rb 220 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 module Gitlab class Theme def self.css_class_by_id(id) themes = { 1 => "ui_basic", 2 => "ui_mars", 3 => "ui_modern" } id ||= 1 return themes[id] end end end