File tree Expand file tree Collapse file tree 2 files changed +14
-10
lines changed
doc/src/components/common/componentData/Checkbox Expand file tree Collapse file tree 2 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 3
3
}
4
4
5
5
:local(.checkbox ) {
6
- border-color : #6b76ff ;
6
+ border-color : #8b104e ;
7
7
.check-item {
8
- border-color : #6b76ff !important ;
8
+ border-color : #8b104e !important ;
9
9
}
10
10
}
11
11
12
12
13
13
:local(.inverted ) {
14
- background-color : #0b409c !important ;
14
+ background-color : #8b104e !important ;
15
15
.check-item {
16
- border-color : #f18a9b !important ;
16
+ border-color : #fefefe !important ;
17
17
}
18
18
}
Original file line number Diff line number Diff line change 1
1
@import ' ../globals/theme.scss' ;
2
2
:local(.checkbox ) {
3
+ display : inline-block ;
3
4
background-color : $secondary-white ;
4
5
padding : 2px ;
5
- border : 1px solid $secondary-blue ;
6
- & :hover {
7
- cursor : pointer ;
8
- }
6
+ border : 2px solid $secondary-blue ;
7
+ height : 25px ;
8
+ width : 25px ;
9
+ box-sizing : border-box ;
10
+ border-radius : 3px ;
11
+ cursor : pointer ;
9
12
input {
10
13
/* Disable the HTML input */
11
14
opacity : 0 ;
15
+ margin : 0 ;
16
+ cursor : pointer ;
12
17
}
13
18
/* Fixes width issue in safari */
14
19
@media not all and (min-resolution :.001dpcm ) {
24
29
}
25
30
26
31
:local(.checked ) {
27
- height : 200px ;
28
32
position : relative ;
29
33
.check-item {
30
34
/* Check Item adds the tick */
31
35
/* Builds a rectange with border width and rotates it 45 Degree */
32
36
position : absolute ;
33
37
left : 32% ;
34
- top : 12 % ;
38
+ top : 5 % ;
35
39
width : 5px ;
36
40
height : 12px ;
37
41
border : solid $secondary-blue ;
You can’t perform that action at this time.
0 commit comments