@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/base.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>
|
|
@@ -848,9 +848,10 @@ pre code {
|
|
|
848
848
|
}
|
|
849
849
|
.spinner-border {
|
|
850
850
|
animation: spinner-border 0.75s linear infinite;
|
|
851
|
+
border-color: currentColor transparent currentColor currentColor;
|
|
851
852
|
border-radius: 50%;
|
|
852
|
-
border-
|
|
853
|
-
border: 0.25em
|
|
853
|
+
border-style: solid;
|
|
854
|
+
border-width: 0.25em;
|
|
854
855
|
display: inline-block;
|
|
855
856
|
height: 2rem;
|
|
856
857
|
vertical-align: text-bottom;
|
|
@@ -6230,12 +6231,12 @@ input[type=button].btn-block {
|
|
|
6230
6231
|
overflow-wrap: break-word;
|
|
6231
6232
|
word-wrap: break-word;
|
|
6232
6233
|
}
|
|
6233
|
-
.dropdown-item:hover {
|
|
6234
|
+
.dropdown-item:hover, .dropdown-item.hover {
|
|
6234
6235
|
background-color: #f8f9fa;
|
|
6235
6236
|
color: #16181b;
|
|
6236
6237
|
text-decoration: none;
|
|
6237
6238
|
}
|
|
6238
|
-
.dropdown-item:focus {
|
|
6239
|
+
.dropdown-item:focus, .dropdown-item.focus {
|
|
6239
6240
|
background-color: #f8f9fa;
|
|
6240
6241
|
color: #16181b;
|
|
6241
6242
|
text-decoration: none;
|
|
@@ -6417,6 +6418,51 @@ input[type=button].btn-block {
|
|
|
6417
6418
|
margin-bottom: 0;
|
|
6418
6419
|
}
|
|
6419
6420
|
|
|
6421
|
+
.dropdown-menu-select.dropdown-menu .dropdown-header {
|
|
6422
|
+
padding-bottom: 0.375rem;
|
|
6423
|
+
padding-left: 1.75rem;
|
|
6424
|
+
padding-right: 1.75rem;
|
|
6425
|
+
padding-top: 0.3125rem;
|
|
6426
|
+
}
|
|
6427
|
+
.dropdown-menu-select.dropdown-menu .dropdown-subheader {
|
|
6428
|
+
padding-bottom: 0.4375rem;
|
|
6429
|
+
padding-left: 1.75rem;
|
|
6430
|
+
padding-right: 1.75rem;
|
|
6431
|
+
padding-top: 0.4375rem;
|
|
6432
|
+
}
|
|
6433
|
+
.dropdown-menu-select.dropdown-menu .dropdown-section {
|
|
6434
|
+
padding-left: 1.75rem;
|
|
6435
|
+
padding-right: 1.75rem;
|
|
6436
|
+
}
|
|
6437
|
+
.dropdown-menu-select.dropdown-menu .dropdown-item {
|
|
6438
|
+
padding-bottom: 0.375rem;
|
|
6439
|
+
padding-left: 1.75rem;
|
|
6440
|
+
padding-right: 1.75rem;
|
|
6441
|
+
padding-top: 0.3125rem;
|
|
6442
|
+
}
|
|
6443
|
+
.dropdown-menu-select.dropdown-menu .dropdown-item .c-inner {
|
|
6444
|
+
flex-grow: 1;
|
|
6445
|
+
margin-bottom: -0.375rem;
|
|
6446
|
+
margin-left: -1.75rem;
|
|
6447
|
+
margin-right: -1.75rem;
|
|
6448
|
+
margin-top: -0.3125rem;
|
|
6449
|
+
width: auto;
|
|
6450
|
+
}
|
|
6451
|
+
.dropdown-menu-select.dropdown-menu .dropdown-item.autofit-row {
|
|
6452
|
+
padding-left: 1.5rem;
|
|
6453
|
+
padding-right: 1.5rem;
|
|
6454
|
+
}
|
|
6455
|
+
.dropdown-menu-select.dropdown-menu .dropdown-divider {
|
|
6456
|
+
margin: 0.3125rem 0;
|
|
6457
|
+
}
|
|
6458
|
+
.dropdown-menu-select.dropdown-menu.dropdown-menu-indicator-start .dropdown-item-indicator-start {
|
|
6459
|
+
left: 0.5rem;
|
|
6460
|
+
top: 0.5rem;
|
|
6461
|
+
}
|
|
6462
|
+
.dropdown-menu-select.dropdown-menu.dropdown-menu-indicator-end .dropdown-item-indicator-end {
|
|
6463
|
+
right: 0.5rem;
|
|
6464
|
+
top: 0.5rem;
|
|
6465
|
+
}
|
|
6420
6466
|
.dropdown-menu-left {
|
|
6421
6467
|
left: 0;
|
|
6422
6468
|
right: auto;
|
|
@@ -7321,6 +7367,7 @@ select.form-control:focus::-ms-value {
|
|
|
7321
7367
|
background-size: 8px 10px;
|
|
7322
7368
|
padding-right: 1.75rem;
|
|
7323
7369
|
overflow: hidden;
|
|
7370
|
+
text-align: left;
|
|
7324
7371
|
text-overflow: ellipsis;
|
|
7325
7372
|
white-space: nowrap;
|
|
7326
7373
|
}
|
|
@@ -7331,6 +7378,7 @@ select.form-control:focus::-ms-value {
|
|
|
7331
7378
|
select.form-control[size] {
|
|
7332
7379
|
background-image: none;
|
|
7333
7380
|
height: auto;
|
|
7381
|
+
margin-left: 0;
|
|
7334
7382
|
padding-left: 0.5rem;
|
|
7335
7383
|
padding-right: 0.5rem;
|
|
7336
7384
|
scrollbar-width: thin;
|
|
@@ -7345,6 +7393,7 @@ select.form-control[size] option {
|
|
|
7345
7393
|
select.form-control[multiple] {
|
|
7346
7394
|
background-image: none;
|
|
7347
7395
|
height: auto;
|
|
7396
|
+
margin-left: 0;
|
|
7348
7397
|
padding-left: 0.5rem;
|
|
7349
7398
|
padding-right: 0.5rem;
|
|
7350
7399
|
scrollbar-width: thin;
|
|
@@ -17531,19 +17580,20 @@ a.sheet-subtitle:hover {
|
|
|
17531
17580
|
overflow: auto;
|
|
17532
17581
|
-webkit-overflow-scrolling: touch;
|
|
17533
17582
|
}
|
|
17583
|
+
.sidebar:focus, .sidebar.focus {
|
|
17584
|
+
box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
17585
|
+
}
|
|
17534
17586
|
.sidebar .container-fluid {
|
|
17535
17587
|
padding-left: 1rem;
|
|
17536
17588
|
padding-right: 1rem;
|
|
17537
17589
|
}
|
|
17538
17590
|
|
|
17539
|
-
.sidebar-header
|
|
17540
|
-
.sidebar-footer {
|
|
17591
|
+
.sidebar-header {
|
|
17541
17592
|
padding-bottom: 1rem;
|
|
17542
17593
|
padding-left: 1rem;
|
|
17543
17594
|
padding-right: 1rem;
|
|
17544
17595
|
padding-top: 1rem;
|
|
17545
17596
|
}
|
|
17546
|
-
|
|
17547
17597
|
.sidebar-header .component-title {
|
|
17548
17598
|
font-size: 1.5rem;
|
|
17549
17599
|
font-weight: 500;
|
|
@@ -17561,6 +17611,13 @@ a.sheet-subtitle:hover {
|
|
|
17561
17611
|
overflow-wrap: break-word;
|
|
17562
17612
|
word-wrap: break-word;
|
|
17563
17613
|
}
|
|
17614
|
+
.sidebar-footer {
|
|
17615
|
+
padding-bottom: 1rem;
|
|
17616
|
+
padding-left: 1rem;
|
|
17617
|
+
padding-right: 1rem;
|
|
17618
|
+
padding-top: 1rem;
|
|
17619
|
+
}
|
|
17620
|
+
|
|
17564
17621
|
.sidebar-body {
|
|
17565
17622
|
overflow: auto;
|
|
17566
17623
|
-webkit-overflow-scrolling: touch;
|
|
@@ -24726,6 +24783,10 @@ button.bg-dark:focus {
|
|
|
24726
24783
|
display: grid !important;
|
|
24727
24784
|
}
|
|
24728
24785
|
|
|
24786
|
+
.d-contents {
|
|
24787
|
+
display: contents !important;
|
|
24788
|
+
}
|
|
24789
|
+
|
|
24729
24790
|
.d-table {
|
|
24730
24791
|
display: table !important;
|
|
24731
24792
|
}
|
|
@@ -24767,6 +24828,10 @@ button.bg-dark:focus {
|
|
|
24767
24828
|
display: grid !important;
|
|
24768
24829
|
}
|
|
24769
24830
|
|
|
24831
|
+
.d-sm-contents {
|
|
24832
|
+
display: contents !important;
|
|
24833
|
+
}
|
|
24834
|
+
|
|
24770
24835
|
.d-sm-table {
|
|
24771
24836
|
display: table !important;
|
|
24772
24837
|
}
|
|
@@ -24808,6 +24873,10 @@ button.bg-dark:focus {
|
|
|
24808
24873
|
display: grid !important;
|
|
24809
24874
|
}
|
|
24810
24875
|
|
|
24876
|
+
.d-md-contents {
|
|
24877
|
+
display: contents !important;
|
|
24878
|
+
}
|
|
24879
|
+
|
|
24811
24880
|
.d-md-table {
|
|
24812
24881
|
display: table !important;
|
|
24813
24882
|
}
|
|
@@ -24849,6 +24918,10 @@ button.bg-dark:focus {
|
|
|
24849
24918
|
display: grid !important;
|
|
24850
24919
|
}
|
|
24851
24920
|
|
|
24921
|
+
.d-lg-contents {
|
|
24922
|
+
display: contents !important;
|
|
24923
|
+
}
|
|
24924
|
+
|
|
24852
24925
|
.d-lg-table {
|
|
24853
24926
|
display: table !important;
|
|
24854
24927
|
}
|
|
@@ -24890,6 +24963,10 @@ button.bg-dark:focus {
|
|
|
24890
24963
|
display: grid !important;
|
|
24891
24964
|
}
|
|
24892
24965
|
|
|
24966
|
+
.d-xl-contents {
|
|
24967
|
+
display: contents !important;
|
|
24968
|
+
}
|
|
24969
|
+
|
|
24893
24970
|
.d-xl-table {
|
|
24894
24971
|
display: table !important;
|
|
24895
24972
|
}
|
|
@@ -24935,6 +25012,10 @@ button.bg-dark:focus {
|
|
|
24935
25012
|
display: grid !important;
|
|
24936
25013
|
}
|
|
24937
25014
|
|
|
25015
|
+
.d-print-contents {
|
|
25016
|
+
display: contents !important;
|
|
25017
|
+
}
|
|
25018
|
+
|
|
24938
25019
|
.d-print-table {
|
|
24939
25020
|
display: table !important;
|
|
24940
25021
|
}
|