X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/953ea32f89c36d8ee0f38c5d093fea371e635b90..de93104a2513acc5a378496c6bf6ab7ed0d45d60:/project/static/css/master.css diff --git a/project/static/css/master.css b/project/static/css/master.css index 06196c7d..ae51e475 100644 --- a/project/static/css/master.css +++ b/project/static/css/master.css @@ -325,7 +325,7 @@ input.image-gallery-current-page { .htmlview { position: absolute; - top: 0; + top: 25px; right: 0; bottom: 0; left: 0; @@ -343,10 +343,73 @@ body#base button { border-width: 1px; padding: 0px 0.5em; font-family: Sans-Serif; - color: #000; + /* color: #000; */ margin: 2px 4px; } body#base button:hover { background-color: #EEE; -} \ No newline at end of file +} + +/* HTML editor interactive elements */ + +.html-editarea { + border: 2px solid black; + background-color: gray; + padding: 1px; + + z-index: 2000; +} + +.html-editarea textarea +{ + + border: 0px; + margin: 0px; + padding: 0px; + + width: 100%; + height: 100%; + + z-index: 0; + font-size: 10pt; + background-color: ivory; +} + +.html-editarea p.html-editarea-toolbar { + position: absolute; + background: gray; + + bottom: -26px; + height: 24px; + + left: 0px; + right: 0px; + + border: 2px solid black; + + margin: 0px; + padding: 0px; + + z-index: 100; +} + +/* ================= */ +/* = Message boxes = */ +/* ================= */ +.info { + background-color: gray; +} + +.success { + background-color: green; +} + +.error { + background-color: yellow; +} + +.critical { + background-color: red; +} +