750 lines
27 KiB
SCSS
Vendored
750 lines
27 KiB
SCSS
Vendored
.project-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
.project-head {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
margin: 32px 32px 0;
|
|
.project-titbox {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
margin-bottom: 24px;
|
|
.project-title {
|
|
display: flex;
|
|
align-items: center;
|
|
> h1 {
|
|
color: #333333;
|
|
font-size: 28px;
|
|
font-weight: 600;
|
|
}
|
|
.project-load {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: 18px;
|
|
.common-loading {
|
|
width: 22px;
|
|
height: 22px;
|
|
}
|
|
}
|
|
}
|
|
.project-icons {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-shrink: 0;
|
|
margin-top: 3px;
|
|
> li {
|
|
list-style: none;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 36px;
|
|
height: 36px;
|
|
border-radius: 50%;
|
|
position: relative;
|
|
margin-left: 16px;
|
|
cursor: pointer;
|
|
transition: box-shadow 0.3s;
|
|
&:hover {
|
|
box-shadow: 0 0 6px #cccccc;
|
|
}
|
|
&.project-icon {
|
|
border-radius: 50%;
|
|
background-color: #F2F3F5;
|
|
.menu-icon {
|
|
font-size: 20px;
|
|
width: 36px;
|
|
height: 36px;
|
|
line-height: 36px;
|
|
}
|
|
.menu-badge {
|
|
position: absolute;
|
|
top: -6px;
|
|
left: 20px;
|
|
transform: scale(0.8);
|
|
}
|
|
.search-input {
|
|
margin: 2px 0;
|
|
width: 170px;
|
|
}
|
|
&.active {
|
|
color: #ffffff;
|
|
background-color: $primary-color;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.project-subtitle {
|
|
width: 100%;
|
|
color: #999999;
|
|
line-height: 24px;
|
|
margin-top: -6px;
|
|
margin-bottom: -18px;
|
|
padding-right: 260px;
|
|
}
|
|
.project-switch {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
.project-checkbox {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 14px;
|
|
opacity: 0.9;
|
|
.ivu-checkbox-focus {
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
.project-switch-button {
|
|
display: flex;
|
|
align-items: center;
|
|
background-color: #ffffff;
|
|
border-radius: 6px;
|
|
position: relative;
|
|
transition: box-shadow 0.2s;
|
|
&:hover {
|
|
box-shadow: 0 0 10px #e6ecfa;
|
|
}
|
|
&:before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 50%;
|
|
height: 100%;
|
|
z-index: 0;
|
|
color: $primary-color;
|
|
border-radius: 6px;
|
|
border: 1px solid $primary-color;
|
|
background-color: rgba($primary-color, 0.1);
|
|
transition: left 0.2s;
|
|
}
|
|
> div {
|
|
z-index: 1;
|
|
width: 32px;
|
|
height: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
color: #515a6e;
|
|
> i {
|
|
font-size: 17px;
|
|
}
|
|
&:first-child {
|
|
color: $primary-color;
|
|
}
|
|
}
|
|
&.menu {
|
|
&:before {
|
|
left: 50%;
|
|
}
|
|
> div:first-child {
|
|
color: #515a6e;
|
|
}
|
|
> div:last-child {
|
|
color: $primary-color;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.project-column {
|
|
display: flex;
|
|
height: 100%;
|
|
padding-top: 18px;
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
> ul {
|
|
display: inline-flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
> li {
|
|
flex-shrink: 0;
|
|
list-style: none;
|
|
width: 260px;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
&:first-child {
|
|
margin-left: 22px;
|
|
}
|
|
&:last-child {
|
|
margin-right: 22px;
|
|
}
|
|
&.add-column {
|
|
height: 36px;
|
|
color: #888888;
|
|
cursor: pointer;
|
|
background-color: #F2F3F5;
|
|
border-radius: 4px;
|
|
.add-column-text {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
line-height: 36px;
|
|
padding: 0 12px;
|
|
> i {
|
|
font-size: 16px;
|
|
padding-right: 8px;
|
|
}
|
|
&:hover {
|
|
color: #777777;
|
|
}
|
|
}
|
|
.add-column-input {
|
|
display: none;
|
|
align-items: center;
|
|
height: 36px;
|
|
.ivu-input {
|
|
height: 36px;
|
|
padding: 4px 10px;
|
|
}
|
|
.ivu-input-icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
line-height: 36px;
|
|
}
|
|
}
|
|
&.show-input {
|
|
.add-column-text {
|
|
display: none;
|
|
}
|
|
.add-column-input {
|
|
display: flex;
|
|
}
|
|
}
|
|
}
|
|
.column-head {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 7px 10px;
|
|
margin: 0 10px;
|
|
background-color: #F2F3F5;
|
|
border-radius: 4px;
|
|
.column-head-title {
|
|
flex: 1;
|
|
width: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
font-weight: 500;
|
|
> span {
|
|
font-size: 15px;
|
|
}
|
|
> em {
|
|
color: #888888;
|
|
font-style: normal;
|
|
font-size: 14px;
|
|
padding-left: 6px;
|
|
}
|
|
}
|
|
.column-head-icon {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: 16px;
|
|
.loading,
|
|
.ivu-icon {
|
|
width: 24px;
|
|
height: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding-right: 8px;
|
|
.common-loading {
|
|
width: 16px;
|
|
height: 16px;
|
|
margin: 0;
|
|
}
|
|
}
|
|
.ivu-icon {
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
color: #aaaaaa;
|
|
font-weight: 600;
|
|
transition: color 0.3s;
|
|
&:hover {
|
|
color: #888888;
|
|
}
|
|
}
|
|
.last {
|
|
padding-right: 0;
|
|
}
|
|
}
|
|
&.custom-color {
|
|
color: #ffffff;
|
|
.column-head-title {
|
|
> em {
|
|
color: rgba(255, 255, 255, 0.6);
|
|
}
|
|
}
|
|
.ivu-icon {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
&:hover {
|
|
color: rgba(255, 255, 255, 0.9);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.column-task {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
.task-list {
|
|
> div:last-child {
|
|
margin-bottom: 16px;
|
|
}
|
|
}
|
|
.task-item {
|
|
cursor: pointer;
|
|
margin: 16px 10px 0;
|
|
background-color: #ffffff;
|
|
border-radius: 12px;
|
|
padding: 12px;
|
|
transition: box-shadow 0.3s, opacity 0.3s;
|
|
position: relative;
|
|
&:hover {
|
|
box-shadow: 0 0 10px #e6ecfa;
|
|
}
|
|
.task-head {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
.task-title {
|
|
flex: 1;
|
|
padding-top: 1px;
|
|
> pre {
|
|
margin: 0;
|
|
padding: 0;
|
|
line-height: 1.5;
|
|
white-space: pre-wrap;
|
|
word-wrap: break-word;
|
|
}
|
|
}
|
|
.task-menu {
|
|
margin-left: 8px;
|
|
width: 22px;
|
|
height: 22px;
|
|
.loading,
|
|
.ivu-icon {
|
|
width: 22px;
|
|
height: 22px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
.common-loading {
|
|
width: 16px;
|
|
height: 16px;
|
|
margin: 0;
|
|
}
|
|
}
|
|
.ivu-icon {
|
|
font-size: 22px;
|
|
color: #777777;
|
|
cursor: pointer;
|
|
&:hover {
|
|
color: #555555;
|
|
}
|
|
}
|
|
}
|
|
&.has-desc {
|
|
.task-title {
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
}
|
|
.task-desc {
|
|
color: #999999;
|
|
margin-top: 10px;
|
|
line-height: 20px;
|
|
word-break: break-all;
|
|
}
|
|
.task-tags {
|
|
margin-top: 10px;
|
|
.ivu-tag {
|
|
|
|
}
|
|
}
|
|
.task-users {
|
|
margin-top: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
> ul {
|
|
flex: 1;
|
|
width: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
overflow: auto;
|
|
margin-right: 24px;
|
|
> li {
|
|
list-style: none;
|
|
margin-left: -6px;
|
|
width: 32px;
|
|
height: 32px;
|
|
&:first-child {
|
|
margin-left: 0;
|
|
}
|
|
&.no-owner {
|
|
width: auto;
|
|
.ivu-btn-small {
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.task-icon {
|
|
margin-left: 6px;
|
|
font-size: 12px;
|
|
.ivu-icon {
|
|
margin-left: 1px;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
}
|
|
.task-progress {
|
|
margin-top: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
.task-sub-num {
|
|
font-size: 12px;
|
|
margin-right: 8px;
|
|
color: #777777;
|
|
}
|
|
.task-time {
|
|
flex-shrink: 0;
|
|
color: #777777;
|
|
background-color: #EAEDF2;
|
|
padding: 1px 4px;
|
|
margin-left: 18px;
|
|
font-size: 12px;
|
|
border-radius: 3px;
|
|
display: flex;
|
|
align-items: center;
|
|
&.overdue {
|
|
font-weight: 600;
|
|
color: #ffffff;
|
|
background-color: #ed4014;
|
|
}
|
|
&.today {
|
|
font-weight: 500;
|
|
color: #ffffff;
|
|
background-color: #ff9900;
|
|
}
|
|
.iconfont {
|
|
margin-right: 3px;
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
}
|
|
.priority-color {
|
|
position: absolute;
|
|
top: 12px;
|
|
left: 0;
|
|
width: 3px;
|
|
height: 42px;
|
|
max-height: 50%;
|
|
border-radius: 2px;
|
|
}
|
|
&.additem {
|
|
cursor: default;
|
|
padding: 0;
|
|
}
|
|
&.complete {
|
|
opacity: 0.5;
|
|
&:hover {
|
|
opacity: 0.8;
|
|
}
|
|
.task-head {
|
|
.task-title {
|
|
text-decoration: line-through;
|
|
}
|
|
}
|
|
.task-desc,
|
|
.task-tags,
|
|
.task-users,
|
|
.task-progress,
|
|
.priority-color {
|
|
display: none;
|
|
}
|
|
}
|
|
&.hidden {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.project-table {
|
|
height: 100%;
|
|
margin-top: 18px;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
.task-row {
|
|
background-color: #ffffff;
|
|
border-bottom: 1px solid #F4F4F5;
|
|
position: relative;
|
|
> div {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 8px 12px;
|
|
border-right: 1px solid #F4F4F5;
|
|
&:first-child {
|
|
padding-left: 32px;
|
|
}
|
|
&:last-child {
|
|
border-right: 0;
|
|
}
|
|
&.complete {
|
|
.item-title {
|
|
color: #aaaaaa;
|
|
text-decoration: line-through;
|
|
}
|
|
}
|
|
}
|
|
.priority-color {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: -1px;
|
|
width: 3px;
|
|
}
|
|
}
|
|
.project-table-head,
|
|
.project-table-body {
|
|
margin: 0 32px 12px;
|
|
border-radius: 5px;
|
|
border: 1px solid #F4F4F5;
|
|
border-bottom: 0;
|
|
overflow: hidden;
|
|
&.project-table-hide {
|
|
.task-rows {
|
|
display: none;
|
|
}
|
|
.row-title {
|
|
.iconfont {
|
|
transform: rotate(-90deg);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.project-table-head {
|
|
.task-row {
|
|
> div {
|
|
color: #888888;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
}
|
|
.project-table-body {
|
|
transition: box-shadow 0.3s;
|
|
&:hover {
|
|
box-shadow: 0 0 10px #e6ecfa;
|
|
}
|
|
.task-row {
|
|
> div {
|
|
padding: 10px 12px;
|
|
&.row-title {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: #333333;
|
|
padding-left: 14px;
|
|
.iconfont {
|
|
cursor: pointer;
|
|
transition: transform 0.3s;
|
|
font-size: 12px;
|
|
}
|
|
.row-h1 {
|
|
padding-left: 18px;
|
|
}
|
|
.row-num {
|
|
color: #999999;
|
|
padding-left: 6px;
|
|
}
|
|
}
|
|
&.row-name {
|
|
align-items: flex-start;
|
|
padding: 12px 12px 12px 34px;
|
|
line-height: 24px;
|
|
.drop-icon {
|
|
position: relative;
|
|
}
|
|
.loading {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
.common-loading {
|
|
margin: 0;
|
|
width: 14px;
|
|
height: 14px;
|
|
}
|
|
}
|
|
.ivu-icon {
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
color: #cccccc;
|
|
&.completed {
|
|
color: $primary-color;
|
|
}
|
|
&.sub-icon {
|
|
font-size: 16px;
|
|
width: 16px;
|
|
height: 16px;
|
|
margin-top: 4px;
|
|
margin-left: -20px;
|
|
margin-right: 4px;
|
|
color: #cfcfcf;
|
|
transition: transform 0.2s;
|
|
&.active {
|
|
transform: rotate(90deg);
|
|
}
|
|
}
|
|
}
|
|
.item-title {
|
|
flex: 1;
|
|
padding: 0 22px 0 8px;
|
|
cursor: pointer;
|
|
}
|
|
.item-icons {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: 4px;
|
|
flex-shrink: 0;
|
|
.item-icon {
|
|
display: flex;
|
|
font-size: 12px;
|
|
margin-left: 16px;
|
|
color: #aaaaaa;
|
|
cursor: pointer;
|
|
.iconfont {
|
|
font-size: 12px;
|
|
}
|
|
> em {
|
|
font-style: normal;
|
|
margin-left: 4px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
&.row-column {
|
|
.task-column {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
&.row-user {
|
|
padding: 8px;
|
|
> ul {
|
|
height: 32px;
|
|
overflow: hidden;
|
|
text-overflow:ellipsis;
|
|
white-space: nowrap;
|
|
> li {
|
|
list-style: none;
|
|
display: inline-block;
|
|
margin-left: -6px;
|
|
&:first-child {
|
|
margin-left: 0;
|
|
}
|
|
&.no-owner {
|
|
height: 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
&.row-time {
|
|
.task-time {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
&.overdue,
|
|
&.today {
|
|
color: #ffffff;
|
|
padding: 1px 5px;
|
|
font-size: 13px;
|
|
border-radius: 3px;
|
|
}
|
|
&.overdue {
|
|
font-weight: 600;
|
|
background-color: #ed4014;
|
|
}
|
|
&.today {
|
|
font-weight: 500;
|
|
background-color: #ff9900;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.task-rows {
|
|
.task-rows {
|
|
position: relative;
|
|
overflow: hidden;
|
|
&:before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
box-shadow: rgba(0, 0, 0, 0.08) 0 0 8px 1px;
|
|
z-index: 1;
|
|
}
|
|
.task-row {
|
|
background-color: #fcfcfd;
|
|
> div {
|
|
&.row-name {
|
|
padding-left: 56px;
|
|
.item-title {
|
|
color: #6C7D8C;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.task-add-row {
|
|
background-color: #fcfcfd;
|
|
> div {
|
|
&.row-add {
|
|
padding-left: 56px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.project-list-more-dropdown-menu {
|
|
> li {
|
|
.item {
|
|
display: flex;
|
|
align-items: center;
|
|
> i {
|
|
width: 18px;
|
|
height: 18px;
|
|
line-height: 18px;
|
|
font-size: 18px;
|
|
margin-right: 8px;
|
|
padding: 0;
|
|
color: #bbbbbb;
|
|
&.ivu-icon {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|