@rolster/styles-foundations 2.3.38 → 2.4.10
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/scss/components/app.scss +3 -3
- package/scss/components/data-table.scss +15 -7
- package/scss/components/field-box.scss +5 -5
- package/scss/components/field-list.scss +16 -18
- package/scss/components.scss +9 -9
- package/scss/foundations/colors.scss +228 -429
- package/scss/foundations/elevations.scss +84 -69
- package/scss/foundations/helpers.scss +101 -0
- package/scss/foundations/themes.scss +34 -49
- package/scss/utilities/normalize.scss +5 -5
- package/scss/utilities.scss +2 -4
- package/scss/utilities/colors.scss +0 -54
- package/scss/utilities/themes.scss +0 -42
package/package.json
CHANGED
package/scss/components/app.scss
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// Rolster Technology App Component
|
|
2
|
-
// v2.2.
|
|
2
|
+
// v2.2.1
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 20/Mar/2018
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 18/Abr/2025
|
|
7
7
|
|
|
8
8
|
.rls-app {
|
|
9
9
|
&__body {
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
height: var(--rls-sizing-x1);
|
|
94
94
|
background-image: linear-gradient(
|
|
95
95
|
to right,
|
|
96
|
-
var(--rls-app-
|
|
96
|
+
var(--rls-app-color-300) 50%,
|
|
97
97
|
rgba(255, 255, 255, 0) 0%
|
|
98
98
|
);
|
|
99
99
|
background-position: bottom;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// Rolster Technology Datatable Component
|
|
2
|
-
// v2.3.
|
|
2
|
+
// v2.3.1
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 20/Mar/2018
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 18/Abr/2025
|
|
7
7
|
|
|
8
8
|
@mixin datatable_cell_control() {
|
|
9
9
|
--rlc-avatar-border-radius: var(--rls-sizing-x3);
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
display: flex;
|
|
125
125
|
height: var(--rls-sizing-x20);
|
|
126
126
|
line-height: var(--rls-sizing-x20);
|
|
127
|
-
color: var(--rls-app-color-
|
|
127
|
+
color: var(--rls-app-color-900);
|
|
128
128
|
font-weight: var(--rlc-datatable-header-font-weight);
|
|
129
129
|
font-size: var(--rlc-datatable-font-size);
|
|
130
130
|
letter-spacing: var(--rlc-datatable-letter-spacing);
|
|
@@ -256,6 +256,10 @@
|
|
|
256
256
|
--rlc-fieldlist-element-padding: var(--rls-sizing-x4);
|
|
257
257
|
--rlc-fieldlist-suggestions-bottom: var(--rls-sizing-x24);
|
|
258
258
|
--rlc-fieldlist-suggestions-top: var(--rls-sizing-x24);
|
|
259
|
+
|
|
260
|
+
&__suggestions {
|
|
261
|
+
z-index: var(--rls-z-index-2);
|
|
262
|
+
}
|
|
259
263
|
}
|
|
260
264
|
|
|
261
265
|
.rls-poster {
|
|
@@ -274,7 +278,9 @@
|
|
|
274
278
|
}
|
|
275
279
|
|
|
276
280
|
&__floating {
|
|
277
|
-
--pvt-action-tooltip-transform: translate(
|
|
281
|
+
--pvt-action-tooltip-transform: translate(
|
|
282
|
+
calc(-100% - var(--rls-sizing-x4))
|
|
283
|
+
);
|
|
278
284
|
|
|
279
285
|
position: absolute;
|
|
280
286
|
display: flex;
|
|
@@ -285,7 +291,7 @@
|
|
|
285
291
|
align-items: center;
|
|
286
292
|
z-index: var(--rls-z-index-2);
|
|
287
293
|
padding: 0rem var(--rls-sizing-x6);
|
|
288
|
-
background: var(--rls-app-
|
|
294
|
+
background: var(--rls-app-color-100);
|
|
289
295
|
border-right: none;
|
|
290
296
|
transform: translateX(calc(100% - var(--rls-sizing-x4)));
|
|
291
297
|
transition: transform 240ms var(--rls-standard-curve);
|
|
@@ -295,13 +301,15 @@
|
|
|
295
301
|
}
|
|
296
302
|
|
|
297
303
|
&--invested {
|
|
298
|
-
--pvt-action-tooltip-transform: translate(
|
|
304
|
+
--pvt-action-tooltip-transform: translate(
|
|
305
|
+
calc(100% + var(--rls-sizing-x4))
|
|
306
|
+
);
|
|
299
307
|
|
|
300
308
|
right: initial;
|
|
301
309
|
left: 0;
|
|
302
310
|
transform: translateX(calc(-100% + var(--rls-sizing-x6)));
|
|
303
311
|
border-left: none;
|
|
304
|
-
border-right: 2px dashed var(--rls-app-
|
|
312
|
+
border-right: 2px dashed var(--rls-app-color-300);
|
|
305
313
|
}
|
|
306
314
|
|
|
307
315
|
.rls-button-action__tooltip {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// Rolster Technology FieldBox Component
|
|
2
|
-
// v2.1.
|
|
2
|
+
// v2.1.4
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 08/Sep/2022
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 18/Abr/2025
|
|
7
7
|
|
|
8
8
|
.rls-field-box {
|
|
9
9
|
--pvt-label-opacity: 1;
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
transition: height 160ms 0ms var(--rls-standard-curve);
|
|
19
19
|
|
|
20
20
|
&--focused {
|
|
21
|
-
--rlc-fieldbox-body-background: var(--rls-app-
|
|
21
|
+
--rlc-fieldbox-body-background: var(--rls-app-color-050);
|
|
22
22
|
--rlc-fieldbox-body-border: var(--rls-theme-border-1-500);
|
|
23
23
|
--rlc-fieldbox-body-shadow: 0px 0px 0px 3px var(--rls-theme-shadow-500);
|
|
24
24
|
--rlc-fieldbox-label-font-color: var(--rls-theme-color-500);
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
&--disabled {
|
|
35
|
-
--rlc-fieldbox-body-background: var(--rls-app-
|
|
35
|
+
--rlc-fieldbox-body-background: var(--rls-app-color-050);
|
|
36
36
|
--pvt-body-opacity: 0.75;
|
|
37
37
|
--pvt-label-opacity: 0.5;
|
|
38
38
|
}
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
&__helper {
|
|
78
|
-
color: var(--rls-app-color-
|
|
78
|
+
color: var(--rls-app-color-400);
|
|
79
79
|
padding: 0rem 5rem;
|
|
80
80
|
box-sizing: border-box;
|
|
81
81
|
font-weight: var(--rls-font-weight-medium);
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
// Rolster Technology ListField Component
|
|
2
|
-
// v1.3.
|
|
2
|
+
// v1.3.7
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 20/Mar/2018
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 18/Abr/2025
|
|
7
7
|
|
|
8
8
|
.rls-field-list {
|
|
9
|
-
--pvt-action-font-color: var(--rls-app-color-
|
|
10
|
-
--pvt-list-height:
|
|
11
|
-
--pvt-list-max-height:
|
|
9
|
+
--pvt-action-font-color: var(--rls-app-color-600);
|
|
10
|
+
--pvt-list-height: auto;
|
|
11
|
+
--pvt-list-max-height: 160rem;
|
|
12
12
|
--pvt-list-opacity: 0;
|
|
13
13
|
--pvt-list-transform: none;
|
|
14
14
|
--pvt-backdrop-opacity: 0;
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
&.rls-field-box--active {
|
|
23
23
|
--rlc-fieldbox-body-shadow: 0px 0px 0px 3px var(--box-shadow-theme-100);
|
|
24
24
|
--rlc-fieldbox-body-border: var(--rls-theme-border-1-300);
|
|
25
|
-
--rlc-fieldbox-label-font-color: var(--rls-app-color-
|
|
25
|
+
--rlc-fieldbox-label-font-color: var(--rls-app-color-600);
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
&.rls-field-box--disabled {
|
|
29
|
-
--pvt-action-font-color: var(--rls-app-color-
|
|
29
|
+
--pvt-action-font-color: var(--rls-app-color-400);
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
&__control {
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
color: var(--rlc-input-font-color);
|
|
46
46
|
|
|
47
47
|
&::placeholder {
|
|
48
|
-
color: var(--rls-app-color-
|
|
48
|
+
color: var(--rls-app-color-400);
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
&::selection {
|
|
52
52
|
background: var(--rls-theme-color-700);
|
|
53
|
-
color: var(--rls-
|
|
53
|
+
color: var(--rls-app-color-050);
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
&:disabled {
|
|
@@ -75,21 +75,19 @@
|
|
|
75
75
|
bottom: initial;
|
|
76
76
|
left: 0rem;
|
|
77
77
|
width: 100%;
|
|
78
|
-
height:
|
|
78
|
+
height: auto;
|
|
79
79
|
max-height: var(--pvt-list-max-height);
|
|
80
80
|
opacity: 0;
|
|
81
|
+
z-index: -1;
|
|
81
82
|
overflow: hidden;
|
|
82
|
-
z-index: var(--rls-z-index-2);
|
|
83
|
-
padding-bottom: var(--rls-sizing-x6);
|
|
84
83
|
|
|
85
84
|
&--visible {
|
|
86
|
-
--pvt-list-max-height: 160rem;
|
|
87
85
|
--pvt-list-height: auto;
|
|
86
|
+
--pvt-list-max-height: 160rem;
|
|
88
87
|
--pvt-list-opacity: 1;
|
|
89
88
|
|
|
90
89
|
overflow: initial;
|
|
91
90
|
opacity: 1;
|
|
92
|
-
height: auto;
|
|
93
91
|
z-index: var(--rls-z-index-8);
|
|
94
92
|
}
|
|
95
93
|
|
|
@@ -110,7 +108,7 @@
|
|
|
110
108
|
opacity: var(--pvt-list-opacity);
|
|
111
109
|
overflow: hidden;
|
|
112
110
|
z-index: var(--rls-z-index-2);
|
|
113
|
-
background: var(--rls-app-
|
|
111
|
+
background: var(--rls-app-color-050);
|
|
114
112
|
border: var(--rls-theme-border-1-500);
|
|
115
113
|
box-shadow: 0px 0px 0px 3px var(--rls-theme-shadow-500);
|
|
116
114
|
transform: var(--pvt-list-transform);
|
|
@@ -139,7 +137,7 @@
|
|
|
139
137
|
box-sizing: border-box;
|
|
140
138
|
|
|
141
139
|
&:hover {
|
|
142
|
-
background: var(--rls-app-
|
|
140
|
+
background: var(--rls-app-color-100);
|
|
143
141
|
}
|
|
144
142
|
|
|
145
143
|
&:not(:hover):focus {
|
|
@@ -170,12 +168,12 @@
|
|
|
170
168
|
label {
|
|
171
169
|
display: block;
|
|
172
170
|
width: 100%;
|
|
173
|
-
color: var(--rls-app-color-
|
|
171
|
+
color: var(--rls-app-color-600);
|
|
174
172
|
}
|
|
175
173
|
|
|
176
174
|
p {
|
|
177
175
|
white-space: initial;
|
|
178
|
-
color: var(--rls-app-color-
|
|
176
|
+
color: var(--rls-app-color-600);
|
|
179
177
|
}
|
|
180
178
|
}
|
|
181
179
|
}
|
package/scss/components.scss
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
// Rolster Technology Components
|
|
2
|
-
// v2.0
|
|
2
|
+
// v2.1.0
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 13/Abr/2023
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 18/Abr/2025
|
|
7
7
|
|
|
8
8
|
@use 'sass:meta';
|
|
9
9
|
|
|
10
10
|
:root {
|
|
11
|
-
--rlc-app-content-background: var(--rls-app-
|
|
12
|
-
--rlc-app-header-background: var(--rls-app-
|
|
11
|
+
--rlc-app-content-background: var(--rls-app-color-050);
|
|
12
|
+
--rlc-app-header-background: var(--rls-app-color-200);
|
|
13
13
|
--rlc-app-header-height: var(--rls-sizing-x28);
|
|
14
|
-
--rlc-app-navbar-background: var(--rls-app-
|
|
14
|
+
--rlc-app-navbar-background: var(--rls-app-color-200);
|
|
15
15
|
--rlc-app-navbar-width: 160rem;
|
|
16
16
|
|
|
17
|
-
--rlc-action-color: var(--rls-app-color-
|
|
17
|
+
--rlc-action-color: var(--rls-app-color-600);
|
|
18
18
|
--rlc-action-ripple-color: var(--rlc-action-color);
|
|
19
19
|
--rlc-action-ripple-dimension: var(--rls-sizing-x18);
|
|
20
20
|
--rlc-action-ripple-position: -9rem;
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
--rlc-fieldbox-body-shadow: none;
|
|
73
73
|
--rlc-fieldbox-error-display: block;
|
|
74
74
|
--rlc-fieldbox-label-display: block;
|
|
75
|
-
--rlc-fieldbox-label-font-color: var(--rls-app-color-
|
|
75
|
+
--rlc-fieldbox-label-font-color: var(--rls-app-color-600);
|
|
76
76
|
|
|
77
77
|
--rlc-fieldlist-action-dimension: var(--rls-sizing-x12);
|
|
78
78
|
--rlc-fieldlist-control-font-size: var(--rlc-input-font-size);
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
--rlc-icon-color: inherit;
|
|
88
88
|
--rlc-icon-dimesion: var(--rls-sizing-x12);
|
|
89
89
|
|
|
90
|
-
--rlc-input-font-color: var(--rls-app-color-
|
|
90
|
+
--rlc-input-font-color: var(--rls-app-color-900);
|
|
91
91
|
--rlc-input-font-size: var(--rls-input-font-size);
|
|
92
92
|
--rlc-input-letter-spacing: var(--rls-input-letter-spacing);
|
|
93
93
|
--rlc-input-height: var(--rls-sizing-x12);
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
|
|
129
129
|
* {
|
|
130
130
|
scrollbar-width: thin;
|
|
131
|
-
scrollbar-color: var(--rls-theme-color-300) var(--rls-app-
|
|
131
|
+
scrollbar-color: var(--rls-theme-color-300) var(--rls-app-color-200);
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
@include meta.load-css('components/app');
|