-
Notifications
You must be signed in to change notification settings - Fork 1
/
fix_name.css
65 lines (53 loc) · 1.08 KB
/
fix_name.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
/* Add this CSS in a separate .qss file and specify the path in apply_stylesheet() function. */
/* Basic Styles */
QWidget {
background-color: #f5f5f5;
color: #333;
}
QPushButton {
background-color: #2196F3; /* Material Blue */
color: white;
border: none;
border-radius: 3px;
padding: 5px 10px;
}
QPushButton:hover {
background-color: #1976D2; /* Slightly darker blue on hover */
}
QLineEdit {
border: 1px solid #ccc;
border-radius: 3px;
padding: 5px;
}
/* List Widget Styles */
QListWidget {
background-color: white;
border: 1px solid #ccc;
}
QListWidget::item {
padding: 5px;
}
QListWidget::item:selected {
background-color: #1976D2;
color: white;
}
/* Dialog Styles */
QDialog {
background-color: white;
}
/* Label Styles */
QLabel {
font-size: 14px;
}
/* ComboBox Styles */
QComboBox {
border: 1px solid #ccc;
border-radius: 3px;
padding: 5px;
}
/* ComboBox Dropdown Styles */
QComboBox QAbstractItemView {
background-color: white;
border: 1px solid #ccc;
}
/* Adjust any other styles you want here */