diff options
Diffstat (limited to 'assets/sass')
-rw-r--r-- | assets/sass/_subtasks.sass | 36 | ||||
-rw-r--r-- | assets/sass/_table_list.sass | 7 |
2 files changed, 40 insertions, 3 deletions
diff --git a/assets/sass/_subtasks.sass b/assets/sass/_subtasks.sass index ad467b81..0315860f 100644 --- a/assets/sass/_subtasks.sass +++ b/assets/sass/_subtasks.sass @@ -1,5 +1,35 @@ @import variables +@import mixins -.subtasks-table - td - vertical-align: middle +.subtask-cell + padding: 4px 10px + border-top: 1px dotted #dedede + border-left: 1px dotted #dedede + display: table-cell + vertical-align: middle + a + color: color('primary') + text-decoration: none + &:hover, &:focus + color: link-color('primary') + &:first-child + border-left: none + @include sm-device + width: 90% + display: block + border-left: none + +.task-list-subtasks + display: table + width: 100% + @include sm-device + display: block + +.task-list-subtask + display: table-row + @include sm-device + display: block + +.subtask-assignee, .subtask-time-tracking-cell + @include sm-device + display: none diff --git a/assets/sass/_table_list.sass b/assets/sass/_table_list.sass index dbe35e84..019a8296 100644 --- a/assets/sass/_table_list.sass +++ b/assets/sass/_table_list.sass @@ -11,6 +11,13 @@ line-height: 35px padding-left: 3px padding-right: 3px + a + color: color('primary') + font-weight: 500 + text-decoration: none + margin-right: 10px + &:hover, &:focus + color: #767676 .table-list-header-count color: #767676 display: inline-block |