Fixed backlog table styles
parent
72ea71a340
commit
b9b3c8b10f
|
@ -27,6 +27,8 @@
|
|||
background: $greenTaiga;
|
||||
span {
|
||||
color: $white;
|
||||
position: relative;
|
||||
top: 2px;
|
||||
}
|
||||
&:hover {
|
||||
@include transition (background .3s linear);
|
||||
|
|
|
@ -23,6 +23,14 @@ blockquote {
|
|||
}
|
||||
}
|
||||
|
||||
a {
|
||||
color: $blackish;
|
||||
&:hover {
|
||||
@include transition (color .3s linear);
|
||||
color: $greenTaiga;
|
||||
}
|
||||
}
|
||||
|
||||
/* __Lists__ */
|
||||
|
||||
ul, ol {
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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")
|
||||
|
|
Loading…
Reference in New Issue