Keep configuration buttons highlighted while active and some styling

This commit is contained in:
eric1tran 2020-12-10 00:55:00 +00:00
parent 829fe1b5e2
commit 16b3d12670
2 changed files with 4 additions and 2 deletions

View File

@ -391,11 +391,13 @@ function initialize() {
})
$('#column_select_button').on('click', function() {
this.classList.toggle("config_button_active");
$('#column_select_panel').toggle();
});
$('#filter_button').on('click', function() {
this.classList.toggle("config_button_active");
$('#filter_panel').toggle();
});

View File

@ -854,7 +854,7 @@ select.error, textarea.error, input.error {
width: 125px;
}
.config_button:hover {
.config_button:hover, .config_button_active {
background-color: #abcad8;
}
@ -867,7 +867,7 @@ select.error, textarea.error, input.error {
.panel {
position: relative;
padding: 3px 3px 6px 3px;
padding: 3px 3px 10px 3px;
display: none;
margin-bottom: 5px;
border: solid;