@rolster/styles-foundations 2.6.3 → 2.6.5
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/dist/styles.css +33 -7
- package/dist/styles.css.map +1 -1
- package/dist/styles.min.css +2 -2
- package/dist/styles.rtl.css +33 -7
- package/dist/styles.rtl.min.css +2 -2
- package/package.json +2 -2
- package/scss/components/data-table.scss +3 -2
- package/scss/foundations/colors.scss +9 -9
- package/scss/foundations/flex-boxs.scss +32 -2
- package/scss/utilities/layout.scss +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rolster/styles-foundations",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.5",
|
|
4
4
|
"description": "Front-end style pack to develop responsive and mobile projects on the web with Rolster.",
|
|
5
5
|
"sass": "scss/styles.scss",
|
|
6
6
|
"style": "dist/styles.css",
|
|
@@ -31,6 +31,6 @@
|
|
|
31
31
|
},
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
|
-
"url": "https://github.com/rolster-developments/styles-foundations"
|
|
34
|
+
"url": "git+https://github.com/rolster-developments/styles-foundations"
|
|
35
35
|
}
|
|
36
36
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// Rolster Technology Datatable Component
|
|
2
|
-
// v2.6.
|
|
2
|
+
// v2.6.2
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 20/Mar/2018
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 13/Nov/2025
|
|
7
7
|
|
|
8
8
|
@mixin datatable_cell() {
|
|
9
9
|
--rlc-field-box-body-background: transparent;
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
|
|
46
46
|
--rlc-switch-max-width: var(--rls-sizing-x16);
|
|
47
47
|
--rlc-switch-component-height: var(--rls-sizing-x8);
|
|
48
|
+
--rlc-switch-element-width: var(--rls-sizing-x6);
|
|
48
49
|
--rlc-switch-element-height: var(--rls-sizing-x4);
|
|
49
50
|
--rlc-switch-element-radius: var(--rls-sizing-x4);
|
|
50
51
|
|
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
// Rolster Technology Colors Foundations
|
|
2
|
-
// v2.6.
|
|
2
|
+
// v2.6.6
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 03/Mar/2022
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 13/Nov/2025
|
|
7
7
|
|
|
8
8
|
@use 'helpers' as helpers;
|
|
9
9
|
|
|
10
10
|
body {
|
|
11
|
-
--rls-app-color-900: var(--rls-project-color-900, #
|
|
11
|
+
--rls-app-color-900: var(--rls-project-color-900, #26303b);
|
|
12
12
|
|
|
13
|
-
--rls-app-color-800: var(--rls-project-color-800, #
|
|
13
|
+
--rls-app-color-800: var(--rls-project-color-800, #323755);
|
|
14
14
|
|
|
15
|
-
--rls-app-color-700: var(--rls-project-color-700, #
|
|
15
|
+
--rls-app-color-700: var(--rls-project-color-700, #464b60);
|
|
16
16
|
|
|
17
|
-
--rls-app-color-600: var(--rls-project-color-600, #
|
|
17
|
+
--rls-app-color-600: var(--rls-project-color-600, #616e99);
|
|
18
18
|
|
|
19
|
-
--rls-app-color-500: var(--rls-project-color-500, #
|
|
19
|
+
--rls-app-color-500: var(--rls-project-color-500, #828fbf);
|
|
20
20
|
|
|
21
21
|
--rls-app-color-400: var(--rls-project-color-400, #bdc0dc);
|
|
22
22
|
|
|
23
23
|
--rls-app-color-300: var(--rls-project-color-300, #d6d9f0);
|
|
24
24
|
|
|
25
|
-
--rls-app-color-200: var(--rls-project-color-200, #
|
|
25
|
+
--rls-app-color-200: var(--rls-project-color-200, #e7eaf7);
|
|
26
26
|
|
|
27
|
-
--rls-app-color-100: var(--rls-project-color-100, #
|
|
27
|
+
--rls-app-color-100: var(--rls-project-color-100, #f7f9ff);
|
|
28
28
|
|
|
29
29
|
--rls-app-color-050: var(--rls-project-color-050, #ffffff);
|
|
30
30
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// Rolster Technology FlexBoxs Foundations
|
|
2
|
-
// v1.0.
|
|
2
|
+
// v1.0.1
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 08/Nov/2025
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 13/Nov/2025
|
|
7
7
|
|
|
8
8
|
@mixin flex_row($gap) {
|
|
9
9
|
display: flex;
|
|
@@ -64,3 +64,33 @@
|
|
|
64
64
|
.rls-flex-column-16 {
|
|
65
65
|
@include flex_column(16rem);
|
|
66
66
|
}
|
|
67
|
+
|
|
68
|
+
.rls-flex-justify-content-start {
|
|
69
|
+
display: flex;
|
|
70
|
+
justify-content: flex-start;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.rls-flex-justify-content-center {
|
|
74
|
+
display: flex;
|
|
75
|
+
justify-content: center;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.rls-flex-justify-content-end {
|
|
79
|
+
display: flex;
|
|
80
|
+
justify-content: flex-end;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.rls-flex-aligns-items-start {
|
|
84
|
+
display: flex;
|
|
85
|
+
align-items: flex-start;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.rls-flex-aligns-items-center {
|
|
89
|
+
display: flex;
|
|
90
|
+
align-items: center;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.rls-flex-aligns-items-end {
|
|
94
|
+
display: flex;
|
|
95
|
+
align-items: flex-end;
|
|
96
|
+
}
|