mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
Add a semantic class to aggregate bootstrap classes and consistently applyt them to all datatables.
21 lines
306 B
SCSS
21 lines
306 B
SCSS
table.datatable {
|
|
@extend .table, .table-striped, .table-bordered, .table-hover;
|
|
|
|
td.actions {
|
|
vertical-align: middle;
|
|
align: center;
|
|
|
|
div.btn-group {
|
|
display: flex;
|
|
}
|
|
|
|
a {
|
|
@extend .btn;
|
|
}
|
|
}
|
|
|
|
td.truncate {
|
|
max-width: 1px;
|
|
@include text-overflow();
|
|
}
|
|
}
|