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: bbc1d83a63f339769bfa0a4f559a87f28dd33288 (plain)
1
2
3
4
5
6
7
module BootstrapFormBuilderCustomization
  def label_class
    "label-bold"
  end
end

BootstrapForm::FormBuilder.prepend(BootstrapFormBuilderCustomization)