@clayui/css 3.118.0 → 3.119.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/base.css CHANGED
@@ -1,6 +1,6 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Clay 3.118.0
3
+ * Clay 3.119.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>
@@ -7283,7 +7283,6 @@ input[type=button].btn-block {
7283
7283
 
7284
7284
  .dropdown-menu-width-shrink {
7285
7285
  min-width: 0;
7286
- white-space: nowrap;
7287
7286
  }
7288
7287
  .dropdown-menu-width-full {
7289
7288
  left: 12px !important;
@@ -7661,6 +7660,7 @@ fieldset[disabled] label .form-control {
7661
7660
  margin-top: 0.25rem;
7662
7661
  min-height: 1.25rem;
7663
7662
  }
7663
+ fieldset[disabled] select.form-control[multiple],
7664
7664
  fieldset[disabled] .form-control {
7665
7665
  background-color: #e9ecef;
7666
7666
  cursor: not-allowed;
@@ -18717,7 +18717,7 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
18717
18717
  left: 0;
18718
18718
  position: fixed;
18719
18719
  top: 0;
18720
- z-index: 1035;
18720
+ z-index: calc(1000 - 25);
18721
18721
  }
18722
18722
 
18723
18723
  .sidenav-end > .sidenav-content,
@@ -19141,7 +19141,7 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
19141
19141
  .c-slideout {
19142
19142
  display: flex;
19143
19143
  overflow: hidden;
19144
- z-index: 1035;
19144
+ z-index: calc(1000 - 25);
19145
19145
  }
19146
19146
  .c-slideout.c-slideout-shown {
19147
19147
  overflow: visible;
@@ -19252,6 +19252,9 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
19252
19252
  }
19253
19253
  }
19254
19254
 
19255
+ .c-slideout-height-full {
19256
+ z-index: calc(1030 + 5);
19257
+ }
19255
19258
  table {
19256
19259
  border-collapse: collapse;
19257
19260
  }
@@ -19440,6 +19443,11 @@ caption {
19440
19443
  .table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider) th {
19441
19444
  background-color: #f2f2f2;
19442
19445
  }
19446
+ .table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider),
19447
+ .table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) td,
19448
+ .table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) th {
19449
+ background-color: #ececec;
19450
+ }
19443
19451
 
19444
19452
  .table-hover tbody tr:hover {
19445
19453
  background-color: #ececec;
@@ -19714,6 +19722,11 @@ td.table-focus {
19714
19722
  .table-dark.table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider) td {
19715
19723
  background-color: rgba(255, 255, 255, 0.05);
19716
19724
  }
19725
+ .table-dark.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider),
19726
+ .table-dark.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) td,
19727
+ .table-dark.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) th {
19728
+ background-color: rgba(255, 255, 255, 0.075);
19729
+ }
19717
19730
  .table-dark.table-hover tbody tr:hover {
19718
19731
  background-color: rgba(255, 255, 255, 0.075);
19719
19732
  color: #fff;
@@ -19953,6 +19966,11 @@ td.table-focus {
19953
19966
  .table-list.table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider) td {
19954
19967
  background-color: #f2f2f2;
19955
19968
  }
19969
+ .table-list.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider),
19970
+ .table-list.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) th,
19971
+ .table-list.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) td {
19972
+ background-color: #ececec;
19973
+ }
19956
19974
 
19957
19975
  .table-list.table-hover tbody tr:hover {
19958
19976
  background-color: #ececec;
@@ -20165,6 +20183,9 @@ td.table-focus {
20165
20183
  .table-striped tbody .table-active:nth-of-type(odd) .quick-action-menu {
20166
20184
  background-color: #f2f2f2;
20167
20185
  }
20186
+ .table-striped.table-hover tbody tr:nth-of-type(odd):hover .quick-action-menu {
20187
+ background-color: #ececec;
20188
+ }
20168
20189
 
20169
20190
  .table-list.table-striped tbody tr:nth-of-type(odd) .quick-action-menu {
20170
20191
  background-color: #f2f2f2;
@@ -20172,6 +20193,9 @@ td.table-focus {
20172
20193
  .table-list.table-striped tbody .table-active:nth-of-type(odd) .quick-action-menu {
20173
20194
  background-color: #dadada;
20174
20195
  }
20196
+ .table-list.table-striped.table-hover tbody tr:nth-of-type(odd):hover .quick-action-menu {
20197
+ background-color: #ececec;
20198
+ }
20175
20199
 
20176
20200
  .table-column-text-start,
20177
20201
  .table-cell-text-start {
@@ -31191,7 +31215,6 @@ a.text-dark:hover, a.text-dark:focus {
31191
31215
  }
31192
31216
 
31193
31217
  .c-prefers-expanded-text .breadcrumb-text-truncate, .c-prefers-expanded-text .form-control-plaintext, .c-prefers-expanded-text .form-control-select, .c-prefers-expanded-text .modal-title, .c-prefers-expanded-text .multi-step-title-center .multi-step-title, .c-prefers-expanded-text .multi-step-indicator .multi-step-indicator-label, .c-prefers-expanded-text .nav-text-truncate, .c-prefers-expanded-text .navbar-text-truncate, .c-prefers-expanded-text .text-truncate, .c-prefers-expanded-text .text-truncate-inline .text-truncate {
31194
- max-width: 100% !important;
31195
31218
  overflow-wrap: break-word !important;
31196
31219
  white-space: normal !important;
31197
31220
  word-wrap: break-word !important;