diff options
| author | Henry Jameson <me@hjkos.com> | 2019-05-19 20:42:44 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2019-05-19 20:42:44 +0300 |
| commit | 15b3651a3070cffeadeca83255e2052f519d5db8 (patch) | |
| tree | 3cf2f0fe86de061fd106a0e360a6ee6b044ef63c /src/App.scss | |
| parent | 04fa2aefb3a7c21c64fd0be25237bf266b6444df (diff) | |
moved setting styles into common to avoid bug with shared styles
Diffstat (limited to 'src/App.scss')
| -rw-r--r-- | src/App.scss | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/src/App.scss b/src/App.scss index 2729e0b0..59e911a3 100644 --- a/src/App.scss +++ b/src/App.scss @@ -740,6 +740,70 @@ nav { } } +.setting-item { + border-bottom: 2px solid var(--fg, $fallback--fg); + margin: 1em 1em 1.4em; + padding-bottom: 1.4em; + + > div { + margin-bottom: .5em; + &:last-child { + margin-bottom: 0; + } + } + + &:last-child { + border-bottom: none; + padding-bottom: 0; + margin-bottom: 1em; + } + + select { + min-width: 10em; + } + + + textarea { + width: 100%; + max-width: 100%; + height: 100px; + } + + .unavailable, + .unavailable i { + color: var(--cRed, $fallback--cRed); + color: $fallback--cRed; + } + + .btn { + min-height: 28px; + min-width: 10em; + padding: 0 2em; + } + + .number-input { + max-width: 6em; + } +} +.select-multiple { + display: flex; + .option-list { + margin: 0; + padding-left: .5em; + } +} +.setting-list, +.option-list{ + list-style-type: none; + padding-left: 2em; + li { + margin-bottom: 0.5em; + } + .suboptions { + margin-top: 0.3em + } +} + .login-hint { text-align: center; |
