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

224 lines
3.6 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
*
*/
.navbar-nav {
li {
2016-02-20 08:59:59 -05:00
.badge.todos-pending-count {
margin-top: -5px;
font-weight: normal;
2016-05-06 11:47:43 -04:00
background: $todo-alert-blue;
margin-left: -17px;
font-size: 11px;
2016-11-30 08:25:25 -05:00
color: $white-light;
2016-05-06 11:47:43 -04:00
padding: 3px;
padding-top: 1px;
padding-bottom: 1px;
border-radius: 3px;
}
}
}
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 {
2016-07-20 08:01:29 -04:00
background-color: $row-hover;
border-color: $row-hover-border;
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: $row-hover-border;
}
}
.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 {
-webkit-flex: auto;
flex: auto;
}
2016-03-30 10:17:03 -04:00
}
2016-02-20 08:59:59 -05:00
.todo-item {
.todo-title {
2016-02-12 13:45:44 -05:00
@include str-truncated(calc(100% - 174px));
2016-04-28 14:54:13 -04:00
overflow: visible;
}
.status-box {
margin: 0;
float: none;
display: inline-block;
font-weight: normal;
padding: 0 5px;
line-height: inherit;
font-size: 14px;
2016-02-12 13:45:44 -05:00
}
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;
2016-03-24 07:28:06 -04:00
.label {
color: $gl-text-color;
font-size: inherit;
}
p {
2016-11-30 08:25:25 -05:00
color: $gl-text-color-dark;
}
}
code {
white-space: pre-wrap;
}
2016-02-12 13:45:44 -05:00
pre {
border: none;
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;
}
}
}
}
2016-09-13 12:25:50 -04:00
@media (max-width: $screen-sm-max) {
.todos-filters {
.dropdown-menu-toggle {
width: 135px;
}
}
}
2016-02-12 13:45:44 -05:00
@media (max-width: $screen-xs-max) {
2016-07-20 08:01:29 -04:00
.todo {
.avatar {
display: none;
}
}
2016-02-20 08:59:59 -05:00
.todo-item {
.todo-title {
2016-02-12 13:45:44 -05:00
white-space: normal;
overflow: visible;
max-width: 100%;
margin-bottom: 10px;
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 {
.row-content-block {
padding-bottom: 50px;
}
.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;
@media (min-width: $screen-sm-min) {
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;
@media (min-width: $screen-sm-min) {
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;
@media (min-width: $screen-sm-min) {
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: 600;
}
}