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

bootstrap_form.rb « initializers « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 11171b38a85be6fbe61f030cfc066449dc95ff92 (plain)
1
2
3
4
5
6
7
module BootstrapFormBuilderCustomization
  def label_class
    "label-light"
  end
end

BootstrapForm::FormBuilder.prepend(BootstrapFormBuilderCustomization)