File tree Expand file tree Collapse file tree 3 files changed +37
-6
lines changed
src/main/kotlin/org/idaesbasic Expand file tree Collapse file tree 3 files changed +37
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ class MainStyle: Stylesheet() {
7
7
companion object {
8
8
val styledTextArea by cssclass()
9
9
val caret by cssclass()
10
+ val squeezebox by cssclass()
11
+ val form by cssclass()
10
12
11
13
private val draculaBackgroundColor = c(" #282a36" )
12
14
private val draculaForegroundColor = c(" #44475a" )
@@ -17,6 +19,7 @@ class MainStyle: Stylesheet() {
17
19
init {
18
20
button {
19
21
backgroundColor = multi(draculaForegroundColor)
22
+ textFill = draculaTextColor
20
23
and (hover) {
21
24
backgroundColor = multi(draculaSelectColor)
22
25
}
@@ -39,5 +42,28 @@ class MainStyle: Stylesheet() {
39
42
caret {
40
43
stroke = draculaTextColor
41
44
}
45
+ squeezebox {
46
+ backgroundColor = multi(draculaBackgroundColor)
47
+ }
48
+ titledPane {
49
+ textFill = draculaTextColor
50
+ title {
51
+ backgroundColor = multi(draculaBackgroundColor)
52
+ }
53
+ content {
54
+ borderColor = multi(box(draculaBackgroundColor))
55
+ backgroundColor = multi(draculaBackgroundColor)
56
+ }
57
+ }
58
+ root {
59
+ backgroundColor = multi(draculaBackgroundColor)
60
+ }
61
+ form {
62
+ backgroundColor = multi(draculaBackgroundColor)
63
+ textFill = draculaTextColor
64
+ }
65
+ label {
66
+ textFill = draculaTextColor
67
+ }
42
68
}
43
69
}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ class NewBufferView : Fragment () {
21
21
textfield()
22
22
}
23
23
field(" Language" ) {
24
- text (" Plain text" )
24
+ label (" Plain text" )
25
25
}
26
26
}
27
27
fieldset (" Advanced file configuration" ) {
You can’t perform that action at this time.
0 commit comments