Files
superset2/superset/assets/visualizations/Legend.css
Beto Dealmeida 7089344623 Legend for deck.gl scatterplot (#4572)
* Initial work

* Working version

* Specify legend position

* Max height with scroll

* Fix lint

* Better compatibility with nvd3

* Fix object.keys polyfill version

* Fix lint
2018-03-14 16:40:14 -07:00

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;
}