use null instead of false in data that could be sent to api

This commit is contained in:
Alan Hamlett
2017-10-03 06:53:18 -07:00
parent 5fb7c9b416
commit f32e1e5180
10 changed files with 20 additions and 20 deletions

View File

@@ -1,9 +1,9 @@
// WebKit-style focus
.tab-focus() {
// WebKit-specific. Other browsers will keep their default outline style.
// (Initially tried to also force default via `outline: initial`,
// but that seems to erroneously remove the outline in Firefox altogether.)
// Default
outline: thin dotted;
// WebKit
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}