2019-05-06 12:04:39 +08:00
|
|
|
@import '../../style/themes/index';
|
2018-12-07 20:02:01 +08:00
|
|
|
@import '../../style/mixins/index';
|
2015-06-17 16:58:13 +08:00
|
|
|
|
2018-12-07 20:02:01 +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} {
|
2017-09-22 18:33:29 +08:00
|
|
|
.reset-component;
|
2019-04-15 10:52:00 +08:00
|
|
|
|
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
|
|
|
font-weight: normal;
|
2019-02-15 10:48:07 +08:00
|
|
|
white-space: normal;
|
2015-06-17 16:58:13 +08:00
|
|
|
text-align: left;
|
2019-02-15 10:48:07 +08:00
|
|
|
cursor: auto;
|
|
|
|
user-select: text;
|
2015-06-17 16:58:13 +08:00
|
|
|
|
2019-02-15 10:48:07 +08:00
|
|
|
&::after {
|
2015-06-17 16:58:13 +08:00
|
|
|
position: absolute;
|
2018-12-04 13:11:31 +08:00
|
|
|
background: fade(@white, 1%);
|
2019-02-15 10:48:07 +08:00
|
|
|
content: '';
|
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 {
|
2017-05-13 15:07:01 +08:00
|
|
|
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 {
|
2017-05-13 15:07:01 +08:00
|
|
|
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 {
|
2017-05-13 15:07:01 +08:00
|
|
|
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 {
|
2017-05-13 15:07:01 +08:00
|
|
|
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;
|
2019-01-06 13:25:59 +08:00
|
|
|
box-shadow: ~'0 0 8px @{shadow-color} \9';
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
|
|
/* IE10+ */
|
|
|
|
&-inner {
|
|
|
|
box-shadow: @box-shadow-base;
|
|
|
|
}
|
2015-06-17 16:58:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-title {
|
2016-10-20 11:23:30 +08:00
|
|
|
min-width: @popover-min-width;
|
2020-03-29 10:39:46 +08:00
|
|
|
min-height: @popover-min-height;
|
2015-06-17 16:58:13 +08:00
|
|
|
margin: 0; // reset heading margin
|
2020-03-29 10:39:46 +08:00
|
|
|
padding: 5px @popover-padding-horizontal 4px;
|
2017-09-27 22:32:49 +08:00
|
|
|
color: @heading-color;
|
2017-03-07 14:29:02 +08:00
|
|
|
font-weight: 500;
|
2019-02-15 10:48:07 +08:00
|
|
|
border-bottom: 1px solid @border-color-split;
|
2015-06-17 16:58:13 +08:00
|
|
|
}
|
|
|
|
|
2016-03-17 15:10:49 +08:00
|
|
|
&-inner-content {
|
2020-03-29 10:39:46 +08:00
|
|
|
padding: @padding-sm @popover-padding-horizontal;
|
2017-05-04 01:35:06 +08:00
|
|
|
color: @popover-color;
|
2015-06-17 16:58:13 +08:00
|
|
|
}
|
|
|
|
|
2015-06-24 19:20:47 +08:00
|
|
|
&-message {
|
2019-02-15 10:48:07 +08:00
|
|
|
position: relative;
|
2017-11-06 21:28:51 +08:00
|
|
|
padding: 4px 0 12px;
|
2017-05-04 01:35:06 +08:00
|
|
|
color: @popover-color;
|
2019-02-15 10:48:07 +08:00
|
|
|
font-size: @font-size-base;
|
2016-09-14 16:18:33 +08:00
|
|
|
> .@{iconfont-css-prefix} {
|
2018-09-06 11:29:53 +08:00
|
|
|
position: absolute;
|
2020-04-28 11:16:01 +08:00
|
|
|
top: 4px + (@line-height-base * @font-size-base - @font-size-base)/2; // 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 {
|
2017-09-27 22:32:49 +08:00
|
|
|
padding-left: @font-size-base + 8px;
|
2015-06-17 16:58:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-buttons {
|
2017-11-06 21:28:51 +08:00
|
|
|
margin-bottom: 4px;
|
2019-02-15 10:48:07 +08:00
|
|
|
text-align: right;
|
2020-01-02 19:10:16 +08:00
|
|
|
|
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 {
|
2017-12-11 15:28:44 +08:00
|
|
|
position: absolute;
|
|
|
|
display: block;
|
2019-02-15 10:48:07 +08:00
|
|
|
width: sqrt(@popover-arrow-width * @popover-arrow-width * 2);
|
|
|
|
height: sqrt(@popover-arrow-width * @popover-arrow-width * 2);
|
|
|
|
background: transparent;
|
2017-12-11 15:28:44 +08:00
|
|
|
border-style: solid;
|
2019-04-15 22:44:51 +08:00
|
|
|
border-width: sqrt(@popover-arrow-width * @popover-arrow-width * 2) / 2;
|
2019-02-15 10:48:07 +08:00
|
|
|
transform: rotate(45deg);
|
2015-06-17 16:58:13 +08:00
|
|
|
}
|
|
|
|
|
2016-11-01 12:34:39 +08:00
|
|
|
&-placement-top > &-content > &-arrow,
|
2018-12-07 20:02:01 +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;
|
2018-12-26 18:16:32 +08:00
|
|
|
border-top-color: transparent;
|
|
|
|
border-right-color: @popover-bg;
|
|
|
|
border-bottom-color: @popover-bg;
|
|
|
|
border-left-color: transparent;
|
2019-02-15 10:48:07 +08:00
|
|
|
box-shadow: 3px 3px 7px fade(@black, 7%);
|
2015-06-17 16:58:13 +08:00
|
|
|
}
|
2018-12-07 20:02:01 +08:00
|
|
|
&-placement-top > &-content > &-arrow {
|
2016-02-24 13:57:33 +08:00
|
|
|
left: 50%;
|
2017-12-11 16:02:53 +08:00
|
|
|
transform: translateX(-50%) rotate(45deg);
|
2016-02-24 13:57:33 +08:00
|
|
|
}
|
2018-12-07 20:02:01 +08:00
|
|
|
&-placement-topLeft > &-content > &-arrow {
|
2016-02-24 13:57:33 +08:00
|
|
|
left: 16px;
|
2015-09-28 21:02:04 +08:00
|
|
|
}
|
2018-12-07 20:02:01 +08:00
|
|
|
&-placement-topRight > &-content > &-arrow {
|
2016-02-24 13:57:33 +08:00
|
|
|
right: 16px;
|
2015-09-28 21:02:04 +08:00
|
|
|
}
|
|
|
|
|
2018-12-07 20:02:01 +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;
|
2018-12-26 18:16:32 +08:00
|
|
|
border-top-color: transparent;
|
|
|
|
border-right-color: transparent;
|
|
|
|
border-bottom-color: @popover-bg;
|
|
|
|
border-left-color: @popover-bg;
|
2019-02-15 10:48:07 +08:00
|
|
|
box-shadow: -3px 3px 7px fade(@black, 7%);
|
2015-06-17 16:58:13 +08:00
|
|
|
}
|
2018-12-07 20:02:01 +08:00
|
|
|
&-placement-right > &-content > &-arrow {
|
2016-02-24 13:57:33 +08:00
|
|
|
top: 50%;
|
2017-12-11 16:02:53 +08:00
|
|
|
transform: translateY(-50%) rotate(45deg);
|
2016-02-24 13:57:33 +08:00
|
|
|
}
|
2018-12-07 20:02:01 +08:00
|
|
|
&-placement-rightTop > &-content > &-arrow {
|
2016-02-24 13:57:33 +08:00
|
|
|
top: 12px;
|
2015-09-28 21:02:04 +08:00
|
|
|
}
|
2018-12-07 20:02:01 +08:00
|
|
|
&-placement-rightBottom > &-content > &-arrow {
|
2016-02-24 13:57:33 +08:00
|
|
|
bottom: 12px;
|
2015-09-28 21:02:04 +08:00
|
|
|
}
|
|
|
|
|
2018-12-07 20:02:01 +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-12-26 18:16:32 +08:00
|
|
|
border-top-color: @popover-bg;
|
|
|
|
border-right-color: transparent;
|
|
|
|
border-bottom-color: transparent;
|
|
|
|
border-left-color: @popover-bg;
|
2019-02-15 10:48:07 +08:00
|
|
|
box-shadow: -2px -2px 5px fade(@black, 6%);
|
2015-06-17 16:58:13 +08:00
|
|
|
}
|
2018-12-07 20:02:01 +08:00
|
|
|
&-placement-bottom > &-content > &-arrow {
|
2016-02-24 13:57:33 +08:00
|
|
|
left: 50%;
|
2017-12-11 16:02:53 +08:00
|
|
|
transform: translateX(-50%) rotate(45deg);
|
2016-02-24 13:57:33 +08:00
|
|
|
}
|
2018-12-07 20:02:01 +08:00
|
|
|
&-placement-bottomLeft > &-content > &-arrow {
|
2016-02-24 13:57:33 +08:00
|
|
|
left: 16px;
|
2015-09-28 21:02:04 +08:00
|
|
|
}
|
2018-12-07 20:02:01 +08:00
|
|
|
&-placement-bottomRight > &-content > &-arrow {
|
2016-02-24 13:57:33 +08:00
|
|
|
right: 16px;
|
2015-09-28 21:02:04 +08:00
|
|
|
}
|
2015-06-17 16:58:13 +08:00
|
|
|
|
2018-12-07 20:02:01 +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;
|
2018-12-26 18:16:32 +08:00
|
|
|
border-top-color: @popover-bg;
|
|
|
|
border-right-color: @popover-bg;
|
|
|
|
border-bottom-color: transparent;
|
|
|
|
border-left-color: transparent;
|
2019-02-15 10:48:07 +08:00
|
|
|
box-shadow: 3px -3px 7px fade(@black, 7%);
|
2015-06-17 16:58:13 +08:00
|
|
|
}
|
2018-12-07 20:02:01 +08:00
|
|
|
&-placement-left > &-content > &-arrow {
|
2016-02-24 13:57:33 +08:00
|
|
|
top: 50%;
|
2017-12-11 16:02:53 +08:00
|
|
|
transform: translateY(-50%) rotate(45deg);
|
2016-02-24 13:57:33 +08:00
|
|
|
}
|
2018-12-07 20:02:01 +08:00
|
|
|
&-placement-leftTop > &-content > &-arrow {
|
2016-02-24 13:57:33 +08:00
|
|
|
top: 12px;
|
2015-09-28 21:02:04 +08:00
|
|
|
}
|
2018-12-07 20:02:01 +08:00
|
|
|
&-placement-leftBottom > &-content > &-arrow {
|
2016-02-24 13:57:33 +08:00
|
|
|
bottom: 12px;
|
2015-09-28 21:02:04 +08:00
|
|
|
}
|
2015-06-17 16:58:13 +08:00
|
|
|
}
|
2020-03-18 11:22:27 +08:00
|
|
|
|
2020-03-23 10:57:37 +08:00
|
|
|
@import './rtl';
|