-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathopenlowcode.css
More file actions
103 lines (80 loc) · 2.34 KB
/
openlowcode.css
File metadata and controls
103 lines (80 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/********************************************************************************
* Copyright (c) 2019 [Open Lowcode SAS](https://openlowcode.com/)
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0 .
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
.text-area#readonly {
-fx-background-color: white;
-fx-text-fill: #000000;
}
.text-area#readonly .scroll-pane {
-fx-background-color: white;
}
.text-area#readonly .scroll-pane .viewport{
-fx-background-color: white;
}
.text-area#readonly .scroll-pane .content{
-fx-background-color: white;
-fx-padding: 0.0em 0.0em 0.0em 0.0em;
}
.text-area:focus#readonly {
-fx-background-color: white;
-fx-text-fill: #000000;
}
.text-area:focus#readonly .scroll-pane {
-fx-background-color: white;
}
.text-area:focus#readonly .scroll-pane .viewport{
-fx-background-color: white;
}
.text-area:focus#readonly .scroll-pane .content{
-fx-background-color: white;
-fx-padding: 0.0em 0.0em 0.0em 0.0em;
}
.text-area#readonly .scroll-bar:vertical:disabled {
-fx-opacity: 0;
}
.table-view .column-header .label {
-fx-font-weight: normal;
}
.tree-table-view .column-header .label {
-fx-font-weight: normal;
}
.root {
-fx-control-inner-background-alt: -fx-control-inner-background ;
}
.tab-pane .tab-header-area .tab-header-background {
-fx-background-color: white;
-fx-effect: null;
-fx-opacity: 0;
}
.tab{
-fx-base: #ffffff; -fx-hover-base: #ddeeff;
}
.list-view .scroll-bar:horizontal {
-fx-scale-y: 0;
}
.titled-pane > .title
{
-fx-background-color: white, white, white;
-fx-background-insets: 0, 1, 2;
-fx-background-radius: 5 5 0 0, 4 4 0 0, 3 3 0 0;
-fx-padding: 0.166667em 0.833333em 0.25em 0.833333em; /* 2 10 3 10 */
}
.table-cell:focused {
-fx-padding: 0;
}
.titled-pane > *.content {
-fx-border-color: transparent;
-fx-border-insets: -1 -1 -1 -1;
}
.centeredTextArea .scroll-pane .content .text {
-fx-text-alignment: center;
}
.rightTextArea .scroll-pane .content .text {
-fx-text-alignment: right;
}