dootask/resources/assets/sass/pages/page-setting.scss
2022-01-11 12:13:26 +08:00

217 lines
6.0 KiB
SCSS
Executable File
Vendored

.page-setting {
display: flex;
flex-direction: column;
.setting-head {
display: flex;
align-items: center;
margin: 32px 32px 16px;
border-bottom: 1px solid #F4F4F5;
.setting-titbox {
flex: 1;
margin-bottom: 16px;
.setting-title {
display: flex;
align-items: center;
> h1 {
flex: 1;
color: #333333;
font-size: 28px;
font-weight: 600;
}
.setting-more {
display: none;
}
}
}
}
.setting-box {
flex: 1;
height: 0;
display: flex;
padding-bottom: 16px;
.setting-menu {
width: 200px;
flex-shrink: 0;
border-right: 1px solid #F4F4F5;
overflow: auto;
> ul {
padding: 12px 0 0 32px;
> li {
cursor: pointer;
color: #6C7D8C;
list-style: none;
line-height: 42px;
padding: 0 20px;
margin: 5px 0;
position: relative;
&.active,
&:hover {
background-color: #F4F5F7;
}
&.version {
cursor: default;
&:hover {
background-color: transparent;
}
}
&.divided {
position: relative;
margin-top: 10px;
padding-top: 10px;
&:before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 1;
height: 1px;
background-color: #F4F4F5;
}
&:after {
content: "";
position: absolute;
top: 1px;
left: 0;
right: 0;
z-index: 2;
height: 9px;
background-color: #ffffff;
}
}
}
}
}
.setting-content {
flex: 1;
overflow: auto;
position: relative;
display: flex;
flex-direction: column;
.setting-content-title {
font-size: 20px;
font-weight: 500;
padding: 12px 32px;
}
.setting-content-view {
flex: 1;
position: relative;
.setting-router-view {
padding: 24px 40px;
}
}
}
}
.setting-item {
.ivu-input,
.ivu-select-selection {
max-width: 460px;
}
.ivu-form {
overflow: auto;
}
.setting-color {
min-width: 400px;
max-width: 600px;
margin-bottom: 12px;
> div {
text-align: center;
padding-right: 12px;
&:first-child {
text-align: left;
}
&:last-child {
padding-right: 0;
width: 60px;
flex: auto;
flex-shrink: 0;
max-width: 60px;
}
.ivu-color-picker {
width: 100%;
}
}
.information {
color: #999999;
}
}
.setting-footer {
> button {
height: 34px;
line-height: 32px;
min-width: 94px;
}
}
.setting-auto-day {
display: block;
width: 110px;
margin-top: 12px;
line-height: 32px;
margin-bottom: -10px;
}
&.submit {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
flex-direction: column;
padding: 0 !important;
.ivu-form {
flex: 1;
padding: 24px 40px;
overflow: auto;
}
.setting-footer {
flex-shrink: 0;
position: static;
padding: 16px 24px 0;
border-top: 1px solid #F4F4F5;
}
}
}
}
@media (max-width: 768px) {
.page-setting {
.setting-head {
.setting-titbox {
.setting-title {
.setting-more {
display: flex;
font-size: 24px;
width: 42px;
height: 42px;
align-items: center;
justify-content: center;
}
}
}
}
.setting-box {
position: relative;
.setting-menu {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9;
transition: all 0.2s;
background-color: #ffffff;
transform: translateX(-120%);
&.show768-menu {
transform: translateX(0);
}
> ul {
padding: 12px 32px;
}
}
}
}
}