Fix admin broadcast color form

This commit is contained in:
Clement Ho 2018-05-23 12:38:37 -05:00
parent 923e081bac
commit 1956a8a737
2 changed files with 7 additions and 1 deletions

View File

@ -25,7 +25,7 @@ export default function adminInit() {
$('body').on('click', '.js-toggle-colors-link', (e) => {
e.preventDefault();
$('.js-toggle-colors-container').toggleClass('hidden');
$('.js-toggle-colors-container').toggleClass('hide');
});
$('.log-tabs a').on('click', function logTabsClick(e) {

View File

@ -46,6 +46,12 @@ a {
text-align: right;
}
.form-control,
.search form {
// Bootstrap 4 does not have a height
height: 34px;
}
table {
// Remove any table border lines
border-spacing: 0;