Doomline fix
parent
a0957af050
commit
0af2f64103
|
@ -89,7 +89,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.doom-line {
|
.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 {
|
.pop-status {
|
||||||
@include popover(150px, "", 30px, 10px, "");
|
@include popover(150px, "", 30px, 10px, "");
|
||||||
|
|
|
@ -146,6 +146,15 @@
|
||||||
|
|
||||||
/* If sprint is closed and date is old */
|
/* If sprint is closed and date is old */
|
||||||
.sprint-closed {
|
.sprint-closed {
|
||||||
|
.sprint-summary {
|
||||||
|
.icon {
|
||||||
|
@include transform(rotate(180deg));
|
||||||
|
&:hover {
|
||||||
|
@include transform(rotate(0deg));
|
||||||
|
@include transition (all .2s ease-in);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
.number, .description {
|
.number, .description {
|
||||||
color: $grayLight;
|
color: $grayLight;
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,7 @@ section.backlog-table
|
||||||
div.status.width-2
|
div.status.width-2
|
||||||
div.points.width-1 Front
|
div.points.width-1 Front
|
||||||
div.points.width-1 Total
|
div.points.width-1 Total
|
||||||
div.row.table-main.blocked.doom-line
|
div.row.table-main.blocked
|
||||||
div.user-stories.width-4
|
div.user-stories.width-4
|
||||||
div.user-story-name
|
div.user-story-name
|
||||||
input(type="checkbox", name="")
|
input(type="checkbox", name="")
|
||||||
|
@ -64,17 +64,18 @@ section.backlog-table
|
||||||
a(href="", title="Status 2") Status 2
|
a(href="", title="Status 2") Status 2
|
||||||
li
|
li
|
||||||
a(href="", title="Status 3") Status 3
|
a(href="", title="Status 3") Status 3
|
||||||
- for (var x = 0; x < 50; x++)
|
hr.doom-line
|
||||||
div.row.table-main
|
- for (var x = 0; x < 50; x++)
|
||||||
div.user-stories.width-4
|
div.row.table-main
|
||||||
div.user-story-name
|
div.user-stories.width-4
|
||||||
input(type="checkbox", name="")
|
div.user-story-name
|
||||||
a(href="") Crear el perfil de usuario Senior en el admin
|
input(type="checkbox", name="")
|
||||||
a.icon.icon-edit(href="", title="Edit")
|
a(href="") Crear el perfil de usuario Senior en el admin
|
||||||
a.icon.icon-delete(href="", title="Delete")
|
a.icon.icon-edit(href="", title="Edit")
|
||||||
div.user-story-tags
|
a.icon.icon-delete(href="", title="Delete")
|
||||||
- for(var y = 0; y < 3; y++)
|
div.user-story-tags
|
||||||
include ../components/tag
|
- for(var y = 0; y < 3; y++)
|
||||||
div.status.width-2 Status
|
include ../components/tag
|
||||||
div.points.width-1 12
|
div.status.width-2 Status
|
||||||
div.points.width-1 54
|
div.points.width-1 12
|
||||||
|
div.points.width-1 54
|
||||||
|
|
Loading…
Reference in New Issue