gitlab-org--gitlab-foss/app/assets/stylesheets/pages/todos.scss

283 lines
4.4 KiB
SCSS
Raw Normal View History

2016-02-12 13:45:44 -05:00
/**
2016-02-20 08:59:59 -05:00
* Dashboard Todos
2016-02-12 13:45:44 -05:00
*
*/
2016-07-20 08:01:29 -04:00
.todos-list > .todo {
// workaround because we cannot use border-colapse
border-top: 1px solid transparent;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
flex-direction: row;
2016-03-30 10:17:03 -04:00
&:hover {
background-color: $blue-50;
border-color: $blue-200;
2016-03-30 10:17:03 -04:00
cursor: pointer;
}
2016-07-20 08:01:29 -04:00
// overwrite border style of .content-list
&:last-child {
border-bottom: 1px solid transparent;
&:hover {
border-color: $blue-200;
2016-07-20 08:01:29 -04:00
}
}
2017-02-20 08:13:37 -05:00
.todo-avatar,
.todo-actions {
2017-03-22 10:51:01 -04:00
@include transition(opacity);
2017-02-20 08:13:37 -05:00
-webkit-flex: 0 0 auto;
flex: 0 0 auto;
}
2016-07-20 08:01:29 -04:00
.todo-actions {
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
justify-content: center;
-webkit-flex-direction: column;
flex-direction: column;
margin-left: 10px;
2016-09-13 12:25:50 -04:00
min-width: 55px;
2016-07-20 08:01:29 -04:00
}
.todo-item {
2017-02-20 08:13:37 -05:00
-webkit-flex: 0 1 100%;
flex: 0 1 100%;
min-width: 0;
2016-07-20 08:01:29 -04:00
}
2016-03-30 10:17:03 -04:00
&.todo-pending.done-reversible {
background-color: $white-light;
&:hover {
border-color: $white-normal;
background-color: $gray-light;
border-top: 1px solid transparent;
.todo-avatar,
.todo-item {
opacity: .6;
}
}
.todo-avatar,
.todo-item {
opacity: .2;
}
.btn {
background-color: $gray-light;
}
}
}
2016-02-20 08:59:59 -05:00
.todo-item {
2017-03-22 10:51:01 -04:00
@include transition(opacity);
2016-02-20 08:59:59 -05:00
.todo-title {
2017-02-20 08:13:37 -05:00
display: flex;
> .title-item {
2017-02-20 08:13:37 -05:00
-webkit-flex: 0 0 auto;
flex: 0 0 auto;
margin: 0 2px;
&:first-child {
margin-left: 0;
}
&:last-child {
margin-right: 0;
}
}
.todo-label {
-webkit-flex: 0 1 auto;
flex: 0 1 auto;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
2016-04-28 14:54:13 -04:00
}
.status-box {
margin: 0;
float: none;
display: inline-block;
font-weight: $gl-font-weight-normal;
padding: 0 5px;
line-height: inherit;
font-size: 14px;
2016-02-12 13:45:44 -05:00
}
.action-name {
font-weight: $gl-font-weight-normal;
}
2016-02-20 08:59:59 -05:00
.todo-body {
.todo-note {
2016-02-12 13:45:44 -05:00
word-wrap: break-word;
.md {
2016-11-30 08:25:25 -05:00
color: $gl-grayish-blue;
font-size: $gl-font-size;
2018-04-09 11:26:28 -04:00
.badge.badge-pill {
2016-03-24 07:28:06 -04:00
color: $gl-text-color;
}
p {
2016-12-30 15:18:27 -05:00
color: $gl-text-color;
}
}
code {
white-space: pre-wrap;
}
2016-02-12 13:45:44 -05:00
pre {
2017-11-02 19:59:51 -04:00
border: 0;
background: $gray-light;
2016-02-12 13:45:44 -05:00
border-radius: 0;
2016-11-30 08:25:25 -05:00
color: $todo-body-pre-color;
2016-02-12 13:45:44 -05:00
margin: 0 20px;
overflow: hidden;
}
.note-image-attach {
margin-top: 4px;
margin-left: 0;
max-width: 200px;
float: none;
}
2016-02-12 13:45:44 -05:00
p:last-child {
margin-bottom: 0;
}
}
}
}
2018-04-09 11:26:28 -04:00
@include media-breakpoint-down(sm) {
2016-09-13 12:25:50 -04:00
.todos-filters {
.dropdown-menu-toggle {
width: 130px;
}
.dropdown-menu-toggle-sort {
width: auto;
2016-09-13 12:25:50 -04:00
}
}
}
@include media-breakpoint-down(lg) {
.todos-filters {
.filter-categories {
width: 75%;
.filter-item {
margin-bottom: 10px;
}
}
}
}
2018-04-09 11:26:28 -04:00
@include media-breakpoint-down(xs) {
2016-07-20 08:01:29 -04:00
.todo {
.avatar {
display: none;
}
}
2016-02-20 08:59:59 -05:00
.todo-item {
.todo-title {
2017-02-20 08:13:37 -05:00
flex-flow: row wrap;
margin-bottom: 10px;
2017-02-20 08:13:37 -05:00
.todo-label {
white-space: normal;
}
2016-02-12 13:45:44 -05:00
}
2016-02-20 08:59:59 -05:00
.todo-body {
2016-02-12 13:45:44 -05:00
margin: 0;
2016-11-30 08:25:25 -05:00
border-left: 2px solid $todo-body-border;
2016-02-12 13:45:44 -05:00
padding-left: 10px;
}
}
2016-09-13 12:25:50 -04:00
.todos-filters {
.filter-categories {
width: auto;
}
2016-09-13 12:25:50 -04:00
.dropdown-menu-toggle {
width: 100%;
}
}
2016-02-12 13:45:44 -05:00
}
2016-10-12 07:40:15 -04:00
.todos-empty {
display: -webkit-flex;
display: flex;
2016-10-13 04:35:55 -04:00
-webkit-flex-direction: column;
2016-10-12 07:40:15 -04:00
flex-direction: column;
max-width: 900px;
margin-left: auto;
margin-right: auto;
2018-04-09 11:26:28 -04:00
@include media-breakpoint-up(sm) {
2016-10-13 04:35:55 -04:00
-webkit-flex-direction: row;
2016-10-12 07:40:15 -04:00
flex-direction: row;
padding-top: 80px;
}
}
.todos-empty-content {
2016-10-13 04:35:55 -04:00
-webkit-align-self: center;
2016-10-12 07:40:15 -04:00
align-self: center;
max-width: 480px;
margin-right: 20px;
}
.todos-empty-hero {
width: 200px;
margin-left: auto;
margin-right: auto;
2018-04-09 11:26:28 -04:00
@include media-breakpoint-up(sm) {
2016-10-12 07:40:15 -04:00
width: 300px;
margin-right: 0;
2016-10-13 04:35:55 -04:00
-webkit-order: 2;
2016-10-12 07:40:15 -04:00
order: 2;
}
}
.todos-all-done {
padding-top: 20px;
2018-04-09 11:26:28 -04:00
@include media-breakpoint-up(sm) {
2016-10-12 07:40:15 -04:00
padding-top: 50px;
}
> svg {
display: block;
max-width: 300px;
margin: 0 auto 20px;
}
p {
max-width: 470px;
margin-left: auto;
margin-right: auto;
}
a {
font-weight: $gl-font-weight-bold;
2016-10-12 07:40:15 -04:00
}
}