amis/scss/components/_page.scss

95 lines
1.7 KiB
SCSS
Raw Normal View History

2019-04-30 11:11:25 +08:00
.#{$ns}Page {
&-header {
padding: $Page-header-paddingY $Page-header-paddingX;
}
&-main {
background: $Page-main-bg;
}
2019-04-30 11:11:25 +08:00
&-content {
padding: $Page-content-paddingY $Page-content-paddingX;
}
&-main > &-header {
border-bottom: $borderWidth solid $borderColor;
}
&-headerRow {
border-bottom: $borderWidth solid $borderColor;
display: table;
table-layout: fixed;
width: 100%;
border-spacing: 0;
.#{$ns}Page-header,
2019-04-30 11:11:25 +08:00
.#{$ns}Page-toolbar {
display: table-cell;
vertical-align: middle;
}
2019-04-30 11:11:25 +08:00
.#{$ns}Page-toolbar {
text-align: right;
padding-right: $gap-base;
}
}
2019-04-30 11:11:25 +08:00
&-title {
margin: 0;
padding: 0;
color: $text--loud-color;
font-size: $fontSizeMd;
font-weight: $fontWeightNormal;
}
&-body {
padding: $gap-base;
}
&-asideTplWrapper {
padding: $gap-xs;
}
}
.#{$ns}Page-aside {
&::before {
content: "";
position: absolute;
width: inherit;
top: 0;
bottom: 0;
z-index: -1;
background-color: inherit;
border: inherit;
}
width: $Page-aside-width;
background-color: $Page-aside-bg;
border-right: $borderWidth solid $borderColor;
}
.#{$ns}Page--withSidebar {
display: table;
table-layout: fixed;
width: 100%;
2019-05-09 18:25:12 +08:00
height: 100%;
2019-04-30 11:11:25 +08:00
border-spacing: 0;
.#{$ns}Page-aside,
2019-04-30 11:11:25 +08:00
.#{$ns}Page-content {
display: table-cell;
vertical-align: top;
}
.#{$ns}Page-content {
width: 100%;
}
}
.#{$ns}Page-toolbar {
.#{$ns}Button + .#{$ns}Button {
margin-left: $gap-xs;
}
}