Fix focus styles
This commit is contained in:
parent
d4fec73d64
commit
abae58489c
3 changed files with 14 additions and 1 deletions
|
@ -46,6 +46,15 @@ limitations under the License.
|
||||||
background-color: var(--primaryColor);
|
background-color: var(--primaryColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.button:focus,
|
||||||
|
.toolbarButton:focus,
|
||||||
|
.iconButton:focus,
|
||||||
|
.iconCopyButton:focus,
|
||||||
|
.secondary:focus,
|
||||||
|
.copyButton:focus {
|
||||||
|
outline: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.toolbarButton {
|
.toolbarButton {
|
||||||
width: 50px;
|
width: 50px;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
|
|
|
@ -27,6 +27,10 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.selectTrigger:focus {
|
||||||
|
outline: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.selectedItem {
|
.selectedItem {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
.hideFocus * {
|
.hideFocus * {
|
||||||
outline: none;
|
outline: none !important;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue