ant-design/components/popover/style/index.less

197 lines
4.9 KiB
Plaintext
Raw Normal View History

2018-12-07 16:17:45 +08:00
@import '../../style/themes/default';
@import '../../style/mixins/index';
2015-06-17 16:58:13 +08:00
2018-12-07 16:17:45 +08:00
@popover-prefix-cls: ~'@{ant-prefix}-popover';
2015-06-17 16:58:13 +08:00
2015-08-20 16:55:42 +08:00
.@{popover-prefix-cls} {
.reset-component;
2015-06-17 16:58:13 +08:00
position: absolute;
top: 0;
left: 0;
2016-03-28 16:01:37 +08:00
z-index: @zindex-popover;
2015-06-17 16:58:13 +08:00
cursor: auto;
user-select: text;
white-space: normal;
font-weight: normal;
text-align: left;
&:after {
2018-12-07 16:17:45 +08:00
content: '';
2015-06-17 16:58:13 +08:00
position: absolute;
2016-03-13 15:28:56 +08:00
background: rgba(255, 255, 255, 0.01);
2015-06-17 16:58:13 +08:00
}
&-hidden {
display: none;
}
// Offset the popover to account for the popover arrow
2015-11-26 19:32:55 +08:00
&-placement-top,
&-placement-topLeft,
&-placement-topRight {
padding-bottom: @popover-distance;
2015-06-17 16:58:13 +08:00
}
2015-11-26 19:32:55 +08:00
&-placement-right,
&-placement-rightTop,
&-placement-rightBottom {
padding-left: @popover-distance;
2015-06-17 16:58:13 +08:00
}
2015-11-26 19:32:55 +08:00
&-placement-bottom,
&-placement-bottomLeft,
&-placement-bottomRight {
padding-top: @popover-distance;
2015-06-17 16:58:13 +08:00
}
2015-11-26 19:32:55 +08:00
&-placement-left,
&-placement-leftTop,
&-placement-leftBottom {
padding-right: @popover-distance;
2015-06-17 16:58:13 +08:00
}
&-inner {
background-color: @popover-bg;
background-clip: padding-box;
border-radius: @border-radius-base;
2015-12-02 11:53:37 +08:00
box-shadow: @box-shadow-base;
2015-06-17 16:58:13 +08:00
}
&-title {
min-width: @popover-min-width;
2015-06-17 16:58:13 +08:00
margin: 0; // reset heading margin
2017-10-16 19:53:46 +08:00
padding: 5px @padding-md 4px;
min-height: 32px;
2016-03-04 17:06:39 +08:00
border-bottom: 1px solid @border-color-split;
color: @heading-color;
2017-03-07 14:29:02 +08:00
font-weight: 500;
2015-06-17 16:58:13 +08:00
}
2016-03-17 15:10:49 +08:00
&-inner-content {
2017-10-19 11:45:56 +08:00
padding: 12px @padding-md;
color: @popover-color;
2015-06-17 16:58:13 +08:00
}
2015-06-24 19:20:47 +08:00
&-message {
padding: 4px 0 12px;
2016-11-08 20:57:07 +08:00
font-size: @font-size-base;
color: @popover-color;
2018-09-06 11:29:53 +08:00
position: relative;
> .@{iconfont-css-prefix} {
2018-09-06 11:29:53 +08:00
position: absolute;
2018-09-08 15:46:26 +08:00
top: 8px; // 4px for padding-top, 4px for vertical middle;
2016-03-28 16:09:13 +08:00
color: @warning-color;
2018-09-08 15:46:26 +08:00
font-size: @font-size-base;
2016-03-10 16:22:52 +08:00
}
&-title {
padding-left: @font-size-base + 8px;
2015-06-17 16:58:13 +08:00
}
}
&-buttons {
text-align: right;
margin-bottom: 4px;
2015-06-17 16:58:13 +08:00
button {
2015-07-16 11:50:36 +08:00
margin-left: 8px;
2015-06-17 16:58:13 +08:00
}
}
// Arrows
// .popover-arrow is outer, .popover-arrow:after is inner
&-arrow {
2018-12-26 16:46:25 +08:00
background: transparent;
width: sqrt(@popover-arrow-width * @popover-arrow-width * 2);
height: sqrt(@popover-arrow-width * @popover-arrow-width * 2);
transform: rotate(45deg);
position: absolute;
display: block;
2018-12-26 16:46:25 +08:00
border-width: sqrt(@popover-arrow-width * @popover-arrow-width * 2) / 2;
border-style: solid;
2015-06-17 16:58:13 +08:00
}
&-placement-top > &-content > &-arrow,
2018-12-07 16:17:45 +08:00
&-placement-topLeft > &-content > &-arrow,
&-placement-topRight > &-content > &-arrow {
2018-12-26 18:46:00 +08:00
bottom: @popover-distance - @popover-arrow-width + 2.2px;
2017-12-02 17:13:21 +08:00
box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
border-top-color: transparent;
border-right-color: @popover-bg;
border-bottom-color: @popover-bg;
border-left-color: transparent;
2015-06-17 16:58:13 +08:00
}
2018-12-07 16:17:45 +08:00
&-placement-top > &-content > &-arrow {
2016-02-24 13:57:33 +08:00
left: 50%;
transform: translateX(-50%) rotate(45deg);
2016-02-24 13:57:33 +08:00
}
2018-12-07 16:17:45 +08:00
&-placement-topLeft > &-content > &-arrow {
2016-02-24 13:57:33 +08:00
left: 16px;
}
2018-12-07 16:17:45 +08:00
&-placement-topRight > &-content > &-arrow {
2016-02-24 13:57:33 +08:00
right: 16px;
}
2018-12-07 16:17:45 +08:00
&-placement-right > &-content > &-arrow,
&-placement-rightTop > &-content > &-arrow,
&-placement-rightBottom > &-content > &-arrow {
2017-12-02 17:13:21 +08:00
left: @popover-distance - @popover-arrow-width + 2px;
box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
border-top-color: transparent;
border-right-color: transparent;
border-bottom-color: @popover-bg;
border-left-color: @popover-bg;
2015-06-17 16:58:13 +08:00
}
2018-12-07 16:17:45 +08:00
&-placement-right > &-content > &-arrow {
2016-02-24 13:57:33 +08:00
top: 50%;
transform: translateY(-50%) rotate(45deg);
2016-02-24 13:57:33 +08:00
}
2018-12-07 16:17:45 +08:00
&-placement-rightTop > &-content > &-arrow {
2016-02-24 13:57:33 +08:00
top: 12px;
}
2018-12-07 16:17:45 +08:00
&-placement-rightBottom > &-content > &-arrow {
2016-02-24 13:57:33 +08:00
bottom: 12px;
}
2018-12-07 16:17:45 +08:00
&-placement-bottom > &-content > &-arrow,
&-placement-bottomLeft > &-content > &-arrow,
&-placement-bottomRight > &-content > &-arrow {
2017-12-02 17:13:21 +08:00
top: @popover-distance - @popover-arrow-width + 2px;
2018-05-28 23:29:04 +08:00
box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06);
border-top-color: @popover-bg;
border-right-color: transparent;
border-bottom-color: transparent;
border-left-color: @popover-bg;
2015-06-17 16:58:13 +08:00
}
2018-12-07 16:17:45 +08:00
&-placement-bottom > &-content > &-arrow {
2016-02-24 13:57:33 +08:00
left: 50%;
transform: translateX(-50%) rotate(45deg);
2016-02-24 13:57:33 +08:00
}
2018-12-07 16:17:45 +08:00
&-placement-bottomLeft > &-content > &-arrow {
2016-02-24 13:57:33 +08:00
left: 16px;
}
2018-12-07 16:17:45 +08:00
&-placement-bottomRight > &-content > &-arrow {
2016-02-24 13:57:33 +08:00
right: 16px;
}
2015-06-17 16:58:13 +08:00
2018-12-07 16:17:45 +08:00
&-placement-left > &-content > &-arrow,
&-placement-leftTop > &-content > &-arrow,
&-placement-leftBottom > &-content > &-arrow {
2017-12-02 17:13:21 +08:00
right: @popover-distance - @popover-arrow-width + 2px;
box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
border-top-color: @popover-bg;
border-right-color: @popover-bg;
border-bottom-color: transparent;
border-left-color: transparent;
2015-06-17 16:58:13 +08:00
}
2018-12-07 16:17:45 +08:00
&-placement-left > &-content > &-arrow {
2016-02-24 13:57:33 +08:00
top: 50%;
transform: translateY(-50%) rotate(45deg);
2016-02-24 13:57:33 +08:00
}
2018-12-07 16:17:45 +08:00
&-placement-leftTop > &-content > &-arrow {
2016-02-24 13:57:33 +08:00
top: 12px;
}
2018-12-07 16:17:45 +08:00
&-placement-leftBottom > &-content > &-arrow {
2016-02-24 13:57:33 +08:00
bottom: 12px;
}
2015-06-17 16:58:13 +08:00
}