@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/base.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>
|
|
@@ -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;
|
|
@@ -7299,9 +7345,6 @@ select.form-control {
|
|
|
7299
7345
|
select.form-control:disabled > option, select.form-control.disabled > option {
|
|
7300
7346
|
cursor: not-allowed;
|
|
7301
7347
|
}
|
|
7302
|
-
select.form-control option {
|
|
7303
|
-
cursor: pointer;
|
|
7304
|
-
}
|
|
7305
7348
|
select.form-control::-ms-expand {
|
|
7306
7349
|
display: none;
|
|
7307
7350
|
}
|
|
@@ -7321,6 +7364,7 @@ select.form-control:focus::-ms-value {
|
|
|
7321
7364
|
background-size: 8px 10px;
|
|
7322
7365
|
padding-right: 1.75rem;
|
|
7323
7366
|
overflow: hidden;
|
|
7367
|
+
text-align: left;
|
|
7324
7368
|
text-overflow: ellipsis;
|
|
7325
7369
|
white-space: nowrap;
|
|
7326
7370
|
}
|
|
@@ -7339,9 +7383,6 @@ select.form-control[size] {
|
|
|
7339
7383
|
select.form-control[size]:focus, select.form-control[size].focus {
|
|
7340
7384
|
background-image: none;
|
|
7341
7385
|
}
|
|
7342
|
-
select.form-control[size] option {
|
|
7343
|
-
padding: 0.25rem;
|
|
7344
|
-
}
|
|
7345
7386
|
select.form-control[multiple] {
|
|
7346
7387
|
background-image: none;
|
|
7347
7388
|
height: auto;
|
|
@@ -7353,9 +7394,6 @@ select.form-control[multiple] {
|
|
|
7353
7394
|
select.form-control[multiple]:focus, select.form-control[multiple].focus {
|
|
7354
7395
|
background-image: none;
|
|
7355
7396
|
}
|
|
7356
|
-
select.form-control[multiple] option {
|
|
7357
|
-
padding: 0.25rem;
|
|
7358
|
-
}
|
|
7359
7397
|
textarea.form-control,
|
|
7360
7398
|
textarea.form-control-plaintext,
|
|
7361
7399
|
.form-control.form-control-textarea {
|
|
@@ -17531,19 +17569,20 @@ a.sheet-subtitle:hover {
|
|
|
17531
17569
|
overflow: auto;
|
|
17532
17570
|
-webkit-overflow-scrolling: touch;
|
|
17533
17571
|
}
|
|
17572
|
+
.sidebar:focus, .sidebar.focus {
|
|
17573
|
+
box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
17574
|
+
}
|
|
17534
17575
|
.sidebar .container-fluid {
|
|
17535
17576
|
padding-left: 1rem;
|
|
17536
17577
|
padding-right: 1rem;
|
|
17537
17578
|
}
|
|
17538
17579
|
|
|
17539
|
-
.sidebar-header
|
|
17540
|
-
.sidebar-footer {
|
|
17580
|
+
.sidebar-header {
|
|
17541
17581
|
padding-bottom: 1rem;
|
|
17542
17582
|
padding-left: 1rem;
|
|
17543
17583
|
padding-right: 1rem;
|
|
17544
17584
|
padding-top: 1rem;
|
|
17545
17585
|
}
|
|
17546
|
-
|
|
17547
17586
|
.sidebar-header .component-title {
|
|
17548
17587
|
font-size: 1.5rem;
|
|
17549
17588
|
font-weight: 500;
|
|
@@ -17561,6 +17600,13 @@ a.sheet-subtitle:hover {
|
|
|
17561
17600
|
overflow-wrap: break-word;
|
|
17562
17601
|
word-wrap: break-word;
|
|
17563
17602
|
}
|
|
17603
|
+
.sidebar-footer {
|
|
17604
|
+
padding-bottom: 1rem;
|
|
17605
|
+
padding-left: 1rem;
|
|
17606
|
+
padding-right: 1rem;
|
|
17607
|
+
padding-top: 1rem;
|
|
17608
|
+
}
|
|
17609
|
+
|
|
17564
17610
|
.sidebar-body {
|
|
17565
17611
|
overflow: auto;
|
|
17566
17612
|
-webkit-overflow-scrolling: touch;
|
|
@@ -24726,6 +24772,10 @@ button.bg-dark:focus {
|
|
|
24726
24772
|
display: grid !important;
|
|
24727
24773
|
}
|
|
24728
24774
|
|
|
24775
|
+
.d-contents {
|
|
24776
|
+
display: contents !important;
|
|
24777
|
+
}
|
|
24778
|
+
|
|
24729
24779
|
.d-table {
|
|
24730
24780
|
display: table !important;
|
|
24731
24781
|
}
|
|
@@ -24767,6 +24817,10 @@ button.bg-dark:focus {
|
|
|
24767
24817
|
display: grid !important;
|
|
24768
24818
|
}
|
|
24769
24819
|
|
|
24820
|
+
.d-sm-contents {
|
|
24821
|
+
display: contents !important;
|
|
24822
|
+
}
|
|
24823
|
+
|
|
24770
24824
|
.d-sm-table {
|
|
24771
24825
|
display: table !important;
|
|
24772
24826
|
}
|
|
@@ -24808,6 +24862,10 @@ button.bg-dark:focus {
|
|
|
24808
24862
|
display: grid !important;
|
|
24809
24863
|
}
|
|
24810
24864
|
|
|
24865
|
+
.d-md-contents {
|
|
24866
|
+
display: contents !important;
|
|
24867
|
+
}
|
|
24868
|
+
|
|
24811
24869
|
.d-md-table {
|
|
24812
24870
|
display: table !important;
|
|
24813
24871
|
}
|
|
@@ -24849,6 +24907,10 @@ button.bg-dark:focus {
|
|
|
24849
24907
|
display: grid !important;
|
|
24850
24908
|
}
|
|
24851
24909
|
|
|
24910
|
+
.d-lg-contents {
|
|
24911
|
+
display: contents !important;
|
|
24912
|
+
}
|
|
24913
|
+
|
|
24852
24914
|
.d-lg-table {
|
|
24853
24915
|
display: table !important;
|
|
24854
24916
|
}
|
|
@@ -24890,6 +24952,10 @@ button.bg-dark:focus {
|
|
|
24890
24952
|
display: grid !important;
|
|
24891
24953
|
}
|
|
24892
24954
|
|
|
24955
|
+
.d-xl-contents {
|
|
24956
|
+
display: contents !important;
|
|
24957
|
+
}
|
|
24958
|
+
|
|
24893
24959
|
.d-xl-table {
|
|
24894
24960
|
display: table !important;
|
|
24895
24961
|
}
|
|
@@ -24935,6 +25001,10 @@ button.bg-dark:focus {
|
|
|
24935
25001
|
display: grid !important;
|
|
24936
25002
|
}
|
|
24937
25003
|
|
|
25004
|
+
.d-print-contents {
|
|
25005
|
+
display: contents !important;
|
|
25006
|
+
}
|
|
25007
|
+
|
|
24938
25008
|
.d-print-table {
|
|
24939
25009
|
display: table !important;
|
|
24940
25010
|
}
|