@rolster/styles-foundations 2.4.13 → 2.4.14
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
CHANGED
package/scss/components/app.scss
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// Rolster Technology App Component
|
|
2
|
-
// v2.2.
|
|
2
|
+
// v2.2.3
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 20/Mar/2018
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 23/Abr/2025
|
|
7
7
|
|
|
8
8
|
.rls-app {
|
|
9
9
|
&__body {
|
|
@@ -19,6 +19,10 @@
|
|
|
19
19
|
&--snackbar {
|
|
20
20
|
--rlc-snackbar-left: calc(50% + calc(var(--rlc-app-navbar-width) / 2));
|
|
21
21
|
}
|
|
22
|
+
|
|
23
|
+
&--navbar-condense {
|
|
24
|
+
--rlc-app-navbar-width: 36rem;
|
|
25
|
+
}
|
|
22
26
|
}
|
|
23
27
|
|
|
24
28
|
&__header {
|
|
@@ -64,8 +68,9 @@
|
|
|
64
68
|
height: 100%;
|
|
65
69
|
margin: 0rem;
|
|
66
70
|
padding: 0rem;
|
|
67
|
-
overflow: auto;
|
|
68
71
|
box-sizing: border-box;
|
|
72
|
+
overflow-x: hidden;
|
|
73
|
+
overflow-y: auto;
|
|
69
74
|
border-radius: 0rem 0rem var(--rls-sizing-x16) 0rem;
|
|
70
75
|
background: var(--rlc-app-navbar-background);
|
|
71
76
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Rolster Technology Datatable Component
|
|
2
|
-
// v2.3.
|
|
2
|
+
// v2.3.2
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 20/Mar/2018
|
|
@@ -314,14 +314,14 @@
|
|
|
314
314
|
}
|
|
315
315
|
|
|
316
316
|
&__summary {
|
|
317
|
-
--pvt-datatable-record-background: var(--rls-
|
|
317
|
+
--pvt-datatable-record-background: var(--rls-app-color-200);
|
|
318
318
|
|
|
319
319
|
padding-right: var(--pvt-header-padding-right);
|
|
320
320
|
box-sizing: border-box;
|
|
321
321
|
}
|
|
322
322
|
|
|
323
323
|
&__footer {
|
|
324
|
-
--pvt-datatable-record-background: var(--rls-
|
|
324
|
+
--pvt-datatable-record-background: var(--rls-app-color-200);
|
|
325
325
|
|
|
326
326
|
position: relative;
|
|
327
327
|
width: 100%;
|
package/scss/components.scss
CHANGED
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
|
|
10
10
|
:root {
|
|
11
11
|
--rlc-app-content-background: var(--rls-app-color-050);
|
|
12
|
-
--rlc-app-header-background: var(--rls-app-color-
|
|
12
|
+
--rlc-app-header-background: var(--rls-app-color-100);
|
|
13
13
|
--rlc-app-header-height: var(--rls-sizing-x28);
|
|
14
|
-
--rlc-app-navbar-background: var(--rls-app-color-
|
|
14
|
+
--rlc-app-navbar-background: var(--rls-app-color-100);
|
|
15
15
|
--rlc-app-navbar-width: 160rem;
|
|
16
16
|
|
|
17
17
|
--rlc-action-color: var(--rls-app-color-600);
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
--rlc-datatable-letter-spacing: 0.0625em;
|
|
59
59
|
--rlc-datatable-font-size: 7rem;
|
|
60
60
|
--rlc-datatable-footer-background: var(--rls-theme-color-050);
|
|
61
|
-
--rlc-datatable-header-background: var(--rls-
|
|
61
|
+
--rlc-datatable-header-background: var(--rls-theme-color-100);
|
|
62
62
|
--rlc-datatable-header-font-weight: var(--rls-font-weight-semibold);
|
|
63
63
|
--rlc-datatable-padding-scroll: 0rem;
|
|
64
64
|
--rlc-datatable-record-background: var(--rls-app-color-100);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Rolster Technology Colors Foundations
|
|
2
|
-
// v2.6.
|
|
2
|
+
// v2.6.2
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 03/Mar/2022
|
|
@@ -28,6 +28,28 @@
|
|
|
28
28
|
|
|
29
29
|
--rls-app-color-050: rgb(255, 255, 255);
|
|
30
30
|
|
|
31
|
+
*[app-theme='dark'] {
|
|
32
|
+
--rls-app-color-050: rgb(40, 50, 61);
|
|
33
|
+
|
|
34
|
+
--rls-app-color-100: rgb(52, 57, 87);
|
|
35
|
+
|
|
36
|
+
--rls-app-color-200: rgb(72, 77, 107);
|
|
37
|
+
|
|
38
|
+
--rls-app-color-300: rgb(98, 111, 155);
|
|
39
|
+
|
|
40
|
+
--rls-app-color-400: rgb(128, 141, 190);
|
|
41
|
+
|
|
42
|
+
--rls-app-color-500: rgb(189, 192, 220);
|
|
43
|
+
|
|
44
|
+
--rls-app-color-600: rgb(214, 217, 240);
|
|
45
|
+
|
|
46
|
+
--rls-app-color-700: rgb(229, 232, 245);
|
|
47
|
+
|
|
48
|
+
--rls-app-color-800: rgb(244, 247, 255);
|
|
49
|
+
|
|
50
|
+
--rls-app-color-900: rgb(255, 255, 255);
|
|
51
|
+
}
|
|
52
|
+
|
|
31
53
|
@include helpers.rolster-theme(
|
|
32
54
|
'primary',
|
|
33
55
|
#0b2446,
|
|
@@ -223,25 +245,3 @@
|
|
|
223
245
|
#f5f5f1
|
|
224
246
|
);
|
|
225
247
|
}
|
|
226
|
-
|
|
227
|
-
*[app-theme='dark'] {
|
|
228
|
-
--rls-app-color-050: rgb(40, 50, 61);
|
|
229
|
-
|
|
230
|
-
--rls-app-color-100: rgb(52, 57, 87);
|
|
231
|
-
|
|
232
|
-
--rls-app-color-200: rgb(72, 77, 107);
|
|
233
|
-
|
|
234
|
-
--rls-app-color-300: rgb(98, 111, 155);
|
|
235
|
-
|
|
236
|
-
--rls-app-color-400: rgb(128, 141, 190);
|
|
237
|
-
|
|
238
|
-
--rls-app-color-500: rgb(189, 192, 220);
|
|
239
|
-
|
|
240
|
-
--rls-app-color-600: rgb(214, 217, 240);
|
|
241
|
-
|
|
242
|
-
--rls-app-color-700: rgb(229, 232, 245);
|
|
243
|
-
|
|
244
|
-
--rls-app-color-800: rgb(244, 247, 255);
|
|
245
|
-
|
|
246
|
-
--rls-app-color-900: rgb(255, 255, 255);
|
|
247
|
-
}
|