Blocked module

stable
Xavier Julián 2014-06-23 10:34:06 +02:00
parent f6566315d5
commit 3f488cbf0d
4 changed files with 42 additions and 3 deletions

View File

@ -18,7 +18,8 @@ block content
div.blocked-warning div.blocked-warning
span.icon.icon-warning span.icon.icon-warning
p.blocked Blocked! p.blocked Blocked!
p p We need Pilar to make a prototype out of this or we are not sure what to show at this part.
a.button.button-red.button-block(href="", title="Unblock US") Unblock
div.user-story-tags div.user-story-tags
- for(var y = 0; y < 6; y++) - for(var y = 0; y < 6; y++)
include views/components/tag include views/components/tag

View File

@ -59,6 +59,15 @@
} }
} }
a.button-block {
background: $white;
color: $red;
&:hover {
background: $red-light;
color: $white;
}
}
.button-bulk { .button-bulk {
@extend %button; @extend %button;
background: $green-taiga; background: $green-taiga;

View File

@ -196,8 +196,8 @@ a:visited {
content: 'z'; content: 'z';
} }
.icon-graph:before { .icon-graph:before {
content: "B"; content: 'B';
} }
.icon-warning:before { .icon-warning:before {
content: "C"; content: 'C';
} }

View File

@ -7,6 +7,7 @@
top: 0; top: 0;
} }
} }
.us-story-main-data { .us-story-main-data {
margin-bottom: 2rem; margin-bottom: 2rem;
.us-title { .us-title {
@ -22,6 +23,34 @@
color: $grayer; color: $grayer;
} }
} }
.blocked-warning {
background: $red;
color: $white;
margin-bottom: 1rem;
padding: 1rem;
position: relative;
.icon {
@extend %xxlarge;
display: inline;
left: 1rem;
position: absolute;
top: 1rem;
}
.blocked {
@extend %xlarge;
margin-bottom: .3em;
}
p {
margin-bottom: 0;
margin-left: 4rem;
margin-right: 10rem;
}
.button-block {
position: absolute;
right: 1rem;
top: 1rem;
}
}
} }
.us-content { .us-content {