mirror of
https://github.com/chenasraf/redar-browser.git
synced 2026-05-18 01:59:00 +00:00
58 lines
811 B
CSS
58 lines
811 B
CSS
@import "../../_variables.css";
|
|
|
|
.ResponseRepr {
|
|
/* */
|
|
}
|
|
|
|
.table {
|
|
display: grid;
|
|
grid-row-gap: 8px;
|
|
padding: 10px;
|
|
|
|
& h3 {
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
color: $text-light;
|
|
font-size: 0.9em;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.cell {
|
|
width: 100%;
|
|
margin: 0 !important;
|
|
border-left-width: 0px !important;
|
|
border-radius: 0 !important;
|
|
|
|
&.row-start {
|
|
border-radius: 5px 0 0 5px !important;
|
|
border-left-width: 1px !important;
|
|
margin-left: 0 !important;
|
|
}
|
|
|
|
&.row-end {
|
|
border-radius: 0 5px 5px 0 !important;
|
|
}
|
|
|
|
& > h3 {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.filter-input {
|
|
width: 100%;
|
|
padding: 5px 7px;
|
|
font-size: 1em;
|
|
}
|
|
|
|
.sort-icon {
|
|
vertical-align: middle;
|
|
height: 1rem;
|
|
line-height: 1rem;
|
|
opacity: 0.5;
|
|
|
|
&.active {
|
|
opacity: 1;
|
|
}
|
|
}
|