Skip to content

Commit

Permalink
Clean up tree view and checked heck box look
Browse files Browse the repository at this point in the history
  • Loading branch information
krzywon committed Nov 8, 2023
1 parent 48260c4 commit efc3945
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
9 changes: 9 additions & 0 deletions src/sas/system/themes/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ QRadioButton::indicator:hover {
width: 14px;
border: 2px solid rgb(26,115,178);
}
QCheckBox::indicator:checked {
color: rgba(255,255,255,0.6);
background: rgba(255,255,255,0.24);
}
QCheckBox:checked {
color: rgba(255,255,255,0.6);
background: rgba(255,255,255,0.24);
}

/* QGroupBox Properties */
QGroupBox {
Expand Down Expand Up @@ -146,6 +154,7 @@ QMenu::separator {
background: rgb(42,43,66);
}
QMenu::item {
background: transparent;
padding: 4px 19px;
}
QMenu::item:selected {
Expand Down
14 changes: 8 additions & 6 deletions src/sas/system/themes/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ QRadioButton::indicator:hover {
width: 14px;
border: 2px solid rgb(26,115,178);
}
QCheckBox::indicator:checked {
color: rgba(0,0,0,0.6);
background: rgba(0,0,0,0.1);
}
QCheckBox:checked {
color: rgba(0,0,0,0.6);
background: rgba(0,0,0,0.1);
}

/* QGroupBox Properties */
QGroupBox {
Expand Down Expand Up @@ -292,12 +300,6 @@ QTreeView > QHeaderView {
QTreeView > QHeaderView::section {
background: rgb(218,220,224);
}
QTreeView::item {
height: 1.5em;
width: 100%;
margin: 4px;
padding: 2px;
}

/*
Following arrow settings are for QColumnView.
Expand Down

0 comments on commit efc3945

Please sign in to comment.