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

75 lines
1.4 KiB
Plaintext
Raw Normal View History

2016-10-28 14:02:55 +08:00
@import "../../style/themes/default";
@import "../../style/mixins/index";
2016-10-28 14:02:55 +08:00
2017-09-21 14:16:01 +08:00
.@{ant-prefix}-anchor {
.reset-component;
2017-09-21 14:16:01 +08:00
position: relative;
&-wrapper {
background-color: @component-background;
}
2017-09-21 14:16:01 +08:00
&-ink {
position: absolute;
height: 100%;
left: 0;
top: 0;
&:before {
content: ' ';
position: relative;
width: 2px;
height: 100%;
2017-09-21 14:16:01 +08:00
display: block;
background-color: @border-color-split;
margin: 0 auto;
2016-10-28 16:53:59 +08:00
}
2017-09-21 14:16:01 +08:00
&-ball {
2016-11-09 21:06:43 +08:00
display: none;
2017-09-21 14:16:01 +08:00
position: absolute;
width: 10px;
height: 10px;
border-radius: 10px;
2017-09-21 14:16:01 +08:00
border: 3px solid @primary-color;
background-color: @component-background;
left: 50%;
transition: top .3s ease-in-out;
transform: translateX(-50%);
&.visible {
display: inline-block;
}
2016-11-09 21:06:43 +08:00
}
2016-10-28 16:53:59 +08:00
}
2017-09-21 14:16:01 +08:00
&.fixed &-ink &-ink-ball {
display: none;
}
2017-09-23 12:02:11 +08:00
&-link {
padding: 8px 0 8px 18px;
2016-11-09 15:26:22 +08:00
line-height: 1;
2016-11-03 16:45:13 +08:00
&-title {
2016-11-09 14:40:31 +08:00
display: block;
2016-11-03 16:45:13 +08:00
position: relative;
2016-11-09 14:40:31 +08:00
transition: all .3s;
color: @text-color;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 8px;
2017-09-21 14:16:01 +08:00
&:only-child {
margin-bottom: 0;
}
2016-11-03 16:45:13 +08:00
}
2016-11-09 14:40:31 +08:00
&-active > &-title {
2016-11-03 16:45:13 +08:00
color: @primary-color;
}
2017-09-21 14:16:01 +08:00
}
2016-10-28 16:53:59 +08:00
2017-09-23 12:02:11 +08:00
&-link &-link {
2017-09-21 14:16:01 +08:00
padding-top: 6px;
padding-bottom: 6px;
2016-11-03 16:45:13 +08:00
}
}