@clayui/css 3.55.0 → 3.56.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 +49 -27
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +48 -38
- 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 +47 -65
- 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/_range.scss +24 -6
- package/src/scss/cadmin/components/_breadcrumbs.scss +12 -62
- package/src/scss/cadmin/variables/_breadcrumbs.scss +94 -16
- package/src/scss/cadmin/variables/_range.scss +110 -51
- package/src/scss/components/_breadcrumbs.scss +12 -71
- package/src/scss/functions/_color-functions.scss +66 -26
- package/src/scss/functions/_global-functions.scss +10 -3
- package/src/scss/mixins/_forms.scss +1020 -378
- package/src/scss/variables/_alerts.scss +8 -0
- package/src/scss/variables/_breadcrumbs.scss +90 -15
- package/src/scss/variables/_range.scss +113 -49
- package/src/scss/variables/_sidebar.scss +2 -0
- package/src/scss/variables/_tables.scss +5 -0
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.56.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>
|
|
@@ -4284,13 +4284,6 @@ input[type=button].btn-block {
|
|
|
4284
4284
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
4285
4285
|
outline: 0;
|
|
4286
4286
|
}
|
|
4287
|
-
.breadcrumb-link > .breadcrumb-text-truncate {
|
|
4288
|
-
text-decoration: none;
|
|
4289
|
-
}
|
|
4290
|
-
.breadcrumb-link > .breadcrumb-text-truncate:hover, .breadcrumb-link > .breadcrumb-text-truncate:focus {
|
|
4291
|
-
text-decoration: underline;
|
|
4292
|
-
}
|
|
4293
|
-
|
|
4294
4287
|
.breadcrumb-item {
|
|
4295
4288
|
font-size: 0.875rem;
|
|
4296
4289
|
margin-right: 0.5em;
|
|
@@ -4301,6 +4294,9 @@ input[type=button].btn-block {
|
|
|
4301
4294
|
color: #272833;
|
|
4302
4295
|
font-weight: 600;
|
|
4303
4296
|
}
|
|
4297
|
+
.breadcrumb-item > span {
|
|
4298
|
+
text-transform: inherit;
|
|
4299
|
+
}
|
|
4304
4300
|
.breadcrumb-item + .breadcrumb-item {
|
|
4305
4301
|
padding-left: 1em;
|
|
4306
4302
|
}
|
|
@@ -4314,9 +4310,7 @@ input[type=button].btn-block {
|
|
|
4314
4310
|
content: "";
|
|
4315
4311
|
height: 0.6em;
|
|
4316
4312
|
left: 0;
|
|
4317
|
-
margin-top: calc(
|
|
4318
|
-
-0.6em / 2
|
|
4319
|
-
);
|
|
4313
|
+
margin-top: calc(-0.6em / 2);
|
|
4320
4314
|
padding: 0;
|
|
4321
4315
|
position: absolute;
|
|
4322
4316
|
top: 50%;
|
|
@@ -4331,17 +4325,20 @@ input[type=button].btn-block {
|
|
|
4331
4325
|
.breadcrumb-item .dropdown-toggle {
|
|
4332
4326
|
text-decoration: none;
|
|
4333
4327
|
}
|
|
4334
|
-
.breadcrumb-item .dropdown-toggle:hover
|
|
4328
|
+
.breadcrumb-item .dropdown-toggle:hover {
|
|
4329
|
+
text-decoration: none;
|
|
4330
|
+
}
|
|
4331
|
+
.breadcrumb-item .dropdown-toggle:focus, .breadcrumb-item .dropdown-toggle.focus {
|
|
4335
4332
|
text-decoration: none;
|
|
4336
4333
|
}
|
|
4337
|
-
|
|
4338
4334
|
.breadcrumb-text-truncate {
|
|
4339
4335
|
display: inline-block;
|
|
4340
4336
|
max-width: 17.875rem;
|
|
4341
4337
|
overflow: hidden;
|
|
4338
|
+
text-decoration: inherit;
|
|
4342
4339
|
text-overflow: ellipsis;
|
|
4343
|
-
white-space: nowrap;
|
|
4344
4340
|
vertical-align: bottom;
|
|
4341
|
+
white-space: nowrap;
|
|
4345
4342
|
}
|
|
4346
4343
|
@media (max-width: 767.98px) {
|
|
4347
4344
|
.breadcrumb-text-truncate {
|
|
@@ -8318,19 +8315,24 @@ button.link-outline {
|
|
|
8318
8315
|
text-align: center;
|
|
8319
8316
|
}
|
|
8320
8317
|
.clay-range-input {
|
|
8321
|
-
color: #a7a9bc;
|
|
8322
8318
|
display: block;
|
|
8323
8319
|
padding-bottom: 0.1px;
|
|
8324
8320
|
position: relative;
|
|
8325
8321
|
vertical-align: middle;
|
|
8326
8322
|
width: 100%;
|
|
8323
|
+
color: #a7a9bc;
|
|
8327
8324
|
}
|
|
8328
8325
|
.clay-range-input .tooltip {
|
|
8329
|
-
margin-left: 0.
|
|
8326
|
+
margin-left: 0.8125rem;
|
|
8330
8327
|
transition: opacity 0.15s linear;
|
|
8331
8328
|
visibility: hidden;
|
|
8332
8329
|
white-space: nowrap;
|
|
8333
8330
|
}
|
|
8331
|
+
@media (prefers-reduced-motion: reduce) {
|
|
8332
|
+
.clay-range-input .tooltip {
|
|
8333
|
+
transition: none;
|
|
8334
|
+
}
|
|
8335
|
+
}
|
|
8334
8336
|
.clay-range-input .tooltip-inner {
|
|
8335
8337
|
padding: 0.5rem 0.75rem;
|
|
8336
8338
|
}
|
|
@@ -8345,7 +8347,7 @@ button.link-outline {
|
|
|
8345
8347
|
transform: translateX(-50%);
|
|
8346
8348
|
}
|
|
8347
8349
|
.clay-range-input .clay-tooltip-bottom .tooltip-arrow {
|
|
8348
|
-
margin-left: -0.
|
|
8350
|
+
margin-left: -0.25rem;
|
|
8349
8351
|
}
|
|
8350
8352
|
.clay-range-input .clay-tooltip-top {
|
|
8351
8353
|
bottom: 100%;
|
|
@@ -8354,9 +8356,12 @@ button.link-outline {
|
|
|
8354
8356
|
transform: translateX(-50%);
|
|
8355
8357
|
}
|
|
8356
8358
|
.clay-range-input .clay-tooltip-top .tooltip-arrow {
|
|
8357
|
-
margin-left: -0.
|
|
8359
|
+
margin-left: -0.25rem;
|
|
8358
8360
|
}
|
|
8359
8361
|
.clay-range-input .clay-range-track {
|
|
8362
|
+
-moz-appearance: none;
|
|
8363
|
+
-webkit-appearance: none;
|
|
8364
|
+
appearance: none;
|
|
8360
8365
|
background-color: #f1f2f5;
|
|
8361
8366
|
border-radius: 100px;
|
|
8362
8367
|
height: 0.25rem;
|
|
@@ -8365,14 +8370,17 @@ button.link-outline {
|
|
|
8365
8370
|
top: 50%;
|
|
8366
8371
|
width: 100%;
|
|
8367
8372
|
}
|
|
8373
|
+
.clay-range-input .clay-range-track::-ms-expand {
|
|
8374
|
+
display: none;
|
|
8375
|
+
}
|
|
8368
8376
|
.clay-range-input .clay-range-progress {
|
|
8369
8377
|
background-color: #0b5fff;
|
|
8370
8378
|
border-radius: 100px 0 0 100px;
|
|
8371
|
-
height: 0.25rem;
|
|
8372
|
-
margin-top: -0.125rem;
|
|
8373
8379
|
position: absolute;
|
|
8374
8380
|
top: 50%;
|
|
8375
8381
|
width: 50%;
|
|
8382
|
+
height: 0.25rem;
|
|
8383
|
+
margin-top: -0.125rem;
|
|
8376
8384
|
}
|
|
8377
8385
|
.clay-range-input .clay-range-thumb {
|
|
8378
8386
|
background-color: #fff;
|
|
@@ -8392,18 +8400,22 @@ button.link-outline {
|
|
|
8392
8400
|
-webkit-appearance: none;
|
|
8393
8401
|
appearance: none;
|
|
8394
8402
|
background-color: transparent;
|
|
8395
|
-
content: "1.5rem";
|
|
8396
8403
|
height: 2.5rem;
|
|
8397
8404
|
margin: 0;
|
|
8398
8405
|
padding: 0;
|
|
8399
8406
|
position: relative;
|
|
8400
8407
|
z-index: 1;
|
|
8408
|
+
content: "1.5rem";
|
|
8409
|
+
}
|
|
8410
|
+
.clay-range-input .form-control-range::-ms-expand {
|
|
8411
|
+
display: none;
|
|
8401
8412
|
}
|
|
8402
8413
|
.clay-range-input .form-control-range::-moz-focus-outer {
|
|
8403
8414
|
border-width: 0;
|
|
8404
8415
|
}
|
|
8405
8416
|
.clay-range-input .form-control-range::-moz-range-thumb {
|
|
8406
8417
|
-moz-appearance: none;
|
|
8418
|
+
-webkit-appearance: none;
|
|
8407
8419
|
appearance: none;
|
|
8408
8420
|
background-color: #fff;
|
|
8409
8421
|
border-radius: 100px;
|
|
@@ -8415,6 +8427,9 @@ button.link-outline {
|
|
|
8415
8427
|
top: 50%;
|
|
8416
8428
|
width: 1.5rem;
|
|
8417
8429
|
}
|
|
8430
|
+
.clay-range-input .form-control-range::-moz-range-thumb::-ms-expand {
|
|
8431
|
+
display: none;
|
|
8432
|
+
}
|
|
8418
8433
|
.clay-range-input .form-control-range::-moz-range-track {
|
|
8419
8434
|
-moz-appearance: none;
|
|
8420
8435
|
appearance: none;
|
|
@@ -8427,13 +8442,12 @@ button.link-outline {
|
|
|
8427
8442
|
background-color: transparent;
|
|
8428
8443
|
}
|
|
8429
8444
|
.clay-range-input .form-control-range::-ms-thumb {
|
|
8445
|
+
-moz-appearance: none;
|
|
8446
|
+
-webkit-appearance: none;
|
|
8430
8447
|
appearance: none;
|
|
8431
|
-
|
|
8432
|
-
|
|
8433
|
-
|
|
8434
|
-
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
8435
|
-
height: 1.5rem;
|
|
8436
|
-
width: 1.5rem;
|
|
8448
|
+
}
|
|
8449
|
+
.clay-range-input .form-control-range::-ms-thumb::-ms-expand {
|
|
8450
|
+
display: none;
|
|
8437
8451
|
}
|
|
8438
8452
|
.clay-range-input .form-control-range::-ms-tooltip {
|
|
8439
8453
|
display: none;
|
|
@@ -8452,6 +8466,7 @@ button.link-outline {
|
|
|
8452
8466
|
height: 100%;
|
|
8453
8467
|
}
|
|
8454
8468
|
.clay-range-input .form-control-range::-webkit-slider-thumb {
|
|
8469
|
+
-moz-appearance: none;
|
|
8455
8470
|
-webkit-appearance: none;
|
|
8456
8471
|
appearance: none;
|
|
8457
8472
|
background-color: #fff;
|
|
@@ -8464,6 +8479,9 @@ button.link-outline {
|
|
|
8464
8479
|
top: 50%;
|
|
8465
8480
|
width: 1.5rem;
|
|
8466
8481
|
}
|
|
8482
|
+
.clay-range-input .form-control-range::-webkit-slider-thumb::-ms-expand {
|
|
8483
|
+
display: none;
|
|
8484
|
+
}
|
|
8467
8485
|
.clay-range-input .form-control-range:hover {
|
|
8468
8486
|
cursor: pointer;
|
|
8469
8487
|
}
|
|
@@ -18407,6 +18425,8 @@ a.sheet-subtitle:focus {
|
|
|
18407
18425
|
.sidebar-header .component-title {
|
|
18408
18426
|
font-size: 1.25rem;
|
|
18409
18427
|
font-weight: 600;
|
|
18428
|
+
overflow-wrap: break-word;
|
|
18429
|
+
word-wrap: break-word;
|
|
18410
18430
|
}
|
|
18411
18431
|
.sidebar-header .component-title[href],
|
|
18412
18432
|
.sidebar-header .component-title [href] {
|
|
@@ -18416,6 +18436,8 @@ a.sheet-subtitle:focus {
|
|
|
18416
18436
|
font-size: 0.75rem;
|
|
18417
18437
|
font-weight: 400;
|
|
18418
18438
|
margin-bottom: 0;
|
|
18439
|
+
overflow-wrap: break-word;
|
|
18440
|
+
word-wrap: break-word;
|
|
18419
18441
|
}
|
|
18420
18442
|
.sidebar-body {
|
|
18421
18443
|
overflow: auto;
|