@clayui/css 3.45.0 → 3.46.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 +23 -69
- package/lib/css/atlas.css +88 -13
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +78 -13
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +59 -12
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/export.svg +11 -0
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/images/icons/export.svg +11 -0
- package/src/scss/_variables.scss +1 -0
- package/src/scss/atlas/variables/_buttons.scss +3 -0
- package/src/scss/atlas/variables/_globals.scss +42 -13
- package/src/scss/cadmin/_variables.scss +1 -0
- package/src/scss/cadmin/components/_aspect-ratio.scss +25 -38
- package/src/scss/cadmin/components/_type.scss +27 -42
- package/src/scss/cadmin/components/_utilities-functional-important.scss +35 -15
- package/src/scss/cadmin/variables/_aspect-ratio.scss +26 -0
- package/src/scss/cadmin/variables/_globals.scss +173 -11
- package/src/scss/cadmin/variables/_utilities.scss +42 -0
- package/src/scss/components/_aspect-ratio.scss +25 -38
- package/src/scss/components/_type.scss +27 -41
- package/src/scss/components/_utilities-functional-important.scss +35 -15
- package/src/scss/functions/_lx-icons-generated.scss +2 -0
- package/src/scss/mixins/_buttons.scss +4 -0
- package/src/scss/mixins/_grid.scss +29 -0
- package/src/scss/variables/_aspect-ratio.scss +26 -0
- package/src/scss/variables/_buttons.scss +6 -0
- package/src/scss/variables/_globals.scss +172 -11
- package/src/scss/variables/_utilities.scss +42 -0
package/lib/css/base.css
CHANGED
|
@@ -1128,6 +1128,10 @@ button.collapse-icon .c-inner {
|
|
|
1128
1128
|
padding-bottom: calc(3 / 4 * 100%);
|
|
1129
1129
|
}
|
|
1130
1130
|
|
|
1131
|
+
.aspect-ratio-8-to-3 {
|
|
1132
|
+
padding-bottom: calc(3 / 8 * 100%);
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1131
1135
|
.aspect-ratio-8-to-5 {
|
|
1132
1136
|
padding-bottom: calc(5 / 8 * 100%);
|
|
1133
1137
|
}
|
|
@@ -1210,6 +1214,9 @@ button.collapse-icon .c-inner {
|
|
|
1210
1214
|
margin-right: -0.75rem;
|
|
1211
1215
|
margin-top: -0.375rem;
|
|
1212
1216
|
}
|
|
1217
|
+
.btn .inline-item .lexicon-icon {
|
|
1218
|
+
margin-top: 0;
|
|
1219
|
+
}
|
|
1213
1220
|
.btn .btn-section {
|
|
1214
1221
|
display: block;
|
|
1215
1222
|
font-size: 0.6875rem;
|
|
@@ -1331,6 +1338,9 @@ input[type=button].btn-block {
|
|
|
1331
1338
|
padding: 0;
|
|
1332
1339
|
width: 100%;
|
|
1333
1340
|
}
|
|
1341
|
+
.btn-monospaced .lexicon-icon {
|
|
1342
|
+
margin-top: 0;
|
|
1343
|
+
}
|
|
1334
1344
|
.btn-group-vertical > .btn-monospaced.btn-lg, .btn-group-lg .btn-monospaced, .btn-monospaced.btn-lg {
|
|
1335
1345
|
height: 3rem;
|
|
1336
1346
|
width: 3rem;
|
|
@@ -6505,6 +6515,9 @@ input[type=button].btn-block {
|
|
|
6505
6515
|
.dropdown-action > .dropdown-toggle .lexicon-icon {
|
|
6506
6516
|
margin-top: 0;
|
|
6507
6517
|
}
|
|
6518
|
+
.dropdown-action > .dropdown-toggle .inline-item .lexicon-icon {
|
|
6519
|
+
margin-top: 0;
|
|
6520
|
+
}
|
|
6508
6521
|
.dropdown-menu-indicator-start .dropdown-item-indicator {
|
|
6509
6522
|
height: 1rem;
|
|
6510
6523
|
left: 1.5rem;
|
|
@@ -27050,10 +27063,6 @@ button.bg-dark:focus {
|
|
|
27050
27063
|
z-index: 1;
|
|
27051
27064
|
}
|
|
27052
27065
|
|
|
27053
|
-
.text-monospace {
|
|
27054
|
-
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
|
|
27055
|
-
}
|
|
27056
|
-
|
|
27057
27066
|
.text-justify {
|
|
27058
27067
|
text-align: justify !important;
|
|
27059
27068
|
}
|
|
@@ -27148,34 +27157,90 @@ button.bg-dark:focus {
|
|
|
27148
27157
|
text-transform: capitalize !important;
|
|
27149
27158
|
}
|
|
27150
27159
|
|
|
27151
|
-
.font-weight-
|
|
27152
|
-
|
|
27160
|
+
.font-weight-lighter,
|
|
27161
|
+
.text-weight-lighter {
|
|
27162
|
+
font-weight: lighter !important;
|
|
27153
27163
|
}
|
|
27154
27164
|
|
|
27155
|
-
.font-weight-
|
|
27156
|
-
|
|
27165
|
+
.font-weight-light,
|
|
27166
|
+
.text-weight-light {
|
|
27167
|
+
font-weight: 300 !important;
|
|
27157
27168
|
}
|
|
27158
27169
|
|
|
27159
|
-
.font-weight-normal
|
|
27170
|
+
.font-weight-normal,
|
|
27171
|
+
.text-weight-normal {
|
|
27160
27172
|
font-weight: 400 !important;
|
|
27161
27173
|
}
|
|
27162
27174
|
|
|
27163
|
-
.font-weight-semi-bold
|
|
27175
|
+
.font-weight-semi-bold,
|
|
27176
|
+
.text-weight-semi-bold {
|
|
27164
27177
|
font-weight: 500 !important;
|
|
27165
27178
|
}
|
|
27166
27179
|
|
|
27167
|
-
.font-weight-bold
|
|
27180
|
+
.font-weight-bold,
|
|
27181
|
+
.text-weight-bold {
|
|
27168
27182
|
font-weight: 700 !important;
|
|
27169
27183
|
}
|
|
27170
27184
|
|
|
27171
|
-
.font-weight-bolder
|
|
27185
|
+
.font-weight-bolder,
|
|
27186
|
+
.text-weight-bolder {
|
|
27172
27187
|
font-weight: 900 !important;
|
|
27173
27188
|
}
|
|
27174
27189
|
|
|
27175
|
-
.font-italic
|
|
27190
|
+
.font-italic,
|
|
27191
|
+
.text-italic {
|
|
27176
27192
|
font-style: italic !important;
|
|
27177
27193
|
}
|
|
27178
27194
|
|
|
27195
|
+
.font-monospace,
|
|
27196
|
+
.text-monospace {
|
|
27197
|
+
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
|
|
27198
|
+
}
|
|
27199
|
+
|
|
27200
|
+
.text-1 {
|
|
27201
|
+
font-size: 0.625rem;
|
|
27202
|
+
}
|
|
27203
|
+
|
|
27204
|
+
.text-2 {
|
|
27205
|
+
font-size: 0.75rem;
|
|
27206
|
+
}
|
|
27207
|
+
|
|
27208
|
+
.text-3 {
|
|
27209
|
+
font-size: 0.875rem;
|
|
27210
|
+
}
|
|
27211
|
+
|
|
27212
|
+
.text-4 {
|
|
27213
|
+
font-size: 1rem;
|
|
27214
|
+
}
|
|
27215
|
+
|
|
27216
|
+
.text-5 {
|
|
27217
|
+
font-size: 1.125rem;
|
|
27218
|
+
}
|
|
27219
|
+
|
|
27220
|
+
.text-6 {
|
|
27221
|
+
font-size: 1.25rem;
|
|
27222
|
+
}
|
|
27223
|
+
|
|
27224
|
+
.text-7 {
|
|
27225
|
+
font-size: 1.5rem;
|
|
27226
|
+
}
|
|
27227
|
+
|
|
27228
|
+
.text-8 {
|
|
27229
|
+
font-size: 1.75rem;
|
|
27230
|
+
}
|
|
27231
|
+
|
|
27232
|
+
.text-9 {
|
|
27233
|
+
font-size: 2rem;
|
|
27234
|
+
}
|
|
27235
|
+
|
|
27236
|
+
.text-10 {
|
|
27237
|
+
font-size: 2.25rem;
|
|
27238
|
+
}
|
|
27239
|
+
|
|
27240
|
+
.text-11 {
|
|
27241
|
+
font-size: 2.5rem;
|
|
27242
|
+
}
|
|
27243
|
+
|
|
27179
27244
|
.text-white {
|
|
27180
27245
|
color: #fff !important;
|
|
27181
27246
|
}
|