mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 03:58:07 +08:00
33686a375e
* 使用自定义 css 属性初步,支持大部分组件的展现 * button 大部分可以看了 * cxd 和 dark 大部分正常 * 修复一些细节样式错误;补充 css 变量的文档 * 修复几个脚本发现的错误 * 完善一下注释 * 修复一些样式不一致问题 * 修复可能存在的 css xss * 恢复 font-variant 功能 * 修复绝大部分 @if 相关的问题 * 恢复之前的注释 * 修复小错误,并将所有 background-color 改成 background,这样就能设置渐变色 * 修复 button group 在 cxd 下不一致问题 * 缩小查看配置和复制配置的宽度,留出更多空间 * 修复一些潜在的错误 * 恢复 utilities 中 label 背景色的设置 * 修复错误的 css 变量 * 补充 IE11 Variables Polyfill
108 lines
2.0 KiB
SCSS
108 lines
2.0 KiB
SCSS
.#{$ns}Page {
|
|
width: 100%;
|
|
|
|
&-header {
|
|
padding: var(--Page-header-paddingY) var(--Page-header-paddingX);
|
|
}
|
|
|
|
&-main {
|
|
background: var(--Page-main-bg);
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
&-content {
|
|
padding: var(--Page-content-paddingY) var(--Page-content-paddingX);
|
|
position: relative;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
&-main > &-header {
|
|
border-bottom: var(--borderWidth) solid var(--borderColor);
|
|
}
|
|
|
|
&-headerRow {
|
|
border-bottom: var(--borderWidth) solid var(--borderColor);
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
|
|
.#{$ns}Page-header,
|
|
.#{$ns}Page-toolbar {
|
|
flex-grow: 1;
|
|
min-height: 100%;
|
|
}
|
|
|
|
.#{$ns}Page-toolbar {
|
|
text-align: right;
|
|
padding-right: var(--gap-base);
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
}
|
|
|
|
&-title {
|
|
margin: 0;
|
|
padding: 0;
|
|
color: var(--Page-title-color);
|
|
line-height: var(--Page-title-lineHeight);
|
|
font-size: var(--Page-title-fontSize);
|
|
font-weight: var(--Page-title-fontWeight);
|
|
}
|
|
|
|
&-body {
|
|
padding: var(--Page-body-padding);
|
|
flex: 1 auto;
|
|
}
|
|
|
|
&-asideTplWrapper {
|
|
padding: var(--gap-xs);
|
|
}
|
|
}
|
|
|
|
.#{$ns}Page-toolbar {
|
|
> * + * {
|
|
margin-left: var(--gap-xs);
|
|
}
|
|
}
|
|
|
|
.#{$ns}Page-aside {
|
|
background: var(--Page-aside-bg);
|
|
}
|
|
|
|
@include media-breakpoint-up(md) {
|
|
.#{$ns}Page-aside {
|
|
&::before {
|
|
content: '';
|
|
position: absolute;
|
|
width: inherit;
|
|
top: 0;
|
|
bottom: 0;
|
|
z-index: -1;
|
|
background: inherit;
|
|
border: inherit;
|
|
}
|
|
|
|
width: var(--Page-aside-width);
|
|
max-width: var(--Page-aside-maxWidth);
|
|
border-right: var(--borderWidth) solid var(--borderColor);
|
|
}
|
|
|
|
.#{$ns}Page--withSidebar {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: stretch;
|
|
|
|
> .#{$ns}Page-content {
|
|
width: 0;
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
}
|