diff options
author | JLGC @monolinux <monolinux@junglacode.org> | 2016-08-15 23:13:16 -0500 |
---|---|---|
committer | JLGC @monolinux <monolinux@junglacode.org> | 2016-08-15 23:13:16 -0500 |
commit | 683c0464093f6a7976236c68653c2a2cc5dae280 (patch) | |
tree | bf176ecd82415cc4952eea071b7d264dd5fd68b4 /assets/sass/_button.sass | |
parent | b1e795fc5b45369f7b9b565b1e106d2673361977 (diff) | |
parent | 5f82a942c0011bf91947b2c1d627c0907bda0c92 (diff) |
Merge https://github.com/kanboard/kanboard
Diffstat (limited to 'assets/sass/_button.sass')
-rw-r--r-- | assets/sass/_button.sass | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/assets/sass/_button.sass b/assets/sass/_button.sass new file mode 100644 index 00000000..d9a6db3d --- /dev/null +++ b/assets/sass/_button.sass @@ -0,0 +1,50 @@ +@import variables +@import mixins + +a.btn + text-decoration: none + +.btn + +appearance + font-size: size('medium') + font-weight: normal + cursor: pointer + display: inline-block + border-radius: 2px + padding: 3px 10px + margin: 0 + border: 1px solid button-border-color('default') + background: button-bg-color('default') + color: button-color('default') + &:hover, &:focus + border-color: button-hover-border-color('default') + background: button-hover-bg-color('default') + color: button-hover-color('default') + +.btn-red + border-color: button-border-color('red') + background: button-bg-color('red') + color: button-color('red') + &:hover, &:focus + border-color: button-hover-border-color('red') + background: button-hover-bg-color('red') + color: button-hover-color('red') + +.btn-blue + border-color: button-border-color('blue') + background: button-bg-color('blue') + color: button-color('blue') + &:hover, &:focus + border-color: button-hover-border-color('blue') + background: button-hover-bg-color('blue') + color: button-hover-color('blue') + +.btn:disabled + color: button-color('disabled') + border-color: button-border-color('disabled') + background: button-bg-color('disabled') + +.buttons-header + font-size: size('small') + margin-top: 5px + margin-bottom: 15px |