Sprint fixes
parent
e6e078305d
commit
ad5ca6f277
|
@ -11,7 +11,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
.button{
|
||||
a.button{
|
||||
font-family: 'ostrichSans';
|
||||
@extend .large;
|
||||
padding: 5px 40px;
|
||||
|
@ -25,6 +25,7 @@
|
|||
.button-green {
|
||||
@extend .button;
|
||||
background: $greenTaiga;
|
||||
@include transition (background .3s linear);
|
||||
span {
|
||||
color: $white;
|
||||
position: relative;
|
||||
|
@ -36,6 +37,22 @@
|
|||
}
|
||||
}
|
||||
|
||||
.button-gray {
|
||||
@extend .button;
|
||||
background: $buttonGray;
|
||||
@include transition (background .3s linear);
|
||||
span {
|
||||
color: $white;
|
||||
position: relative;
|
||||
top: 2px;
|
||||
}
|
||||
&:hover {
|
||||
@include transition (background .3s linear);
|
||||
background: $buttonGrayHover;
|
||||
color: $white
|
||||
}
|
||||
}
|
||||
|
||||
.button-bulk {
|
||||
@extend .button;
|
||||
background: $greenTaiga;
|
||||
|
|
|
@ -126,6 +126,10 @@
|
|||
padding: 0 4px;
|
||||
}
|
||||
}
|
||||
.button {
|
||||
display: block;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
/* If Sprint is open but date is old */
|
||||
|
|
|
@ -32,6 +32,8 @@ section.sprints
|
|||
div.column-us.width-8
|
||||
a(href="", title="") #125 Crear el perfil de usuario Senior en el admin
|
||||
div.column-points.width-1 45
|
||||
a.button.button-gray(href="", title="Current Sprint Taksboard")
|
||||
span Sprint Taskboard
|
||||
|
||||
// If Sprint is open but date is old
|
||||
section.sprint.sprint-old-open
|
||||
|
|
Loading…
Reference in New Issue