mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-24 21:07:17 +00:00
* [settings] redesigned the 'heading' bar; fixup for the side nav; improved UI for content headings * [settings] resigned it (the top bar, the side panel; the code frame)
62 lines
895 B
CSS
62 lines
895 B
CSS
body {
|
|
overflow: hidden;
|
|
}
|
|
#wrapper {
|
|
height: 100%;
|
|
}
|
|
|
|
.main-panel {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.content {
|
|
padding: 0rem 1rem 8rem;
|
|
overflow: auto;
|
|
}
|
|
.setting-item {
|
|
font-size: 0.875rem;
|
|
padding: 1em 0 3em;
|
|
}
|
|
.setting-item-heading {
|
|
font-size: 0.9375rem;
|
|
font-weight: normal;
|
|
padding-bottom: 0.3rem;
|
|
border-bottom: 1px solid #eee;
|
|
margin-bottom: 0.7rem;
|
|
}
|
|
.user-avatar {
|
|
border-radius: 3px;
|
|
}
|
|
.avatar-edit {
|
|
position: absolute;
|
|
left: 0.75rem;
|
|
top: 0;
|
|
width: 80px;
|
|
height: 80px;
|
|
border-radius: 3px;
|
|
background: rgba(0, 0, 0, 0.3);
|
|
color: #fff;
|
|
font-size: 24px;
|
|
line-height: 80px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
}
|
|
.eye-icon {
|
|
color: #666;
|
|
}
|
|
.input-tip {
|
|
padding-top: calc(0.375rem + 1px);
|
|
color: #666;
|
|
}
|
|
@media (min-width: 768px) {
|
|
.input-tip {
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
.language-selector {
|
|
width: 260px;
|
|
}
|
|
.btn {
|
|
min-width: 60px;
|
|
}
|