@clayui/css 3.95.1 → 3.97.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/lib/css/atlas.css +287 -94
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +115 -82
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css +0 -0
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +254 -82
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/accessibility.svg +9 -0
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/stars.svg +9 -0
- package/package.json +3 -2
- package/src/images/icons/accessibility.svg +9 -0
- package/src/images/icons/stars.svg +9 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_forms.scss +38 -0
- package/src/scss/atlas/variables/_menubar.scss +87 -9
- package/src/scss/atlas/variables/_pagination.scss +56 -4
- package/src/scss/atlas/variables/_tables.scss +4 -4
- package/src/scss/cadmin/components/_forms.scss +1 -25
- package/src/scss/cadmin/components/_grid.scss +0 -12
- package/src/scss/cadmin/components/_multi-step-nav.scss +1 -11
- package/src/scss/cadmin/components/_navbar.scss +1 -6
- package/src/scss/cadmin/components/_type.scss +0 -21
- package/src/scss/cadmin/components/_utilities-functional-important.scss +20 -4
- package/src/scss/cadmin/variables/_buttons.scss +12 -2
- package/src/scss/cadmin/variables/_forms.scss +31 -0
- package/src/scss/cadmin/variables/_menubar.scss +100 -45
- package/src/scss/cadmin/variables/_multi-step-nav.scss +18 -0
- package/src/scss/cadmin/variables/_navbar.scss +13 -0
- package/src/scss/cadmin/variables/_pagination.scss +48 -4
- package/src/scss/cadmin/variables/_tables.scss +4 -4
- package/src/scss/cadmin/variables/_utilities.scss +111 -1
- package/src/scss/components/_forms.scss +1 -25
- package/src/scss/components/_grid.scss +0 -10
- package/src/scss/components/_multi-step-nav.scss +9 -20
- package/src/scss/components/_navbar.scss +1 -6
- package/src/scss/components/_type.scss +0 -21
- package/src/scss/components/_utilities-functional-important.scss +27 -8
- package/src/scss/functions/_lx-icons-generated.scss +4 -0
- package/src/scss/mixins/_globals.scss +25 -1
- package/src/scss/mixins/_input-groups.scss +8 -0
- package/src/scss/mixins/_links.scss +44 -0
- package/src/scss/mixins/_type.scss +7 -3
- package/src/scss/variables/_buttons.scss +2 -0
- package/src/scss/variables/_forms.scss +48 -3
- package/src/scss/variables/_icons.scss +1 -1
- package/src/scss/variables/_menubar.scss +8 -10
- package/src/scss/variables/_multi-step-nav.scss +43 -1
- package/src/scss/variables/_navbar.scss +14 -0
- package/src/scss/variables/_utilities.scss +111 -36
- package/CHANGELOG.md +0 -2579
- package/LICENSES/Apache-2.0.txt +0 -73
- package/LICENSES/BSD-3-Clause.txt +0 -30
- package/LICENSES/LicenseRef-MIT-Bootstrap.txt +0 -22
- package/LICENSES/MIT.txt +0 -19
- package/lib/.DS_Store +0 -0
- package/lib/images/.DS_Store +0 -0
- package/lib/images/icons/.DS_Store +0 -0
|
@@ -40,6 +40,8 @@ $multi-step-divider-spacer-x: 0 !default;
|
|
|
40
40
|
$multi-step-divider-top: ($multi-step-divider-height * 0.5) +
|
|
41
41
|
($multi-step-icon-size * 0.5) !default;
|
|
42
42
|
|
|
43
|
+
// Multi Step Indicator
|
|
44
|
+
|
|
43
45
|
$multi-step-indicator-width: $multi-step-icon-size +
|
|
44
46
|
($multi-step-divider-spacer-x * 2) !default;
|
|
45
47
|
|
|
@@ -48,6 +50,29 @@ $multi-step-indicator-label-font-size: $font-size-base !default;
|
|
|
48
50
|
$multi-step-indicator-label-font-weight: null !default;
|
|
49
51
|
$multi-step-indicator-label-max-width: 100px !default;
|
|
50
52
|
|
|
53
|
+
$multi-step-indicator: () !default;
|
|
54
|
+
$multi-step-indicator: map-deep-merge(
|
|
55
|
+
(
|
|
56
|
+
position: relative,
|
|
57
|
+
width: $multi-step-indicator-width,
|
|
58
|
+
multi-step-indicator-label: (
|
|
59
|
+
color: $multi-step-indicator-label-color,
|
|
60
|
+
font-size: $multi-step-indicator-label-font-size,
|
|
61
|
+
font-weight: $multi-step-indicator-label-font-weight,
|
|
62
|
+
left: 50%,
|
|
63
|
+
max-width: $multi-step-indicator-label-max-width,
|
|
64
|
+
overflow: hidden,
|
|
65
|
+
position: absolute,
|
|
66
|
+
text-overflow: ellipsis,
|
|
67
|
+
transform: translateX(-50%),
|
|
68
|
+
white-space: nowrap,
|
|
69
|
+
),
|
|
70
|
+
),
|
|
71
|
+
$multi-step-indicator
|
|
72
|
+
);
|
|
73
|
+
|
|
74
|
+
// Multi Step Title
|
|
75
|
+
|
|
51
76
|
$multi-step-title-color: null !default;
|
|
52
77
|
$multi-step-title-font-size: $font-size-base !default;
|
|
53
78
|
$multi-step-title-font-weight: null !default;
|
|
@@ -58,6 +83,24 @@ $multi-step-item-margin-bottom: 10px !default;
|
|
|
58
83
|
$multi-step-item-width: 75px !default;
|
|
59
84
|
$multi-step-item-fixed-width: 150px !default;
|
|
60
85
|
|
|
86
|
+
$multi-step-title-center: () !default;
|
|
87
|
+
$multi-step-title-center: map-deep-merge(
|
|
88
|
+
(
|
|
89
|
+
multi-step-title: (
|
|
90
|
+
margin-left: calc(#{$multi-step-icon-size} * 0.5),
|
|
91
|
+
max-width: $multi-step-title-max-width,
|
|
92
|
+
overflow: hidden,
|
|
93
|
+
position: relative,
|
|
94
|
+
text-align: center,
|
|
95
|
+
text-overflow: ellipsis,
|
|
96
|
+
transform: translateX(-50%),
|
|
97
|
+
white-space: nowrap,
|
|
98
|
+
width: auto,
|
|
99
|
+
),
|
|
100
|
+
),
|
|
101
|
+
$multi-step-title-center
|
|
102
|
+
);
|
|
103
|
+
|
|
61
104
|
// data-multi-step-icon::before See https://issues.liferay.com/browse/LPS-147457.
|
|
62
105
|
|
|
63
106
|
$multi-step-item-error: () !default;
|
|
@@ -67,7 +110,6 @@ $multi-step-item-error: map-deep-merge(
|
|
|
67
110
|
background-color: $danger,
|
|
68
111
|
background-image: clay-icon(times, $white),
|
|
69
112
|
color: $white,
|
|
70
|
-
text-indent: -100px,
|
|
71
113
|
data-multi-step-icon: (
|
|
72
114
|
before: (
|
|
73
115
|
content: none,
|
|
@@ -15,6 +15,20 @@ $navbar-title-text-transform: null !default;
|
|
|
15
15
|
$navbar-text-truncate-spacer-right: 1.5625rem !default; // 25px
|
|
16
16
|
$navbar-text-truncate-max-width: 12.5rem !default; // 200px
|
|
17
17
|
|
|
18
|
+
$navbar-text-truncate: () !default;
|
|
19
|
+
$navbar-text-truncate: map-deep-merge(
|
|
20
|
+
(
|
|
21
|
+
display: inline-block,
|
|
22
|
+
max-width: 100%,
|
|
23
|
+
overflow: hidden,
|
|
24
|
+
text-decoration: inherit,
|
|
25
|
+
text-overflow: ellipsis,
|
|
26
|
+
vertical-align: bottom,
|
|
27
|
+
white-space: nowrap,
|
|
28
|
+
),
|
|
29
|
+
$navbar-text-truncate
|
|
30
|
+
);
|
|
31
|
+
|
|
18
32
|
// Navbar Brand
|
|
19
33
|
|
|
20
34
|
$navbar-brand-font-size: $font-size-lg !default;
|
|
@@ -360,41 +360,6 @@ $border-theme-colors: map-deep-merge(
|
|
|
360
360
|
$displays: none, inline, inline-block, block, grid, contents, table, table-row,
|
|
361
361
|
table-cell, flex, inline-flex !default;
|
|
362
362
|
|
|
363
|
-
$displays-c-prefers-reduced-motion: () !default;
|
|
364
|
-
$displays-c-prefers-reduced-motion: map-deep-merge(
|
|
365
|
-
(
|
|
366
|
-
d-block-c-prefers-reduced-motion: (
|
|
367
|
-
display: none !important,
|
|
368
|
-
),
|
|
369
|
-
d-inline-block-c-prefers-reduced-motion: (
|
|
370
|
-
display: none !important,
|
|
371
|
-
),
|
|
372
|
-
'@media (prefers-reduced-motion: reduce)': (
|
|
373
|
-
d-none-c-prefers-reduced-motion: (
|
|
374
|
-
display: none !important,
|
|
375
|
-
),
|
|
376
|
-
d-block-c-prefers-reduced-motion: (
|
|
377
|
-
display: block !important,
|
|
378
|
-
),
|
|
379
|
-
d-inline-block-c-prefers-reduced-motion: (
|
|
380
|
-
display: inline-block !important,
|
|
381
|
-
),
|
|
382
|
-
),
|
|
383
|
-
c-prefers-reduced-motion: (
|
|
384
|
-
d-none-c-prefers-reduced-motion: (
|
|
385
|
-
display: none !important,
|
|
386
|
-
),
|
|
387
|
-
d-block-c-prefers-reduced-motion: (
|
|
388
|
-
display: block !important,
|
|
389
|
-
),
|
|
390
|
-
d-inline-block-c-prefers-reduced-motion: (
|
|
391
|
-
display: inline-block !important,
|
|
392
|
-
),
|
|
393
|
-
),
|
|
394
|
-
),
|
|
395
|
-
$displays-c-prefers-reduced-motion
|
|
396
|
-
);
|
|
397
|
-
|
|
398
363
|
// Overflow
|
|
399
364
|
|
|
400
365
|
$overflows: auto, hidden !default;
|
|
@@ -561,7 +526,117 @@ $text-decorations: map-deep-merge(
|
|
|
561
526
|
$text-decorations
|
|
562
527
|
);
|
|
563
528
|
|
|
564
|
-
//
|
|
529
|
+
// Text Truncate
|
|
530
|
+
|
|
531
|
+
$text-truncate: () !default;
|
|
532
|
+
$text-truncate: map-merge(
|
|
533
|
+
(
|
|
534
|
+
display: block,
|
|
535
|
+
overflow: hidden,
|
|
536
|
+
text-overflow: ellipsis,
|
|
537
|
+
white-space: nowrap,
|
|
538
|
+
),
|
|
539
|
+
$text-truncate
|
|
540
|
+
);
|
|
541
|
+
|
|
542
|
+
// Text Truncate Inline
|
|
543
|
+
|
|
544
|
+
$text-truncate-inline: () !default;
|
|
545
|
+
$text-truncate-inline: map-deep-merge(
|
|
546
|
+
(
|
|
547
|
+
display: inline-flex,
|
|
548
|
+
max-width: 100%,
|
|
549
|
+
text-truncate: (
|
|
550
|
+
display: inline-block,
|
|
551
|
+
max-width: 100%,
|
|
552
|
+
overflow: hidden,
|
|
553
|
+
text-overflow: ellipsis,
|
|
554
|
+
vertical-align: bottom,
|
|
555
|
+
white-space: nowrap,
|
|
556
|
+
word-wrap: normal,
|
|
557
|
+
),
|
|
558
|
+
),
|
|
559
|
+
$text-truncate-inline
|
|
560
|
+
);
|
|
561
|
+
|
|
562
|
+
// C Prefers
|
|
563
|
+
|
|
564
|
+
$c-prefers-link-underline: () !default;
|
|
565
|
+
$c-prefers-link-underline: map-deep-merge(
|
|
566
|
+
(
|
|
567
|
+
'.c-prefers-link-underline': (
|
|
568
|
+
'[href]:not(.disabled):not([role="button"])': (
|
|
569
|
+
text-decoration: underline !important,
|
|
570
|
+
),
|
|
571
|
+
'.btn-monospaced, .nav-btn-monospaced, .nav-link-monospaced': (
|
|
572
|
+
'&[href]:not(.disabled):not([role="button"]):not([role="tab"])::after':
|
|
573
|
+
(
|
|
574
|
+
content: '\00a0\00a0\00a0',
|
|
575
|
+
position: absolute,
|
|
576
|
+
text-decoration: underline !important,
|
|
577
|
+
),
|
|
578
|
+
),
|
|
579
|
+
'.multi-step-item.active, .multi-step-item.complete, .multi-step-item.error, .dropdown':
|
|
580
|
+
(
|
|
581
|
+
'.multi-step-icon[href]:not([role="button"])::after': (
|
|
582
|
+
content: '\00a0\00a0\00a0',
|
|
583
|
+
position: absolute,
|
|
584
|
+
text-decoration: underline !important,
|
|
585
|
+
),
|
|
586
|
+
),
|
|
587
|
+
'.multi-step-item.disabled .multi-step-icon[href]:not([role="button"])::after':
|
|
588
|
+
(
|
|
589
|
+
text-decoration: none !important,
|
|
590
|
+
),
|
|
591
|
+
),
|
|
592
|
+
),
|
|
593
|
+
$c-prefers-link-underline
|
|
594
|
+
);
|
|
595
|
+
|
|
596
|
+
$c-prefers-letter-spacing: () !default;
|
|
597
|
+
$c-prefers-letter-spacing: map-deep-merge(
|
|
598
|
+
(
|
|
599
|
+
'.c-prefers-letter-spacing-1': (
|
|
600
|
+
letter-spacing: 1px !important,
|
|
601
|
+
),
|
|
602
|
+
),
|
|
603
|
+
$c-prefers-letter-spacing
|
|
604
|
+
);
|
|
605
|
+
|
|
606
|
+
$displays-c-prefers-reduced-motion: () !default;
|
|
607
|
+
$displays-c-prefers-reduced-motion: map-deep-merge(
|
|
608
|
+
(
|
|
609
|
+
d-block-c-prefers-reduced-motion: (
|
|
610
|
+
display: none !important,
|
|
611
|
+
),
|
|
612
|
+
d-inline-block-c-prefers-reduced-motion: (
|
|
613
|
+
display: none !important,
|
|
614
|
+
),
|
|
615
|
+
'@media (prefers-reduced-motion: reduce)': (
|
|
616
|
+
d-none-c-prefers-reduced-motion: (
|
|
617
|
+
display: none !important,
|
|
618
|
+
),
|
|
619
|
+
d-block-c-prefers-reduced-motion: (
|
|
620
|
+
display: block !important,
|
|
621
|
+
),
|
|
622
|
+
d-inline-block-c-prefers-reduced-motion: (
|
|
623
|
+
display: inline-block !important,
|
|
624
|
+
),
|
|
625
|
+
),
|
|
626
|
+
c-prefers-reduced-motion: (
|
|
627
|
+
d-none-c-prefers-reduced-motion: (
|
|
628
|
+
display: none !important,
|
|
629
|
+
),
|
|
630
|
+
d-block-c-prefers-reduced-motion: (
|
|
631
|
+
display: block !important,
|
|
632
|
+
),
|
|
633
|
+
d-inline-block-c-prefers-reduced-motion: (
|
|
634
|
+
display: inline-block !important,
|
|
635
|
+
),
|
|
636
|
+
),
|
|
637
|
+
),
|
|
638
|
+
$displays-c-prefers-reduced-motion
|
|
639
|
+
);
|
|
565
640
|
|
|
566
641
|
$c-prefers-reduced-motion: () !default;
|
|
567
642
|
$c-prefers-reduced-motion: map-merge(
|