git-subtree-dir: external/fmt git-subtree-split: e1832bcf00ed53048aea1e4d2408a68301dcd50c
10 lines
159 B
Plaintext
10 lines
159 B
Plaintext
// WebKit-style focus
|
|
|
|
.tab-focus() {
|
|
// Default
|
|
outline: thin dotted;
|
|
// WebKit
|
|
outline: 5px auto -webkit-focus-ring-color;
|
|
outline-offset: -2px;
|
|
}
|