46 lines
889 B
Plaintext
46 lines
889 B
Plaintext
.list {
|
|
padding: 10px 20px 10px 31px;
|
|
border-bottom: 1px solid #ddd;
|
|
cursor: pointer;
|
|
position: relative;
|
|
}
|
|
|
|
.list__notify {
|
|
margin-bottom: 5px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
|
|
.notify_mask {
|
|
// display: none;
|
|
color: var(--oak-color-primary);
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
white-space: nowrap;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.notify_deadline {
|
|
color: #000;
|
|
font-weight: 600;
|
|
line-height: 20px;
|
|
flex: 1 1 auto;
|
|
min-width: 20px;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
|
|
.list__info {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
|
|
|
|
.create_time {
|
|
color: rgba(0, 0, 0, .4);
|
|
line-height: 20px;
|
|
font-size: 12px;
|
|
}
|
|
} |