diff options
author | Thomas Park <thomas@thomaspark.co> | 2015-04-29 17:09:53 -0400 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.co> | 2015-04-29 17:09:53 -0400 |
commit | d8ccdc229943349145ee6ba04f8291ab6b68b9d5 (patch) | |
tree | 7287ac66cc57172d4f9d95b5c18654817f6cfe37 /paper/_bootswatch.scss | |
parent | 044953d45f03216e6e4295cb94ab1d1315a24eea (diff) | |
parent | d642b406eb9307301697fd174e6f85e646148ce1 (diff) |
Merge pull request #446 from Panman8201/gh-pages
paper: fade effect for table-hover
Diffstat (limited to 'paper/_bootswatch.scss')
-rw-r--r-- | paper/_bootswatch.scss | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/paper/_bootswatch.scss b/paper/_bootswatch.scss index e7bd9933..b81e424e 100644 --- a/paper/_bootswatch.scss +++ b/paper/_bootswatch.scss @@ -124,6 +124,14 @@ a { // Tables ===================================================================== +.table-hover { + > tbody > tr:hover, + > tbody > tr:hover > th, + > tbody > tr:hover > td { + @include transition(all 0.2s); + } +} + // Forms ====================================================================== label { @@ -488,18 +496,18 @@ input[type="checkbox"], background-color: lighten($progress-bar-bg, 35%); } } - + &-success:last-child.progress-bar:before { background-color: lighten($brand-success, 35%); } - + &-info:last-child.progress-bar:before { background-color: lighten($brand-info, 45%); } &-warning:last-child.progress-bar:before { background-color: lighten($brand-warning, 35%); } - + &-danger:last-child.progress-bar:before { background-color: lighten($brand-danger, 25%); } |