Merge branch 'master' of stigma:platforma
[redakcja.git] / project / static / css / master.css
index 1649a4b..ae51e47 100644 (file)
@@ -210,7 +210,7 @@ text#commit-dialog-message {
     right: 0;
     bottom: 0;
     left: 0;
-    overflow: none;
+    overflow: hidden;
 }
 
 .panel-main-toolbar {
@@ -323,7 +323,93 @@ input.image-gallery-current-page {
     padding: 0px;
 }
 
+.htmlview {
+    position: absolute;
+    top: 25px;
+    right: 0;
+    bottom: 0;
+    left: 0;
+    overflow: auto;
+    margin: 0;
+}
+
 .image-gallery-page-container img {
     /* border: 2px solid green; */
     margin: 0px;
-}
\ No newline at end of file
+}
+
+body#base button {
+    background-color: #DDD;
+    border-width: 1px;
+    padding: 0px 0.5em;    
+    font-family: Sans-Serif;
+    /* color: #000; */
+    margin: 2px 4px;
+}
+
+body#base button:hover {
+    background-color: #EEE;
+}
+
+/* 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;
+}
+