Skip to content

Commit

Permalink
chore(project): sync generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
carbon-bot committed Oct 21, 2020
1 parent 3c2c684 commit dc6b07d
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions packages/components/docs/sass.md
Expand Up @@ -19146,10 +19146,22 @@ List box styles
vertical-align: top;
outline: none;
cursor: pointer;

@media screen and (-ms-high-contrast: active),
screen and (prefers-contrast) {
// `ButtonText` is a CSS2 system color to help improve colors in HCM
border: 1px solid ButtonText;
}
}

.#{$prefix}--list-box__field:focus {
@include focus-outline('outline');

@media screen and (-ms-high-contrast: active),
screen and (prefers-contrast) {
// `ButtonText` is a CSS2 system color to help improve colors in HCM
border: 2px solid ButtonText;
}
}

.#{$prefix}--list-box__field[disabled] {
Expand Down Expand Up @@ -19307,6 +19319,12 @@ List box styles
background-color: $inverse-02;
border-radius: rem(12px);
transform: none;

// Windows, Firefox HCM Fix
@media screen and (-ms-high-contrast: active),
screen and (prefers-contrast) {
border: 1px solid transparent;
}
}

.#{$prefix}--list-box__selection--multi > svg {
Expand Down Expand Up @@ -19484,6 +19502,13 @@ List box styles
margin: 0;
padding: rem(11px) rem(16px);
border-color: transparent;

// Windows, Firefox HCM Fix
@media screen and (-ms-high-contrast: active),
screen and (prefers-contrast) {
outline: 3px solid transparent;
outline-offset: -3px;
}
}

&:hover {
Expand Down Expand Up @@ -19526,6 +19551,13 @@ List box styles
color: $text-01;
background-color: $hover-ui;
border-color: transparent;

// Windows, Firefox HCM Fix
@media screen and (-ms-high-contrast: active),
screen and (prefers-contrast) {
outline: 3px solid transparent;
outline-offset: -3px;
}
}

.#{$prefix}--list-box__menu-item--highlighted
Expand Down

0 comments on commit dc6b07d

Please sign in to comment.