bd1c5c28ee
Merge commit 'a9f62a15cdc6528b804d214325488ba52c619313' as 'externals/fmt'
9 lines
159 B
Text
9 lines
159 B
Text
// WebKit-style focus
|
|
|
|
.tab-focus() {
|
|
// Default
|
|
outline: thin dotted;
|
|
// WebKit
|
|
outline: 5px auto -webkit-focus-ring-color;
|
|
outline-offset: -2px;
|
|
}
|