]> BookStack Code Mirror - bookstack/blobdiff - resources/assets/sass/_buttons.scss
Page Attachments - Improved UI, Now initially complete
[bookstack] / resources / assets / sass / _buttons.scss
index b37fae4fb080d4f7fb8702dc67d36e1c8d3f23db..5de8896735aa9799ef5a4b12cf04b098c0366b42 100644 (file)
   &:active {
     background-color: darken($backgroundColor, 8%);
   }
+  &:focus {
+    background-color: lighten($backgroundColor, 4%);
+    box-shadow: $bs-light;
+    text-decoration: none;
+    color: $textColor;
+  }
 }
 
 // Button Specific Variables
-$button-border-radius: 3px;
+$button-border-radius: 2px;
 
 .button-base {
   text-decoration: none;
@@ -24,11 +30,13 @@ $button-border-radius: 3px;
   margin: $-xs $-xs $-xs 0;
   display: inline-block;
   border: none;
+  font-weight: 500;
+  font-family: $text;
   outline: 0;
   border-radius: $button-border-radius;
   cursor: pointer;
-  transition: all ease-in-out 80ms;
-  box-shadow: 0 0 0 0 #000;
+  transition: all ease-in-out 120ms;
+  box-shadow: 0 0.5px 1.5px 0 rgba(0, 0, 0, 0.21);
   @include generate-button-colors(#EEE, $primary);
 }
 
@@ -43,6 +51,26 @@ $button-border-radius: 3px;
   &.secondary {
     @include generate-button-colors(#EEE, $secondary);
   }
+  &.muted {
+    @include generate-button-colors(#EEE, #888);
+  }
+}
+
+.text-button {
+  @extend .link;
+  background-color: transparent;
+  padding: 0;
+  margin: 0;
+  border: none;
+  &:focus, &:active {
+    outline: 0;
+  }
+  &:hover {
+    text-decoration: none;
+  }
+  &.neg {
+    color: $negative;
+  }
 }
 
 .button-group {
@@ -60,29 +88,25 @@ $button-border-radius: 3px;
   }
 }
 
-// Floating action button
-//.fab {
-//  $size: 70px;
-//  button.button {
-//    border-radius: 100%;
-//    width: $size;
-//    height: $size;
-//    font-size: 48px;
-//    text-align: center;
-//    margin: 0;
-//    padding: 0;
-//    border: 0;
-//    box-shadow: 0 0 2px 2px #DDD;
-//    transition: all ease-in-out 160ms;
-//    i {
-//      transform: rotate(0deg);
-//      transition: all ease-in-out 160ms;
-//    }
-//    &:hover {
-//      box-shadow: 0 2px 4px 2px #CCC;
-//      i {
-//        transform: rotate(180deg);
-//      }
-//    }
-//  }
-//}
+.button.block {
+  width: 100%;
+  text-align: center;
+  display: block;
+}
+
+.button.icon {
+  i {
+    padding-right: 0;
+  }
+}
+
+.button[disabled] {
+  background-color: #BBB;
+  cursor: default;
+  &:hover {
+    background-color: #BBB;
+    cursor: default;
+    box-shadow: none;
+  }
+}
+