refs #454 Improve hotkey settings component

This commit is contained in:
Roland Winklmeier
2015-08-14 20:30:35 +02:00
committed by Mathew Sutcliffe
parent 6644c73703
commit 5a82e2e6bf
17 changed files with 1257 additions and 128 deletions

View File

@@ -29,6 +29,24 @@ QMainWindow::separator:hover {
background: transparent;
}
/** Main window **/
QDialog {
background-image: url(:/textures/icons/textures/texture-outer.jpg);
background-color: darkslategray;
}
/** separator between info areas and rest **/
/** this hides them **/
QDialog::separator {
background: transparent;
width: 0px; /* when vertical */
height: 0px; /* when horizontal */
}
QDialog::separator:hover {
background: transparent;
}
/**
Required when dock widget is floating
1) background-image not working on QDockWidget, so I use direct children for that

View File

@@ -139,3 +139,15 @@ QAbstractScrollArea #pg_StatusPageCons ole { background-color: black; }
padding: 3px;
border-radius: 5px;
}
#gb_hotkey {
background-image: url(:/textures/icons/textures/texture-inner.jpg);
}
#gb_action {
background-image: url(:/textures/icons/textures/texture-inner.jpg);
}
#gb_machine {
background-image: url(:/textures/icons/textures/texture-inner.jpg);
}