diff --git a/app/styles/modules/backlog-table.scss b/app/styles/modules/backlog-table.scss index 963b9ed0..6006ff98 100644 --- a/app/styles/modules/backlog-table.scss +++ b/app/styles/modules/backlog-table.scss @@ -89,7 +89,12 @@ } } .doom-line { - border-bottom: 3px solid $red; + width: 100%; + height: 4px; + background: $red; + border-top: 2px solid darken($red, 10%); + border-bottom: 2px solid lighten($red, 10%); + margin: .5rem 0; } .pop-status { @include popover(150px, "", 30px, 10px, ""); diff --git a/app/styles/modules/sprints.scss b/app/styles/modules/sprints.scss index 388013bb..5d6b15e5 100644 --- a/app/styles/modules/sprints.scss +++ b/app/styles/modules/sprints.scss @@ -146,6 +146,15 @@ /* If sprint is closed and date is old */ .sprint-closed { + .sprint-summary { + .icon { + @include transform(rotate(180deg)); + &:hover { + @include transform(rotate(0deg)); + @include transition (all .2s ease-in); + } + } + } .number, .description { color: $grayLight; } diff --git a/app/views/modules/backlog-table.jade b/app/views/modules/backlog-table.jade index 113328d1..f68440d7 100644 --- a/app/views/modules/backlog-table.jade +++ b/app/views/modules/backlog-table.jade @@ -9,7 +9,7 @@ section.backlog-table div.status.width-2 div.points.width-1 Front div.points.width-1 Total - div.row.table-main.blocked.doom-line + div.row.table-main.blocked div.user-stories.width-4 div.user-story-name input(type="checkbox", name="") @@ -64,17 +64,18 @@ section.backlog-table a(href="", title="Status 2") Status 2 li a(href="", title="Status 3") Status 3 - - for (var x = 0; x < 50; x++) - div.row.table-main - div.user-stories.width-4 - div.user-story-name - input(type="checkbox", name="") - a(href="") Crear el perfil de usuario Senior en el admin - a.icon.icon-edit(href="", title="Edit") - a.icon.icon-delete(href="", title="Delete") - div.user-story-tags - - for(var y = 0; y < 3; y++) - include ../components/tag - div.status.width-2 Status - div.points.width-1 12 - div.points.width-1 54 + hr.doom-line + - for (var x = 0; x < 50; x++) + div.row.table-main + div.user-stories.width-4 + div.user-story-name + input(type="checkbox", name="") + a(href="") Crear el perfil de usuario Senior en el admin + a.icon.icon-edit(href="", title="Edit") + a.icon.icon-delete(href="", title="Delete") + div.user-story-tags + - for(var y = 0; y < 3; y++) + include ../components/tag + div.status.width-2 Status + div.points.width-1 12 + div.points.width-1 54