Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[themes] Insure groupbox checkbox indicator size equals that of norma…
…l checkbox
  • Loading branch information
nirvn committed Feb 7, 2019
1 parent e4e0948 commit aec05a7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions resources/themes/Blend of Gray/style.qss
Expand Up @@ -526,18 +526,19 @@ QGroupBox::title {
color: @text;
}

QGroupBox::indicator {
width: 0.9em;
height: 0.9em;
}

QGroupBox::indicator:unchecked {
border: 1px solid @background;
image: url(@theme_path/icons/qcheckbox-unchecked.svg);
width:0.8em;
height:0.8em;
}

QGroupBox::indicator:checked {
border: 1px solid @background;
image: url(@theme_path/icons/qcheckbox-checked.svg);
width:0.8em;
height:0.8em;
}

/* ==================================================================================== */
Expand Down
9 changes: 5 additions & 4 deletions resources/themes/Night Mapping/style.qss
Expand Up @@ -537,18 +537,19 @@ QGroupBox::title {
color: @textlight;
}

QGroupBox::indicator {
width: 0.9em;
height: 0.9em;
}

QGroupBox::indicator:unchecked {
border: 1px solid @background;
image: url(@theme_path/icons/qcheckbox-unchecked.svg);
width:0.8em;
height:0.8em;
}

QGroupBox::indicator:checked {
border: 1px solid @background;
image: url(@theme_path/icons/qcheckbox-checked.svg);
width:0.8em;
height:0.8em;
}

/* ==================================================================================== */
Expand Down

0 comments on commit aec05a7

Please sign in to comment.