ant-design/site/theme/static/toc.less

64 lines
989 B
Plaintext
Raw Normal View History

2016-02-29 14:08:40 +08:00
.toc {
margin: 16px 0;
padding-left: 0;
font-size: 12px;
2016-09-15 01:38:32 +08:00
list-style: none;
border-left: 1px solid @site-border-color-split;
2016-02-29 14:08:40 +08:00
}
ul.toc > li {
margin-left: 0;
padding-left: 0;
2017-11-27 17:08:45 +08:00
line-height: 1.5;
list-style: none;
&:not(:last-child) {
2017-11-27 17:08:45 +08:00
margin-bottom: 4px;
}
2016-02-29 14:08:40 +08:00
}
.toc li > ul {
display: none;
font-size: 12px;
text-indent: 8px;
2016-02-29 14:08:40 +08:00
}
.toc a {
display: block;
width: 110px;
margin-left: -1px;
padding-left: 16px;
2016-02-29 14:08:40 +08:00
overflow: hidden;
2017-11-28 16:15:22 +08:00
color: @site-text-color;
white-space: nowrap;
text-overflow: ellipsis;
2017-12-03 16:13:04 +08:00
border-left: 1px solid transparent;
transition: all 0.3s ease;
2016-02-29 14:08:40 +08:00
}
.toc a:hover {
2016-11-13 18:58:02 +08:00
color: @primary-color;
2016-02-29 14:08:40 +08:00
}
.toc a.current {
2016-11-13 18:58:02 +08:00
color: @primary-color;
border-color: @primary-color;
2016-03-07 15:20:18 +08:00
}
2016-03-09 15:09:10 +08:00
.toc-affix {
2016-04-18 13:43:33 +08:00
position: absolute;
top: 8px;
2016-05-15 19:18:20 +08:00
right: 20px;
.ant-affix {
z-index: 9;
max-height: ~'calc(100vh - 16px)';
2019-06-04 18:53:54 +08:00
overflow-x: hidden;
overflow-y: auto;
}
2016-03-09 15:09:10 +08:00
}
.toc-affix-bottom {
position: absolute;
right: 20px;
bottom: 88px;
2016-04-18 13:43:33 +08:00
}