-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (72 loc) · 1.65 KB
/
style.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
/*
FileDiff Professional
*/
/* Text area */
QTextEdit, QDialog QTextEdit {
font-family: 'Cascadia Code', 'Courier New', Courier, monospace;
font-weight: 400;
font-size: 14px;
background-color: #f5f5f5;
color: #000000;
border: 1px solid #cccccc;
padding: 2px;
}
/* Main window */
QMainWindow, QDialog {
background-color: #ffffff;
}
/* Bottom status bar */
QStatusBar {
background-color: #f1f1f1;
color: #202020;
}
/* Top menu bar */
QMenuBar {
background-color: #0c0c0c;
color: #ffffff;
}
/* Menu bar options */
QMenuBar::item {
background: transparent;
padding: 5px 10px;
}
/* Menu bar options when selected */
QMenuBar::item:selected {
background: #000000;
}
/* Buttons */
QPushButton, QDialog QPushButton {
background: transparent;
border: 1px solid #cccccc;
color: #000000;
padding: 5px 10px;
}
/* Button on hover */
QPushButton:hover, QDialog QPushButton:hover {
background-color: #f5f5f5;
}
/* Line Edit */
QLineEdit, QDialog QLineEdit {
border: 1px solid #cccccc;
padding: 3px;
background-color: #ffffff;
}
/* Focused line edit */
QLineEdit:focus, QDialog QLineEdit:focus {
border-color: #66aaff;
}
/* Scrollbar */
QScrollBar:horizontal, QDialog QScrollBar:horizontal {
height: 10px;
}
QScrollBar:vertical, QDialog QScrollBar:vertical {
width: 10px;
}
QScrollBar::handle:horizontal, QScrollBar::handle:vertical, QDialog QScrollBar::handle:horizontal, QDialog QScrollBar::handle:vertical {
background: #cccccc;
border-radius: 5px;
}
/* Preformatted text blocks for binary view */
pre {
font-family: 'Cascadia Code', 'Courier New', Courier, monospace;
}