@clayui/css 3.82.0 → 3.83.1
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 +111 -9
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +89 -8
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +55 -7
- 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 +64 -5
- package/src/scss/mixins/_sidebar.scss +5 -0
- package/src/scss/variables/_dropdowns.scss +52 -0
- package/src/scss/variables/_forms.scss +12 -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.1
|
|
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;
|
|
@@ -7565,6 +7611,7 @@ select.form-control:focus::-ms-value {
|
|
|
7565
7611
|
background-size: 1.5em 1.5em;
|
|
7566
7612
|
padding-right: 2em;
|
|
7567
7613
|
overflow: hidden;
|
|
7614
|
+
text-align: left;
|
|
7568
7615
|
text-overflow: ellipsis;
|
|
7569
7616
|
white-space: nowrap;
|
|
7570
7617
|
}
|
|
@@ -7579,6 +7626,7 @@ select.form-control:focus::-ms-value {
|
|
|
7579
7626
|
select.form-control[size] {
|
|
7580
7627
|
background-image: none;
|
|
7581
7628
|
height: auto;
|
|
7629
|
+
margin-left: 0;
|
|
7582
7630
|
padding-left: 0.5rem;
|
|
7583
7631
|
padding-right: 0.5rem;
|
|
7584
7632
|
scrollbar-width: thin;
|
|
@@ -7611,6 +7659,7 @@ select.form-control[size] option:checked {
|
|
|
7611
7659
|
select.form-control[multiple] {
|
|
7612
7660
|
background-image: none;
|
|
7613
7661
|
height: auto;
|
|
7662
|
+
margin-left: 0;
|
|
7614
7663
|
padding-left: 0.5rem;
|
|
7615
7664
|
padding-right: 0.5rem;
|
|
7616
7665
|
scrollbar-width: thin;
|
|
@@ -7640,6 +7689,27 @@ select.form-control[multiple] option:checked {
|
|
|
7640
7689
|
}
|
|
7641
7690
|
}
|
|
7642
7691
|
|
|
7692
|
+
.form-control-select-secondary {
|
|
7693
|
+
background-color: #fff;
|
|
7694
|
+
color: #6b6c7e;
|
|
7695
|
+
}
|
|
7696
|
+
.form-control-select-secondary:hover, .form-control-select-secondary.hover {
|
|
7697
|
+
color: #6b6c7e;
|
|
7698
|
+
}
|
|
7699
|
+
.form-control-select-secondary:focus, .form-control-select-secondary.focus {
|
|
7700
|
+
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");
|
|
7701
|
+
color: #272833;
|
|
7702
|
+
}
|
|
7703
|
+
.form-control-select-secondary.show {
|
|
7704
|
+
background-color: #f1f2f5;
|
|
7705
|
+
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");
|
|
7706
|
+
color: #272833;
|
|
7707
|
+
}
|
|
7708
|
+
.form-control-select-secondary:disabled, .form-control-select-secondary.disabled {
|
|
7709
|
+
background-color: #fff;
|
|
7710
|
+
color: #6b6c7e;
|
|
7711
|
+
opacity: 0.4;
|
|
7712
|
+
}
|
|
7643
7713
|
textarea.form-control,
|
|
7644
7714
|
textarea.form-control-plaintext,
|
|
7645
7715
|
.form-control.form-control-textarea {
|
|
@@ -9693,7 +9763,7 @@ label.custom-control-label {
|
|
|
9693
9763
|
padding-left: 0.5rem;
|
|
9694
9764
|
padding-top: 0;
|
|
9695
9765
|
}
|
|
9696
|
-
.date-picker-nav select.form-control:hover {
|
|
9766
|
+
.date-picker-nav select.form-control:hover, .date-picker-nav select.form-control.hover {
|
|
9697
9767
|
background-color: #f1f2f5;
|
|
9698
9768
|
color: #272833;
|
|
9699
9769
|
}
|
|
@@ -18669,19 +18739,20 @@ a.sheet-subtitle:focus {
|
|
|
18669
18739
|
overflow: auto;
|
|
18670
18740
|
-webkit-overflow-scrolling: touch;
|
|
18671
18741
|
}
|
|
18742
|
+
.sidebar:focus, .sidebar.focus {
|
|
18743
|
+
box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
|
|
18744
|
+
}
|
|
18672
18745
|
.sidebar .container-fluid {
|
|
18673
18746
|
padding-left: 1rem;
|
|
18674
18747
|
padding-right: 1rem;
|
|
18675
18748
|
}
|
|
18676
18749
|
|
|
18677
|
-
.sidebar-header
|
|
18678
|
-
.sidebar-footer {
|
|
18750
|
+
.sidebar-header {
|
|
18679
18751
|
padding-bottom: 1rem;
|
|
18680
18752
|
padding-left: 1rem;
|
|
18681
18753
|
padding-right: 1rem;
|
|
18682
18754
|
padding-top: 1rem;
|
|
18683
18755
|
}
|
|
18684
|
-
|
|
18685
18756
|
.sidebar-header .component-title {
|
|
18686
18757
|
font-size: 1.25rem;
|
|
18687
18758
|
font-weight: 600;
|
|
@@ -18699,6 +18770,13 @@ a.sheet-subtitle:focus {
|
|
|
18699
18770
|
overflow-wrap: break-word;
|
|
18700
18771
|
word-wrap: break-word;
|
|
18701
18772
|
}
|
|
18773
|
+
.sidebar-footer {
|
|
18774
|
+
padding-bottom: 1rem;
|
|
18775
|
+
padding-left: 1rem;
|
|
18776
|
+
padding-right: 1rem;
|
|
18777
|
+
padding-top: 1rem;
|
|
18778
|
+
}
|
|
18779
|
+
|
|
18702
18780
|
.sidebar-body {
|
|
18703
18781
|
overflow: auto;
|
|
18704
18782
|
-webkit-overflow-scrolling: touch;
|
|
@@ -26747,6 +26825,10 @@ button.bg-dark:focus {
|
|
|
26747
26825
|
display: grid !important;
|
|
26748
26826
|
}
|
|
26749
26827
|
|
|
26828
|
+
.d-contents {
|
|
26829
|
+
display: contents !important;
|
|
26830
|
+
}
|
|
26831
|
+
|
|
26750
26832
|
.d-table {
|
|
26751
26833
|
display: table !important;
|
|
26752
26834
|
}
|
|
@@ -26788,6 +26870,10 @@ button.bg-dark:focus {
|
|
|
26788
26870
|
display: grid !important;
|
|
26789
26871
|
}
|
|
26790
26872
|
|
|
26873
|
+
.d-sm-contents {
|
|
26874
|
+
display: contents !important;
|
|
26875
|
+
}
|
|
26876
|
+
|
|
26791
26877
|
.d-sm-table {
|
|
26792
26878
|
display: table !important;
|
|
26793
26879
|
}
|
|
@@ -26829,6 +26915,10 @@ button.bg-dark:focus {
|
|
|
26829
26915
|
display: grid !important;
|
|
26830
26916
|
}
|
|
26831
26917
|
|
|
26918
|
+
.d-md-contents {
|
|
26919
|
+
display: contents !important;
|
|
26920
|
+
}
|
|
26921
|
+
|
|
26832
26922
|
.d-md-table {
|
|
26833
26923
|
display: table !important;
|
|
26834
26924
|
}
|
|
@@ -26870,6 +26960,10 @@ button.bg-dark:focus {
|
|
|
26870
26960
|
display: grid !important;
|
|
26871
26961
|
}
|
|
26872
26962
|
|
|
26963
|
+
.d-lg-contents {
|
|
26964
|
+
display: contents !important;
|
|
26965
|
+
}
|
|
26966
|
+
|
|
26873
26967
|
.d-lg-table {
|
|
26874
26968
|
display: table !important;
|
|
26875
26969
|
}
|
|
@@ -26911,6 +27005,10 @@ button.bg-dark:focus {
|
|
|
26911
27005
|
display: grid !important;
|
|
26912
27006
|
}
|
|
26913
27007
|
|
|
27008
|
+
.d-xl-contents {
|
|
27009
|
+
display: contents !important;
|
|
27010
|
+
}
|
|
27011
|
+
|
|
26914
27012
|
.d-xl-table {
|
|
26915
27013
|
display: table !important;
|
|
26916
27014
|
}
|
|
@@ -26956,6 +27054,10 @@ button.bg-dark:focus {
|
|
|
26956
27054
|
display: grid !important;
|
|
26957
27055
|
}
|
|
26958
27056
|
|
|
27057
|
+
.d-print-contents {
|
|
27058
|
+
display: contents !important;
|
|
27059
|
+
}
|
|
27060
|
+
|
|
26959
27061
|
.d-print-table {
|
|
26960
27062
|
display: table !important;
|
|
26961
27063
|
}
|