initial commit
This commit is contained in:
@@ -0,0 +1,324 @@
|
||||
QDialog {
|
||||
background: #c5d4db; /* white */
|
||||
color: black;
|
||||
}
|
||||
|
||||
QWidget {
|
||||
background-color: #c5d4db;
|
||||
color: black;
|
||||
selection-background-color: #91b2c7;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QHeaderView::section {
|
||||
padding:5px;
|
||||
color: black;
|
||||
background: #cee5f0;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QTabWidget {
|
||||
background-color: #cee5f0;
|
||||
color: black;
|
||||
selection-background-color: #91b2c7; /* light blue */
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QTabWidget:disabled {
|
||||
background-color: grey;
|
||||
color: grey;
|
||||
}
|
||||
|
||||
QTabBar:tab {
|
||||
background: #91b2c7;
|
||||
color: black;
|
||||
border: 1px solid #535a6e; /* dark purple */
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
QTabBar:tab:selected {
|
||||
background: #406d87; /* light dark blue */
|
||||
color: white;
|
||||
}
|
||||
|
||||
QToolButton {
|
||||
padding: 5px;
|
||||
background: #91b2c7;
|
||||
color: black;
|
||||
border-radius: 7px;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QToolButton:pressed {
|
||||
background-color: #406d87;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QMenu {
|
||||
padding: 5px;
|
||||
selection-background-color: #406d87;
|
||||
background-color: #91b2c7;
|
||||
color: black;
|
||||
icon-size: 16px;
|
||||
font-family: Monospace;
|
||||
font-size: 9pt;
|
||||
border: 1px solid #56647a;
|
||||
}
|
||||
|
||||
QMenu:item:selected {
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
||||
QLabel {
|
||||
background: none;
|
||||
font-family: Monospace;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QDockWidget {
|
||||
background-color: #cee5f0;
|
||||
selection-background-color: #91b2c7;
|
||||
color: black;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QTableWidget {
|
||||
background: #cee5f0; color: black; font-family: Monospace; font-size: 9pt;
|
||||
}
|
||||
|
||||
QTableWidget:item {
|
||||
padding:5px;
|
||||
background-color: #91b2c7;
|
||||
}
|
||||
|
||||
QTableWidget:item:selected {
|
||||
background-color: #406d87;
|
||||
}
|
||||
|
||||
QStatusBar {
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
selection-background-color: #91b2c7;
|
||||
color: black;
|
||||
}
|
||||
|
||||
QGroupBox {
|
||||
background: #cee5f0;
|
||||
color: black;
|
||||
selection-background-color: #91b2c7;
|
||||
border:none;
|
||||
}
|
||||
|
||||
QGroupBox:disabled {
|
||||
background-color:#000000;
|
||||
}
|
||||
|
||||
QPlainTextEdit {
|
||||
background-color: #5f757d;
|
||||
selection-background-color: #91b2c7;
|
||||
color: black;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QLineEdit {
|
||||
background-color: white;
|
||||
selection-background-color: #91b2c7;
|
||||
color: black;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QComboBox {
|
||||
background-color: #5f757d;
|
||||
selection-background-color: #91b2c7;
|
||||
color: black;
|
||||
font-size: 9pt;
|
||||
}
|
||||
QSpinBox {
|
||||
background-color: #5f757d;
|
||||
selection-background-color: #91b2c7;
|
||||
color: black;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QWebEngineView {
|
||||
background-color: #5f757d;
|
||||
selection-background-color: #91b2c7;
|
||||
color: black;
|
||||
}
|
||||
|
||||
QPushButton {
|
||||
padding: 5px;
|
||||
background-color: #406d87;
|
||||
color: black;
|
||||
}
|
||||
|
||||
QPushButton:pressed {
|
||||
background-color: #91b2c7;
|
||||
}
|
||||
|
||||
QCheckBox {
|
||||
background: none;
|
||||
color: black;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QCheckBox:indicator:checked {
|
||||
background-color: #406d87;
|
||||
border: 2px solid white;
|
||||
}
|
||||
|
||||
QCheckBox:indicator:unchecked {
|
||||
background-color: black;
|
||||
border: 2px solid white;
|
||||
}
|
||||
|
||||
QRadioButton {
|
||||
background: none;
|
||||
color: black;
|
||||
font-size: 9pt;
|
||||
}
|
||||
QRadioButton::indicator {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
border-radius: 7px;
|
||||
}
|
||||
|
||||
QRadioButton::indicator:checked {
|
||||
background-color: #406d87;
|
||||
border: 2px solid white;
|
||||
}
|
||||
|
||||
QRadioButton::indicator:unchecked {
|
||||
background-color: black;
|
||||
border: 2px solid white;
|
||||
}
|
||||
|
||||
QTreeWidget {
|
||||
outline:0;
|
||||
background: #cee5f0;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QTreeWidget::item {
|
||||
padding: 5px;
|
||||
background: #91b2c7;
|
||||
border: 0.5px solid black;
|
||||
}
|
||||
|
||||
QTreeWidget::item:selected {
|
||||
background-color: #406d87;
|
||||
}
|
||||
|
||||
QListWidget {
|
||||
outline:0;
|
||||
background: #cee5f0;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QListWidget::item {
|
||||
background: #91b2c7; /* light purple */
|
||||
color: black;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QListWidget::item:selected {
|
||||
background-color: #406d87;
|
||||
}
|
||||
|
||||
QTextBrowser {
|
||||
padding: 5px;
|
||||
background: #91b2c7;
|
||||
color: black;
|
||||
selection-background-color: #406d87;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QTextEdit:enabled {
|
||||
padding: 5px;
|
||||
background: #91b2c7;
|
||||
color: black;
|
||||
selection-background-color: #406d87;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QTextEdit:disabled {
|
||||
background: grey;
|
||||
color: black;
|
||||
}
|
||||
|
||||
QLabel#label_status {
|
||||
background: none;
|
||||
font-family: Monospace;
|
||||
color: #33FF00;
|
||||
font-weight: bold;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QLabel#label_error {
|
||||
background: none;
|
||||
color : red;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QTreeWidget#treeWidget_lstree::item:has-children {
|
||||
border-right: 10px solid #91b2c7;
|
||||
background-color: #5f757d;
|
||||
}
|
||||
|
||||
QTableWidget#tableWidget_pstree::item {
|
||||
padding:5px;
|
||||
border-right: 1px solid #406d87;
|
||||
border-left: 1px solid #406d87;
|
||||
}
|
||||
|
||||
QTableWidget#tableWidget_lstree:item {
|
||||
padding:5px;
|
||||
border-right: 1px solid #406d87;
|
||||
border-left: 1px solid #406d87;
|
||||
}
|
||||
|
||||
QLineEdit#lineEdit_cmd {
|
||||
background-color: white;
|
||||
selection-background-color: #91b2c7;
|
||||
color: black;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QLineEdit#lineEdit_terminal_cwd {
|
||||
background-color: #2b3040;
|
||||
selection-background-color: #050f2e;
|
||||
color: #a8a8a8;
|
||||
font-size: 9pt;
|
||||
}
|
||||
QLineEdit#lineEdit_terminal_sleep {
|
||||
background-color: #2b3040;
|
||||
selection-background-color: #050f2e;
|
||||
color: #a8a8a8;
|
||||
font-size: 9pt;
|
||||
}
|
||||
QLineEdit#lineEdit_terminal_user {
|
||||
background-color: #2b3040;
|
||||
selection-background-color: #050f2e;
|
||||
color: #a8a8a8;
|
||||
font-size: 9pt;
|
||||
}
|
||||
QLineEdit#lineEdit_terminal_socks {
|
||||
background-color: #2b3040;
|
||||
selection-background-color: #050f2e;
|
||||
color: #a8a8a8;
|
||||
font-size: 9pt;
|
||||
}
|
||||
QLineEdit#lineEdit_terminal_rportfwd {
|
||||
background-color: #2b3040;
|
||||
selection-background-color: #050f2e;
|
||||
color: #a8a8a8;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
QTextEdit#textEdit_badger_terminal {
|
||||
background: #0e2a35;
|
||||
color: white;
|
||||
}
|
||||
Reference in New Issue
Block a user