@carbon/styles 1.6.0 → 1.7.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/css/styles.css CHANGED
@@ -6812,8 +6812,8 @@ fieldset[disabled] .cds--form__helper-text {
6812
6812
  .cds--tag--outline {
6813
6813
  background-color: var(--cds-background, #ffffff);
6814
6814
  color: var(--cds-text-primary, #161616);
6815
- -webkit-box-shadow: inset 0 0 0 1px var(--cds-background-inverse, #393939);
6816
- box-shadow: inset 0 0 0 1px var(--cds-background-inverse, #393939);
6815
+ -webkit-box-shadow: 0 0 0 1px var(--cds-background-inverse, #393939);
6816
+ box-shadow: 0 0 0 1px var(--cds-background-inverse, #393939);
6817
6817
  }
6818
6818
  .cds--tag--outline.cds--tag--interactive:hover,
6819
6819
  .cds--tag--outline .cds--tag__close-icon:hover {
@@ -6825,6 +6825,8 @@ fieldset[disabled] .cds--form__helper-text {
6825
6825
  .cds--tag--interactive.cds--tag--disabled {
6826
6826
  background-color: var(--cds-layer);
6827
6827
  color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
6828
+ -webkit-box-shadow: none;
6829
+ box-shadow: none;
6828
6830
  }
6829
6831
  .cds--tag--disabled.cds--tag--interactive:hover,
6830
6832
  .cds--tag--disabled .cds--tag__close-icon:hover,
@@ -18407,7 +18409,7 @@ span.cds--pagination__text.cds--pagination__items-count {
18407
18409
  display: -webkit-box;
18408
18410
  display: -ms-flexbox;
18409
18411
  display: flex;
18410
- width: 100%;
18412
+ width: auto;
18411
18413
  overflow-x: auto;
18412
18414
  scroll-behavior: smooth;
18413
18415
  scrollbar-width: none;
@@ -19603,6 +19605,13 @@ span.cds--pagination__text.cds--pagination__items-count {
19603
19605
  column-gap: 1rem;
19604
19606
  }
19605
19607
 
19608
+ .cds--toggle {
19609
+ -webkit-user-select: none;
19610
+ -moz-user-select: none;
19611
+ -ms-user-select: none;
19612
+ user-select: none;
19613
+ }
19614
+
19606
19615
  .cds--toggle__label-text {
19607
19616
  font-size: var(--cds-label-01-font-size, 0.75rem);
19608
19617
  font-weight: var(--cds-label-01-font-weight, 400);