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

62 lines
845 B
Plaintext
Raw Normal View History

2016-02-29 14:08:40 +08:00
.toc {
font-size: 14px;
margin: 36px 0 24px;
2016-02-29 14:08:40 +08:00
background: #fbfbfb;
border-left: 2px solid #eee;
}
.toc > ul {
padding: 8px 0;
}
.toc > ul li {
list-style: none;
}
.toc li > ul {
text-indent: 8px;
font-size: 12px;
display: none;
}
.toc a {
padding-left: 16px;
border-left: 2px solid #eee;
margin-left: -2px;
display: block;
transition: all 0.3s ease;
white-space: nowrap;
overflow: hidden;
color: #666;
}
.toc a:hover {
color: #2db7f5;
}
.toc a.current {
border-color: #2db7f5;
color: #2db7f5;
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;
2016-03-09 15:09:10 +08:00
}
2016-03-07 15:20:18 +08:00
.demos-anchor {
color: #aaa;
2016-05-20 13:23:51 +08:00
background: #fff;
2016-03-07 15:20:18 +08:00
font-size: 12px;
2016-04-18 13:43:33 +08:00
margin-top: 0;
2016-03-07 15:20:18 +08:00
a {
padding-left: 8px;
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 90px;
}
2016-04-18 13:43:33 +08:00
}