mirror of
https://github.com/apache/superset.git
synced 2026-05-08 17:35:33 +00:00
* Initial work * Working version * Specify legend position * Max height with scroll * Fix lint * Better compatibility with nvd3 * Fix object.keys polyfill version * Fix lint
23 lines
390 B
CSS
23 lines
390 B
CSS
div.legend {
|
|
font-size: 90%;
|
|
position: absolute;
|
|
background: #fff;
|
|
box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
|
|
margin: 24px;
|
|
padding: 12px 24px;
|
|
outline: none;
|
|
overflow-y: scroll;
|
|
max-height: 200px;
|
|
}
|
|
|
|
ul.categories {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
ul.categories li a {
|
|
color: rgb(51, 51, 51);
|
|
text-decoration: none;
|
|
}
|