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