File tree 4 files changed +33
-21
lines changed
4 files changed +33
-21
lines changed Original file line number Diff line number Diff line change 3
3
#{$input } {
4
4
background-color : var (--input-background );
5
5
border : 1px solid transparent ;
6
+ border-color : var (--input-border );
6
7
color : var (--input-foreground );
7
8
display : inline-block ;
8
9
font-size : 13px ;
33
34
text-align : right ;
34
35
}
35
36
}
37
+
38
+ & ::placeholder {
39
+ color : var (--input-placeholderForeground );
40
+ }
41
+
42
+ & :focus ,
43
+ & :active {
44
+ border-color : var (--focusBorder );
45
+ outline-color : var (--focusBorder );
46
+ outline-offset : -1 ;
47
+ outline-style : solid ;
48
+ }
36
49
}
Original file line number Diff line number Diff line change 18
18
19
19
& __input {
20
20
appearance : none ;
21
- background : inherit ;
21
+ background : var ( --input-background ) ;
22
22
border : 0 ;
23
- color : inherit ;
23
+ color : var ( --input-foreground ) ;
24
24
cursor : default ;
25
25
font : inherit ;
26
26
font-size : inherit ;
33
33
& :focus {
34
34
outline : none ;
35
35
}
36
+
37
+ & ::placeholder {
38
+ color : var (--input-placeholderForeground );
39
+ }
40
+
41
+ & :focus ,
42
+ & :active {
43
+ border-color : var (--focusBorder );
44
+ outline-color : var (--focusBorder );
45
+ outline-offset : -1 ;
46
+ outline-style : solid ;
47
+ }
36
48
}
37
49
38
50
& __arrow {
Original file line number Diff line number Diff line change 28
28
background : rgba (0 , 0 , 0 , 0.3 );
29
29
30
30
#{$folderTree } --input {
31
+ background : var (--input-background );
31
32
border : 1px solid var (--list-focusOutline );
33
+ color : var (--input-foreground );
32
34
font-family : inherit ;
33
35
font-size : 13px ;
34
36
height : 20px ;
48
50
& ::selection {
49
51
background : rgb (90 , 126 , 167 );
50
52
}
53
+
54
+ & ::placeholder {
55
+ color : var (--input-placeholderForeground );
56
+ }
51
57
}
52
58
}
53
59
}
Original file line number Diff line number Diff line change 8
8
background-color : var (--editor-selectionBackground );
9
9
}
10
10
11
- input ,
12
- select {
13
- background : var (--input-background );
14
- border-color : var (--input-border );
15
- color : var (--input-foreground );
16
-
17
- & ::placeholder {
18
- color : var (--input-placeholderForeground );
19
- }
20
- }
21
-
22
- input :focus ,
23
- input :active {
24
- border-color : var (--focusBorder );
25
- outline-color : var (--focusBorder );
26
- outline-offset : -1 ;
27
- outline-style : solid ;
28
- }
29
-
30
11
code {
31
12
background : var (--textCodeBlock-background );
32
13
}
You can’t perform that action at this time.
0 commit comments