Skip to content

Commit

Permalink
Bring back the measurement a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWitness committed Dec 24, 2024
1 parent 0c200e8 commit 44db797
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ function applySkin() {

function blinkMe() {
$('.blink').each(function() {
var width = $(this).textWidth();
var width = $(this).textBoxWidth();

$(this).css({ 'min-width': width });
$(this).fadeOut(900).fadeIn(900);
Expand Down Expand Up @@ -3546,7 +3546,7 @@ function setSelectMenus() {
}
});

msWidth -= 20;
msWidth -= 50;

$('#graph_template_id.graph-multiselect').hide().multiselect({
menuHeight: $(window).height()*.7,
Expand Down
6 changes: 5 additions & 1 deletion include/themes/modern/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -2424,7 +2424,11 @@ ul#nav {
margin-bottom: 4px;
}

.ui-multiselect-filter-label > input {
.ui-multiselect-header .ui-multiselect-filter input {
border: 1px solid #d3d3d3 !important;
}

.ui-multiselect-filter-label input {
padding: 2px;
margin-left: 4px;
}
Expand Down

0 comments on commit 44db797

Please sign in to comment.