146 lines
3.4 KiB
SCSS
146 lines
3.4 KiB
SCSS
.backlog-table {
|
|
align-content: stretch;
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-start;
|
|
width: 100%;
|
|
.row {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
justify-content: flex-start;
|
|
padding: 1rem 0 1rem 1rem;
|
|
text-align: left;
|
|
width: 100%;
|
|
@for $i from 1 through 8 {
|
|
.width-#{$i} {
|
|
flex-basis: 50px;
|
|
flex-grow: $i;
|
|
flex-shrink: 0;
|
|
}
|
|
}
|
|
&:hover {
|
|
background: lighten($green-taiga, 60%);
|
|
@include transition (background .2s ease-in);
|
|
cursor: move;
|
|
.us-settings {
|
|
opacity: 1;
|
|
@include transition (opacity .2s ease-in);
|
|
}
|
|
}
|
|
}
|
|
.row-selected {
|
|
background: lighten($green-taiga, 60%);
|
|
@include transition (background .2s ease-in);
|
|
}
|
|
.user-story-name {
|
|
flex-basis: 500px;
|
|
input {
|
|
vertical-align: top;
|
|
}
|
|
span {
|
|
display: inline-block;
|
|
max-width: 70%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
.icon {
|
|
@extend %medium;
|
|
color: $gray-light;
|
|
&:hover {
|
|
color: $grayer;
|
|
@include transition (color .3s linear);
|
|
}
|
|
}
|
|
}
|
|
.user-story-tags {
|
|
display: none;
|
|
margin-top: .3rem;
|
|
}
|
|
.title {
|
|
@extend %medium;
|
|
font-family: 'DroidSans-Bold';
|
|
&:hover {
|
|
background: transparent;
|
|
}
|
|
}
|
|
.sub-title {
|
|
@extend %small;
|
|
background: $whitish;
|
|
border-bottom: 2px solid $grayer;
|
|
font-family: 'DroidSans';
|
|
&:hover {
|
|
background: $whitish;
|
|
}
|
|
}
|
|
.table-main {
|
|
@extend %small;
|
|
border-bottom: 1px solid $gray-light;
|
|
}
|
|
.status,
|
|
.points {
|
|
position: relative;
|
|
}
|
|
.blocked {
|
|
background: $red-light;
|
|
color: $white;
|
|
&:hover {
|
|
background: $red;
|
|
@include transition (background .2s ease-in);
|
|
cursor: move;
|
|
}
|
|
a {
|
|
color: $white;
|
|
&:hover {
|
|
color: $white;
|
|
}
|
|
}
|
|
.icon {
|
|
color: $white;
|
|
&:hover {
|
|
color: $white;
|
|
}
|
|
}
|
|
}
|
|
.doom-line {
|
|
background: $red;
|
|
border-bottom: 2px solid lighten($red, 10%);
|
|
border-top: 2px solid darken($red, 10%);
|
|
height: 4px;
|
|
margin: .5rem 0;
|
|
width: 100%;
|
|
}
|
|
.pop-status {
|
|
@include popover(150px, '', 30px, 10px, '');
|
|
}
|
|
.pop-points {
|
|
@include popover(150px, '', 30px, 10px, '');
|
|
}
|
|
.pop-points-open {
|
|
@include popover(200px, '', 30px, 10px, '');
|
|
li {
|
|
display: inline-block;
|
|
width: 23%;
|
|
}
|
|
a {
|
|
display: block;
|
|
text-align: center;
|
|
&:hover {
|
|
background: $fresh-taiga;
|
|
color: $white;
|
|
}
|
|
}
|
|
}
|
|
.us-settings {
|
|
float: right;
|
|
margin-right: 2rem;
|
|
opacity: 0;
|
|
@include transition (opacity .2s ease-in);
|
|
}
|
|
}
|