@clayui/css 3.82.0 → 3.83.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 +109 -24
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +87 -17
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +55 -22
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_forms.scss +34 -0
- package/src/scss/cadmin/components/_forms.scss +26 -0
- package/src/scss/cadmin/components/_sidebar.scss +29 -34
- package/src/scss/cadmin/variables/_forms.scss +35 -0
- package/src/scss/cadmin/variables/_sidebar.scss +54 -0
- package/src/scss/cadmin/variables/_utilities.scss +2 -2
- package/src/scss/components/_dropdowns.scss +14 -0
- package/src/scss/components/_forms.scss +26 -0
- package/src/scss/components/_sidebar.scss +28 -34
- package/src/scss/components/_spinners.scss +3 -2
- package/src/scss/mixins/_dropdown-menu.scss +76 -2
- package/src/scss/mixins/_forms.scss +62 -3
- package/src/scss/mixins/_sidebar.scss +5 -0
- package/src/scss/variables/_dropdowns.scss +52 -0
- package/src/scss/variables/_forms.scss +11 -0
- package/src/scss/variables/_sidebar.scss +54 -0
- package/src/scss/variables/_utilities.scss +2 -2
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.83.0
|
|
4
4
|
*
|
|
5
5
|
* SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
|
|
6
6
|
* SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
|
|
@@ -866,9 +866,10 @@ pre code {
|
|
|
866
866
|
}
|
|
867
867
|
.spinner-border {
|
|
868
868
|
animation: spinner-border 0.75s linear infinite;
|
|
869
|
+
border-color: currentColor transparent currentColor currentColor;
|
|
869
870
|
border-radius: 50%;
|
|
870
|
-
border-
|
|
871
|
-
border: 0.25em
|
|
871
|
+
border-style: solid;
|
|
872
|
+
border-width: 0.25em;
|
|
872
873
|
display: inline-block;
|
|
873
874
|
height: 2rem;
|
|
874
875
|
vertical-align: text-bottom;
|
|
@@ -6398,12 +6399,12 @@ input[type=button].btn-block {
|
|
|
6398
6399
|
word-wrap: break-word;
|
|
6399
6400
|
font-size: inherit;
|
|
6400
6401
|
}
|
|
6401
|
-
.dropdown-item:hover {
|
|
6402
|
+
.dropdown-item:hover, .dropdown-item.hover {
|
|
6402
6403
|
background-color: #f0f5ff;
|
|
6403
6404
|
color: #272833;
|
|
6404
6405
|
text-decoration: none;
|
|
6405
6406
|
}
|
|
6406
|
-
.dropdown-item:focus {
|
|
6407
|
+
.dropdown-item:focus, .dropdown-item.focus {
|
|
6407
6408
|
background-color: #f0f5ff;
|
|
6408
6409
|
color: #272833;
|
|
6409
6410
|
text-decoration: none;
|
|
@@ -6612,6 +6613,51 @@ input[type=button].btn-block {
|
|
|
6612
6613
|
margin-bottom: 0;
|
|
6613
6614
|
}
|
|
6614
6615
|
|
|
6616
|
+
.dropdown-menu-select.dropdown-menu .dropdown-header {
|
|
6617
|
+
padding-bottom: 0.375rem;
|
|
6618
|
+
padding-left: 1.75rem;
|
|
6619
|
+
padding-right: 1.75rem;
|
|
6620
|
+
padding-top: 0.3125rem;
|
|
6621
|
+
}
|
|
6622
|
+
.dropdown-menu-select.dropdown-menu .dropdown-subheader {
|
|
6623
|
+
padding-bottom: 0.4375rem;
|
|
6624
|
+
padding-left: 1.75rem;
|
|
6625
|
+
padding-right: 1.75rem;
|
|
6626
|
+
padding-top: 0.4375rem;
|
|
6627
|
+
}
|
|
6628
|
+
.dropdown-menu-select.dropdown-menu .dropdown-section {
|
|
6629
|
+
padding-left: 1.75rem;
|
|
6630
|
+
padding-right: 1.75rem;
|
|
6631
|
+
}
|
|
6632
|
+
.dropdown-menu-select.dropdown-menu .dropdown-item {
|
|
6633
|
+
padding-bottom: 0.375rem;
|
|
6634
|
+
padding-left: 1.75rem;
|
|
6635
|
+
padding-right: 1.75rem;
|
|
6636
|
+
padding-top: 0.3125rem;
|
|
6637
|
+
}
|
|
6638
|
+
.dropdown-menu-select.dropdown-menu .dropdown-item .c-inner {
|
|
6639
|
+
flex-grow: 1;
|
|
6640
|
+
margin-bottom: -0.375rem;
|
|
6641
|
+
margin-left: -1.75rem;
|
|
6642
|
+
margin-right: -1.75rem;
|
|
6643
|
+
margin-top: -0.3125rem;
|
|
6644
|
+
width: auto;
|
|
6645
|
+
}
|
|
6646
|
+
.dropdown-menu-select.dropdown-menu .dropdown-item.autofit-row {
|
|
6647
|
+
padding-left: 1.5rem;
|
|
6648
|
+
padding-right: 1.5rem;
|
|
6649
|
+
}
|
|
6650
|
+
.dropdown-menu-select.dropdown-menu .dropdown-divider {
|
|
6651
|
+
margin: 0.3125rem 0;
|
|
6652
|
+
}
|
|
6653
|
+
.dropdown-menu-select.dropdown-menu.dropdown-menu-indicator-start .dropdown-item-indicator-start {
|
|
6654
|
+
left: 0.5rem;
|
|
6655
|
+
top: 0.5rem;
|
|
6656
|
+
}
|
|
6657
|
+
.dropdown-menu-select.dropdown-menu.dropdown-menu-indicator-end .dropdown-item-indicator-end {
|
|
6658
|
+
right: 0.5rem;
|
|
6659
|
+
top: 0.5rem;
|
|
6660
|
+
}
|
|
6615
6661
|
.dropdown-menu-left {
|
|
6616
6662
|
left: 0;
|
|
6617
6663
|
right: auto;
|
|
@@ -7543,9 +7589,6 @@ select.form-control:disabled, select.form-control.disabled {
|
|
|
7543
7589
|
select.form-control:disabled > option, select.form-control.disabled > option {
|
|
7544
7590
|
cursor: not-allowed;
|
|
7545
7591
|
}
|
|
7546
|
-
select.form-control option {
|
|
7547
|
-
cursor: pointer;
|
|
7548
|
-
}
|
|
7549
7592
|
select.form-control::-ms-expand {
|
|
7550
7593
|
display: none;
|
|
7551
7594
|
}
|
|
@@ -7565,6 +7608,7 @@ select.form-control:focus::-ms-value {
|
|
|
7565
7608
|
background-size: 1.5em 1.5em;
|
|
7566
7609
|
padding-right: 2em;
|
|
7567
7610
|
overflow: hidden;
|
|
7611
|
+
text-align: left;
|
|
7568
7612
|
text-overflow: ellipsis;
|
|
7569
7613
|
white-space: nowrap;
|
|
7570
7614
|
}
|
|
@@ -7592,12 +7636,6 @@ select.form-control[size]:focus > option:checked, select.form-control[size].focu
|
|
|
7592
7636
|
color: #fff;
|
|
7593
7637
|
filter: invert(100%);
|
|
7594
7638
|
}
|
|
7595
|
-
select.form-control[size] option {
|
|
7596
|
-
padding: 0.4375rem 0.5rem;
|
|
7597
|
-
}
|
|
7598
|
-
select.form-control[size] option:checked {
|
|
7599
|
-
background-image: linear-gradient(#e7e7ed, #e7e7ed);
|
|
7600
|
-
}
|
|
7601
7639
|
@-moz-document url-prefix() {
|
|
7602
7640
|
select.form-control[size]:focus > option:checked, select.form-control[size].focus > option:checked {
|
|
7603
7641
|
background-image: linear-gradient(#004ad7, #004ad7);
|
|
@@ -7624,12 +7662,6 @@ select.form-control[multiple]:focus > option:checked, select.form-control[multip
|
|
|
7624
7662
|
color: #fff;
|
|
7625
7663
|
filter: invert(100%);
|
|
7626
7664
|
}
|
|
7627
|
-
select.form-control[multiple] option {
|
|
7628
|
-
padding: 0.4375rem 0.5rem;
|
|
7629
|
-
}
|
|
7630
|
-
select.form-control[multiple] option:checked {
|
|
7631
|
-
background-image: linear-gradient(#e7e7ed, #e7e7ed);
|
|
7632
|
-
}
|
|
7633
7665
|
@-moz-document url-prefix() {
|
|
7634
7666
|
select.form-control[multiple]:focus > option:checked, select.form-control[multiple].focus > option:checked {
|
|
7635
7667
|
background-image: linear-gradient(#004ad7, #004ad7);
|
|
@@ -7640,6 +7672,27 @@ select.form-control[multiple] option:checked {
|
|
|
7640
7672
|
}
|
|
7641
7673
|
}
|
|
7642
7674
|
|
|
7675
|
+
.form-control-select-secondary {
|
|
7676
|
+
background-color: #fff;
|
|
7677
|
+
color: #6b6c7e;
|
|
7678
|
+
}
|
|
7679
|
+
.form-control-select-secondary:hover, .form-control-select-secondary.hover {
|
|
7680
|
+
color: #6b6c7e;
|
|
7681
|
+
}
|
|
7682
|
+
.form-control-select-secondary:focus, .form-control-select-secondary.focus {
|
|
7683
|
+
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20class='lexicon-icon-outline%20caret-double-l-top'%20d='m347.913%20199.336-81.538-85c-5.413-5.642-14.188-5.642-19.6%200l-81.538%2085c-8.731%209.101-2.548%2024.664%209.8%2024.664h163.077c12.348%200%2018.531-15.563%209.8-24.664z'%20fill='%23272833'/%3E%3Cpath%20class='lexicon-icon-outline%20caret-double-l-bottom'%20d='m165.236%20312.664%2081.538%2085c5.412%205.642%2014.188%205.642%2019.6%200l81.538-85c8.731-9.101%202.548-24.664-9.8-24.664H175.035c-12.347%200-18.531%2015.563-9.8%2024.664z'%20fill='%23272833'/%3E%3C/svg%3E");
|
|
7684
|
+
color: #272833;
|
|
7685
|
+
}
|
|
7686
|
+
.form-control-select-secondary.show {
|
|
7687
|
+
background-color: #f1f2f5;
|
|
7688
|
+
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20class='lexicon-icon-outline%20caret-double-l-top'%20d='m347.913%20199.336-81.538-85c-5.413-5.642-14.188-5.642-19.6%200l-81.538%2085c-8.731%209.101-2.548%2024.664%209.8%2024.664h163.077c12.348%200%2018.531-15.563%209.8-24.664z'%20fill='%23272833'/%3E%3Cpath%20class='lexicon-icon-outline%20caret-double-l-bottom'%20d='m165.236%20312.664%2081.538%2085c5.412%205.642%2014.188%205.642%2019.6%200l81.538-85c8.731-9.101%202.548-24.664-9.8-24.664H175.035c-12.347%200-18.531%2015.563-9.8%2024.664z'%20fill='%23272833'/%3E%3C/svg%3E");
|
|
7689
|
+
color: #272833;
|
|
7690
|
+
}
|
|
7691
|
+
.form-control-select-secondary:disabled, .form-control-select-secondary.disabled {
|
|
7692
|
+
background-color: #fff;
|
|
7693
|
+
color: #6b6c7e;
|
|
7694
|
+
opacity: 0.4;
|
|
7695
|
+
}
|
|
7643
7696
|
textarea.form-control,
|
|
7644
7697
|
textarea.form-control-plaintext,
|
|
7645
7698
|
.form-control.form-control-textarea {
|
|
@@ -9693,7 +9746,7 @@ label.custom-control-label {
|
|
|
9693
9746
|
padding-left: 0.5rem;
|
|
9694
9747
|
padding-top: 0;
|
|
9695
9748
|
}
|
|
9696
|
-
.date-picker-nav select.form-control:hover {
|
|
9749
|
+
.date-picker-nav select.form-control:hover, .date-picker-nav select.form-control.hover {
|
|
9697
9750
|
background-color: #f1f2f5;
|
|
9698
9751
|
color: #272833;
|
|
9699
9752
|
}
|
|
@@ -18669,19 +18722,20 @@ a.sheet-subtitle:focus {
|
|
|
18669
18722
|
overflow: auto;
|
|
18670
18723
|
-webkit-overflow-scrolling: touch;
|
|
18671
18724
|
}
|
|
18725
|
+
.sidebar:focus, .sidebar.focus {
|
|
18726
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
18727
|
+
}
|
|
18672
18728
|
.sidebar .container-fluid {
|
|
18673
18729
|
padding-left: 1rem;
|
|
18674
18730
|
padding-right: 1rem;
|
|
18675
18731
|
}
|
|
18676
18732
|
|
|
18677
|
-
.sidebar-header
|
|
18678
|
-
.sidebar-footer {
|
|
18733
|
+
.sidebar-header {
|
|
18679
18734
|
padding-bottom: 1rem;
|
|
18680
18735
|
padding-left: 1rem;
|
|
18681
18736
|
padding-right: 1rem;
|
|
18682
18737
|
padding-top: 1rem;
|
|
18683
18738
|
}
|
|
18684
|
-
|
|
18685
18739
|
.sidebar-header .component-title {
|
|
18686
18740
|
font-size: 1.25rem;
|
|
18687
18741
|
font-weight: 600;
|
|
@@ -18699,6 +18753,13 @@ a.sheet-subtitle:focus {
|
|
|
18699
18753
|
overflow-wrap: break-word;
|
|
18700
18754
|
word-wrap: break-word;
|
|
18701
18755
|
}
|
|
18756
|
+
.sidebar-footer {
|
|
18757
|
+
padding-bottom: 1rem;
|
|
18758
|
+
padding-left: 1rem;
|
|
18759
|
+
padding-right: 1rem;
|
|
18760
|
+
padding-top: 1rem;
|
|
18761
|
+
}
|
|
18762
|
+
|
|
18702
18763
|
.sidebar-body {
|
|
18703
18764
|
overflow: auto;
|
|
18704
18765
|
-webkit-overflow-scrolling: touch;
|
|
@@ -26747,6 +26808,10 @@ button.bg-dark:focus {
|
|
|
26747
26808
|
display: grid !important;
|
|
26748
26809
|
}
|
|
26749
26810
|
|
|
26811
|
+
.d-contents {
|
|
26812
|
+
display: contents !important;
|
|
26813
|
+
}
|
|
26814
|
+
|
|
26750
26815
|
.d-table {
|
|
26751
26816
|
display: table !important;
|
|
26752
26817
|
}
|
|
@@ -26788,6 +26853,10 @@ button.bg-dark:focus {
|
|
|
26788
26853
|
display: grid !important;
|
|
26789
26854
|
}
|
|
26790
26855
|
|
|
26856
|
+
.d-sm-contents {
|
|
26857
|
+
display: contents !important;
|
|
26858
|
+
}
|
|
26859
|
+
|
|
26791
26860
|
.d-sm-table {
|
|
26792
26861
|
display: table !important;
|
|
26793
26862
|
}
|
|
@@ -26829,6 +26898,10 @@ button.bg-dark:focus {
|
|
|
26829
26898
|
display: grid !important;
|
|
26830
26899
|
}
|
|
26831
26900
|
|
|
26901
|
+
.d-md-contents {
|
|
26902
|
+
display: contents !important;
|
|
26903
|
+
}
|
|
26904
|
+
|
|
26832
26905
|
.d-md-table {
|
|
26833
26906
|
display: table !important;
|
|
26834
26907
|
}
|
|
@@ -26870,6 +26943,10 @@ button.bg-dark:focus {
|
|
|
26870
26943
|
display: grid !important;
|
|
26871
26944
|
}
|
|
26872
26945
|
|
|
26946
|
+
.d-lg-contents {
|
|
26947
|
+
display: contents !important;
|
|
26948
|
+
}
|
|
26949
|
+
|
|
26873
26950
|
.d-lg-table {
|
|
26874
26951
|
display: table !important;
|
|
26875
26952
|
}
|
|
@@ -26911,6 +26988,10 @@ button.bg-dark:focus {
|
|
|
26911
26988
|
display: grid !important;
|
|
26912
26989
|
}
|
|
26913
26990
|
|
|
26991
|
+
.d-xl-contents {
|
|
26992
|
+
display: contents !important;
|
|
26993
|
+
}
|
|
26994
|
+
|
|
26914
26995
|
.d-xl-table {
|
|
26915
26996
|
display: table !important;
|
|
26916
26997
|
}
|
|
@@ -26956,6 +27037,10 @@ button.bg-dark:focus {
|
|
|
26956
27037
|
display: grid !important;
|
|
26957
27038
|
}
|
|
26958
27039
|
|
|
27040
|
+
.d-print-contents {
|
|
27041
|
+
display: contents !important;
|
|
27042
|
+
}
|
|
27043
|
+
|
|
26959
27044
|
.d-print-table {
|
|
26960
27045
|
display: table !important;
|
|
26961
27046
|
}
|