diff options
author | imncls <himasoto@gmail.com> | 2018-02-24 01:25:49 +0900 |
---|---|---|
committer | imncls <himasoto@gmail.com> | 2018-02-24 01:25:49 +0900 |
commit | 82408904a19b3f25323db97ff232c8f98f3aa3d1 (patch) | |
tree | 7b259075a6989124a9bb2c9bab36dec534fdd5c2 /app/javascript | |
parent | 3afc6174f5b9a06ee16857b8a51d863b568185d3 (diff) |
Update index.scss
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/flavours/glitch/styles/components/index.scss | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/app/javascript/flavours/glitch/styles/components/index.scss b/app/javascript/flavours/glitch/styles/components/index.scss index 8f06209c6..10cad345e 100644 --- a/app/javascript/flavours/glitch/styles/components/index.scss +++ b/app/javascript/flavours/glitch/styles/components/index.scss @@ -40,14 +40,20 @@ cursor: default; } - &.button-alternative { + &.button-primary, + &.button-alternative, + &.button-secondary, + &.button-alternative-2 { font-size: 16px; line-height: 36px; height: auto; - color: $ui-base-color; - background: $ui-primary-color; text-transform: none; padding: 4px 16px; + } + + &.button-alternative { + color: $ui-base-color; + background: $ui-primary-color; &:active, &:focus, @@ -56,6 +62,16 @@ } } + &.button-alternative-2 { + background: $ui-base-lighter-color; + + &:active, + &:focus, + &:hover { + background-color: lighten($ui-base-lighter-color, 4%); + } + } + &.button-secondary { font-size: 16px; line-height: 36px; |