mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-26 15:26:19 +00:00
* update css stylesheet, replace css properties with css variable * update css variable * libraries,favorites,activities and help pages, etc * wiki dark mode * sdoc dark mode * markdown, text editor, etc * sysadmin pages * update seafile-ui.css * update template, css variable * clean up * update seafile-ui * update modal css * update seafile-ui.css * delete diff --------- Co-authored-by: zhouwenxuan <aries@Mac.local> Co-authored-by: Michael An <1822852997@qq.com>
35 lines
566 B
CSS
35 lines
566 B
CSS
.empty-tip {
|
|
margin: 5.5em 1em;
|
|
padding: 30px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.empty-tip .no-items-img-tip {
|
|
display: inline-block;
|
|
margin-bottom: 10px;
|
|
-webkit-user-drag: none;
|
|
}
|
|
|
|
.empty-tip .empty-tip-title {
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
color: var(--bs-body-color);
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.empty-tip .empty-tip-text {
|
|
font-size: 14px;
|
|
font-weight: normal;
|
|
color: #666;
|
|
text-align: center;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.empty-tip {
|
|
padding: 30px 80px;
|
|
}
|
|
}
|