diff options
| author | William Pitcock <nenolod@dereferenced.org> | 2018-06-23 07:53:15 +0000 |
|---|---|---|
| committer | William Pitcock <nenolod@dereferenced.org> | 2018-08-18 17:06:06 +0000 |
| commit | 61d40f40aee8b596f0b068091c43033ecf3aa25b (patch) | |
| tree | e3d36c9ec146efb02a0cca3d76785f2adfcfb208 /src/App.scss | |
| parent | ce88f351f7b28a36553e67f7e02373be7b51ef8f (diff) | |
allow default visibility scope to be configured
Diffstat (limited to 'src/App.scss')
| -rw-r--r-- | src/App.scss | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/App.scss b/src/App.scss index 2426b998..43786e9d 100644 --- a/src/App.scss +++ b/src/App.scss @@ -433,3 +433,23 @@ nav { text-align: right; padding-right: 20px; } + +.visibility-tray { + font-size: 1.2em; + padding: 3px; + cursor: pointer; + + .selected { + color: $fallback--lightFg; + color: var(--lightFg, $fallback--lightFg); + } +} + +.visibility-notice { + padding: .5em; + border: 1px solid $fallback--faint; + border: 1px solid var(--faint, $fallback--faint); + border-radius: $fallback--inputRadius; + border-radius: var(--inputRadius, $fallback--inputRadius); +} + |
