]> BookStack Code Mirror - bookstack/blobdiff - resources/assets/sass/styles.scss
Fixes #354, Adds the spellchecker option
[bookstack] / resources / assets / sass / styles.scss
index 770d5eeb45fc4eb07f02c6057968249674434db5..967aba76b755796c44c798f15ab94331c3c2fdd9 100644 (file)
@@ -12,7 +12,7 @@
 @import "animations";
 @import "tinymce";
 @import "highlightjs";
-@import "image-manager";
+@import "components";
 @import "header";
 @import "lists";
 @import "pages";
@@ -72,7 +72,7 @@ body.dragging, body.dragging * {
   border-radius: 3px;
   box-shadow: $bs-med;
   z-index: 999999;
-  display: table;
+  display: block;
   cursor: pointer;
   max-width: 480px;
   i, span {
@@ -246,15 +246,29 @@ $btt-size: 40px;
 }
 
 .entity-list-item.selected {
-  h3, i, p ,a {
+  h3, i, p ,a, span {
     color: #EEE;
   }
 }
 
-
-
-
-
+.center-box {
+  margin: $-xl auto 0 auto;
+  padding: $-m $-xxl $-xl $-xxl;
+  width: 420px;
+  max-width: 100%;
+  display: inline-block;
+  text-align: left;
+  vertical-align: top;
+  //border: 1px solid #DDD;
+  input {
+    width: 100%;
+  }
+  &.login {
+    background-color: #EEE;
+    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
+    border: 1px solid #DDD;
+  }
+}