forked from solaristhesun/superterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuperterm.qss
200 lines (165 loc) · 3.65 KB
/
superterm.qss
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
QWidget#consoleTab QPushButton
{
height: 28px;
min-height: 28px;
min-width: 80px;
padding-left: 5px;
padding-right: 5px;
background-color: white; /*#eeeeee;*/
border: 1px solid #adadad;
}
QWidget#consoleTab QPushButton:hover
{
background-color: #f6f6f6;
}
QWidget#consoleTab QPushButton:default
{
border: 1px solid #00a2e8;
}
QWidget#consoleTab QLineEdit
{
min-height: 28px;
border: 1px solid #adadad;
/*margin: 1px 0px 1px 0px;*/
}
QWidget#consoleTab QComboBox
{
border: 1px solid #adadad;
background-color: white;
padding-left: 5px;
padding-right: 5px;
min-height: 26px;
min-width: 80px;
/* margin: 1px 0px 1px 0px;*/
}
QComboBox::drop-down {
subcontrol-origin: padding;
subcontrol-position: top right;
width: 15px;
border-left-width: 0px;
}
QComboBox::down-arrow {
image: url(:/icons/arrow_down.png);
width: 8px;
height: 8px;
}
QLabel#btnColor
{
min-height: 28px;
border: 1px solid white;
min-width: 60px;
/*margin: 1px 0px 1px 0px;*/
}
QFrame#connectionBar QPushButton#btnClose
{
padding: 0px;
width: 28px;
min-width: 28px;
}
QFrame#connectionBar
{
border-bottom: 1px solid white;
background-color: #ffe6ab;
}
QFrame#renameTabFrame
{
border-bottom: 1px solid white;
background-color: #ffe6ab;
}
QFrame#statusBar
{
border-top: 1px solid white;
background-color: #6fdc6f;
}
QFrame#highlightingsFrame, QFrame#logPanel
{
border-top: 1px solid white;
background-color: #ffe6ab;
}
QFrame#statusBar[theme="error"]
{
background-color: #ff4040;
}
QFrame#statusBar[theme="warning"]
{
background-color: #ffcc66;
}
QFrame#statusBar QLabel
{
color: black;
}
QFrame#notificationBar
{
background-color: rgb(239, 41, 41);
}
QFrame#notificationBar QLabel
{
color: white;
font-weight: bold;
}
QTabWidget::tab-bar
{
top: 0px;
}
QTabWidget::pane {
}
/* Style the tab using the tab sub-control. Note that
it reads QTabBar _not_ QTabWidget */
QTabBar::tab
{
background: qlineargradient(x1: 0, y1: 0, x2: 1, y2: 0,
stop: 0 #E1E1E1, stop: 0.4 #DDDDdd,
stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3);
border-top: 1px solid #adadad; /*#C4C4C3;*/
border-left: 1px solid #adadad; /*#C4C4C3;*/
border-bottom: 1px solid #adadad; /*#C4C4C3;*/
border-right: 0;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
min-height: 30px;
width: 25px;
padding: 2px;
padding-top: 6px;
padding-bottom: 16px;
margin-bottom: -1px;
}
QTabBar::tab:selected, QTabBar::tab:hover
{
background: qlineargradient(x1: 0, y1: 0, x2: 1, y2: 0,
stop: 0 #fafafa, stop: 0.4 #f4f4f4,
stop: 0.5 #e7e7e7, stop: 1.0 #fafafa);
/* do not overlap neighbour tabs */
/* margin-top: -1px; */
/* margin-bottom: -1px; */
}
QTabBar::tab:!selected
{
/* margin-left:1px; */ /* make non-selected tabs look smaller */
}
QTabBar::tab:first
{
margin-top: -1px; /* the first selected tab has nothing to overlap with on the top */
}
QTabBar::tab:first:selected
{
margin-top: -1px; /* the first selected tab has nothing to overlap with on the top */
}
QTabBar::tab:last:selected
{
margin-bottom: -1px; /* the last selected tab has nothing to overlap with on the bottom */
}
QTabBar::tab:only-one
{
margin-top: -1px; /* if there is only one tab, we don't want overlapping margins */
}
QPushButton#addTabBtn
{
border: 0;
padding-left:1px;
}
QPushButton#addTabBtn::hover
{
/*border: 1px solid #cacaca;*/
border-radius: 13px;
background-color: #d9d9d9;
}