Files
superset2/superset/assets/visualizations/table.css
Alanna Scott 2d910e3f07 [vis] render line breaks in TableViz (#2118)
* convert line breaks to br tags in table vis

* use css!
2017-02-10 11:51:18 -08:00

30 lines
562 B
CSS

.slice-grid .widget.table .slice_container {
overflow: auto !important;
}
.widget.table table {
margin: 0px !important;
}
.widget.table td.filtered {
background-color: #005a63;
color: white;
}
.widget.table tr>th {
padding: 1px 5px !important;
font-size: small !important;
}
.widget.table tr>td {
padding: 1px 5px !important;
font-size: small !important;
}
table.table thead th.sorting:after, table.table thead th.sorting_asc:after, table.table thead th.sorting_desc:after {
top: 0px;
}
.like-pre {
white-space: pre;
}