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

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary PEGEOT <garypegeot@gmail.com>2019-11-07 22:02:10 +0300
committerXhmikosR <xhmikosr@gmail.com>2019-11-07 22:02:10 +0300
commit6b7ca1234bb5c699804d09126585f317000d1c78 (patch)
tree220fad407a8516345a29a25d842aa28a6562a004
parent0aa6a81c11847b31ce6fc78d00127519247d721e (diff)
Make check label cursor customizable (#29633)
-rw-r--r--scss/_custom-forms.scss1
-rw-r--r--scss/_variables.scss1
2 files changed, 2 insertions, 0 deletions
diff --git a/scss/_custom-forms.scss b/scss/_custom-forms.scss
index 7df1688fec..5eb2bb7771 100644
--- a/scss/_custom-forms.scss
+++ b/scss/_custom-forms.scss
@@ -76,6 +76,7 @@
margin-bottom: 0;
color: $custom-control-label-color;
vertical-align: top;
+ cursor: $custom-control-cursor;
// Background-color and (when enabled) gradient
&::before {
diff --git a/scss/_variables.scss b/scss/_variables.scss
index 28db6f9943..10d1edf00b 100644
--- a/scss/_variables.scss
+++ b/scss/_variables.scss
@@ -526,6 +526,7 @@ $custom-forms-transition: background-color .15s ease-in-out, borde
$custom-control-gutter: .5rem !default;
$custom-control-spacer-x: 1rem !default;
+$custom-control-cursor: null !default;
$custom-control-indicator-size: 1rem !default;
$custom-control-indicator-bg: $input-bg !default;