ant-design/site/theme/static/toc.less
偏右 d811ebee5c New color system (#4426)
* Add new color patterns algorithm

* Add color palettes

* update other colors

* fix gray color

* update more tint/shade to colorPalette

* new font color

* Update doc for new color system

* improve doc style
2017-01-01 22:20:06 +08:00

64 lines
908 B
Plaintext

.toc {
font-size: 14px;
margin: 24px 0;
background: #fbfbfb;
border-left: 2px solid #eee;
list-style: none;
}
.toc > ul {
padding: 8px 0;
list-style: none;
}
.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: @text-color;
}
.toc a:hover {
color: @primary-color;
}
.toc a.current {
border-color: @primary-color;
color: @primary-color;
}
.toc-affix {
position: absolute;
top: 8px;
right: 20px;
}
.demos-anchor {
color: #aaa;
background: #fff;
font-size: 12px;
margin-top: 0;
a {
padding-left: 8px;
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 90px;
}
}