mirror of https://github.com/zulip/zulip.git
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:
parent
29ce34020d
commit
3ce6fbe10a
|
@ -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,
|
||||
#settings_page .save-button-controls {
|
||||
display: inline;
|
||||
|
|
Loading…
Reference in New Issue