cedro 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/core/application.core.ts +19 -1
- package/src/index.ts +9 -8
- package/src/interfaces/application.interface.ts +4 -0
- package/src/interfaces/widget.interface.ts +4 -2
- package/src/ui/Icon.ui.ts +3 -9
- package/src/ui/IconButton.ui.ts +39 -3
- package/src/ui/accordion.ui.ts +71 -0
- package/src/ui/button.ui.ts +18 -1
- package/src/ui/buttonColor.ui.ts +24 -0
- package/src/ui/buttonmenu.ui.ts +59 -0
- package/src/ui/buttonstack.ui.ts +94 -0
- package/src/ui/checkbox.ui.ts +8 -0
- package/src/ui/datagrid.ui.ts +16 -1
- package/src/ui/draggable.ui.ts +22 -0
- package/src/ui/hpanel.ui.ts +127 -0
- package/src/ui/iconButtonMenu.ui.ts +59 -0
- package/src/ui/image.ui.ts +49 -0
- package/src/ui/index.ts +32 -2
- package/src/ui/loading.ui.ts +10 -0
- package/src/ui/menu.ui.ts +41 -47
- package/src/ui/progressbar.ui.ts +74 -0
- package/src/ui/radiobutton.ts +8 -0
- package/src/ui/scroll.ui.ts +1 -2
- package/src/ui/select.ui.ts +3 -0
- package/src/ui/styles/accordion.css +9 -0
- package/src/ui/styles/button.css +0 -3
- package/src/ui/styles/buttoncolor.css +8 -0
- package/src/ui/styles/datagrid.css +28 -2
- package/src/ui/styles/hpanel.css +12 -0
- package/src/ui/styles/image.css +19 -0
- package/src/ui/styles/loading.css +12 -0
- package/src/ui/styles/loading.svg +49 -0
- package/src/ui/styles/main.css +7 -0
- package/src/ui/styles/menu.css +0 -1
- package/src/ui/styles/progressbar.css +19 -0
- package/src/ui/styles/scroll.css +1 -1
- package/src/ui/styles/stackbutton.css +205 -0
- package/src/ui/styles/tabs.css +45 -0
- package/src/ui/styles/textarea.css +13 -0
- package/src/ui/styles/textbox.css +66 -0
- package/src/ui/styles/toolbar.css +19 -0
- package/src/ui/styles/valuebar.css +26 -0
- package/src/ui/styles/vpanel.css +12 -0
- package/src/ui/styles/vstackbutton.css +202 -0
- package/src/ui/switch.ui.ts +7 -0
- package/src/ui/tabs.ui.ts +79 -28
- package/src/ui/textarea.ui.ts +20 -0
- package/src/ui/textbox.ui.ts +9 -0
- package/src/ui/toggle.ui.ts +49 -0
- package/src/ui/toolbar.ui.ts +35 -7
- package/src/ui/valuebar.ui.ts +116 -0
- package/src/ui/vpanel.ui.ts +128 -0
- package/src/ui/widget.ui.ts +28 -3
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
.WUIImageContainer {
|
|
2
|
+
position: absolute;
|
|
3
|
+
overflow: hidden;
|
|
4
|
+
display: flex;
|
|
5
|
+
align-items: center;
|
|
6
|
+
justify-content: center;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.WUIImageContainer img {
|
|
10
|
+
margin: auto;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.WUIImageFillWidth {
|
|
14
|
+
width: 100% !important;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.WUIImageFillHeight {
|
|
18
|
+
height: 100% !important;
|
|
19
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
.WUILoading {
|
|
2
|
+
background-color: var(--palette-background-default);
|
|
3
|
+
background-image: url("loading.svg");
|
|
4
|
+
background-position: center;
|
|
5
|
+
background-repeat: no-repeat;
|
|
6
|
+
position: absolute !important;
|
|
7
|
+
left: 0px;
|
|
8
|
+
top: 0px;
|
|
9
|
+
right: 0px;
|
|
10
|
+
bottom: 0px;
|
|
11
|
+
opacity: 0.8;
|
|
12
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" width="256" height="256" style="shape-rendering: auto; display: block; background: transparent;" xmlns:xlink="http://www.w3.org/1999/xlink"><g><g transform="rotate(0 50 50)">
|
|
2
|
+
<rect fill="#878787" height="12" width="6" ry="6" rx="3" y="24" x="47">
|
|
3
|
+
<animate repeatCount="indefinite" begin="-1.5027322404371584s" dur="1.639344262295082s" keyTimes="0;1" values="1;0" attributeName="opacity"></animate>
|
|
4
|
+
</rect>
|
|
5
|
+
</g><g transform="rotate(30 50 50)">
|
|
6
|
+
<rect fill="#878787" height="12" width="6" ry="6" rx="3" y="24" x="47">
|
|
7
|
+
<animate repeatCount="indefinite" begin="-1.366120218579235s" dur="1.639344262295082s" keyTimes="0;1" values="1;0" attributeName="opacity"></animate>
|
|
8
|
+
</rect>
|
|
9
|
+
</g><g transform="rotate(60 50 50)">
|
|
10
|
+
<rect fill="#878787" height="12" width="6" ry="6" rx="3" y="24" x="47">
|
|
11
|
+
<animate repeatCount="indefinite" begin="-1.2295081967213115s" dur="1.639344262295082s" keyTimes="0;1" values="1;0" attributeName="opacity"></animate>
|
|
12
|
+
</rect>
|
|
13
|
+
</g><g transform="rotate(90 50 50)">
|
|
14
|
+
<rect fill="#878787" height="12" width="6" ry="6" rx="3" y="24" x="47">
|
|
15
|
+
<animate repeatCount="indefinite" begin="-1.0928961748633879s" dur="1.639344262295082s" keyTimes="0;1" values="1;0" attributeName="opacity"></animate>
|
|
16
|
+
</rect>
|
|
17
|
+
</g><g transform="rotate(120 50 50)">
|
|
18
|
+
<rect fill="#878787" height="12" width="6" ry="6" rx="3" y="24" x="47">
|
|
19
|
+
<animate repeatCount="indefinite" begin="-0.9562841530054644s" dur="1.639344262295082s" keyTimes="0;1" values="1;0" attributeName="opacity"></animate>
|
|
20
|
+
</rect>
|
|
21
|
+
</g><g transform="rotate(150 50 50)">
|
|
22
|
+
<rect fill="#878787" height="12" width="6" ry="6" rx="3" y="24" x="47">
|
|
23
|
+
<animate repeatCount="indefinite" begin="-0.819672131147541s" dur="1.639344262295082s" keyTimes="0;1" values="1;0" attributeName="opacity"></animate>
|
|
24
|
+
</rect>
|
|
25
|
+
</g><g transform="rotate(180 50 50)">
|
|
26
|
+
<rect fill="#878787" height="12" width="6" ry="6" rx="3" y="24" x="47">
|
|
27
|
+
<animate repeatCount="indefinite" begin="-0.6830601092896175s" dur="1.639344262295082s" keyTimes="0;1" values="1;0" attributeName="opacity"></animate>
|
|
28
|
+
</rect>
|
|
29
|
+
</g><g transform="rotate(210 50 50)">
|
|
30
|
+
<rect fill="#878787" height="12" width="6" ry="6" rx="3" y="24" x="47">
|
|
31
|
+
<animate repeatCount="indefinite" begin="-0.5464480874316939s" dur="1.639344262295082s" keyTimes="0;1" values="1;0" attributeName="opacity"></animate>
|
|
32
|
+
</rect>
|
|
33
|
+
</g><g transform="rotate(240 50 50)">
|
|
34
|
+
<rect fill="#878787" height="12" width="6" ry="6" rx="3" y="24" x="47">
|
|
35
|
+
<animate repeatCount="indefinite" begin="-0.4098360655737705s" dur="1.639344262295082s" keyTimes="0;1" values="1;0" attributeName="opacity"></animate>
|
|
36
|
+
</rect>
|
|
37
|
+
</g><g transform="rotate(270 50 50)">
|
|
38
|
+
<rect fill="#878787" height="12" width="6" ry="6" rx="3" y="24" x="47">
|
|
39
|
+
<animate repeatCount="indefinite" begin="-0.27322404371584696s" dur="1.639344262295082s" keyTimes="0;1" values="1;0" attributeName="opacity"></animate>
|
|
40
|
+
</rect>
|
|
41
|
+
</g><g transform="rotate(300 50 50)">
|
|
42
|
+
<rect fill="#878787" height="12" width="6" ry="6" rx="3" y="24" x="47">
|
|
43
|
+
<animate repeatCount="indefinite" begin="-0.13661202185792348s" dur="1.639344262295082s" keyTimes="0;1" values="1;0" attributeName="opacity"></animate>
|
|
44
|
+
</rect>
|
|
45
|
+
</g><g transform="rotate(330 50 50)">
|
|
46
|
+
<rect fill="#878787" height="12" width="6" ry="6" rx="3" y="24" x="47">
|
|
47
|
+
<animate repeatCount="indefinite" begin="0s" dur="1.639344262295082s" keyTimes="0;1" values="1;0" attributeName="opacity"></animate>
|
|
48
|
+
</rect>
|
|
49
|
+
</g><g></g></g><!-- [ldio] generated by https://loading.io --></svg>
|
package/src/ui/styles/main.css
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
|
+
* {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
-moz-box-sizing: border-box;
|
|
4
|
+
-webkit-box-sizing: border-box;
|
|
5
|
+
}
|
|
6
|
+
|
|
1
7
|
body {
|
|
2
8
|
font-family: "Roboto", sans-serif;
|
|
3
9
|
background-color: var(--palette-background-default);
|
|
4
10
|
color: var(--palette-text-secondary);
|
|
11
|
+
overflow: hidden;
|
|
5
12
|
}
|
|
6
13
|
|
|
7
14
|
h1,
|
package/src/ui/styles/menu.css
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
.WUIProgressBarContainer {
|
|
2
|
+
overflow: hidden;
|
|
3
|
+
border: solid 2px var(--palette-divider);
|
|
4
|
+
border-radius: 7px;
|
|
5
|
+
background-color: var(--palette-background-default);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.WUIProgressBarBar {
|
|
9
|
+
position: absolute;
|
|
10
|
+
left: 0px;
|
|
11
|
+
top: 0px;
|
|
12
|
+
border-radius: 6px;
|
|
13
|
+
background-color: var(--palette-primary-dark);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.WUIProgressBarLabel {
|
|
17
|
+
position: absolute;
|
|
18
|
+
color: var(--palette-primary-light);
|
|
19
|
+
}
|
package/src/ui/styles/scroll.css
CHANGED
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
/****************************************************************************/
|
|
2
|
+
/***********************************STACK-START******************************/
|
|
3
|
+
/****************************************************************************/
|
|
4
|
+
|
|
5
|
+
.WUIButton-stack-start {
|
|
6
|
+
cursor: pointer;
|
|
7
|
+
font-weight: 500;
|
|
8
|
+
text-align: center;
|
|
9
|
+
background-color: transparent;
|
|
10
|
+
border-left: solid 0.13rem;
|
|
11
|
+
border-top: solid 0.13rem;
|
|
12
|
+
border-bottom: solid 0.13rem;
|
|
13
|
+
border-right: none;
|
|
14
|
+
font-size: 1rem;
|
|
15
|
+
border-top-left-radius: 0.25rem;
|
|
16
|
+
border-bottom-left-radius: 0.25rem;
|
|
17
|
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
|
|
18
|
+
border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
19
|
+
text-transform: uppercase;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.WUIButton-stack-start-color-primary {
|
|
23
|
+
color: var(--palette-text-primary);
|
|
24
|
+
background-color: var(--palette-background-default);
|
|
25
|
+
border-color: var(--palette-divider);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.WUIButton-stack-start-color-primary:hover {
|
|
29
|
+
color: var(--palette-primary-text-light);
|
|
30
|
+
background-color: var(--palette-primary-light);
|
|
31
|
+
border-color: var(--palette-divider);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
/****************************************************************************/
|
|
35
|
+
/***********************************STACK-MIDDLE******************************/
|
|
36
|
+
/****************************************************************************/
|
|
37
|
+
|
|
38
|
+
.WUIButton-stack-middle {
|
|
39
|
+
cursor: pointer;
|
|
40
|
+
font-weight: 500;
|
|
41
|
+
text-align: center;
|
|
42
|
+
background-color: transparent;
|
|
43
|
+
border-left: solid 0.13rem;
|
|
44
|
+
border-top: solid 0.13rem;
|
|
45
|
+
border-bottom: solid 0.13rem;
|
|
46
|
+
border-right: none;
|
|
47
|
+
font-size: 1rem;
|
|
48
|
+
border-top-left-radius: 0;
|
|
49
|
+
border-bottom-left-radius: 0;
|
|
50
|
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
|
|
51
|
+
border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
52
|
+
text-transform: uppercase;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.WUIButton-stack-middle-color-primary {
|
|
56
|
+
color: var(--palette-text-primary);
|
|
57
|
+
background-color: var(--palette-background-default);
|
|
58
|
+
border-color: var(--palette-divider);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.WUIButton-stack-middle-color-primary:hover {
|
|
62
|
+
color: var(--palette-primary-text-light);
|
|
63
|
+
background-color: var(--palette-primary-light);
|
|
64
|
+
border-color: var(--palette-divider);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
/**************************************************************************/
|
|
68
|
+
/***********************************STACK-END******************************/
|
|
69
|
+
/**************************************************************************/
|
|
70
|
+
|
|
71
|
+
.WUIButton-stack-end {
|
|
72
|
+
cursor: pointer;
|
|
73
|
+
font-weight: 500;
|
|
74
|
+
text-align: center;
|
|
75
|
+
background-color: transparent;
|
|
76
|
+
border-left: solid 0.13rem;
|
|
77
|
+
border-right: solid 0.13rem;
|
|
78
|
+
border-top: solid 0.13rem;
|
|
79
|
+
border-bottom: solid 0.13rem;
|
|
80
|
+
font-size: 1rem;
|
|
81
|
+
border-top-left-radius: 0;
|
|
82
|
+
border-bottom-left-radius: 0;
|
|
83
|
+
border-top-right-radius: 0.25rem;
|
|
84
|
+
border-bottom-right-radius: 0.25rem;
|
|
85
|
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
|
|
86
|
+
border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
87
|
+
text-transform: uppercase;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.WUIButton-stack-end-color-primary {
|
|
91
|
+
color: var(--palette-text-primary);
|
|
92
|
+
background-color: var(--palette-background-default);
|
|
93
|
+
border-color: var(--palette-divider);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.WUIButton-stack-end-color-primary:hover {
|
|
97
|
+
color: var(--palette-primary-text-light);
|
|
98
|
+
background-color: var(--palette-primary-light);
|
|
99
|
+
border-color: var(--palette-divider);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
/************************************************************************/
|
|
103
|
+
/******************************STACK-START-ACTIVE************************/
|
|
104
|
+
/************************************************************************/
|
|
105
|
+
|
|
106
|
+
.WUIButton-stack-start-active {
|
|
107
|
+
cursor: pointer;
|
|
108
|
+
font-weight: 500;
|
|
109
|
+
text-align: center;
|
|
110
|
+
color: var(--palette-primary-text-light);
|
|
111
|
+
background-color: var(--palette-primary-light);
|
|
112
|
+
border-left: solid 0.13rem;
|
|
113
|
+
border-top: solid 0.13rem;
|
|
114
|
+
border-bottom: solid 0.13rem;
|
|
115
|
+
border-right: none;
|
|
116
|
+
font-size: 1rem;
|
|
117
|
+
border-top-left-radius: 0.25rem;
|
|
118
|
+
border-bottom-left-radius: 0.25rem;
|
|
119
|
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
|
|
120
|
+
border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
121
|
+
text-transform: uppercase;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.WUIButton-stack-start-active-color-primary {
|
|
125
|
+
color: var(--palette-primary-text-light);
|
|
126
|
+
background-color: var(--palette-primary-dark);
|
|
127
|
+
border-color: var(--palette-divider);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.WUIButton-stack-start-active-color-primary:hover {
|
|
131
|
+
color: var(--palette-primary-text-light);
|
|
132
|
+
background-color: var(--palette-primary-light);
|
|
133
|
+
border-color: var(--palette-divider);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/*************************************************************************/
|
|
137
|
+
/**************************STACK-MIDDLE-ACTIVE****************************/
|
|
138
|
+
/*************************************************************************/
|
|
139
|
+
|
|
140
|
+
.WUIButton-stack-middle-active {
|
|
141
|
+
cursor: pointer;
|
|
142
|
+
font-weight: 500;
|
|
143
|
+
text-align: center;
|
|
144
|
+
color: var(--palette-primary-text-light);
|
|
145
|
+
background-color: var(--palette-primary-light);
|
|
146
|
+
border-left: solid 0.13rem;
|
|
147
|
+
border-top: solid 0.13rem;
|
|
148
|
+
border-bottom: solid 0.13rem;
|
|
149
|
+
border-right: none;
|
|
150
|
+
font-size: 1rem;
|
|
151
|
+
border-top-left-radius: 0;
|
|
152
|
+
border-bottom-left-radius: 0;
|
|
153
|
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
|
|
154
|
+
border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
155
|
+
text-transform: uppercase;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.WUIButton-stack-middle-active-color-primary {
|
|
159
|
+
color: var(--palette-primary-text-light);
|
|
160
|
+
background-color: var(--palette-primary-dark);
|
|
161
|
+
border-color: var(--palette-divider);
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.WUIButton-stack-middle-active-color-primary:hover {
|
|
165
|
+
color: var(--palette-primary-text-light);
|
|
166
|
+
background-color: var(--palette-primary-light);
|
|
167
|
+
border-color: var(--palette-divider);
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
/**************************************************************************/
|
|
171
|
+
/********************************STACK-END-ACTIVE**************************/
|
|
172
|
+
/**************************************************************************/
|
|
173
|
+
|
|
174
|
+
.WUIButton-stack-end-active {
|
|
175
|
+
cursor: pointer;
|
|
176
|
+
font-weight: 500;
|
|
177
|
+
text-align: center;
|
|
178
|
+
color: var(--palette-primary-text-light);
|
|
179
|
+
background-color: var(--palette-primary-light);
|
|
180
|
+
border-left: solid 0.13rem;
|
|
181
|
+
border-right: solid 0.13rem;
|
|
182
|
+
border-top: solid 0.13rem;
|
|
183
|
+
border-bottom: solid 0.13rem;
|
|
184
|
+
border-right: solid 0.13rem;
|
|
185
|
+
font-size: 1rem;
|
|
186
|
+
border-top-left-radius: 0;
|
|
187
|
+
border-bottom-left-radius: 0;
|
|
188
|
+
border-top-right-radius: 0.25rem;
|
|
189
|
+
border-bottom-right-radius: 0.25rem;
|
|
190
|
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
|
|
191
|
+
border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
192
|
+
text-transform: uppercase;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.WUIButton-stack-end-active-color-primary {
|
|
196
|
+
color: var(--palette-primary-text-light);
|
|
197
|
+
background-color: var(--palette-primary-dark);
|
|
198
|
+
border-color: var(--palette-divider);
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.WUIButton-stack-end-active-color-primary:hover {
|
|
202
|
+
color: var(--palette-primary-text-light);
|
|
203
|
+
background-color: var(--palette-primary-light);
|
|
204
|
+
border-color: var(--palette-divider);
|
|
205
|
+
}
|
package/src/ui/styles/tabs.css
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
.WUITab {
|
|
2
|
+
background-color: transparent;
|
|
3
|
+
border-left: solid 0.13rem;
|
|
4
|
+
border-top: solid 0.13rem;
|
|
5
|
+
border-bottom: solid 0.13rem;
|
|
6
|
+
border-right: solid 0.13rem;
|
|
7
|
+
border-radius: 0.25rem;
|
|
8
|
+
border-color: var(--palette-divider);
|
|
9
|
+
overflow: hidden;
|
|
10
|
+
}
|
|
11
|
+
|
|
1
12
|
.WUITabControl {
|
|
2
13
|
border-top: none !important;
|
|
3
14
|
border-left: none !important;
|
|
@@ -31,3 +42,37 @@
|
|
|
31
42
|
.WUITabContainer {
|
|
32
43
|
border-top: solid 1px var(--palette-divider);
|
|
33
44
|
}
|
|
45
|
+
|
|
46
|
+
.WUITabControlActive_VL {
|
|
47
|
+
border-top: none !important;
|
|
48
|
+
border-right: none !important;
|
|
49
|
+
border-left: solid 2px var(--palette-primary-dark) !important;
|
|
50
|
+
border-bottom: none !important;
|
|
51
|
+
background-color: var(--palette-divider);
|
|
52
|
+
box-sizing: border-box;
|
|
53
|
+
font-weight: bold;
|
|
54
|
+
text-align: center;
|
|
55
|
+
cursor: default;
|
|
56
|
+
padding-left: 15px;
|
|
57
|
+
padding-right: 15px;
|
|
58
|
+
border-radius: 0px !important;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.WUITabControlActiveIcon_VL {
|
|
62
|
+
border-top: none !important;
|
|
63
|
+
border-left: none !important;
|
|
64
|
+
border-right: solid 2px var(--palette-primary-dark) !important;
|
|
65
|
+
border-bottom: none !important;
|
|
66
|
+
background-color: var(--palette-divider);
|
|
67
|
+
box-sizing: border-box;
|
|
68
|
+
font-weight: bold;
|
|
69
|
+
text-align: center;
|
|
70
|
+
cursor: default;
|
|
71
|
+
padding-left: 15px;
|
|
72
|
+
padding-right: 15px;
|
|
73
|
+
border-radius: 0px !important;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.WUITabContainer_VL {
|
|
77
|
+
border-right: solid 1px var(--palette-divider);
|
|
78
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
.WUITextArea {
|
|
2
|
+
outline: none;
|
|
3
|
+
/*border-collapse: collapse;*/
|
|
4
|
+
border: 2px solid var(--palette-action-disabled);
|
|
5
|
+
border-radius: 4px;
|
|
6
|
+
box-sizing: border-box;
|
|
7
|
+
font-size: 1rem;
|
|
8
|
+
padding-left: 20px;
|
|
9
|
+
z-index: 1000;
|
|
10
|
+
background-color: var(--palette-background-default);
|
|
11
|
+
color: var(--palette-text-primary);
|
|
12
|
+
overflow-y: auto;
|
|
13
|
+
}
|
|
@@ -1,3 +1,69 @@
|
|
|
1
|
+
/* NUMERIC INPUT */
|
|
2
|
+
|
|
3
|
+
input[type="number"] {
|
|
4
|
+
-moz-appearance: textfield; /* Firefox */
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
input::-webkit-outer-spin-button,
|
|
8
|
+
input::-webkit-inner-spin-button {
|
|
9
|
+
/* display: none; <- Crashes Chrome on hover */
|
|
10
|
+
-webkit-appearance: none;
|
|
11
|
+
margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/* FILE INPUT */
|
|
15
|
+
|
|
16
|
+
input[type="file"]::file-selector-button {
|
|
17
|
+
margin-right: 0px;
|
|
18
|
+
border: none;
|
|
19
|
+
border-radius: 0.25rem;
|
|
20
|
+
background: var(--palette-primary-main);
|
|
21
|
+
height: 100%;
|
|
22
|
+
color: var(--palette-primary-text-main);
|
|
23
|
+
cursor: pointer;
|
|
24
|
+
transition: background 0.2s ease-in-out;
|
|
25
|
+
float: right;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
input[type="file"]::file-selector-button:hover {
|
|
29
|
+
color: var(--palette-primary-text-dark);
|
|
30
|
+
background-color: var(--palette-primary-dark);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/* DATE INPUT */
|
|
34
|
+
|
|
35
|
+
::-webkit-datetime-edit {
|
|
36
|
+
padding: 0em;
|
|
37
|
+
text-align: right;
|
|
38
|
+
}
|
|
39
|
+
::-webkit-datetime-edit-fields-wrapper {
|
|
40
|
+
background: transparent;
|
|
41
|
+
}
|
|
42
|
+
::-webkit-datetime-edit-text {
|
|
43
|
+
color: var(--palette-text-primary);
|
|
44
|
+
padding: 0 0.3em;
|
|
45
|
+
}
|
|
46
|
+
::-webkit-datetime-edit-month-field {
|
|
47
|
+
color: var(--palette-text-primary);
|
|
48
|
+
}
|
|
49
|
+
::-webkit-datetime-edit-day-field {
|
|
50
|
+
color: var(--palette-text-primary);
|
|
51
|
+
}
|
|
52
|
+
::-webkit-datetime-edit-year-field {
|
|
53
|
+
color: var(--palette-text-primary);
|
|
54
|
+
}
|
|
55
|
+
::-webkit-inner-spin-button {
|
|
56
|
+
display: none;
|
|
57
|
+
}
|
|
58
|
+
::-webkit-calendar-picker-indicator {
|
|
59
|
+
padding-left: 10px;
|
|
60
|
+
padding-right: 10px;
|
|
61
|
+
background-color: transparent;
|
|
62
|
+
filter: invert(0.5);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/* TEXT INPUT */
|
|
66
|
+
|
|
1
67
|
.WUIinput {
|
|
2
68
|
position: relative;
|
|
3
69
|
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
.WUIToolbar-outlined {
|
|
2
|
+
background-color: transparent;
|
|
3
|
+
border-left: solid 0.13rem;
|
|
4
|
+
border-top: solid 0.13rem;
|
|
5
|
+
border-bottom: solid 0.13rem;
|
|
6
|
+
border-right: solid 0.13rem;
|
|
7
|
+
border-radius: 0.25rem;
|
|
8
|
+
border-color: var(--palette-divider);
|
|
9
|
+
overflow: hidden;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.WUIToolbar-contained {
|
|
13
|
+
background-color: transparent;
|
|
14
|
+
border-left: none;
|
|
15
|
+
border-top: none;
|
|
16
|
+
border-bottom: none;
|
|
17
|
+
border-right: none;
|
|
18
|
+
overflow: hidden;
|
|
19
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
.WUIValueBar {
|
|
2
|
+
overflow: hidden;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.WUIValueBarContainer {
|
|
6
|
+
position: absolute;
|
|
7
|
+
left: 0px;
|
|
8
|
+
top: 0px;
|
|
9
|
+
border: solid 2px var(--palette-divider);
|
|
10
|
+
border-radius: 6px;
|
|
11
|
+
background-color: var(--palette-background-default);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.WUIValueBarBar {
|
|
15
|
+
position: absolute;
|
|
16
|
+
left: 0px;
|
|
17
|
+
top: 0px;
|
|
18
|
+
border-radius: 6px;
|
|
19
|
+
background-color: var(--palette-primary-dark);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.WUIValueBarHandler {
|
|
23
|
+
position: absolute;
|
|
24
|
+
border-radius: 50%;
|
|
25
|
+
background-color: var(--palette-primary-dark);
|
|
26
|
+
}
|