12 lines
191 B
Plaintext
12 lines
191 B
Plaintext
// WebKit-style focus
|
|
|
|
.tab-focus() {
|
|
// Disabled
|
|
outline: 0;
|
|
// Default
|
|
//outline: thin dotted;
|
|
// WebKit
|
|
//outline: 5px auto -webkit-focus-ring-color;
|
|
outline-offset: -2px;
|
|
}
|