2016-09-21 14:02:05 +02:00
|
|
|
@import _config
|
|
|
|
@import _utils
|
|
|
|
|
|
|
|
#task-add
|
|
|
|
margin-left: auto
|
|
|
|
font-size: .85em
|
2016-09-21 15:47:24 +02:00
|
|
|
color: $color-primary
|
2016-09-21 14:02:05 +02:00
|
|
|
|
|
|
|
.status-indicator
|
|
|
|
background-color: white
|
|
|
|
width: 16px
|
|
|
|
height: 16px
|
|
|
|
border-radius: 50%
|
|
|
|
margin: 10px
|
|
|
|
transform-origin: center
|
|
|
|
transition: all 150ms ease-in-out
|
|
|
|
|
|
|
|
&.invalid
|
|
|
|
background-color: hsl(hue($color-status-invalid), 100%, 75%)
|
|
|
|
&.todo
|
|
|
|
background-color: hsl(hue($color-status-todo), 100%, 75%)
|
|
|
|
&.in_progress
|
|
|
|
background-color: hsl(hue($color-status-in_progress), 100%, 60%)
|
|
|
|
&.on_hold
|
|
|
|
background-color: hsl(hue($color-status-on_hold), 100%, 75%)
|
|
|
|
&.approved
|
|
|
|
background-color: hsl(hue($color-status-approved), 100%, 75%)
|
|
|
|
&.cbb
|
|
|
|
background-color: hsl(hue($color-status-cbb), 100%, 75%)
|
|
|
|
&.final
|
|
|
|
background-color: hsl(hue($color-status-final), 100%, 40%)
|
|
|
|
&.review
|
|
|
|
background-color: hsl(hue($color-status-review), 100%, 75%)
|
|
|
|
|
|
|
|
.task-list-item
|
|
|
|
border-right: 5px solid transparent
|
|
|
|
color: $color-primary-dark
|
|
|
|
background-image: white
|
|
|
|
transition: all 150ms ease-in-out
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
text-decoration: none
|
|
|
|
color: $color-primary
|
|
|
|
|
|
|
|
.status-indicator
|
|
|
|
transform: scale(1.1)
|
|
|
|
|
|
|
|
&.active
|
|
|
|
border-color: $color-background-dark
|
|
|
|
border-right-color: $color-primary
|
|
|
|
text-decoration: none
|
2016-09-21 15:47:24 +02:00
|
|
|
background-color: rgba($color-background, .5)
|
2016-09-21 14:02:05 +02:00
|
|
|
|
|
|
|
.status-indicator
|
|
|
|
transform: rotate(45deg)
|
|
|
|
border-radius: 15%
|
|
|
|
|
|
|
|
&.processing
|
2016-09-21 15:47:24 +02:00
|
|
|
+stripes($color-background, rgba($color-background, .5), -45deg, 25px)
|
2016-09-21 14:02:05 +02:00
|
|
|
+stripes-animate
|
|
|
|
animation-duration: 2s
|
|
|
|
|
|
|
|
.status
|
|
|
|
display: inline-block
|
|
|
|
margin-left: auto
|
|
|
|
margin-right: 10px
|
|
|
|
color: $color-text-dark-secondary
|
|
|
|
text-transform: uppercase
|
|
|
|
font-size: .8em
|
|
|
|
text-decoration: none
|
|
|
|
|
|
|
|
#task-details
|
|
|
|
margin: 10px
|
2016-09-21 16:43:51 +02:00
|
|
|
padding: 0 10px 10px
|
2016-09-21 14:02:05 +02:00
|
|
|
+container-box
|
|
|
|
|
|
|
|
#task-view
|
|
|
|
width: 100%
|
|
|
|
|
|
|
|
.task-name
|
|
|
|
font-size: 1.6em
|
2016-09-21 14:15:25 +02:00
|
|
|
|
|
|
|
option.invalid_task
|
|
|
|
color: $color-danger
|
|
|
|
background-color: hsl(hue($color-danger), 80%, 90%)
|
2016-09-21 15:47:24 +02:00
|
|
|
|
|
|
|
.task-list-header
|
|
|
|
border-right: thin solid $color-background
|
|
|
|
a
|
|
|
|
color: $color-text-dark
|
|
|
|
a.task-project
|
|
|
|
color: $color-text-dark-secondary
|
2016-09-21 16:43:51 +02:00
|
|
|
margin-left: 10px
|