diff --git a/app/styles/components/buttons.scss b/app/styles/components/buttons.scss index d3b8a0ac..1d5de5fa 100755 --- a/app/styles/components/buttons.scss +++ b/app/styles/components/buttons.scss @@ -27,6 +27,8 @@ background: $greenTaiga; span { color: $white; + position: relative; + top: 2px; } &:hover { @include transition (background .3s linear); diff --git a/app/styles/dependencies/elements.scss b/app/styles/dependencies/elements.scss index 8b49415b..96b13833 100644 --- a/app/styles/dependencies/elements.scss +++ b/app/styles/dependencies/elements.scss @@ -23,6 +23,14 @@ blockquote { } } +a { + color: $blackish; + &:hover { + @include transition (color .3s linear); + color: $greenTaiga; + } +} + /* __Lists__ */ ul, ol { diff --git a/app/styles/modules/backlog-table.scss b/app/styles/modules/backlog-table.scss index bce72c4f..57213263 100644 --- a/app/styles/modules/backlog-table.scss +++ b/app/styles/modules/backlog-table.scss @@ -16,7 +16,6 @@ width: 100%; text-align: left; padding: .5em 0; - @for $i from 1 through 8 { .width-#{$i} { flex-grow: $i; @@ -24,6 +23,15 @@ flex-basis: 50px; } } + &:hover { + background: lighten( $greenTaiga, 60% ); + @include transition (background .2s ease-in); + cursor: move; + } + } + .row-selected { + background: lighten( $greenTaiga, 60% ); + @include transition (background .2s ease-in); } .user-stories { flex-basis: 500px; @@ -41,12 +49,18 @@ .title { font-family: 'DroidSans-Bold'; @extend .medium; + &:hover { + background: transparent; + } } .sub-title { font-family: 'DroidSans'; @extend .small; background: $whitish; border-bottom: 2px solid $grayer; + &:hover { + background: $whitish; + } } .table-main { @extend .small; diff --git a/app/views/modules/backlog-table.jade b/app/views/modules/backlog-table.jade index 620cd264..be21be0f 100644 --- a/app/views/modules/backlog-table.jade +++ b/app/views/modules/backlog-table.jade @@ -11,19 +11,8 @@ section.backlog-table div.points.width-1 Back div.row.table-main div.user-stories.width-4 - input(type="checkbox", name="", id="") - span Crear el perfil de usuario Senior en el admin - a(href="", title="Edit") - span.icon.icon-edit - a(href="", title="Delete") - span.icon.icon-delete - div.status.width-2 Status - div.points.width-1 Front - div.points.width-1 Back - div.row.table-main - div.user-stories.width-4 - input(type="checkbox", name="", id="") - span Crear el perfil de usuario Senior en el admin + input(type="checkbox", name="") + a(href="") Crear el perfil de usuario Senior en el admin a(href="", title="Edit") span.icon.icon-edit a(href="", title="Delete")