You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
373 lines
8.2 KiB
373 lines
8.2 KiB
10 years ago
|
/*
|
||
|
This is a slave style sheet in relationship to the master style sheet. That means that it should only
|
||
|
contain color settings. It should not contain position or size information. That comes from the master
|
||
|
style sheet.
|
||
|
*/
|
||
|
|
||
12 years ago
|
* {
|
||
|
background-color: #F6F6F6;
|
||
|
color: #000;
|
||
12 years ago
|
background-clip: border;
|
||
12 years ago
|
}
|
||
|
|
||
|
*::disabled {
|
||
12 years ago
|
color: #AAA;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
JoystickButton QLabel {
|
||
10 years ago
|
border-color: #777;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QCheckBox {
|
||
|
color: #222;
|
||
|
}
|
||
|
|
||
|
QCheckBox::indicator {
|
||
10 years ago
|
border-color: #111;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QCheckBox::indicator:hover {
|
||
|
background-color: #CCC;
|
||
|
}
|
||
|
|
||
|
QCheckBox::indicator:pressed, QCheckBox::indicator:checked:pressed {
|
||
|
background-color: #777;
|
||
|
}
|
||
|
|
||
|
QCheckBox::indicator:checked {
|
||
12 years ago
|
background-color: #379AC3;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QCheckBox::indicator:disabled {
|
||
|
border-color: #555;
|
||
|
}
|
||
|
|
||
|
QCheckBox::indicator:disabled:checked {
|
||
|
background-color: #AAA;
|
||
|
}
|
||
|
|
||
12 years ago
|
QComboBox {
|
||
10 years ago
|
border-color: #777;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QDialog {
|
||
10 years ago
|
border-color: #777;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QDockWidget {
|
||
10 years ago
|
border-color: #666;
|
||
12 years ago
|
}
|
||
|
|
||
|
QDockWidget::close-button, QDockWidget::float-button {
|
||
10 years ago
|
border-color: transparent;
|
||
12 years ago
|
background: none;
|
||
12 years ago
|
}
|
||
|
|
||
|
QDockWidget::close-button:hover, QDockWidget::float-button:hover {
|
||
12 years ago
|
background: #777;
|
||
12 years ago
|
}
|
||
|
|
||
|
QDockWidget::close-button:pressed, QDockWidget::float-button:pressed {
|
||
12 years ago
|
background: #555;
|
||
12 years ago
|
}
|
||
|
|
||
|
QDockWidget::title {
|
||
12 years ago
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #CCC, stop: 1 #888);
|
||
|
color: #000;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QGCMAVLinkLogPlayer {
|
||
|
background: none;
|
||
|
}
|
||
|
|
||
|
QGCMAVLinkLogPlayer QLabel {
|
||
12 years ago
|
color: #FFF;
|
||
12 years ago
|
}
|
||
|
|
||
|
QGCMAVLinkLogPlayer QLabel:disabled {
|
||
12 years ago
|
color: #666;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QGCToolWidgetItem {
|
||
10 years ago
|
border-color: #666;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QGroupBox {
|
||
10 years ago
|
border-color: #666;
|
||
12 years ago
|
}
|
||
|
|
||
|
QGroupBox::title {
|
||
|
color: #000;
|
||
14 years ago
|
}
|
||
|
|
||
11 years ago
|
QHeaderView::section {
|
||
10 years ago
|
border-right: #969696;
|
||
11 years ago
|
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #DDD, stop: 1 #999);
|
||
|
}
|
||
|
|
||
12 years ago
|
QLabel {
|
||
|
background-color: transparent;
|
||
14 years ago
|
}
|
||
|
|
||
12 years ago
|
QLabel:disabled {
|
||
12 years ago
|
color: #999;
|
||
|
border-color: #999;
|
||
14 years ago
|
}
|
||
|
|
||
12 years ago
|
QLineEdit {
|
||
10 years ago
|
border-color: #111;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QMainWindow::separator {
|
||
12 years ago
|
background-color: #CCC;
|
||
14 years ago
|
}
|
||
|
|
||
12 years ago
|
QMainWindow::separator:hover {
|
||
|
background-color: #222;
|
||
14 years ago
|
}
|
||
|
|
||
12 years ago
|
QMenu {
|
||
10 years ago
|
border-color:#379AC3;
|
||
14 years ago
|
}
|
||
|
|
||
12 years ago
|
QMenu::item:selected, QMenu::item:checked:selected {
|
||
12 years ago
|
background-color: #555;
|
||
|
color: #FFF;
|
||
12 years ago
|
}
|
||
|
|
||
|
QMenu::item:checked {
|
||
12 years ago
|
background-color: #379AC3;
|
||
|
color: #FFF;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QMenu::separator {
|
||
|
background: #379AC3;
|
||
12 years ago
|
}
|
||
|
|
||
11 years ago
|
/*
|
||
|
* Fix for bug in Qt5 where QMenuBar items are styled natively on Windows, ignoring inherited settings.
|
||
|
* so we explicitly set their background color here (should match catch-all style background color).
|
||
|
*/
|
||
|
QMenuBar::item {
|
||
|
background-color: #F6F6F6;
|
||
|
}
|
||
|
|
||
12 years ago
|
QMenuBar::item:selected {
|
||
12 years ago
|
background-color: #555;
|
||
|
color: #FFF;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QMenuBar::item:disabled {
|
||
|
background: none;
|
||
12 years ago
|
}
|
||
|
|
||
|
QPlainTextEdit {
|
||
10 years ago
|
border-color: #111;
|
||
12 years ago
|
}
|
||
|
|
||
|
QProgressBar {
|
||
10 years ago
|
border-color: #666;
|
||
12 years ago
|
color: #000;
|
||
|
background: none;
|
||
12 years ago
|
}
|
||
|
|
||
|
QProgressBar::chunk {
|
||
|
background-color: #666;
|
||
|
}
|
||
|
|
||
12 years ago
|
QProgressBar::chunk#batteryBar {
|
||
|
background-color: green;
|
||
|
}
|
||
|
|
||
12 years ago
|
QProgressBar::chunk#speedBar {
|
||
|
background-color: yellow;
|
||
|
}
|
||
|
|
||
|
QProgressBar::chunk#thrustBar {
|
||
|
background-color: orange;
|
||
|
}
|
||
|
|
||
12 years ago
|
QPushButton, QToolButton {
|
||
10 years ago
|
border-color: #465158;
|
||
12 years ago
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #BBB, stop: 1 #777);
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QPushButton#connectButton, QPushButton#controlButton {
|
||
12 years ago
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #73D95D, stop: 1 #18A154);
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QPushButton#deleteButton, QPushButton#killButton {
|
||
12 years ago
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #D9002F, stop: 1 #AC0025);
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QPushButton:checked, QToolButton:checked {
|
||
12 years ago
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #444, stop: 1 #888);
|
||
12 years ago
|
color: #FFF;
|
||
|
}
|
||
|
|
||
12 years ago
|
QPushButton:checked#connectButton, QPushButton:checked#controlButton {
|
||
12 years ago
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #E38000, stop: 1 #945F00);
|
||
12 years ago
|
color: #000;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QPushButton:checked:hover#connectButton, QPushButton:checked:hover#controlButton {
|
||
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #FF9000, stop: 1 #B37300);
|
||
|
}
|
||
|
|
||
|
QPushButton:checked:pressed#connectButton, QPushButton:checked:pressed#controlButton {
|
||
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #DB7C00, stop: 1 #825400);
|
||
|
}
|
||
|
|
||
12 years ago
|
QPushButton:disabled, QToolButton:disabled {
|
||
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #EEE, stop: 1 #CCC);
|
||
12 years ago
|
color: #AAA;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QPushButton:hover, QToolButton:hover {
|
||
12 years ago
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #B8D3E6, stop: 1 #899FAD);
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QPushButton:hover#connectButton, QPushButton:hover#controlButton {
|
||
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #87FF6D, stop: 1 #1FD16D);
|
||
|
}
|
||
|
|
||
12 years ago
|
QPushButton:hover#deleteButton, QPushButton#killButton {
|
||
12 years ago
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #F20034, stop: 1 #9E0022);
|
||
|
}
|
||
|
|
||
12 years ago
|
QPushButton:pressed, QToolButton:pressed {
|
||
12 years ago
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #AAA, stop: 1 #666);
|
||
14 years ago
|
}
|
||
|
|
||
12 years ago
|
QPushButton:pressed#connectButton, QPushButton:pressed#controlButton {
|
||
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #62B84E, stop: 1 #148A47);
|
||
|
}
|
||
|
|
||
12 years ago
|
QPushButton:pressed#deleteButton, QPushButton#killButton {
|
||
12 years ago
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #C9002C, stop: 1 #9C0021);
|
||
|
}
|
||
|
|
||
10 years ago
|
QPushButton#advancedMenuButton, QPushButton#airframeMenuButton, QPushButton#firmwareMenuButton,
|
||
|
QPushButton#tuningMenuButton, QPushButton#rcMenuButton, QPushButton#sensorMenuButton,
|
||
|
QPushButton#flightModeMenuButton, QPushButton#safetyConfigButton {
|
||
|
border-color: #465158;
|
||
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #BBB, stop: 1 #777);
|
||
|
}
|
||
|
|
||
10 years ago
|
VehicleSetupButton, VehicleComponentButton {
|
||
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #BBB, stop: 1 #777);
|
||
|
border-color: #465158;
|
||
|
}
|
||
|
|
||
10 years ago
|
QPushButton#planePushButton, QPushButton#flyingWingPushButton, QPushButton#quadXPushButton,
|
||
|
QPushButton#quadPlusPushButton, QPushButton#hexaXPushButton, QPushButton#hexaPlusPushButton,
|
||
|
QPushButton#octoXPushButton, QPushButton#octoPlusPushButton, QPushButton#hPushButton {
|
||
|
border-color: #465158;
|
||
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #BBB, stop: 1 #777);
|
||
|
}
|
||
|
|
||
|
QPushButton:checked#planePushButton, QPushButton:checked#flyingWingPushButton, QPushButton:checked#quadXPushButton,
|
||
|
QPushButton:checked#quadPlusPushButton, QPushButton:checked#hexaXPushButton, QPushButton:checked#hexaPlusPushButton,
|
||
|
QPushButton:checked#octoXPushButton, QPushButton:checked#octoPlusPushButton, QPushButton:checked#hPushButton {
|
||
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #444, stop: 1 #888);
|
||
|
color: #FFF;
|
||
|
}
|
||
|
|
||
|
QWidget#navBarWidget {
|
||
|
background-color: #F6F6F6;
|
||
|
}
|
||
|
|
||
12 years ago
|
QScrollBar {
|
||
10 years ago
|
border-color: #333;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QSeparator {
|
||
12 years ago
|
color: #000;
|
||
14 years ago
|
}
|
||
|
|
||
12 years ago
|
QSlider {
|
||
|
background-color: transparent;
|
||
14 years ago
|
}
|
||
|
|
||
12 years ago
|
QSlider::groove:horizontal {
|
||
10 years ago
|
border-color: #999;
|
||
12 years ago
|
background-color: #4A4A4A;
|
||
|
}
|
||
|
|
||
|
QSlider::groove:horizontal:disabled {
|
||
10 years ago
|
border-color: #999;
|
||
12 years ago
|
background-color: #CCC;
|
||
12 years ago
|
}
|
||
12 years ago
|
|
||
12 years ago
|
QSlider::groove:vertical {
|
||
10 years ago
|
border-color: #999;
|
||
12 years ago
|
background-color: #4A4A4A;
|
||
|
}
|
||
|
|
||
|
QSlider::handle:horizontal {
|
||
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #232228, stop: 1 #020208);
|
||
10 years ago
|
border-color: #379AC3;
|
||
12 years ago
|
}
|
||
|
|
||
|
QSlider::handle:horizontal:disabled {
|
||
12 years ago
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #EEE, stop: 1 #CCC);
|
||
10 years ago
|
border-color: #777;
|
||
12 years ago
|
}
|
||
|
|
||
|
QSlider::handle:vertical {
|
||
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #232228, stop: 1 #020208);
|
||
10 years ago
|
border-color: #379AC3;
|
||
12 years ago
|
}
|
||
|
|
||
|
QSizeGrip {
|
||
|
background: none;
|
||
|
}
|
||
|
|
||
|
QSpinBox, QDoubleSpinBox {
|
||
10 years ago
|
border-color: #4A4A4A;
|
||
12 years ago
|
}
|
||
|
|
||
|
QStatusBar {
|
||
12 years ago
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #DDD, stop: 1 #999);
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QTabBar::tab {
|
||
10 years ago
|
border-color: #777;
|
||
14 years ago
|
}
|
||
|
|
||
12 years ago
|
QTabBar::tab:hover {
|
||
10 years ago
|
border-color: #379AC3;
|
||
12 years ago
|
}
|
||
|
|
||
|
QTabBar::tab:selected {
|
||
10 years ago
|
border-color:d #379AC3;
|
||
12 years ago
|
background: #CCC;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QTabWidget::pane {
|
||
10 years ago
|
border-color: #777;
|
||
12 years ago
|
}
|
||
|
|
||
|
QTextEdit {
|
||
10 years ago
|
border-color: #222;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
QToolTip {
|
||
12 years ago
|
background-color: #F6F6F6;
|
||
10 years ago
|
border-color: #379AC3;
|
||
12 years ago
|
color: #000;
|
||
12 years ago
|
}
|
||
12 years ago
|
|
||
11 years ago
|
QTreeView::item {
|
||
|
color: #000;
|
||
|
}
|
||
|
|
||
12 years ago
|
UASView {
|
||
|
background: #D0D0D0;
|
||
10 years ago
|
border-color: #666;
|
||
12 years ago
|
}
|
||
|
|
||
|
UASView QLabel#heartBeatLabel, UASView QLabel#typeLabel {
|
||
10 years ago
|
border-color: #333;
|
||
12 years ago
|
}
|