summaryrefslogtreecommitdiffstats
path: root/webapp/sass/components/_buttons.scss
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/sass/components/_buttons.scss')
-rw-r--r--webapp/sass/components/_buttons.scss55
1 files changed, 0 insertions, 55 deletions
diff --git a/webapp/sass/components/_buttons.scss b/webapp/sass/components/_buttons.scss
deleted file mode 100644
index c6086e866..000000000
--- a/webapp/sass/components/_buttons.scss
+++ /dev/null
@@ -1,55 +0,0 @@
-@charset 'UTF-8';
-
-.btn {
- @include single-transition(all, .15s, ease-in);
- @include border-radius($border-rad);
-
- &.btn-primary {
- background: $primary-color;
- border-color: transparent;
-
- &:hover,
- &:focus,
- &:active {
- background: $primary-color--hover;
- }
- }
-
- &.btn-default {
- background: alpha-color($black, .7);
- color: $white;
-
- &:hover,
- &:focus,
- &:active {
- background: alpha-color($black, .8);
- color: $white;
- }
- }
-
- &.btn-danger {
- color: $white;
-
- .app__body & {
- color: $white;
-
- &:hover,
- &:focus,
- &:active {
- color: $white;
- }
- }
-
- &:hover,
- &:focus,
- &:active {
- color: $white;
- }
- }
-
- &.btn-inactive {
- background: $light-gray;
- border-color: transparent;
- color: $white;
- }
-}