mirror of
https://github.com/wassname/keywordshitter2.git
synced 2026-07-13 01:00:23 +08:00
8e80e77cc8
And improved datatable
64 lines
1.1 KiB
Plaintext
64 lines
1.1 KiB
Plaintext
|
|
@import "node_modules/bootstrap/less/bootstrap.less";
|
|
|
|
|
|
// simplex theme
|
|
@import "src/less/bootstrap/theme.less";
|
|
@import "src/less/bootstrap/variables.less";
|
|
|
|
// app overrides here
|
|
|
|
|
|
|
|
// clean minimalist tables
|
|
.table.dataTable {
|
|
min-height: 150px;
|
|
}
|
|
.table {
|
|
// Cells
|
|
> thead,
|
|
> tbody,
|
|
> tfoot {
|
|
> tr {
|
|
> th,
|
|
> td {
|
|
border-top: 0px solid @table-border-color;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.table-responsive {
|
|
@media screen and (max-width: @screen-xs-max) {
|
|
border: 0px solid @table-border-color;
|
|
}
|
|
}
|
|
|
|
// brand colors: shit brown and red. Yay for adult humour.
|
|
@brand-danger: #D9230F;
|
|
@brand-primary: #D9831F;
|
|
@btn-primary-color: white;
|
|
@btn-danger-color: white;
|
|
.btn-primary {
|
|
font-weight: bold;
|
|
}
|
|
|
|
//** Background color for `<body>`.
|
|
@body-bg: white;
|
|
//** Global text color on `<body>`.
|
|
@text-color: @gray-base;
|
|
|
|
|
|
// change primary button color
|
|
@btn-default-color: black;
|
|
@btn-default-bg: #fff;
|
|
|
|
|
|
// override data tables
|
|
.pagination {
|
|
margin: 0px;
|
|
}
|
|
.dataTables_wrapper .dataTables_paginate .paginate_button {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|