Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
e2014e8e
Commit
e2014e8e
authored
6 years ago
by
Martijn Cuppens
Committed by
XhmikosR
6 years ago
Browse files
Options
Download
Email Patches
Plain Diff
Custom checkboxes and radios retheming (#27064)
parent
c9a43b02
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
scss/_custom-forms.scss
+13
-7
scss/_custom-forms.scss
scss/_variables.scss
+15
-8
scss/_variables.scss
scss/mixins/_forms.scss
+7
-2
scss/mixins/_forms.scss
with
35 additions
and
17 deletions
+35
-17
scss/_custom-forms.scss
+
13
-
7
View file @
e2014e8e
...
@@ -26,18 +26,28 @@
...
@@ -26,18 +26,28 @@
&
:checked
~
.custom-control-label
::before
{
&
:checked
~
.custom-control-label
::before
{
color
:
$custom-control-indicator-checked-color
;
color
:
$custom-control-indicator-checked-color
;
border-color
:
$custom-control-indicator-checked-border-color
;
@include
gradient-bg
(
$custom-control-indicator-checked-bg
);
@include
gradient-bg
(
$custom-control-indicator-checked-bg
);
@include
box-shadow
(
$custom-control-indicator-checked-box-shadow
);
@include
box-shadow
(
$custom-control-indicator-checked-box-shadow
);
}
}
&
:focus
~
.custom-control-label
::before
{
&
:focus
~
.custom-control-label
::before
{
// the mixin is not used here to make sure there is feedback
// the mixin is not used here to make sure there is feedback
box-shadow
:
$custom-control-indicator-focus-box-shadow
;
@if
$enable-shadows
{
box-shadow
:
$input-box-shadow
,
$input-focus-box-shadow
;
}
@else
{
box-shadow
:
$custom-control-indicator-focus-box-shadow
;
}
}
&
:focus:not
(
:checked
)
~
.custom-control-label
::before
{
border-color
:
$custom-control-indicator-focus-border-color
;
}
}
&
:active
~
.custom-control-label
::before
{
&
:active
~
.custom-control-label
::before
{
color
:
$custom-control-indicator-active-color
;
color
:
$custom-control-indicator-active-color
;
background-color
:
$custom-control-indicator-active-bg
;
background-color
:
$custom-control-indicator-active-bg
;
border-color
:
$custom-control-indicator-active-border-color
;
@include
box-shadow
(
$custom-control-indicator-active-box-shadow
);
@include
box-shadow
(
$custom-control-indicator-active-box-shadow
);
}
}
...
@@ -71,6 +81,7 @@
...
@@ -71,6 +81,7 @@
pointer-events
:
none
;
pointer-events
:
none
;
content
:
""
;
content
:
""
;
background-color
:
$custom-control-indicator-bg
;
background-color
:
$custom-control-indicator-bg
;
border
:
$custom-control-indicator-border-color
solid
$custom-control-indicator-border-width
;
@include
box-shadow
(
$custom-control-indicator-box-shadow
);
@include
box-shadow
(
$custom-control-indicator-box-shadow
);
}
}
...
@@ -100,9 +111,6 @@
...
@@ -100,9 +111,6 @@
}
}
.custom-control-input
:checked
~
.custom-control-label
{
.custom-control-input
:checked
~
.custom-control-label
{
&
::before
{
@include
gradient-bg
(
$custom-control-indicator-checked-bg
);
}
&
::after
{
&
::after
{
background-image
:
$custom-checkbox-indicator-icon-checked
;
background-image
:
$custom-checkbox-indicator-icon-checked
;
}
}
...
@@ -110,6 +118,7 @@
...
@@ -110,6 +118,7 @@
.custom-control-input
:indeterminate
~
.custom-control-label
{
.custom-control-input
:indeterminate
~
.custom-control-label
{
&
::before
{
&
::before
{
border-color
:
$custom-checkbox-indicator-indeterminate-border-color
;
@include
gradient-bg
(
$custom-checkbox-indicator-indeterminate-bg
);
@include
gradient-bg
(
$custom-checkbox-indicator-indeterminate-bg
);
@include
box-shadow
(
$custom-checkbox-indicator-indeterminate-box-shadow
);
@include
box-shadow
(
$custom-checkbox-indicator-indeterminate-box-shadow
);
}
}
...
@@ -138,9 +147,6 @@
...
@@ -138,9 +147,6 @@
}
}
.custom-control-input
:checked
~
.custom-control-label
{
.custom-control-input
:checked
~
.custom-control-label
{
&
::before
{
@include
gradient-bg
(
$custom-control-indicator-checked-bg
);
}
&
::after
{
&
::after
{
background-image
:
$custom-radio-indicator-icon-checked
;
background-image
:
$custom-radio-indicator-icon-checked
;
}
}
...
...
This diff is collapsed.
Click to expand it.
scss/_variables.scss
+
15
-
8
View file @
e2014e8e
...
@@ -494,31 +494,38 @@ $custom-control-gutter: 1.5rem !default;
...
@@ -494,31 +494,38 @@ $custom-control-gutter: 1.5rem !default;
$custom-control-spacer-x
:
1rem
!
default
;
$custom-control-spacer-x
:
1rem
!
default
;
$custom-control-indicator-size
:
1rem
!
default
;
$custom-control-indicator-size
:
1rem
!
default
;
$custom-control-indicator-bg
:
$gray-300
!
default
;
$custom-control-indicator-bg
:
$input-bg
!
default
;
$custom-control-indicator-bg-size
:
50%
50%
!
default
;
$custom-control-indicator-bg-size
:
50%
50%
!
default
;
$custom-control-indicator-box-shadow
:
inset
0
.25rem
.25rem
rgba
(
$black
,
.1
)
!
default
;
$custom-control-indicator-box-shadow
:
$input-box-shadow
!
default
;
$custom-control-indicator-border-color
:
$gray-500
!
default
;
$custom-control-indicator-border-width
:
$input-border-width
!
default
;
$custom-control-indicator-disabled-bg
:
$
gray-200
!
default
;
$custom-control-indicator-disabled-bg
:
$
input-disabled-bg
!
default
;
$custom-control-label-disabled-color
:
$gray-600
!
default
;
$custom-control-label-disabled-color
:
$gray-600
!
default
;
$custom-control-indicator-checked-color
:
$component-active-color
!
default
;
$custom-control-indicator-checked-color
:
$component-active-color
!
default
;
$custom-control-indicator-checked-bg
:
$component-active-bg
!
default
;
$custom-control-indicator-checked-bg
:
$component-active-bg
!
default
;
$custom-control-indicator-checked-disabled-bg
:
rgba
(
theme-color
(
"primary"
)
,
.5
)
!
default
;
$custom-control-indicator-checked-disabled-bg
:
rgba
(
theme-color
(
"primary"
)
,
.5
)
!
default
;
$custom-control-indicator-checked-box-shadow
:
none
!
default
;
$custom-control-indicator-checked-box-shadow
:
none
!
default
;
$custom-control-indicator-checked-border-color
:
$custom-control-indicator-checked-bg
!
default
;
$custom-control-indicator-focus-box-shadow
:
0
0
0
1px
$body-bg
,
$input-btn-focus-box-shadow
!
default
;
$custom-control-indicator-focus-box-shadow
:
$input-btn-focus-box-shadow
!
default
;
$custom-control-indicator-focus-border-color
:
$input-focus-border-color
!
default
;
$custom-control-indicator-active-color
:
$component-active-color
!
default
;
$custom-control-indicator-active-color
:
$component-active-color
!
default
;
$custom-control-indicator-active-bg
:
lighten
(
$component-active-bg
,
35%
)
!
default
;
$custom-control-indicator-active-bg
:
lighten
(
$component-active-bg
,
35%
)
!
default
;
$custom-control-indicator-active-box-shadow
:
none
!
default
;
$custom-control-indicator-active-box-shadow
:
none
!
default
;
$custom-control-indicator-active-border-color
:
$custom-control-indicator-active-bg
!
default
;
$custom-checkbox-indicator-border-radius
:
$border-radius
!
default
;
$custom-checkbox-indicator-border-radius
:
$border-radius
!
default
;
$custom-checkbox-indicator-icon-checked
:
str-replace
(
url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='
#{
$custom-control-indicator-checked-color
}
' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")
,
"#"
,
"%23"
)
!
default
;
$custom-checkbox-indicator-icon-checked
:
str-replace
(
url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='
#{
$custom-control-indicator-checked-color
}
' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")
,
"#"
,
"%23"
)
!
default
;
$custom-checkbox-indicator-indeterminate-bg
:
$component-active-bg
!
default
;
$custom-checkbox-indicator-indeterminate-bg
:
$component-active-bg
!
default
;
$custom-checkbox-indicator-indeterminate-color
:
$custom-control-indicator-checked-color
!
default
;
$custom-checkbox-indicator-indeterminate-color
:
$custom-control-indicator-checked-color
!
default
;
$custom-checkbox-indicator-icon-indeterminate
:
str-replace
(
url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='
#{
$custom-checkbox-indicator-indeterminate-color
}
' d='M0 2h4'/%3e%3c/svg%3e")
,
"#"
,
"%23"
)
!
default
;
$custom-checkbox-indicator-icon-indeterminate
:
str-replace
(
url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='
#{
$custom-checkbox-indicator-indeterminate-color
}
' d='M0 2h4'/%3e%3c/svg%3e")
,
"#"
,
"%23"
)
!
default
;
$custom-checkbox-indicator-indeterminate-box-shadow
:
none
!
default
;
$custom-checkbox-indicator-indeterminate-box-shadow
:
none
!
default
;
$custom-checkbox-indicator-indeterminate-border-color
:
$custom-checkbox-indicator-indeterminate-bg
!
default
;
$custom-radio-indicator-border-radius
:
50%
!
default
;
$custom-radio-indicator-border-radius
:
50%
!
default
;
$custom-radio-indicator-icon-checked
:
str-replace
(
url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='
#{
$custom-control-indicator-checked-color
}
'/%3e%3c/svg%3e")
,
"#"
,
"%23"
)
!
default
;
$custom-radio-indicator-icon-checked
:
str-replace
(
url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='
#{
$custom-control-indicator-checked-color
}
'/%3e%3c/svg%3e")
,
"#"
,
"%23"
)
!
default
;
...
...
This diff is collapsed.
Click to expand it.
scss/mixins/_forms.scss
+
7
-
2
View file @
e2014e8e
...
@@ -151,7 +151,7 @@
...
@@ -151,7 +151,7 @@
color
:
$color
;
color
:
$color
;
&
::before
{
&
::before
{
b
ackground-color
:
lighten
(
$color
,
25%
)
;
b
order-color
:
$color
;
}
}
}
}
...
@@ -162,13 +162,18 @@
...
@@ -162,13 +162,18 @@
&
:checked
{
&
:checked
{
~ .
custom-control-label
:
:
before
{
~ .
custom-control-label
:
:
before
{
border-color
:
lighten
(
$color
,
10%
);
@include
gradient-bg
(
lighten
(
$color
,
10%
));
@include
gradient-bg
(
lighten
(
$color
,
10%
));
}
}
}
}
&
:focus
{
&
:focus
{
~ .
custom-control-label
:
:
before
{
~ .
custom-control-label
:
:
before
{
box-shadow
:
0
0
0
1px
$body-bg
,
0
0
0
$input-focus-width
rgba
(
$color
,
.25
);
box-shadow
:
0
0
0
$input-focus-width
rgba
(
$color
,
.25
);
}
&
:not
(
:checked
)
~
.custom-control-label
::before
{
border-color
:
$color
;
}
}
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment