-
Notifications
You must be signed in to change notification settings - Fork 0
/
classic.css
117 lines (97 loc) · 2 KB
/
classic.css
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/* Main Window */
QMainWindow {
background-color: #c0c0c0;
border: 2px outset #fff;
}
QMenuBar {
background-color: #c0c0c0;
border: 1px solid #000;
}
QMenu {
background-color: #c0c0c0;
border: 1px solid #000;
}
QMenu::item:selected {
background-color: #000080;
color: #ffffff;
}
/* Containers */
QFrame, QDialog {
background-color: #c0c0c0;
border: 2px outset #fff;
}
QGroupBox {
border: 2px groove #808080;
margin-top: 10px;
background-color: #c0c0c0;
}
/* Buttons */
QPushButton {
background-color: #c0c0c0;
border: 2px outset #808080;
padding: 2px;
}
QPushButton:pressed {
border: 2px inset #808080;
background-color: #c0c0c0;
}
QPushButton:disabled {
color: #808080;
}
/* Scroll Bars */
QScrollBar:vertical, QScrollBar:horizontal {
background: #c0c0c0;
width: 16px;
border: 1px solid #808080;
}
QScrollBar::handle {
background: #808080;
border: 1px solid #404040;
}
/* Labels */
QLabel {
color: #000000;
background: transparent;
}
/* Checkboxes and Radio Buttons */
QCheckBox, QRadioButton {
background-color: #c0c0c0;
color: #000000;
}
QCheckBox::indicator, QRadioButton::indicator {
width: 13px;
height: 13px;
}
QCheckBox::indicator:checked {
background-color: #000000;
}
/* List and Table Views */
QListView, QTreeView, QTableView {
background-color: #ffffff;
border: 1px solid #000;
}
QTableView::item:selected, QListView::item:selected {
background-color: #000080;
color: #ffffff;
}
/* Text Inputs */
QLineEdit, QTextEdit, QPlainTextEdit {
background-color: #ffffff;
border: 2px inset #c0c0c0;
color: #000000;
}
/* ComboBox */
QComboBox {
background-color: #ffffff;
border: 2px inset #c0c0c0;
padding: 2px;
}
/* Sliders */
QSlider::groove:horizontal, QSlider::groove:vertical {
background-color: #c0c0c0;
border: 1px solid #000;
}
QSlider::handle:horizontal, QSlider::handle:vertical {
background-color: #808080;
border: 1px solid #404040;
}