2021-12-18 18:05:31 +00:00
|
|
|
/*
|
|
|
|
|
This is an application-wide stylesheet. Common styles for common widgets should reside in here.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
color: #afb1b3;
|
|
|
|
|
font-family: 'Ubuntu', sans-serif;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#window-container {
|
|
|
|
|
background-color: #373835;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMenuBar::item {
|
|
|
|
|
position: relative;
|
|
|
|
|
margin: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
padding-bottom: 1px;
|
|
|
|
|
padding-right: 4px;
|
|
|
|
|
padding-left: 4px;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
float: left;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMenuBar::item:pressed {
|
|
|
|
|
background-color: #355A80;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMenuBar {
|
|
|
|
|
border: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
min-height: 24px;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
spacing: 0;
|
|
|
|
|
color: #afb1b3;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMenu {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
background-color: #373835;
|
|
|
|
|
color: #afb1b3;
|
|
|
|
|
border: 1px solid #41423f;
|
|
|
|
|
min-width: 200px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMenu::item {
|
|
|
|
|
padding: 4px 5px 4px 25px;
|
|
|
|
|
min-width: 200px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMenu::item:selected {
|
|
|
|
|
background-color: #355A80;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMenu::item:disabled {
|
|
|
|
|
color: #808484;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMenu::separator {
|
|
|
|
|
border-top: 1px solid #41423f;
|
|
|
|
|
height: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-17 18:26:07 +01:00
|
|
|
QMenu::indicator {
|
|
|
|
|
padding-left: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMenu::indicator:non-exclusive:checked {
|
|
|
|
|
image: url(":/compiled/src/Insight/UserInterfaces/InsightWindow/Images/checked-action-icon.svg");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMenu::indicator:non-exclusive:unchecked {
|
|
|
|
|
image: url(":/compiled/src/Insight/UserInterfaces/InsightWindow/Images/unchecked-action-icon.svg");
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-18 18:05:31 +00:00
|
|
|
QMenu#help-menu::separator {
|
|
|
|
|
margin: 1px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QToolTip {
|
|
|
|
|
background-color: #474949;
|
|
|
|
|
border: 1px solid #616365;
|
|
|
|
|
color: #afb1b3;
|
|
|
|
|
padding: 1px 2px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QScrollBar:vertical {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
width: 12px;
|
|
|
|
|
margin: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QScrollBar:handle:vertical {
|
|
|
|
|
border: none;
|
|
|
|
|
background-color: rgba(69, 69, 66, 0.6);
|
|
|
|
|
min-height: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QScrollBar:handle:vertical:hover {
|
|
|
|
|
background-color: rgba(69, 69, 66, 0.91);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QScrollBar::add-line:vertical,
|
|
|
|
|
QScrollBar::sub-line:vertical {
|
|
|
|
|
border: none;
|
|
|
|
|
background: none;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-14 17:55:22 +00:00
|
|
|
QScrollArea,
|
|
|
|
|
QScrollArea .QWidget {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-18 18:05:31 +00:00
|
|
|
QComboBox,
|
2022-02-14 17:55:40 +00:00
|
|
|
QLineEdit,
|
|
|
|
|
QPlainTextEdit {
|
2021-12-18 18:05:31 +00:00
|
|
|
background-color: #2F2F2D;
|
|
|
|
|
border: 1px solid #41423f;
|
2023-04-25 19:49:06 +01:00
|
|
|
selection-background-color: #355A80;
|
|
|
|
|
selection-color: #afb1b3;
|
2021-12-18 18:05:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QLineEdit {
|
|
|
|
|
padding: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QComboBox {
|
|
|
|
|
padding: 3px 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QComboBox::drop-down {
|
|
|
|
|
subcontrol-origin: padding;
|
|
|
|
|
subcontrol-position: top right;
|
|
|
|
|
width: 18px;
|
|
|
|
|
height: 26px;
|
|
|
|
|
padding-right: 4px;
|
|
|
|
|
border: none;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QComboBox::down-arrow {
|
|
|
|
|
image: url(":/compiled/src/Insight/UserInterfaces/InsightWindow/Images/down-arrow.svg")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QComboBox QAbstractItemView {
|
|
|
|
|
border: 1px solid #41423f;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
background-color: #373835;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QComboBox QAbstractItemView:item {
|
|
|
|
|
color: #afb1b3;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QComboBox QAbstractItemView::item:selected {
|
|
|
|
|
background-color: #355A80;
|
|
|
|
|
padding: 0;
|
|
|
|
|
border: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
color: #afb1b3;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-14 17:55:40 +00:00
|
|
|
QLineEdit:disabled,
|
2023-04-25 19:49:06 +01:00
|
|
|
QPlainTextEdit:disabled {
|
2021-12-18 18:05:31 +00:00
|
|
|
color: #7d7d7d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QPushButton {
|
|
|
|
|
background-color: #373937;
|
|
|
|
|
border: 1px solid #484A49;
|
|
|
|
|
padding: 3px 25px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QPushButton:disabled {
|
|
|
|
|
background-color: #303230;
|
|
|
|
|
color: #8d8d90;
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-17 18:26:07 +01:00
|
|
|
QToolButton::menu-indicator {
|
|
|
|
|
image: none;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-18 18:05:31 +00:00
|
|
|
Bloom--Widgets--LabeledSeparator {
|
2021-12-19 18:30:51 +00:00
|
|
|
qproperty-lineColor: #454545;
|
2021-12-18 18:05:31 +00:00
|
|
|
color: #a6a6a6;
|
|
|
|
|
}
|
2022-07-17 18:26:07 +01:00
|
|
|
|
|
|
|
|
Bloom--Widgets--SvgToolButton QMenu::item {
|
|
|
|
|
padding-left: 10px;
|
|
|
|
|
min-width: 250px;
|
|
|
|
|
}
|
2022-12-21 15:39:18 +00:00
|
|
|
|
|
|
|
|
Bloom--Widgets--PushButton[styleName="primary"] {
|
2022-12-24 02:54:20 +00:00
|
|
|
background-color: rgba(53, 60, 65, 1);
|
|
|
|
|
border: 1px solid rgba(69, 76, 82, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Bloom--Widgets--PushButton[styleName="primary"]:disabled {
|
|
|
|
|
background-color: rgba(53, 60, 65, 0.25);
|
|
|
|
|
border: 1px solid rgba(69, 76, 82, 0.5);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QCheckBox::indicator:checked {
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
image: url(":/compiled/src/Insight/UserInterfaces/InsightWindow/Images/checked-action-icon.svg");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QCheckBox::indicator:unchecked {
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
image: url(":/compiled/src/Insight/UserInterfaces/InsightWindow/Images/unchecked-action-icon.svg");
|
2022-12-21 15:39:18 +00:00
|
|
|
}
|
2023-03-05 23:26:14 +00:00
|
|
|
|
|
|
|
|
#list-graphics-view {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border: none;
|
|
|
|
|
}
|