1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
/*
* Generic styles
*/
QGroupBox {
border: 1px solid lightgrey;
margin-top: 0.5em;
}
QGroupBox::title {
subcontrol-origin: margin;
left: 10px;
padding: 0 3px 0 3px;
}
/*
* Specific styles
*/
ChooseAnalysis {
width: 400px;
height: 420px;
}
ExcludeTypes {
width: 620px;
height: 340px;
}
ExcludeTypes#header {
font-style: bold;
}
HtmlHelpDialog {
min-width: 640px;
min-height: 480px;
}
PermissionMapEditor {
width: 750px;
height: 450px;
}
QLabel#title {
font-size: 14pt;
font-style: bold;
}
QLabel#error_message {
color: red;
font-weight: bold;
}
QMainWindow {
width: 1024px;
height: 768px;
min-width: 800px;
min-height: 600px;
}
QPlainTextEdit#raw_results {
font-family: monospace
}
|