Fixed backlog table styles
parent
72ea71a340
commit
b9b3c8b10f
|
@ -27,6 +27,8 @@
|
||||||
background: $greenTaiga;
|
background: $greenTaiga;
|
||||||
span {
|
span {
|
||||||
color: $white;
|
color: $white;
|
||||||
|
position: relative;
|
||||||
|
top: 2px;
|
||||||
}
|
}
|
||||||
&:hover {
|
&:hover {
|
||||||
@include transition (background .3s linear);
|
@include transition (background .3s linear);
|
||||||
|
|
|
@ -23,6 +23,14 @@ blockquote {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: $blackish;
|
||||||
|
&:hover {
|
||||||
|
@include transition (color .3s linear);
|
||||||
|
color: $greenTaiga;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* __Lists__ */
|
/* __Lists__ */
|
||||||
|
|
||||||
ul, ol {
|
ul, ol {
|
||||||
|
|
|
@ -16,7 +16,6 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
padding: .5em 0;
|
padding: .5em 0;
|
||||||
|
|
||||||
@for $i from 1 through 8 {
|
@for $i from 1 through 8 {
|
||||||
.width-#{$i} {
|
.width-#{$i} {
|
||||||
flex-grow: $i;
|
flex-grow: $i;
|
||||||
|
@ -24,6 +23,15 @@
|
||||||
flex-basis: 50px;
|
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 {
|
.user-stories {
|
||||||
flex-basis: 500px;
|
flex-basis: 500px;
|
||||||
|
@ -41,12 +49,18 @@
|
||||||
.title {
|
.title {
|
||||||
font-family: 'DroidSans-Bold';
|
font-family: 'DroidSans-Bold';
|
||||||
@extend .medium;
|
@extend .medium;
|
||||||
|
&:hover {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.sub-title {
|
.sub-title {
|
||||||
font-family: 'DroidSans';
|
font-family: 'DroidSans';
|
||||||
@extend .small;
|
@extend .small;
|
||||||
background: $whitish;
|
background: $whitish;
|
||||||
border-bottom: 2px solid $grayer;
|
border-bottom: 2px solid $grayer;
|
||||||
|
&:hover {
|
||||||
|
background: $whitish;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.table-main {
|
.table-main {
|
||||||
@extend .small;
|
@extend .small;
|
||||||
|
|
|
@ -11,19 +11,8 @@ section.backlog-table
|
||||||
div.points.width-1 Back
|
div.points.width-1 Back
|
||||||
div.row.table-main
|
div.row.table-main
|
||||||
div.user-stories.width-4
|
div.user-stories.width-4
|
||||||
input(type="checkbox", name="", id="")
|
input(type="checkbox", name="")
|
||||||
span Crear el perfil de usuario Senior en el admin
|
a(href="") 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
|
|
||||||
a(href="", title="Edit")
|
a(href="", title="Edit")
|
||||||
span.icon.icon-edit
|
span.icon.icon-edit
|
||||||
a(href="", title="Delete")
|
a(href="", title="Delete")
|
||||||
|
|
Loading…
Reference in New Issue