@qrsln/lootstrap 22.2.2-beta.0 → 22.3.1-beta.0
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/Readme.md +17 -6
- package/dist/css/lootstrap.css +10649 -9826
- package/dist/css/lootstrap.css.map +1 -1
- package/dist/css/lootstrap.min.css +3 -3
- package/package.json +5 -1
- package/scss/Abstracts/Functions/_color-customized.scss +62 -0
- package/scss/Abstracts/Functions/_color.scss +108 -65
- package/scss/Abstracts/Functions/_helpers.scss +2 -2
- package/scss/Abstracts/Functions/_shadow.scss +4 -4
- package/scss/Abstracts/Mixins/_color.scss +126 -136
- package/scss/Abstracts/Mixins/_theme.scss +163 -0
- package/scss/Abstracts/_dir-functions.scss +1 -0
- package/scss/Abstracts/_dir-mixins.scss +1 -4
- package/scss/Abstracts/_variables.scss +96 -35
- package/scss/Architecture/Components/TODO/_tables.scss +3 -3
- package/scss/Architecture/Components/_alert.scss +93 -19
- package/scss/Architecture/Components/_badge.scss +40 -0
- package/scss/Architecture/Components/_breadcrumb.scss +11 -10
- package/scss/Architecture/Components/_button-close.scss +11 -2
- package/scss/Architecture/Components/_buttons.scss +22 -21
- package/scss/Architecture/Components/_calendar.scss +67 -55
- package/scss/Architecture/Components/_card.scss +9 -9
- package/scss/Architecture/Components/_caret.scss +20 -20
- package/scss/Architecture/Components/_dialog.scss +10 -7
- package/scss/Architecture/Components/_list.scss +13 -13
- package/scss/Architecture/Components/_nav.scss +14 -12
- package/scss/Architecture/Components/_pagination.scss +16 -10
- package/scss/Architecture/Components/_progress.scss +6 -5
- package/scss/Architecture/Components/_rating.scss +15 -14
- package/scss/Architecture/Components/_scrollbar.scss +59 -29
- package/scss/Architecture/Components/_spinners.scss +0 -1
- package/scss/Architecture/Components/_timeline.scss +6 -5
- package/scss/Architecture/Components/_timer.scss +5 -4
- package/scss/Architecture/Components/_toasts.scss +72 -12
- package/scss/Architecture/Components/_tooltip.scss +135 -0
- package/scss/Architecture/Components/_tree-view.scss +13 -12
- package/scss/Architecture/Forms/_form-check.scss +82 -81
- package/scss/Architecture/Forms/_input-fields.scss +36 -37
- package/scss/Architecture/Forms/_selects.scss +3 -1
- package/scss/Architecture/{_anim.scss → Roots/_anim.scss} +17 -7
- package/scss/Architecture/Roots/_avatar.scss +296 -0
- package/scss/Architecture/Roots/_classified.scss +67 -0
- package/scss/Architecture/{_reboot.scss → Roots/_reboot.scss} +6 -9
- package/scss/Architecture/Roots/_root.scss +49 -0
- package/scss/Architecture/Roots/_shape.scss +92 -0
- package/scss/Architecture/Roots/_skeleton.scss +271 -0
- package/scss/Architecture/{Svg/_icons.scss → Roots/_svg.scss} +0 -0
- package/scss/Architecture/Utils/_border.scss +3 -1
- package/scss/Architecture/Utils/_color.scss +71 -88
- package/scss/Architecture/Utils/_filters.scss +4 -1
- package/scss/Architecture/Utils/_position.scss +43 -0
- package/scss/Architecture/Utils/_spacing.scss +7 -21
- package/scss/Architecture/Utils/_text.scss +42 -109
- package/scss/Architecture/Utils/_utilities.scss +55 -21
- package/scss/Architecture/__color-scheme.scss +80 -0
- package/scss/Architecture/__dir-components.scss +5 -7
- package/scss/Architecture/__dir-roots.scss +17 -0
- package/scss/Architecture/__dir-utils.scss +2 -1
- package/scss/Architecture/_theme.scss +2 -1
- package/scss/_header.scss +2 -2
- package/scss/lootstrap.scss +2 -5
- package/dist/css/test.css +0 -275
- package/dist/css/test.css.map +0 -1
- package/scss/Architecture/Components/TODO/_badge.scss +0 -7
- package/scss/Architecture/Components/TODO/_tooltip.scss +0 -7
- package/scss/Architecture/Components/_themed.scss +0 -45
- package/scss/Architecture/__dir-svg.scss +0 -7
- package/scss/Architecture/__theme-colors.scss +0 -51
- package/scss/Architecture/__theme-customized.scss +0 -51
- package/scss/Architecture/_root.scss +0 -45
- package/scss/test.scss +0 -37
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
// ===========================================================================
|
|
2
2
|
// Utils - Spacing
|
|
3
|
+
// Margin, Padding
|
|
3
4
|
// ===========================================================================
|
|
4
5
|
|
|
5
|
-
/*
|
|
6
|
-
// Margin, Padding
|
|
7
|
-
*/
|
|
8
6
|
// Values: Prefix: *, Properties: *, Important: *, Responsive: *, Values: *, Values: *, Pseudo:*
|
|
9
7
|
$utilities-Spacing: () !default;
|
|
10
8
|
$utilities-Spacing: (
|
|
@@ -20,27 +18,17 @@ $utilities-Spacing: (
|
|
|
20
18
|
),
|
|
21
19
|
// Margin directions
|
|
22
20
|
"M-top": (Prefix: MT, Properties: margin-top, Important: true, Responsive: true, Values: map-merge($spacers-map, (auto: auto))),
|
|
23
|
-
"M-right": (Prefix: MR, Properties: margin-right, Important: true, Responsive: true, Values: map-merge($spacers-map, (auto: auto))),
|
|
24
21
|
"M-end": (Prefix: ME, Properties: margin-right, Important: true, Responsive: true, Values: map-merge($spacers-map, (auto: auto))),
|
|
25
22
|
"M-bottom": (Prefix: MB, Properties: margin-bottom, Important: true, Responsive: true, Values: map-merge($spacers-map, (auto: auto))),
|
|
26
|
-
"M-left": (Prefix: ML, Properties: margin-left, Important: true, Responsive: true, Values: map-merge($spacers-map, (auto: auto))),
|
|
27
23
|
"M-start": (Prefix: MS, Properties: margin-left, Important: true, Responsive: true, Values: map-merge($spacers-map, (auto: auto))),
|
|
28
24
|
// Negative Margin
|
|
29
|
-
"Neg M": (
|
|
30
|
-
|
|
31
|
-
),
|
|
32
|
-
"Neg MX": (
|
|
33
|
-
Prefix: MX, Properties: margin-right margin-left, Important: true, Responsive: true, Values: $negative-spacers
|
|
34
|
-
),
|
|
35
|
-
"Neg MY": (
|
|
36
|
-
Prefix: MY, Properties: margin-top margin-bottom, Important: true, Responsive: true, Values: $negative-spacers
|
|
37
|
-
),
|
|
25
|
+
"Neg M": (Prefix: M, Properties: margin, Important: true, Responsive: true, Values: $negative-spacers),
|
|
26
|
+
"Neg MX": (Prefix: MX, Properties: margin-right margin-left, Important: true, Responsive: true, Values: $negative-spacers),
|
|
27
|
+
"Neg MY": (Prefix: MY, Properties: margin-top margin-bottom, Important: true, Responsive: true, Values: $negative-spacers),
|
|
38
28
|
// Negative Margin directions
|
|
39
29
|
"Neg M-top": (Prefix: MT, Properties: margin-top, Important: true, Responsive: true, Values: $negative-spacers),
|
|
40
|
-
"Neg M-right": (Prefix: MR, Properties: margin-right, Important: true, Responsive: true, Values: $negative-spacers),
|
|
41
30
|
"Neg M-end": (Prefix: ME, Properties: margin-right, Important: true, Responsive: true, Values: $negative-spacers),
|
|
42
31
|
"Neg M-bottom": (Prefix: MB, Properties: margin-bottom, Important: true, Responsive: true, Values: $negative-spacers),
|
|
43
|
-
"Neg M-left": (Prefix: ML, Properties: margin-left, Important: true, Responsive: true, Values: $negative-spacers),
|
|
44
32
|
"Neg M-start": (Prefix: MS, Properties: margin-left, Important: true, Responsive: true, Values: $negative-spacers),
|
|
45
33
|
// Padding
|
|
46
34
|
"P": (Prefix: P, Properties: padding, Important: true, Responsive: true, Values: $spacers-map),
|
|
@@ -48,10 +36,8 @@ $utilities-Spacing: (
|
|
|
48
36
|
"PY": (Prefix: PY, Properties: padding-top padding-bottom, Important: true, Responsive: true, Values: $spacers-map),
|
|
49
37
|
// Padding directions
|
|
50
38
|
"P-top": (Prefix: PT, Properties: padding-top, Important: true, Responsive: true, Values: $spacers-map),
|
|
51
|
-
"P-right": (Prefix: PR, Properties: padding-right, Important: true, Responsive: true, Values: $spacers-map),
|
|
52
39
|
"P-end": (Prefix: PE, Properties: padding-right, Important: true, Responsive: true, Values: $spacers-map),
|
|
53
40
|
"P-bottom": (Prefix: PB, Properties: padding-bottom, Important: true, Responsive: true, Values: $spacers-map),
|
|
54
|
-
"P-left": (Prefix: PL, Properties: padding-left, Important: true, Responsive: true, Values: $spacers-map),
|
|
55
41
|
"P-start": (Prefix: PS, Properties: padding-left, Important: true, Responsive: true, Values: $spacers-map),
|
|
56
42
|
);
|
|
57
43
|
|
|
@@ -64,10 +50,10 @@ $utilities-Spacing: (
|
|
|
64
50
|
/*
|
|
65
51
|
Margin .M-<0-5>, .M-auto {}
|
|
66
52
|
Margin X, Y .M<X,Y>-<0-5>, .M<X,Y>-auto {}
|
|
67
|
-
Margin directions .M<T,
|
|
53
|
+
Margin directions .M<T,E,B,S>-<0-5>, .M<T,E,B,S>-auto {}
|
|
68
54
|
Negative Margin .M-N<0-5>
|
|
69
55
|
Negative Margin X, Y .M<X,Y>-N<0-5>
|
|
70
|
-
Negative M directions .M<T,
|
|
56
|
+
Negative M directions .M<T,E,B,S>-N<0-5> {}
|
|
71
57
|
*/
|
|
72
58
|
|
|
73
59
|
// ===========================================================================
|
|
@@ -77,5 +63,5 @@ Negative M directions .M<T,R,E,B,L,S>-N<0-5> {}
|
|
|
77
63
|
/*
|
|
78
64
|
Padding .P-<0-5> {}
|
|
79
65
|
Padding X, Y .P<X,Y>-<0-5> {}
|
|
80
|
-
Padding directions .P<T,
|
|
66
|
+
Padding directions .P<T,E,B,S>-<0-5> {}
|
|
81
67
|
*/
|
|
@@ -2,129 +2,62 @@
|
|
|
2
2
|
// Utils - Text
|
|
3
3
|
// ===========================================================================
|
|
4
4
|
|
|
5
|
-
//TODO...
|
|
6
|
-
|
|
7
5
|
// Values: Prefix: *, Properties: *, Important: *, Responsive: *, Values: *, Values: *, Pseudo:*
|
|
8
6
|
$utilities-Text: () !default;
|
|
9
7
|
$utilities-Text: (
|
|
10
|
-
// font-family
|
|
11
|
-
// "font-family": (
|
|
12
|
-
// Prefix: Font, Properties: font-family, Important: true,
|
|
13
|
-
// Values: (monospace: var(--#{$variable-prefix}font-monospace))
|
|
14
|
-
// ),
|
|
15
|
-
// "font-size": (
|
|
16
|
-
// Prefix: FS, Properties: font-size, Important: true,
|
|
17
|
-
// Values: $font-sizes
|
|
18
|
-
// ),
|
|
19
|
-
"font-style": (
|
|
20
|
-
Prefix: FST, Properties: font-style, Important: true,
|
|
21
|
-
Values: italic normal
|
|
22
|
-
),
|
|
23
|
-
"font-weight": (
|
|
24
|
-
Prefix: FW, Properties: font-weight, Important: true,
|
|
25
|
-
Values: (
|
|
26
|
-
light: $font-weight-light,
|
|
27
|
-
lighter: $font-weight-lighter,
|
|
28
|
-
normal: $font-weight-normal,
|
|
29
|
-
bold: $font-weight-bold,
|
|
30
|
-
bolder: $font-weight-bolder
|
|
31
|
-
)
|
|
32
|
-
),
|
|
33
|
-
//"line-height": (
|
|
34
|
-
// Prefix: LH, Properties: line-height, Important: true,
|
|
35
|
-
// Values: (
|
|
36
|
-
// 1: 1,
|
|
37
|
-
// sm: $line-height-sm,
|
|
38
|
-
// base: $line-height-base,
|
|
39
|
-
// lg: $line-height-lg,
|
|
40
|
-
// )
|
|
41
|
-
//),
|
|
42
8
|
"Text-align": (
|
|
43
|
-
Prefix:
|
|
44
|
-
Values: (
|
|
9
|
+
Prefix: Text, Properties: text-align, Important: true, Responsive: true,
|
|
10
|
+
Values: (start: left, center: center, end: right)
|
|
11
|
+
),
|
|
12
|
+
"Text-transform": (
|
|
13
|
+
Prefix: Text, Properties: text-transform, Important: true,
|
|
14
|
+
Values: lowercase uppercase capitalize
|
|
45
15
|
),
|
|
46
16
|
"Text-decoration": (
|
|
47
|
-
Prefix:
|
|
17
|
+
Prefix: Text-decoration, Properties: text-decoration, Important: true,
|
|
18
|
+
Values: (none, underline, line-through, overline,)
|
|
19
|
+
),
|
|
20
|
+
// Font
|
|
21
|
+
"Font-style": (
|
|
22
|
+
Prefix: FST, Properties: font-style, Important: true,
|
|
23
|
+
Values: italic normal
|
|
24
|
+
),
|
|
25
|
+
"Font-weight": (
|
|
26
|
+
Prefix: FW, Properties: font-weight, Important: true,
|
|
48
27
|
Values: (
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
blink:blink,
|
|
55
|
-
wavy:underline overline wavy,
|
|
28
|
+
light: $font-weight-light,
|
|
29
|
+
lighter: $font-weight-lighter,
|
|
30
|
+
normal: $font-weight-normal,
|
|
31
|
+
bold: $font-weight-bold,
|
|
32
|
+
bolder: $font-weight-bolder
|
|
56
33
|
)
|
|
57
34
|
),
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
Values: normal nowrap
|
|
35
|
+
"Font-size": (Prefix: FS, Properties: font-size, Important: true, Values: $font-sizes),
|
|
36
|
+
"Font-family": (Prefix: Font, Properties: font-family, Important: true, Values: (monospace: var(--#{$var-Prefix}font-monospace))),
|
|
37
|
+
// Line
|
|
38
|
+
"Line-height": (
|
|
39
|
+
Prefix: LH, Properties: line-height, Important: true,
|
|
40
|
+
Values: (1: 1, sm: $line-height-sm, base: $line-height-base, lg: $line-height-lg,)
|
|
65
41
|
),
|
|
66
42
|
);
|
|
67
43
|
|
|
68
44
|
@include Utilities($utilities-Text);
|
|
69
45
|
|
|
70
46
|
|
|
71
|
-
/*
|
|
72
|
-
// Text-align + Responsive variants
|
|
73
|
-
*/
|
|
74
|
-
|
|
75
|
-
.Txt-left, .Txt-right, .Txt-center {
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
/*
|
|
79
|
-
// Text-transform
|
|
80
|
-
*/
|
|
81
|
-
|
|
82
|
-
.Txt-lowercase, .Txt-uppercase, .Txt-capitalize {
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
// TODO: Txt-d
|
|
87
|
-
|
|
88
|
-
//.Txt-d {
|
|
89
|
-
// //text-decoration: #{var(--Txt-dl)} #{var(--Txt-ds)} #{var(--Txt-dc)};
|
|
90
|
-
// text-decoration-line: #{var(--Txt-dl)};
|
|
91
|
-
// text-decoration-style: #{var(--Txt-ds)};
|
|
92
|
-
// text-decoration-color: #{var(--Txt-dc)};
|
|
93
|
-
//}
|
|
94
|
-
|
|
95
|
-
//@include Utility-applier(true, Txt-d, text-decoration, (none:none));
|
|
96
|
-
|
|
97
|
-
.Txt-d, .Txt-d-none {
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
/*
|
|
101
|
-
// text-decoration-line -dl-: none underline overline line-through blink
|
|
102
|
-
*/
|
|
103
|
-
|
|
104
|
-
//@include Utility-applier(false, Txt-dl, --Txt-dl, (under:underline));
|
|
105
|
-
//@include Utility-applier(false, Txt-dl, --Txt-dl, (over:overline));
|
|
106
|
-
//@include Utility-applier(false, Txt-dl, --Txt-dl, (through:line-through));
|
|
107
|
-
//@include Utility-applier(false, Txt-dl, --Txt-dl, (blink:blink));
|
|
108
|
-
//@include Utility-applier(false, Txt-dl, --Txt-dl, (under-over:underline overline));
|
|
109
|
-
//@include Utility-applier(false, Txt-dl, --Txt-dl, (under-over-through:overline underline line-through));
|
|
110
|
-
|
|
111
|
-
.Txt-dl-under, .Txt-dl-over, .Txt-dl-through, .Txt-dl-blink, .Txt-dl-under-over, .Txt-dl-under-over-through {
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
/*
|
|
115
|
-
// text-decoration-style -ds-: solid double dotted dashed wavy
|
|
116
|
-
*/
|
|
117
|
-
|
|
118
|
-
//@include Utility-applier(false, Txt-ds, --Txt-ds, (solid:solid, double:double, dotted:dotted, dashed:dashed, wavy:wavy));
|
|
119
|
-
|
|
120
|
-
.Txt-ds-solid, .Txt-ds-double, .Txt-ds-dotted, .Txt-ds-dashed, .Txt-ds-wavy {
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
/*
|
|
124
|
-
// text-decoration-color -dc-: theme-colors
|
|
125
|
-
*/
|
|
126
47
|
|
|
127
|
-
//@include Utility-applier(false, Txt-dc, --Txt-dc, $colors-theme);
|
|
128
48
|
|
|
129
|
-
|
|
130
|
-
|
|
49
|
+
// REST ==> TODOs
|
|
50
|
+
// "white-space": (
|
|
51
|
+
// property: white-space,
|
|
52
|
+
// class: text,
|
|
53
|
+
// values: (
|
|
54
|
+
// wrap: normal,
|
|
55
|
+
// nowrap: nowrap,
|
|
56
|
+
// )
|
|
57
|
+
// ),
|
|
58
|
+
// "word-wrap": (
|
|
59
|
+
// property: word-wrap word-break,
|
|
60
|
+
// class: text,
|
|
61
|
+
// values: (break: break-word),
|
|
62
|
+
// rtl: false
|
|
63
|
+
// ),
|
|
@@ -6,6 +6,14 @@
|
|
|
6
6
|
$utilities: () !default;
|
|
7
7
|
$utilities: (
|
|
8
8
|
/*
|
|
9
|
+
// Opacity
|
|
10
|
+
*/
|
|
11
|
+
"Opacity": (Prefix: Opacity, Properties: opacity, Important: true,
|
|
12
|
+
Values: (
|
|
13
|
+
0: 0, 5: 0.05, 10: 0.1, 15: 0.15, 20: 0.2, 25: 0.25, 30: 0.3, 35: 0.35, 40: 0.4, 45: 0.45, 50: 0.5,
|
|
14
|
+
55: 0.55, 60: 0.6, 65: 0.65, 70: 0.7, 75: 0.75, 80: 0.8, 85: 0.85, 90: 0.9, 95: 0.95, 100: 1,
|
|
15
|
+
),),
|
|
16
|
+
/*
|
|
9
17
|
// Cursor
|
|
10
18
|
*/
|
|
11
19
|
"Cursor": (
|
|
@@ -48,19 +56,58 @@ $utilities: (
|
|
|
48
56
|
Values: inline inline-block block grid table table-row table-cell flex inline-flex none
|
|
49
57
|
),
|
|
50
58
|
/*
|
|
59
|
+
// Flex, Flex-direction, Flex-grow, Flex-shrink,Flex-wrap
|
|
60
|
+
*/
|
|
61
|
+
"Flex": (Prefix: Flex, Properties: flex, Important: true, Responsive: true, Values: (fill: 1 1 auto)),
|
|
62
|
+
"Flex-direction": (
|
|
63
|
+
Prefix: Flex, Properties: flex-direction, Important: true, Responsive: true,
|
|
64
|
+
Values: row column row-reverse column-reverse
|
|
65
|
+
),
|
|
66
|
+
"Flex-grow": (
|
|
67
|
+
Prefix: Flex, Properties: flex-grow, Important: true, Responsive: true, Values: (grow-0: 0, grow-1: 1,)
|
|
68
|
+
),
|
|
69
|
+
"Flex-shrink": (
|
|
70
|
+
Prefix: Flex, Properties: flex-shrink, Important: true, Responsive: true, Values: (shrink-0: 0, shrink-1: 1,)
|
|
71
|
+
),
|
|
72
|
+
"Flex-wrap": (
|
|
73
|
+
Prefix: Flex, Properties: flex-wrap, Important: true, Responsive: true, Values: wrap nowrap wrap-reverse
|
|
74
|
+
),
|
|
75
|
+
/*
|
|
76
|
+
// Justify content, Align-items, Align-content, Align-self
|
|
77
|
+
*/
|
|
78
|
+
"Justify-content": (
|
|
79
|
+
Prefix: Justify-content, Properties: justify-content, Important: true, Responsive: true,
|
|
80
|
+
Values: (
|
|
81
|
+
start: flex-start, end: flex-end, center: center,
|
|
82
|
+
between: space-between, around: space-around, evenly: space-evenly,
|
|
83
|
+
)
|
|
84
|
+
),
|
|
85
|
+
"Align-items": (
|
|
86
|
+
Prefix: Align-items, Properties: align-items, Important: true, Responsive: true,
|
|
87
|
+
Values: (start: flex-start, end: flex-end, center: center, baseline: baseline, stretch: stretch,)
|
|
88
|
+
),
|
|
89
|
+
"Align-content": (
|
|
90
|
+
Prefix: Align-content, Properties: align-content, Important: true, Responsive: true,
|
|
91
|
+
Values: (start: flex-start, end: flex-end, center: center, between: space-between, around: space-around, stretch: stretch,)
|
|
92
|
+
),
|
|
93
|
+
"Align-self": (
|
|
94
|
+
Prefix: Align-self, Properties: align-self, Important: true, Responsive: true,
|
|
95
|
+
Values: (auto: auto, start: flex-start, end: flex-end, center: center, baseline: baseline, stretch: stretch,)
|
|
96
|
+
),
|
|
97
|
+
/*
|
|
98
|
+
// Order
|
|
99
|
+
*/
|
|
100
|
+
"Order": (
|
|
101
|
+
Prefix: Order, Properties: order, Important: true, Responsive: true,
|
|
102
|
+
Values: (first: -1, 0: 0, 1: 1, 2: 2, 3: 3, 4: 4, 5: 5, last: 6)
|
|
103
|
+
),
|
|
104
|
+
/*
|
|
51
105
|
// Shadow
|
|
52
106
|
*/
|
|
53
107
|
"Box Shadow": (
|
|
54
108
|
Prefix: Shadow, Properties: box-shadow, Important: true, Values: $Shadow-map
|
|
55
109
|
),
|
|
56
110
|
/*
|
|
57
|
-
// Position
|
|
58
|
-
*/
|
|
59
|
-
//"Position": (
|
|
60
|
-
// Prefix: Position, Properties: position, Important: true,
|
|
61
|
-
// Values: (static relative absolute fixed sticky)
|
|
62
|
-
//),
|
|
63
|
-
/*
|
|
64
111
|
// Sizing Width, Height
|
|
65
112
|
*/
|
|
66
113
|
"Width": (Prefix: W, Properties: width, Important: true, Values: $sizes-percents,),
|
|
@@ -70,19 +117,6 @@ $utilities: (
|
|
|
70
117
|
"Max-Height": (Prefix: MH, Properties: max-height, Important: true, Values: (100: 100%)),
|
|
71
118
|
"viewport-Height": (Prefix: VH, Properties: height, Important: true, Values: (100: 100vw)),
|
|
72
119
|
/*
|
|
73
|
-
// Flex
|
|
74
|
-
*/
|
|
75
|
-
/*
|
|
76
|
-
// justify-content align-items align-content align-self
|
|
77
|
-
*/
|
|
78
|
-
/*
|
|
79
|
-
// order
|
|
80
|
-
*/
|
|
81
|
-
"Order": (
|
|
82
|
-
Prefix: Order, Properties: order, Important: true, Responsive: true,
|
|
83
|
-
Values: (first: -1, 0: 0, 1: 1, 2: 2, 3: 3, 4: 4, 5: 5, last: 6)
|
|
84
|
-
),
|
|
85
|
-
/*
|
|
86
120
|
// Visibility
|
|
87
121
|
*/
|
|
88
122
|
"Visibility": (
|
|
@@ -111,7 +145,7 @@ $utilities: (
|
|
|
111
145
|
/*
|
|
112
146
|
// Box Shadow --component-shadow-color: 0, 0, 0;
|
|
113
147
|
// .Shadow-<null,2x,3x>
|
|
114
|
-
// .Shadow-<inner,both,br,t,
|
|
148
|
+
// .Shadow-<inner,both,br,t,e,b,s,x,y>-<null,2x,3x>
|
|
115
149
|
*/
|
|
116
150
|
|
|
117
151
|
/*
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
// ===========================================================================
|
|
2
|
+
// Components - Color Schema
|
|
3
|
+
// ===========================================================================
|
|
4
|
+
|
|
5
|
+
$Scheme: var(--#{$var-Prefix}scheme); // light, dark, night
|
|
6
|
+
|
|
7
|
+
$Fg-muted: var(--#{$var-Prefix}fg-muted);
|
|
8
|
+
$Bg-overlay-hsl: var(--#{$var-Prefix}overlay-hsl);
|
|
9
|
+
|
|
10
|
+
$Bg-hue-hsl: var(--#{$var-Prefix}bg-hue-hsl);
|
|
11
|
+
$Bg-accent-hsl: var(--#{$var-Prefix}bg-accent-hsl);
|
|
12
|
+
|
|
13
|
+
$Bg-hue: var(--#{$var-Prefix}bg-hue);
|
|
14
|
+
$Bg-accent: var(--#{$var-Prefix}bg-accent);
|
|
15
|
+
$Bg-surface: var(--#{$var-Prefix}bg-surface);
|
|
16
|
+
$Bg-lighter: var(--#{$var-Prefix}bg-lighter);
|
|
17
|
+
$Bg-lightest: var(--#{$var-Prefix}bg-lightest);
|
|
18
|
+
|
|
19
|
+
$Fg-hue: var(--#{$var-Prefix}fg-hue);
|
|
20
|
+
$Fg-accent: var(--#{$var-Prefix}fg-accent);
|
|
21
|
+
$Fg-surface: var(--#{$var-Prefix}fg-surface);
|
|
22
|
+
$Fg-lighter: var(--#{$var-Prefix}fg-lighter);
|
|
23
|
+
$Fg-lightest: var(--#{$var-Prefix}fg-lightest);
|
|
24
|
+
|
|
25
|
+
$Border-hsl: var(--#{$var-Prefix}border-hsl);
|
|
26
|
+
$Shadow-color: var(--#{$var-Prefix}shadow-hsl);
|
|
27
|
+
|
|
28
|
+
@if ($Customized) {
|
|
29
|
+
$Prefix: #{$var-Prefix}#{$Customized};
|
|
30
|
+
|
|
31
|
+
$Fg-muted: var(--#{$Prefix}fg-muted, var(--#{$var-Prefix}fg-muted));
|
|
32
|
+
$Bg-overlay-hsl: var(--#{$Prefix}overlay-hsl, var(--#{$var-Prefix}overlay-hsl));
|
|
33
|
+
|
|
34
|
+
$Bg-hue-hsl: var(--#{$Prefix}bg-hue-hsl, var(--#{$var-Prefix}bg-hue-hsl));
|
|
35
|
+
$Bg-accent-hsl: var(--#{$Prefix}bg-accent-hsl, var(--#{$var-Prefix}bg-accent-hsl));
|
|
36
|
+
|
|
37
|
+
$Bg-hue: var(--#{$Prefix}bg-hue, var(--#{$var-Prefix}bg-hue));
|
|
38
|
+
$Bg-accent: var(--#{$Prefix}bg-accent, var(--#{$var-Prefix}bg-accent));
|
|
39
|
+
$Bg-surface: var(--#{$Prefix}bg-surface, var(--#{$var-Prefix}bg-surface));
|
|
40
|
+
$Bg-lighter: var(--#{$Prefix}bg-lighter, var(--#{$var-Prefix}bg-lighter));
|
|
41
|
+
$Bg-lightest: var(--#{$Prefix}bg-lightest, var(--#{$var-Prefix}bg-lightest));
|
|
42
|
+
|
|
43
|
+
$Fg-hue: var(--#{$Prefix}fg-hue, var(--#{$var-Prefix}fg-hue));
|
|
44
|
+
$Fg-accent: var(--#{$Prefix}fg-accent, var(--#{$var-Prefix}fg-accent));
|
|
45
|
+
$Fg-surface: var(--#{$Prefix}fg-surface, var(--#{$var-Prefix}fg-surface));
|
|
46
|
+
$Fg-lighter: var(--#{$Prefix}fg-lighter, var(--#{$var-Prefix}fg-lighter));
|
|
47
|
+
$Fg-lightest: var(--#{$Prefix}fg-lightest, var(--#{$var-Prefix}fg-lightest));
|
|
48
|
+
|
|
49
|
+
$Border-hsl: var(--#{$Prefix}border-hsl, var(--#{$var-Prefix}border-hsl));
|
|
50
|
+
$Shadow-color: var(--#{$Prefix}shadow-hsl, var(--#{$var-Prefix}shadow-hsl));
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/*
|
|
54
|
+
// Shadow & Border
|
|
55
|
+
*/
|
|
56
|
+
|
|
57
|
+
$Shadow: Colored-shadow($Shadow-color);
|
|
58
|
+
$Shadow-inner: Colored-shadow-inner($Shadow-color);
|
|
59
|
+
|
|
60
|
+
$Border-color: hsla($Border-hsl, var(--#{$var-Prefix}border-alpha));
|
|
61
|
+
$Border: 1px solid $Border-color;
|
|
62
|
+
$Border-radius: var(--#{$var-Prefix}border-radius);
|
|
63
|
+
|
|
64
|
+
/*
|
|
65
|
+
// Overlay Test
|
|
66
|
+
// Base on parent element background color
|
|
67
|
+
// For light theme => black overlay
|
|
68
|
+
// For dark/night theme => white overlay
|
|
69
|
+
*/
|
|
70
|
+
|
|
71
|
+
$Overlay-0: hsla($Bg-overlay-hsl, 0);
|
|
72
|
+
$Overlay-5: hsla($Bg-overlay-hsl, .05);
|
|
73
|
+
$Overlay-7: hsla($Bg-overlay-hsl, .07);
|
|
74
|
+
$Overlay-8: hsla($Bg-overlay-hsl, .08);
|
|
75
|
+
$Overlay-9: hsla($Bg-overlay-hsl, .09);
|
|
76
|
+
$Overlay-11: hsla($Bg-overlay-hsl, .11);
|
|
77
|
+
$Overlay-12: hsla($Bg-overlay-hsl, .12);
|
|
78
|
+
$Overlay-14: hsla($Bg-overlay-hsl, .14);
|
|
79
|
+
$Overlay-15: hsla($Bg-overlay-hsl, .15);
|
|
80
|
+
$Overlay-16: hsla($Bg-overlay-hsl, .16);
|
|
@@ -8,9 +8,8 @@
|
|
|
8
8
|
// ===========================================================================
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
|
-
@import "Components/themed";
|
|
12
|
-
|
|
13
11
|
@import "Components/alert";
|
|
12
|
+
@import "Components/badge";
|
|
14
13
|
@import "Components/breadcrumb";
|
|
15
14
|
@import "Components/button-close";
|
|
16
15
|
@import "Components/button-group";
|
|
@@ -32,6 +31,7 @@
|
|
|
32
31
|
@import "Components/timeline";
|
|
33
32
|
@import "Components/timer";
|
|
34
33
|
@import "Components/toasts";
|
|
34
|
+
@import "Components/tooltip";
|
|
35
35
|
@import "Components/tree-view";
|
|
36
36
|
|
|
37
37
|
/*
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
*/
|
|
40
40
|
|
|
41
41
|
.Alert, .Breadcrumb, .Btn, .Calendar, .Card, .Dialog, .List, .Pagination, .Progress, .Rating, .Timeline, .Timer, .Toast {
|
|
42
|
-
font-family: var(
|
|
43
|
-
font-size:
|
|
44
|
-
font-weight:
|
|
42
|
+
font-family: var(--#{$var-Prefix}font-sans-serif);
|
|
43
|
+
font-size: $font-size-base;
|
|
44
|
+
font-weight: normal;
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
|
|
@@ -49,12 +49,10 @@
|
|
|
49
49
|
// Components - TODOs
|
|
50
50
|
*/
|
|
51
51
|
|
|
52
|
-
@import "Components/TODO/badge";
|
|
53
52
|
@import "Components/TODO/dropdown";
|
|
54
53
|
@import "Components/TODO/navbar";
|
|
55
54
|
@import "Components/TODO/popover";
|
|
56
55
|
@import "Components/TODO/tables";
|
|
57
|
-
@import "Components/TODO/tooltip";
|
|
58
56
|
|
|
59
57
|
/*
|
|
60
58
|
- Reboot
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
// ===========================================================================
|
|
3
|
+
// Root level
|
|
4
|
+
// ===========================================================================
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// Tops
|
|
8
|
+
@import "Roots/root";
|
|
9
|
+
@import "Roots/reboot";
|
|
10
|
+
|
|
11
|
+
// Rests
|
|
12
|
+
@import "Roots/anim";
|
|
13
|
+
@import "Roots/avatar";
|
|
14
|
+
@import "Roots/classified";
|
|
15
|
+
@import "Roots/shape";
|
|
16
|
+
@import "Roots/skeleton";
|
|
17
|
+
@import "Roots/svg";
|
|
@@ -6,8 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
@import "Utils/border"; // Border, Rounded
|
|
8
8
|
@import "Utils/color"; // Bg-colors & Text-colors & Border-colors
|
|
9
|
-
@import "Utils/spacing"; // Margin, Padding
|
|
10
9
|
@import "Utils/filters"; // svg colors, blur, drop-shadow
|
|
10
|
+
@import "Utils/position"; // Positioning
|
|
11
|
+
@import "Utils/spacing"; // Margin, Padding
|
|
11
12
|
|
|
12
13
|
@import "Utils/text"; // TODO
|
|
13
14
|
@import "Utils/utilities"; // rest
|
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
// Components - Themes
|
|
3
3
|
// ===========================================================================
|
|
4
4
|
|
|
5
|
-
@include
|
|
5
|
+
@include Themed($color-Variants, $colored-Components);
|
|
6
|
+
|
|
6
7
|
|
|
7
8
|
/*
|
|
8
9
|
> Anatomy of the theme colors <
|
package/scss/_header.scss
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
2
|
/*!
|
|
3
|
-
* CSS Compiled on: 2022-
|
|
3
|
+
* CSS Compiled on: 2022-03-01
|
|
4
4
|
*
|
|
5
|
-
* Lootstrap v22.
|
|
5
|
+
* Lootstrap v22.3.1-beta.0 (https://github.com/krsln/Lootstrap/)
|
|
6
6
|
* Copyright 2022 Qrsln.
|
|
7
7
|
* Licensed under MIT (https://github.com/krsln/Lootstrap/blob/master/LICENSE)
|
|
8
8
|
*/
|
package/scss/lootstrap.scss
CHANGED
|
@@ -9,11 +9,10 @@
|
|
|
9
9
|
@import "Abstracts/variables";
|
|
10
10
|
|
|
11
11
|
/*
|
|
12
|
-
// :root
|
|
12
|
+
// :root - Root Level Stuffs
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
|
-
@import "Architecture/
|
|
16
|
-
@import "Architecture/reboot";
|
|
15
|
+
@import "Architecture/_dir-roots";
|
|
17
16
|
|
|
18
17
|
/*
|
|
19
18
|
// Utils
|
|
@@ -28,9 +27,7 @@
|
|
|
28
27
|
@import "Architecture/_dir-components";
|
|
29
28
|
@import "Architecture/_dir-forms";
|
|
30
29
|
@import "Architecture/_dir-layout";
|
|
31
|
-
@import "Architecture/_dir-svg";
|
|
32
30
|
|
|
33
|
-
@import "Architecture/anim";
|
|
34
31
|
@import "Architecture/theme";
|
|
35
32
|
|
|
36
33
|
|