diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2018-12-09 12:10:16 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2018-12-09 12:10:16 +0100 |
commit | ae0693d074a63412e7ab9587520096cb60a48e64 (patch) | |
tree | 269cbfb204858f8a6b47f061abdc0101878de2d8 /assets/css/edit.css | |
parent | 0cdf3e007ee05880ed290865ecd911bbf508d565 (diff) | |
download | wcms-ae0693d074a63412e7ab9587520096cb60a48e64.tar.gz wcms-ae0693d074a63412e7ab9587520096cb60a48e64.zip |
media parser
Diffstat (limited to 'assets/css/edit.css')
-rw-r--r-- | assets/css/edit.css | 33 |
1 files changed, 29 insertions, 4 deletions
diff --git a/assets/css/edit.css b/assets/css/edit.css index cb7b067..79b9dee 100644 --- a/assets/css/edit.css +++ b/assets/css/edit.css @@ -28,6 +28,8 @@ body { position: relative; height: 100%; background-color: lightgrey; + display: flex; + overflow: hidden; } @@ -98,10 +100,12 @@ body { position: relative; } +/* clip the tabs names */ .tabs .tab { - float: left; + min-width: 0; + overflow: hidden; } .tabs .tab .content @@ -121,8 +125,8 @@ body { .tab label { margin-right: 10px; - border: solid rgba(0, 0, 0, 0); - padding: 0px 2px; + border: solid rgba(0, 0, 0, 0); + padding: 0px 2px; } .tab label.edited { @@ -136,6 +140,7 @@ body { .checkboxtab:checked ~ label { border: solid 1px; + background: white; } .checkboxtab:checked ~ .content @@ -164,6 +169,7 @@ html { .editor .tabs label { line-height: 30px; + overflow: hidden; } .editor #topbar { @@ -227,7 +233,7 @@ form#update { height: 30px; } -#update span {margin-right: 1%;} +#update span {margin: 0 0.2%;} .editor .panel input[type="checkbox"] { width: auto; @@ -246,4 +252,23 @@ form#update { .panel summary { background-color: grey; color: lightgrey; +} + +.panel summary:hover { + cursor: pointer; +} + +@media (max-width: 600px) { + .bar { + display: none; + } + + span#fontsize { + display: none; + } + + #topbar .text { + display: none; + } + }
\ No newline at end of file |