2019-05-07 14:57:22 +08:00
|
|
|
body {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
#wrapper {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.top-header {
|
|
|
|
background: #f4f4f7;
|
|
|
|
border-bottom: 1px solid #e8e8e8;
|
|
|
|
padding: 8px 16px 4px;
|
|
|
|
height: 53px;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.side-panel {
|
|
|
|
flex: 0 0 22%;
|
|
|
|
padding: 20px;
|
|
|
|
border-right: 1px solid #eee;
|
|
|
|
}
|
|
|
|
.main-panel {
|
|
|
|
flex: 1 0 78%;
|
|
|
|
}
|
|
|
|
.heading {
|
|
|
|
padding: 8px 16px;
|
|
|
|
background: #f9f9f9;
|
|
|
|
font-size: 1rem;
|
|
|
|
color: #322;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 1.5;
|
|
|
|
margin:0;
|
|
|
|
}
|
|
|
|
.content {
|
2019-05-13 12:17:40 +08:00
|
|
|
padding: 0rem 1rem 8rem;
|
2019-05-07 14:57:22 +08:00
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
.setting-item {
|
|
|
|
margin: 1em 0 2em;
|
|
|
|
}
|
|
|
|
.setting-item-heading {
|
|
|
|
font-size: 1rem;
|
|
|
|
font-weight: normal;
|
|
|
|
padding-bottom: 0.2em;
|
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
margin-bottom: 0.7em;
|
|
|
|
}
|
|
|
|
.user-avatar {
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
2019-05-13 08:50:05 +08:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
.user-setting-nav .nav-item .nav-link {
|
|
|
|
flex: auto;
|
|
|
|
margin: 0;
|
|
|
|
padding-left: 1em;
|
2019-05-13 12:17:40 +08:00
|
|
|
border-left: 2px solid transparent;
|
2019-05-13 08:50:05 +08:00
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
.user-setting-nav .nav-item.active .nav-link {
|
|
|
|
color: #eb8205;
|
|
|
|
border-color: #eb8205;
|
|
|
|
}
|
|
|
|
.user-setting-nav .nav-item .nav-link:hover {
|
|
|
|
color: #eb8205;
|
|
|
|
}
|
|
|
|
.eye-icon {
|
|
|
|
color: #666;
|
|
|
|
}
|
2019-05-13 12:17:40 +08:00
|
|
|
.input-tip {
|
|
|
|
padding-top: calc(0.375rem + 1px);
|
|
|
|
color: #666;
|
|
|
|
}
|
2019-05-13 13:19:10 +08:00
|
|
|
@media (min-width: 768px) {
|
|
|
|
.input-tip {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
}
|