This repository was archived by the owner on Mar 13, 2025. It is now read-only.
File tree 4 files changed +12
-11
lines changed
4 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 9
9
border-color : #fe665d ;
10
10
}
11
11
}
12
+
13
+ input :disabled:not (:focus ) {
14
+ border : 1px solid #ddd ;
15
+ }
12
16
}
13
17
14
18
.datepicker-wrapper > div :nth-child (2 ) > div :nth-child (2 ) {
Original file line number Diff line number Diff line change 1
1
@import " styles/include" ;
2
2
3
+ // we use viewer mode to show editor when it's "disabled"
3
4
.editor-viewer {
4
5
> div :first-child {
5
- // border: 1px solid #aaaaab ;
6
+ border : 1px solid #ddd ;
6
7
border-radius : 4px ;
7
8
overflow : hidden ;
8
9
box-sizing : border-box ;
9
10
padding : 16px 25px 0px 25px ;
10
11
height : 280px ;
11
12
overflow-y : auto ;
12
- border : 0 ;
13
13
background : #fafafb ;
14
- box-shadow : none ;
15
- color : #6b6b6b ;
16
- -webkit-text-fill-color : #808080 ;
17
14
}
18
15
.message {
19
16
@include font-roboto ;
Original file line number Diff line number Diff line change @@ -14,13 +14,9 @@ const ReactSelect = (props) => {
14
14
control : ( provided , state ) => ( {
15
15
...provided ,
16
16
minHeight : "40px" ,
17
- border : state . isDisabled ? "none " : "1px solid #aaaaab" ,
17
+ border :state . isDisabled ? "1px solid #ddd " : "1px solid #aaaaab" ,
18
18
borderColor : state . isFocused ? "#55a5ff" : "#aaaaab" ,
19
- boxShadow : state . isDisabled
20
- ? "none"
21
- : state . isFocused
22
- ? "0 0 2px 1px #cee6ff"
23
- : provided . boxShadow ,
19
+ boxShadow : state . isFocused ? "0 0 2px 1px #cee6ff" : provided . boxShadow ,
24
20
backgroundColor : state . isDisabled ? "#fafafb" : provided . backgroundColor ,
25
21
color : state . isDisabled ? "#6b6b6b" : provided . color ,
26
22
} ) ,
Original file line number Diff line number Diff line change 24
24
box-shadow : none !important ;
25
25
}
26
26
}
27
+
28
+ input .TextInput :not ([type = " checkbox" ]):disabled {
29
+ border : 1px solid #ddd ;
30
+ }
You can’t perform that action at this time.
0 commit comments