phonograph/static/viewer.css

47 lines
829 B
CSS
Raw Normal View History

2025-07-08 14:37:03 -07:00
table.viewer {
border-collapse: collapse;
2025-07-16 22:03:04 -07:00
height: 1px; /* css hack to make percentage based cell heights work */
2025-07-08 14:37:03 -07:00
}
table.viewer > thead > tr > th {
border: solid 1px #ccc;
border-top: none;
font-family: "Funnel Sans";
background: #0001;
2025-07-16 22:03:04 -07:00
height: 100%; /* css hack to make percentage based cell heights work */
padding: 0 0.5rem;
text-align: left;
2025-07-08 14:37:03 -07:00
&:first-child {
border-left: none;
}
2025-07-16 22:03:04 -07:00
&.column-adder {
border: none;
background: none;
padding: 0;
}
2025-07-08 14:37:03 -07:00
}
table.viewer .padded-cell {
padding: 0.5rem;
}
table.viewer .clickable-header-cell {
appearance: none;
border: none;
width: 100%;
height: 100%;
font-weight: inherit;
font-size: inherit;
font-family: inherit;
}
table.viewer > tbody > tr > td {
border: solid 1px #ccc;
&:first-child {
border-left: none;
}
}