@limpiolux/ui-styles 1.0.1 → 1.0.2
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/components.css +99 -0
- package/light.css +18 -0
- package/package.json +1 -1
- package/utilities.css +24 -0
package/components.css
CHANGED
|
@@ -996,6 +996,105 @@
|
|
|
996
996
|
text-align: left !important;
|
|
997
997
|
}
|
|
998
998
|
|
|
999
|
+
.text-center {
|
|
1000
|
+
text-align: center !important;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
.text-left {
|
|
1004
|
+
text-align: left !important;
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
.text-right,
|
|
1008
|
+
.text-end {
|
|
1009
|
+
text-align: right !important;
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
.align-items-center {
|
|
1013
|
+
align-items: center !important;
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
.align-items-end {
|
|
1017
|
+
align-items: flex-end !important;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
.align-items-stretch {
|
|
1021
|
+
align-items: stretch !important;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
.justify-content-center {
|
|
1025
|
+
justify-content: center !important;
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
.justify-content-between {
|
|
1029
|
+
justify-content: space-between !important;
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
.justify-content-end {
|
|
1033
|
+
justify-content: flex-end !important;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
.justify-content-stretch {
|
|
1037
|
+
justify-content: stretch !important;
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
.form-group {
|
|
1041
|
+
margin-bottom: 0.75rem;
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
.form-label {
|
|
1045
|
+
display: block;
|
|
1046
|
+
font-size: 0.875rem;
|
|
1047
|
+
font-weight: 500;
|
|
1048
|
+
color: rgb(var(--color-zinc-300));
|
|
1049
|
+
margin-bottom: 0.35rem;
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
.form-select-sm {
|
|
1053
|
+
padding: 0.35rem 0.55rem;
|
|
1054
|
+
font-size: 0.78rem;
|
|
1055
|
+
border-radius: 0.45rem;
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
.rounded {
|
|
1059
|
+
border-radius: 0.5rem !important;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
.rounded-circle {
|
|
1063
|
+
border-radius: 999px !important;
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
.bg-primary {
|
|
1067
|
+
background: rgba(var(--color-brand) / 0.18) !important;
|
|
1068
|
+
color: #d7f1fb !important;
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
.bg-secondary {
|
|
1072
|
+
background: rgba(var(--color-zinc-700) / 0.35) !important;
|
|
1073
|
+
color: rgb(var(--color-zinc-200)) !important;
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
.border-brand {
|
|
1077
|
+
border-color: rgba(var(--color-brand) / 0.45) !important;
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
.border-warning {
|
|
1081
|
+
border-color: rgba(245, 158, 11, 0.42) !important;
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
.border-muted {
|
|
1085
|
+
border-color: rgba(var(--color-zinc-600) / 0.5) !important;
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
.text-orange {
|
|
1089
|
+
color: #fb923c !important;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
.alert-heading {
|
|
1093
|
+
font-size: 0.9rem;
|
|
1094
|
+
font-weight: 600;
|
|
1095
|
+
margin: 0 0 0.25rem;
|
|
1096
|
+
}
|
|
1097
|
+
|
|
999
1098
|
.fade {
|
|
1000
1099
|
opacity: 0;
|
|
1001
1100
|
transition: opacity 160ms ease;
|
package/light.css
CHANGED
|
@@ -477,3 +477,21 @@
|
|
|
477
477
|
.light .text-danger-emphasis {
|
|
478
478
|
color: #991b1b !important;
|
|
479
479
|
}
|
|
480
|
+
|
|
481
|
+
.light .form-label {
|
|
482
|
+
color: rgb(var(--color-zinc-300));
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.light .bg-primary {
|
|
486
|
+
background: rgba(var(--color-brand) / 0.12) !important;
|
|
487
|
+
color: rgb(var(--color-brand-strong)) !important;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
.light .bg-secondary {
|
|
491
|
+
background: rgba(var(--color-zinc-700) / 0.24) !important;
|
|
492
|
+
color: rgb(var(--color-zinc-300)) !important;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.light .text-orange {
|
|
496
|
+
color: #c2410c !important;
|
|
497
|
+
}
|
package/package.json
CHANGED
package/utilities.css
CHANGED
|
@@ -188,9 +188,33 @@
|
|
|
188
188
|
.mx-3 { margin-left: 0.75rem !important; margin-right: 0.75rem !important; }
|
|
189
189
|
.mx-4 { margin-left: 1rem !important; margin-right: 1rem !important; }
|
|
190
190
|
|
|
191
|
+
.mt-0 { margin-top: 0 !important; }
|
|
192
|
+
.mt-1 { margin-top: 0.25rem !important; }
|
|
193
|
+
.mt-2 { margin-top: 0.5rem !important; }
|
|
194
|
+
.mt-3 { margin-top: 0.75rem !important; }
|
|
195
|
+
|
|
191
196
|
.my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
|
|
192
197
|
.my-3 { margin-top: 0.75rem !important; margin-bottom: 0.75rem !important; }
|
|
193
198
|
|
|
199
|
+
.mb-0 { margin-bottom: 0 !important; }
|
|
200
|
+
.mb-1 { margin-bottom: 0.25rem !important; }
|
|
201
|
+
.mb-2 { margin-bottom: 0.5rem !important; }
|
|
202
|
+
.mb-3 { margin-bottom: 0.75rem !important; }
|
|
203
|
+
|
|
204
|
+
.pt-2 { padding-top: 0.5rem !important; }
|
|
205
|
+
|
|
206
|
+
.h-2 { height: 0.5rem !important; }
|
|
207
|
+
.h-3 { height: 0.75rem !important; }
|
|
208
|
+
.h-4 { height: 1rem !important; }
|
|
209
|
+
.h-7 { height: 1.75rem !important; }
|
|
210
|
+
.h-8 { height: 2rem !important; }
|
|
211
|
+
.h-10 { height: 2.5rem !important; }
|
|
212
|
+
.h-14 { height: 3.5rem !important; }
|
|
213
|
+
.h-16 { height: 4rem !important; }
|
|
214
|
+
.h-full { height: 100% !important; }
|
|
215
|
+
|
|
216
|
+
.w-auto { width: auto !important; }
|
|
217
|
+
|
|
194
218
|
.pl-2 { padding-left: 0.5rem !important; }
|
|
195
219
|
.pl-3 { padding-left: 0.75rem !important; }
|
|
196
220
|
.pl-4 { padding-left: 1rem !important; }
|