Add specificity to EuiComboBox focus ring hack (#49981) (#49989)

This commit is contained in:
Caroline Horn 2019-11-02 10:01:47 -04:00 committed by GitHub
parent d361a1ee9c
commit 09dd7fdd3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -122,7 +122,8 @@ input[type='checkbox'],
// A neccessary hack so that the above focus policy doesn't polute some EUI
// entrenched inputs.
.euiComboBox {
input:focus {
// :not() specificity needed to override the above
input:not([class^='eui']):focus {
animation: none !important;
}
}