@clayui/css 3.97.0 → 3.99.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/base.css CHANGED
@@ -1,6 +1,6 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Clay 3.97.0
3
+ * Clay 3.99.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>
@@ -6479,6 +6479,77 @@ input[type=button].btn-block {
6479
6479
  padding-left: 1.5rem;
6480
6480
  padding-right: 1.5rem;
6481
6481
  }
6482
+ .dropdown-menu-select.dropdown-menu .dropdown-item-scroll {
6483
+ font-size: 1rem;
6484
+ height: 2rem;
6485
+ padding: 0;
6486
+ position: absolute;
6487
+ text-align: center;
6488
+ z-index: 1;
6489
+ }
6490
+ .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:hover, .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.hover {
6491
+ background-color: #f8f9fa;
6492
+ background-image: none;
6493
+ color: #16181b;
6494
+ }
6495
+ .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:focus, .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.focus {
6496
+ background-color: #f8f9fa;
6497
+ background-image: none;
6498
+ color: #16181b;
6499
+ }
6500
+ .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:active {
6501
+ background-color: #007bff;
6502
+ background-image: none;
6503
+ color: #fff;
6504
+ }
6505
+ .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:active label {
6506
+ color: #fff;
6507
+ }
6508
+ .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:active .form-check-label {
6509
+ color: #fff;
6510
+ }
6511
+ .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.active {
6512
+ background-color: #007bff;
6513
+ background-image: none;
6514
+ color: #fff;
6515
+ }
6516
+ .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.active label {
6517
+ color: #fff;
6518
+ }
6519
+ .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.active .form-check-label {
6520
+ color: #fff;
6521
+ }
6522
+ .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:disabled, .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.disabled {
6523
+ background-color: transparent;
6524
+ background-image: none;
6525
+ color: #6c757d;
6526
+ cursor: not-allowed;
6527
+ }
6528
+ .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:disabled label,
6529
+ .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:disabled .form-check-label, .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.disabled label,
6530
+ .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.disabled .form-check-label {
6531
+ color: #6c757d;
6532
+ }
6533
+ .dropdown-menu-select.dropdown-menu .dropdown-item-scroll .c-inner {
6534
+ flex-grow: 1;
6535
+ width: auto;
6536
+ }
6537
+ .dropdown-menu-select.dropdown-menu .dropdown-item-scroll-down {
6538
+ background-image: linear-gradient(to top, white 84%, rgba(255, 255, 255, 0) 100%);
6539
+ bottom: 0.5rem;
6540
+ }
6541
+ .dropdown-menu-select.dropdown-menu .dropdown-item-scroll-down .c-inner {
6542
+ flex-grow: 1;
6543
+ width: auto;
6544
+ }
6545
+ .dropdown-menu-select.dropdown-menu .dropdown-item-scroll-up {
6546
+ background-image: linear-gradient(to bottom, white 84%, rgba(255, 255, 255, 0) 100%);
6547
+ top: 0.5rem;
6548
+ }
6549
+ .dropdown-menu-select.dropdown-menu .dropdown-item-scroll-up .c-inner {
6550
+ flex-grow: 1;
6551
+ width: auto;
6552
+ }
6482
6553
  .dropdown-menu-select.dropdown-menu .dropdown-divider {
6483
6554
  margin: 0.3125rem 0;
6484
6555
  }
@@ -6490,6 +6561,10 @@ input[type=button].btn-block {
6490
6561
  right: 0.5rem;
6491
6562
  top: 0.5rem;
6492
6563
  }
6564
+ .dropdown-menu-select.dropdown-menu-height-lg .inline-scroller {
6565
+ max-height: 432px;
6566
+ }
6567
+
6493
6568
  .dropdown-menu-left {
6494
6569
  left: 0;
6495
6570
  right: auto;
@@ -24832,6 +24907,106 @@ ul.autofit-row {
24832
24907
  vertical-align: text-top !important;
24833
24908
  }
24834
24909
 
24910
+ .bg-blue {
24911
+ background-color: #007bff !important;
24912
+ }
24913
+
24914
+ a.bg-blue:hover, a.bg-blue:focus,
24915
+ button.bg-blue:hover,
24916
+ button.bg-blue:focus {
24917
+ background-color: #0062cc !important;
24918
+ }
24919
+
24920
+ .bg-indigo {
24921
+ background-color: #6610f2 !important;
24922
+ }
24923
+
24924
+ a.bg-indigo:hover, a.bg-indigo:focus,
24925
+ button.bg-indigo:hover,
24926
+ button.bg-indigo:focus {
24927
+ background-color: #510bc4 !important;
24928
+ }
24929
+
24930
+ .bg-purple {
24931
+ background-color: #6f42c1 !important;
24932
+ }
24933
+
24934
+ a.bg-purple:hover, a.bg-purple:focus,
24935
+ button.bg-purple:hover,
24936
+ button.bg-purple:focus {
24937
+ background-color: #59339d !important;
24938
+ }
24939
+
24940
+ .bg-pink {
24941
+ background-color: #e83e8c !important;
24942
+ }
24943
+
24944
+ a.bg-pink:hover, a.bg-pink:focus,
24945
+ button.bg-pink:hover,
24946
+ button.bg-pink:focus {
24947
+ background-color: #d91a72 !important;
24948
+ }
24949
+
24950
+ .bg-red {
24951
+ background-color: #dc3545 !important;
24952
+ }
24953
+
24954
+ a.bg-red:hover, a.bg-red:focus,
24955
+ button.bg-red:hover,
24956
+ button.bg-red:focus {
24957
+ background-color: #bd2130 !important;
24958
+ }
24959
+
24960
+ .bg-orange {
24961
+ background-color: #fd7e14 !important;
24962
+ }
24963
+
24964
+ a.bg-orange:hover, a.bg-orange:focus,
24965
+ button.bg-orange:hover,
24966
+ button.bg-orange:focus {
24967
+ background-color: #dc6502 !important;
24968
+ }
24969
+
24970
+ .bg-yellow {
24971
+ background-color: #ffc107 !important;
24972
+ }
24973
+
24974
+ a.bg-yellow:hover, a.bg-yellow:focus,
24975
+ button.bg-yellow:hover,
24976
+ button.bg-yellow:focus {
24977
+ background-color: #d39e00 !important;
24978
+ }
24979
+
24980
+ .bg-green {
24981
+ background-color: #28a745 !important;
24982
+ }
24983
+
24984
+ a.bg-green:hover, a.bg-green:focus,
24985
+ button.bg-green:hover,
24986
+ button.bg-green:focus {
24987
+ background-color: #1e7e34 !important;
24988
+ }
24989
+
24990
+ .bg-teal {
24991
+ background-color: #20c997 !important;
24992
+ }
24993
+
24994
+ a.bg-teal:hover, a.bg-teal:focus,
24995
+ button.bg-teal:hover,
24996
+ button.bg-teal:focus {
24997
+ background-color: #199d76 !important;
24998
+ }
24999
+
25000
+ .bg-cyan {
25001
+ background-color: #17a2b8 !important;
25002
+ }
25003
+
25004
+ a.bg-cyan:hover, a.bg-cyan:focus,
25005
+ button.bg-cyan:hover,
25006
+ button.bg-cyan:focus {
25007
+ background-color: #117a8b !important;
25008
+ }
25009
+
24835
25010
  .bg-primary {
24836
25011
  background-color: #007bff !important;
24837
25012
  }
@@ -29733,6 +29908,86 @@ button.bg-dark:focus {
29733
29908
  color: #fff !important;
29734
29909
  }
29735
29910
 
29911
+ .text-blue {
29912
+ color: #007bff !important;
29913
+ }
29914
+
29915
+ a.text-blue:hover, a.text-blue:focus {
29916
+ color: #0056b3 !important;
29917
+ }
29918
+
29919
+ .text-indigo {
29920
+ color: #6610f2 !important;
29921
+ }
29922
+
29923
+ a.text-indigo:hover, a.text-indigo:focus {
29924
+ color: #4709ac !important;
29925
+ }
29926
+
29927
+ .text-purple {
29928
+ color: #6f42c1 !important;
29929
+ }
29930
+
29931
+ a.text-purple:hover, a.text-purple:focus {
29932
+ color: #4e2d89 !important;
29933
+ }
29934
+
29935
+ .text-pink {
29936
+ color: #e83e8c !important;
29937
+ }
29938
+
29939
+ a.text-pink:hover, a.text-pink:focus {
29940
+ color: #c21766 !important;
29941
+ }
29942
+
29943
+ .text-red {
29944
+ color: #dc3545 !important;
29945
+ }
29946
+
29947
+ a.text-red:hover, a.text-red:focus {
29948
+ color: #a71d2a !important;
29949
+ }
29950
+
29951
+ .text-orange {
29952
+ color: #fd7e14 !important;
29953
+ }
29954
+
29955
+ a.text-orange:hover, a.text-orange:focus {
29956
+ color: #c35a02 !important;
29957
+ }
29958
+
29959
+ .text-yellow {
29960
+ color: #ffc107 !important;
29961
+ }
29962
+
29963
+ a.text-yellow:hover, a.text-yellow:focus {
29964
+ color: #ba8b00 !important;
29965
+ }
29966
+
29967
+ .text-green {
29968
+ color: #28a745 !important;
29969
+ }
29970
+
29971
+ a.text-green:hover, a.text-green:focus {
29972
+ color: #19692c !important;
29973
+ }
29974
+
29975
+ .text-teal {
29976
+ color: #20c997 !important;
29977
+ }
29978
+
29979
+ a.text-teal:hover, a.text-teal:focus {
29980
+ color: #158765 !important;
29981
+ }
29982
+
29983
+ .text-cyan {
29984
+ color: #17a2b8 !important;
29985
+ }
29986
+
29987
+ a.text-cyan:hover, a.text-cyan:focus {
29988
+ color: #0f6674 !important;
29989
+ }
29990
+
29736
29991
  .text-primary {
29737
29992
  color: #007bff !important;
29738
29993
  }
@@ -29937,6 +30192,11 @@ a.text-dark:hover, a.text-dark:focus {
29937
30192
  top: 50%;
29938
30193
  width: 0.25em;
29939
30194
  }
30195
+ @media (prefers-reduced-motion: reduce) {
30196
+ .loading-animation::before {
30197
+ animation: none;
30198
+ }
30199
+ }
29940
30200
  .c-prefers-reduced-motion .loading-animation::before {
29941
30201
  animation: none;
29942
30202
  }
@@ -29954,6 +30214,11 @@ a.text-dark:hover, a.text-dark:focus {
29954
30214
  padding: 0.25em;
29955
30215
  width: 1em;
29956
30216
  }
30217
+ @media (prefers-reduced-motion: reduce) {
30218
+ .loading-animation::after {
30219
+ animation: none;
30220
+ }
30221
+ }
29957
30222
  .c-prefers-reduced-motion .loading-animation::after {
29958
30223
  animation: none;
29959
30224
  }
@@ -30035,6 +30300,11 @@ a.text-dark:hover, a.text-dark:focus {
30035
30300
  transform: scale(1);
30036
30301
  width: 1em;
30037
30302
  }
30303
+ @media (prefers-reduced-motion: reduce) {
30304
+ .loading-animation-squares::before {
30305
+ animation: none;
30306
+ }
30307
+ }
30038
30308
  .c-prefers-reduced-motion .loading-animation-squares::before {
30039
30309
  animation: none;
30040
30310
  }
@@ -30054,6 +30324,11 @@ a.text-dark:hover, a.text-dark:focus {
30054
30324
  transform: scale(2);
30055
30325
  width: 1em;
30056
30326
  }
30327
+ @media (prefers-reduced-motion: reduce) {
30328
+ .loading-animation-squares::after {
30329
+ animation: none;
30330
+ }
30331
+ }
30057
30332
  .c-prefers-reduced-motion .loading-animation-squares::after {
30058
30333
  animation: none;
30059
30334
  }