mirror of
https://github.com/kuaifan/dootask.git
synced 2026-03-17 03:03:41 +00:00
no message
This commit is contained in:
parent
afff590fa5
commit
13a36fc471
@ -40,9 +40,9 @@
|
|||||||
<iCircle
|
<iCircle
|
||||||
type="circle"
|
type="circle"
|
||||||
trail-color="rgba(132, 197, 106, 0.2)"
|
trail-color="rgba(132, 197, 106, 0.2)"
|
||||||
:trail-width="8"
|
:trail-width="6"
|
||||||
:stroke-color="item.task_percent === 100 ? 'rgba(132, 197, 106, 0)' : '#84C56A'"
|
:stroke-color="item.task_percent === 100 ? 'rgba(132, 197, 106, 0)' : '#84C56A'"
|
||||||
:stroke-width="8"
|
:stroke-width="6"
|
||||||
:percent="item.task_percent"
|
:percent="item.task_percent"
|
||||||
:size="48">
|
:size="48">
|
||||||
<Icon v-if="item.task_percent === 100" type="ios-checkmark"></Icon>
|
<Icon v-if="item.task_percent === 100" type="ios-checkmark"></Icon>
|
||||||
|
|||||||
@ -78,7 +78,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Badge class="dialog-num" :count="$A.getDialogUnread(dialog)"/>
|
<Badge class="dialog-num" :count="$A.getDialogUnread(dialog)"/>
|
||||||
<div class="dialog-split"></div>
|
<div class="dialog-line"></div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul v-else class="contacts">
|
<ul v-else class="contacts">
|
||||||
|
|||||||
2
resources/assets/sass/components/mobile.scss
vendored
2
resources/assets/sass/components/mobile.scss
vendored
@ -116,7 +116,7 @@
|
|||||||
|
|
||||||
.tabbar-title {
|
.tabbar-title {
|
||||||
padding-top: 6px;
|
padding-top: 6px;
|
||||||
font-size: 14px;
|
font-size: 13px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|||||||
@ -56,12 +56,25 @@
|
|||||||
background-color: #f8f8f8;
|
background-color: #f8f8f8;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
> li {
|
> li {
|
||||||
padding: 14px;
|
padding: 16px;
|
||||||
margin: 16px;
|
margin: 16px;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
border: 2px solid transparent;
|
|
||||||
list-style: none;
|
list-style: none;
|
||||||
|
position: relative;
|
||||||
|
&:before {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
content: "";
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
z-index: 1;
|
||||||
|
border: 2px solid $primary-color;
|
||||||
|
pointer-events: none;
|
||||||
|
border-radius: 12px;
|
||||||
|
}
|
||||||
&.nothing,
|
&.nothing,
|
||||||
&.loading {
|
&.loading {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@ -82,7 +95,9 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.operate {
|
&.operate {
|
||||||
border-color: $primary-color;
|
&:before {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.project-item {
|
.project-item {
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -94,9 +109,9 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
.project-name {
|
.project-name {
|
||||||
font-size: 16px;
|
font-size: 14px;
|
||||||
line-height: 22px;
|
line-height: 22px;
|
||||||
font-weight: 600;
|
color: #333333;
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@ -134,8 +149,9 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.project-h2 {
|
.project-h2 {
|
||||||
margin-top: 8px;
|
margin-top: 4px;
|
||||||
line-height: 22px;
|
line-height: 20px;
|
||||||
|
font-size: 12px;
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@ -158,7 +174,7 @@
|
|||||||
}
|
}
|
||||||
.percent-text {
|
.percent-text {
|
||||||
color: $primary-color;
|
color: $primary-color;
|
||||||
font-weight: 600;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
4
resources/assets/sass/pages/page-file.scss
vendored
4
resources/assets/sass/pages/page-file.scss
vendored
@ -664,7 +664,11 @@
|
|||||||
.file-list {
|
.file-list {
|
||||||
user-select: none;
|
user-select: none;
|
||||||
> ul {
|
> ul {
|
||||||
|
grid-template-columns: repeat(auto-fill, 80px);
|
||||||
grid-gap: 4px;
|
grid-gap: 4px;
|
||||||
|
> li {
|
||||||
|
width: 80px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.file-table {
|
.file-table {
|
||||||
|
|||||||
43
resources/assets/sass/pages/page-messenger.scss
vendored
43
resources/assets/sass/pages/page-messenger.scss
vendored
@ -95,12 +95,10 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
padding: 14px 10px;
|
padding: 16px 12px;
|
||||||
position: relative;
|
position: relative;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin-right: 1px;
|
|
||||||
border: 2px solid transparent;
|
|
||||||
.user-avatar,
|
.user-avatar,
|
||||||
.icon-avatar {
|
.icon-avatar {
|
||||||
width: 42px;
|
width: 42px;
|
||||||
@ -218,8 +216,27 @@
|
|||||||
left: 42px;
|
left: 42px;
|
||||||
transform: scale(0.8);
|
transform: scale(0.8);
|
||||||
}
|
}
|
||||||
.dialog-split {
|
.dialog-line {
|
||||||
display: none;
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
left: 68px;
|
||||||
|
height: 1px;
|
||||||
|
background-color: #f2f2f2;
|
||||||
|
transform: scaleY(0.5);
|
||||||
|
}
|
||||||
|
&:before {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
content: "";
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
z-index: 1;
|
||||||
|
border: 2px solid $primary-color;
|
||||||
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
&.top {
|
&.top {
|
||||||
background-color: #EEEFF1;
|
background-color: #EEEFF1;
|
||||||
@ -228,7 +245,9 @@
|
|||||||
background-color: #F4F5F7;
|
background-color: #F4F5F7;
|
||||||
}
|
}
|
||||||
&.operate {
|
&.operate {
|
||||||
border-color: $primary-color;
|
&:before {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
&.loading {
|
&.loading {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@ -433,6 +452,9 @@
|
|||||||
max-width: none;
|
max-width: none;
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
z-index: 48;
|
z-index: 48;
|
||||||
|
&:after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
.messenger-search {
|
.messenger-search {
|
||||||
background-color: #f8f8f8;
|
background-color: #f8f8f8;
|
||||||
.search-wrapper {
|
.search-wrapper {
|
||||||
@ -465,18 +487,11 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.dialog-split {
|
.dialog-line {
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
|
||||||
bottom: 0;
|
|
||||||
right: 0;
|
|
||||||
left: 68px;
|
|
||||||
height: 1px;
|
|
||||||
background-color: #f2f2f2;
|
|
||||||
transform: scaleY(0.5);
|
|
||||||
}
|
}
|
||||||
&:last-child {
|
&:last-child {
|
||||||
.dialog-split {
|
.dialog-line {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user