Skip to content

Commit

Permalink
fix slider stylesheet
Browse files Browse the repository at this point in the history
  • Loading branch information
facontidavide committed Jan 20, 2019
1 parent a38ef49 commit 316cd0d
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions plotter_gui/style/stylesheet.qss
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,50 @@ QComboBox QAbstractItemView::item:hover {
background-color: blue;
}

/* QSlider ---------------------------------------------------------------- */

QSlider:disabled {
background: white;
}

QSlider:focus {
border: none;
}

QSlider::groove:horizontal {
background: white;
border: 1px solid #32414B;
height: 8px;
margin: 0px;
border-radius: 4px;
}

QSlider::sub-page:horizontal {
background: #1464A0;
border: 1px solid #32414B;
height: 4px;
margin: 0px;
border-radius: 4px;
}

QSlider::sub-page:horizontal:disabled {
background: #14506E;
}

QSlider::handle:horizontal {
background: #787878;
border: 1px solid #32414B;
width: 8px;
height: 8px;
margin: -8px 0;
border-radius: 4px;
}

QSlider::handle:horizontal:hover {
background: #148CD2;
border: 1px solid #148CD2;
}




Expand Down

0 comments on commit 316cd0d

Please sign in to comment.