diff options
author | Daniel Friesel <derf@finalrewind.org> | 2016-09-18 22:23:36 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2016-09-18 22:23:36 +0200 |
commit | a1db5b626ff8a23c6c0e1c47b793774f6fb499bc (patch) | |
tree | a193a74dafe441a0c27aaf79b38b5a32f1fd2b99 /public/static/default.css | |
parent | 38e787fc72f21a572f3019f9bd3a86cc497f641d (diff) |
hide non-primary options behind js menu
Diffstat (limited to 'public/static/default.css')
-rw-r--r-- | public/static/default.css | 38 |
1 files changed, 37 insertions, 1 deletions
diff --git a/public/static/default.css b/public/static/default.css index e11e315..4d8cd91 100644 --- a/public/static/default.css +++ b/public/static/default.css @@ -483,6 +483,26 @@ span.notes { color: #666666; } +.moresettings-header { + cursor: pointer; +} + +.moresettings-header-collapsed:before { + content: "▹ " +} + +.moresettings-header-expanded:before { + content: "▿ " +} + +.moresettings-collapsed { + display: none; +} + +.moresettings-expanded { + display: block; +} + div.break { height: 1em; } @@ -550,10 +570,26 @@ input[type="submit"]:hover, border-color: #204d74; } -input[type="submit"]:active { +input[type="submit"]:active, +.button.active { box-shadow: inset 0 3px 5px rgba(0,0,0,.125); } +.button-light { + color: #333; + background-color: #fff; + border-color: #ccc; +} + +.button-light:active, +.button-light:focus, +.button-light:hover +{ + color: #333; + background-color: #e6e6e6; + border-color: #adadad; +} + div.notes { margin-top: 2em; } |