mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-25 23:02:26 +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
584 B
CSS
35 lines
584 B
CSS
.tip-for-new-file-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
height: 100%;
|
|
}
|
|
|
|
.tip-for-new-file {
|
|
margin: 0 auto;
|
|
padding: 2em 1em;
|
|
align-self: flex-start;
|
|
/* for repo wiki mode */
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.tip-for-new-file {
|
|
padding: 5em 8em;
|
|
}
|
|
}
|
|
|
|
.big-new-file-button {
|
|
padding: .9em 2em 1em;
|
|
border-radius: 8px;
|
|
margin: 0 0.75em 1.5em;
|
|
cursor: pointer;
|
|
width: 160px;
|
|
background: var(--bs-body-bg);
|
|
border: 1px solid #d1d1d1;
|
|
}
|
|
|
|
.big-new-file-button:hover,
|
|
.big-new-file-button:focus {
|
|
border-color: #eb9205;
|
|
color: #ED7109;
|
|
}
|