From c8dc4c48955f3085fa31bce28697caeaa402d632 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xavier=20Juli=C3=A1n?= Date: Wed, 23 Jul 2014 10:57:11 +0200 Subject: [PATCH] Fixed table header hoer --- app/styles/modules/common/colors-table.scss | 22 ++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/app/styles/modules/common/colors-table.scss b/app/styles/modules/common/colors-table.scss index e2d815d9..420b10a1 100644 --- a/app/styles/modules/common/colors-table.scss +++ b/app/styles/modules/common/colors-table.scss @@ -13,19 +13,20 @@ .row { @include table-flex(stretch, center, flex, row, wrap, center); padding: 1rem; - &.edition, - &.new-status { - padding-left: 50px; - } &:hover { - @include transition (background .2s ease-in); - background: lighten($green-taiga, 60%); .options-column { @include transition (opacity .3s linear); opacity: 1; } - cursor: move; } + &.edition, + &.new-status { + padding-left: 50px; + } + &.edition { + padding-left: 50px; + } + &.hidden { display: none; } @@ -64,6 +65,13 @@ } .table-main { border-bottom: 1px solid $gray-light; + .row { + &:hover { + @include transition (background .2s ease-in); + background: lighten($green-taiga, 60%); + cursor: move; + } + } } .current-color { background-color: $gray-light;