Fix admin broadcast color form
This commit is contained in:
parent
923e081bac
commit
1956a8a737
2 changed files with 7 additions and 1 deletions
|
@ -25,7 +25,7 @@ export default function adminInit() {
|
||||||
|
|
||||||
$('body').on('click', '.js-toggle-colors-link', (e) => {
|
$('body').on('click', '.js-toggle-colors-link', (e) => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
$('.js-toggle-colors-container').toggleClass('hidden');
|
$('.js-toggle-colors-container').toggleClass('hide');
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.log-tabs a').on('click', function logTabsClick(e) {
|
$('.log-tabs a').on('click', function logTabsClick(e) {
|
||||||
|
|
|
@ -46,6 +46,12 @@ a {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form-control,
|
||||||
|
.search form {
|
||||||
|
// Bootstrap 4 does not have a height
|
||||||
|
height: 34px;
|
||||||
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
// Remove any table border lines
|
// Remove any table border lines
|
||||||
border-spacing: 0;
|
border-spacing: 0;
|
||||||
|
|
Loading…
Reference in a new issue