diff options
author | Claudius Coenen | 2019-05-12 23:30:28 +0200 |
---|---|---|
committer | GitHub | 2019-05-12 23:30:28 +0200 |
commit | dabcb91185488703dca6bce30cfea5c968694fd9 (patch) | |
tree | 1299b3756eb14fa1969bfede0c49830e74ebd60f /public/css | |
parent | 5bb69297678c38d0793238edf4d04cad5ec7d4d4 (diff) | |
parent | e4c24c293673ca3cbbe08939c81e0a53404771f8 (diff) |
Merge pull request #44 from pferreir/fix-23
Fix toolbar day mode and upload button
Diffstat (limited to 'public/css')
-rw-r--r-- | public/css/index.css | 18 | ||||
-rw-r--r-- | public/css/ui/toolbar.css | 33 |
2 files changed, 33 insertions, 18 deletions
diff --git a/public/css/index.css b/public/css/index.css index c304a969..fb8356eb 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -20,24 +20,6 @@ body.night{ background: #333 !important; } -.toolbar { - background-color: #1c1c1e; - border: 1px solid #343434; -} - -.toolbar > .btn-toolbar > .btn-group > .btn { - background-color: #1c1c1e; - padding: 5px; - font-size: 1em; -} - -.toolbar > .btn-toolbar > .btn-group > .btn:hover { - background-color: #383a3e; - - padding: 5px; -} - - .CodeMirror { font-family: "Source Code Pro", Consolas, monaco, monospace; letter-spacing: 0.025em; diff --git a/public/css/ui/toolbar.css b/public/css/ui/toolbar.css new file mode 100644 index 00000000..fa51e1cb --- /dev/null +++ b/public/css/ui/toolbar.css @@ -0,0 +1,33 @@ +.toolbar { + background-color: #fafafa; + border: 1px solid #ededed; +} + +.toolbar > .btn-toolbar > .btn-group > .btn { + background-color: #fafafa; + padding: 5px; + font-size: 1em; + color: #555; +} + +.toolbar > .btn-toolbar > .btn-group > .btn:hover { + background-color: #e1e1e1; + padding: 5px; +} + +body.night .toolbar { + background-color: #1c1c1e; + border: 1px solid #353538; +} + +body.night .toolbar > .btn-toolbar > .btn-group > .btn { + background-color: #1c1c1e; + padding: 5px; + font-size: 1em; + color: #5EB7E0; +} + +body.night .toolbar > .btn-toolbar > .btn-group > .btn:hover { + background-color: #37373b; + padding: 5px; +} |