-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.qss
More file actions
69 lines (59 loc) · 1.42 KB
/
style.qss
File metadata and controls
69 lines (59 loc) · 1.42 KB
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
/* Глобальный стиль фона и текста */
QWidget {
background-color: #1e1e1e;
color: #d4d4d4;
font-family: 'Segoe UI', sans-serif;
font-size: 13px;
}
/* Поля ввода (QLineEdit, QTextEdit) */
QLineEdit, QTextEdit, QComboBox {
background-color: #2d2d2d;
border: 1px solid #3e3e42;
border-radius: 4px;
padding: 5px;
color: #ffffff;
}
QLineEdit:focus, QComboBox:hover {
border: 1px solid #007acc; /* Синий акцент при фокусе */
}
/* Кнопки (Базовый стиль) */
QPushButton {
background-color: #3e3e42;
border: none;
border-radius: 4px;
padding: 8px 15px;
font-weight: bold;
}
QPushButton:hover {
background-color: #505050;
}
QPushButton:pressed {
background-color: #007acc;
}
/* Акцентные кнопки (например, SQL или Merge) */
QPushButton#accent_btn {
background-color: #0e639c;
color: white;
}
/* Списки (QListWidget) */
QListWidget {
background-color: #252526;
border: 1px solid #3e3e42;
outline: none;
}
QListWidget::item:selected {
background-color: #094771;
color: white;
}
/* Таблицы (QTableWidget) */
QHeaderView::section {
background-color: #2d2d2d;
color: #858585;
padding: 5px;
border: 1px solid #3e3e42;
}
QTableWidget {
gridline-color: #3e3e42;
background-color: #1e1e1e;
alternate-background-color: #252526;
}