css: Re-add bootstrap CSS for tables with "table-bordered" class.

This commit re-adds bootstrap CSS rules with "table-bordered" class
to app_components.css so that tables used in the app can use this
css and we can remove the CSS from bootstrap.css.
This commit is contained in:
Sahil Batra 2023-07-24 16:46:31 +05:30 committed by Tim Abbott
parent 29ce34020d
commit 3ce6fbe10a
1 changed files with 28 additions and 0 deletions

View File

@ -743,6 +743,34 @@ div.overlay {
} }
} }
.table-bordered {
border: 1px solid hsl(0deg 0% 87%);
border-collapse: separate;
border-left: 0;
border-radius: 4px;
& th,
td {
border-left: 1px solid hsl(0deg 0% 87%);
}
thead tr:first-child > th:first-child {
border-top-left-radius: 4px;
}
thead tr:first-child > th:last-child {
border-top-right-radius: 4px;
}
tbody:last-child tr:last-child > td:first-child {
border-bottom-left-radius: 4px;
}
tbody:last-child tr:last-child > td:last-child {
border-bottom-right-radius: 4px;
}
}
#stream_settings .save-button-controls, #stream_settings .save-button-controls,
#settings_page .save-button-controls { #settings_page .save-button-controls {
display: inline; display: inline;