mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
bfd5d7c910
* fix: PageHeader style breaks when title is too long close #15664 * ✅ update snapshot * 💄 Improve PageHeader responsive design
124 lines
2.2 KiB
Plaintext
124 lines
2.2 KiB
Plaintext
@import '../../style/themes/index';
|
|
@import '../../style/mixins/index';
|
|
|
|
@pageheader-prefix-cls: ~'@{ant-prefix}-page-header';
|
|
|
|
.@{pageheader-prefix-cls} {
|
|
.reset-component;
|
|
position: relative;
|
|
padding: @page-header-padding-vertical @page-header-padding;
|
|
background-color: @component-background;
|
|
|
|
&-ghost {
|
|
background-color: @page-header-ghost-bg;
|
|
}
|
|
|
|
&.has-breadcrumb {
|
|
padding-top: @page-header-padding-breadcrumb;
|
|
}
|
|
|
|
&.has-footer {
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
&-back {
|
|
margin-right: @margin-md;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
|
|
&-button {
|
|
.operation-unit();
|
|
color: @page-header-back-color;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.@{ant-prefix}-divider-vertical {
|
|
height: 14px;
|
|
margin: 0 @margin-sm;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.@{ant-prefix}-breadcrumb + &-heading {
|
|
margin-top: @margin-xs;
|
|
}
|
|
|
|
.text-overflow-ellipsis() {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
&-heading {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
&-left {
|
|
display: flex;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
&-title {
|
|
margin-right: @margin-sm;
|
|
margin-bottom: 0;
|
|
color: @heading-color;
|
|
font-weight: 600;
|
|
font-size: @heading-4-size;
|
|
line-height: 32px;
|
|
.text-overflow-ellipsis;
|
|
}
|
|
|
|
.@{ant-prefix}-avatar {
|
|
margin-right: @margin-sm;
|
|
}
|
|
|
|
&-sub-title {
|
|
margin-right: @margin-sm;
|
|
color: @text-color-secondary;
|
|
font-size: 14px;
|
|
line-height: 22px;
|
|
.text-overflow-ellipsis;
|
|
}
|
|
|
|
&-extra {
|
|
white-space: nowrap;
|
|
> * {
|
|
margin-left: @margin-sm;
|
|
white-space: unset;
|
|
}
|
|
> *:first-child {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-content {
|
|
padding-top: @page-header-content-padding-vertical;
|
|
}
|
|
|
|
&-footer {
|
|
margin-top: @margin-md;
|
|
.@{ant-prefix}-tabs-bar {
|
|
margin-bottom: 1px;
|
|
border-bottom: 0;
|
|
.@{ant-prefix}-tabs-nav {
|
|
.@{ant-prefix}-tabs-tab {
|
|
padding: @tabs-horizontal-padding-sm;
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&-compact &-heading {
|
|
flex-direction: column;
|
|
|
|
&-extra {
|
|
margin-top: @margin-xs;
|
|
}
|
|
}
|
|
}
|
|
|
|
@import './rtl';
|