blob: 95f3f408aaf4c39f44a17bd236ac3585d9c2615d [file] [log] [blame]
Nicolas Jager97a21b42015-12-03 16:55:45 -05001QPushButton#acceptButton{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -05002 background-color: #4caf50;
Nicolas Jager5e8c3822016-02-05 17:01:49 -05003 border-radius: 28px;
Nicolas Jager1ddb38d2016-01-20 11:11:49 -05004 border:solid 1px;
Edric Milaret627500d2015-03-27 16:41:40 -04005}
6
Nicolas Jager1ddb38d2016-01-20 11:11:49 -05007QPushButton#refuseButton, QPushButton#cancelButton{
8 background-color: #f44336;
Nicolas Jager5e8c3822016-02-05 17:01:49 -05009 border-radius: 28px;
Nicolas Jager1ddb38d2016-01-20 11:11:49 -050010 border:solid 1px;
Edric Milaret627500d2015-03-27 16:41:40 -040011}
12
Nicolas Jager1ddb38d2016-01-20 11:11:49 -050013QPushButton#btnCall:hover, QPushButton#acceptButton:hover{
14 background-color: #5db761;
Edric Milaret627500d2015-03-27 16:41:40 -040015}
16
Nicolas Jager1ddb38d2016-01-20 11:11:49 -050017QPushButton#btnCall:pressed, QPushButton#acceptButton:pressed{
18 background-color: #449d48;
19}
20
21QPushButton#refuseButton:hover, QPushButton#cancelButton:hover{
22 background-color: #f5554a;
23}
24
25QPushButton#refuseButton:pressed, QPushButton#cancelButton:pressed{
26 background-color: #db3c30;
27}
28
29QWidget#callInvitePage, QWidget#outboundCallPage{
Nicolas Jager74fe46f2016-02-29 14:55:09 -050030 background-color : rgb(77, 77, 77);
Nicolas Jager6cdeba92016-03-05 18:05:53 -050031 background-image : url(:/images/background-dark.png);
32 background-repeat : repeat-x;
33 background-position: bottom;
Edric Milaret627500d2015-03-27 16:41:40 -040034}
35
Nicolas Jager97a21b42015-12-03 16:55:45 -050036IdLabel{
37 border-style: solid;
38 border-width: 1px;
39 border-color: rgb(0, 192, 212);
Edric Milaret627500d2015-03-27 16:41:40 -040040}
41
Nicolas Jagerb98066a2016-01-15 12:10:08 -050042RingContactLineEdit{
Nicolas Jager97a21b42015-12-03 16:55:45 -050043 border-color: rgb(242, 242, 242);
44 border-radius: 5px;
45 border-width: 2px;
46 background-color: rgb(242, 242, 242);
Edric Milaret627500d2015-03-27 16:41:40 -040047}
48
Nicolas Jager74fe46f2016-02-29 14:55:09 -050049QScrollBar:vertical, QScrollBar:horizontal{
Nicolas Jager97a21b42015-12-03 16:55:45 -050050 background:white; width:0px;
Edric Milaret627500d2015-03-27 16:41:40 -040051}
52
Nicolas Jager74fe46f2016-02-29 14:55:09 -050053QScrollBar::handle:vertical, QScrollBar::handle:horizontal{
54 background: rgb(255, 255, 255);
Edric Milaret627500d2015-03-27 16:41:40 -040055}
56
Nicolas Jager0a9fc602016-03-11 18:35:42 -050057SmartList{
Edric Milareta0ebd062016-01-13 12:18:23 -050058 background-color: white;
59 border: none;
60}
61
Nicolas Jager74fe46f2016-02-29 14:55:09 -050062QListView#accountView::item{
63 height: 40px;
64}
65
66QListView#audioCodecView, QListView#videoCodecView, QListView#cipherListView{
67 background-color: transparent;
68 border: 2px solid rgb(77, 77, 77);
69}
70
71QListView#audioCodecView::item, QListView#videoCodecView::item, QListView#cipherListView::item, QListView#listMessageView::item{
72 height: 30px;
73 font: 30px;
74
75}
76
77QListView#audioCodecView::indicator, QListView#videoCodecView::indicator, QListView#accountView::indicator,
78QListView#cipherListView::indicator{
79 height : 12 px;
80 width : 12 px;
81 border: 2px solid rgb(77, 77, 77);
82 border-radius: 4px;
83 background: none;
84}
85
86QListView#audioCodecView::indicator:checked, QListView#videoCodecView::indicator:checked,
87QListView#accountView::indicator:checked, QListView#cipherListView::indicator:checked{
88 border-color: #34acbd;
89 background: #34acbd;
90 image: url(":/images/icons/ic_check_white_18dp_2x.png");
91}
92
93QListView#audioCodecView::item:selected, QListView#videoCodecView::item:selected,
94QListView#cipherListView::item:selected{
95 background-color: rgba(220, 220, 220, 255);
Nicolas Jager032c0002016-02-18 16:38:09 -050096 border: none;
Edric Milareta0ebd062016-01-13 12:18:23 -050097}
98
Nicolas Jager74fe46f2016-02-29 14:55:09 -050099QListView#audioCodecView::item:hover, QListView#videoCodecView::item:hover, QListView#cipherListView::item:hover{
100 background-color: rgba(229, 229, 229, 255);
101 border-radius: 18px;
102}
103
104QListView#cipherListView::item:disabled
105{
106 background-color: transparent;
107}
108
109SmartList::item:selected, QListView#accountView::item:selected, QListView#contactView::item:selected{
110 background-color: rgba(220, 220, 220, 255);
111 border: none;
112}
113
114SmartList::item:hover, QListView#accountView::item:hover, QListView#contactView::item:hover{
Nicolas Jagerd0b33752016-01-17 00:00:40 -0500115 background-color: rgba(242, 242, 242, 255);
Edric Milareta0ebd062016-01-13 12:18:23 -0500116}
117
Nicolas Jagerb98066a2016-01-15 12:10:08 -0500118QListView#listMessageView::item:hover{
Nicolas Jagerd0b33752016-01-17 00:00:40 -0500119 background-color: rgba(229, 229, 229, 255);
120 border-radius: 18px;
121}
122
123QListView#listMessageView{
124 background: rgb(242, 242, 242);
125 border-top: 1px solid rgb(229, 229, 229);
126}
127
Nicolas Jager0a9fc602016-03-11 18:35:42 -0500128QLineEdit#messageEdit, QLineEdit#imMessageEdit{
Nicolas Jagerd0b33752016-01-17 00:00:40 -0500129 border-color: rgb(0, 192, 212);
130 border-radius: 5px;
131 border-width: 1px;
132 border-style: outset;
133 background-color: rgb(255, 255, 255);
Edric Milaret816cc902015-10-21 10:59:34 -0400134}
135
Nicolas Jager0a9fc602016-03-11 18:35:42 -0500136QLineEdit#numberBar{
137 border-color: rgba(0, 192, 212, 0.6);
138 border-radius: 5px;
139 border-width: 2px;
140 border-style: outset;
141 background-color: rgba(255, 255, 255, 0.8)
142}
143
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500144QPushButton#holdButton, QPushButton#chatButton, QPushButton#noMicButton, QPushButton#noVideoButton,
Edric Milareta5fe70f2016-02-05 15:03:31 -0500145QPushButton#transferButton, QPushButton#addPersonButton, QPushButton#joinButton,
146QPushButton#qualityButton, QPushButton#recButton{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500147 background-color: rgba(0, 0, 0, 140);
148 border-radius: 18px;
149 border:solid 1px;
Edric Milaret627500d2015-03-27 16:41:40 -0400150}
151
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500152QPushButton#holdButton:hover, QPushButton#chatButton:hover, QPushButton#noMicButton:hover,
153QPushButton#noVideoButton:hover, QPushButton#transferButton:hover, QPushButton#addPersonButton:hover,
154QPushButton#joinButton:hover, QPushButton#qualityButton:hover, QPushButton#addToContactButton:hover,
155QPushButton#recButton:hover{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500156 background-color: rgba(0, 192, 213, 0.6);
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500157}
158
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500159QPushButton#holdButton:pressed, QPushButton#chatButton:pressed, QPushButton#noMicButton:pressed,
160QPushButton#noVideoButton:pressed, QPushButton#transferButton:pressed, QPushButton#addPersonButton:pressed,
161QPushButton#joinButton:pressed, QPushButton#qualityButton:pressed, QPushButton#addToContactButton:pressed,
162QPushButton#recButton:pressed{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500163 background-color: rgba(0, 192, 213, 0.8);
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500164}
165
Edric Milareta5fe70f2016-02-05 15:03:31 -0500166QPushButton#holdButton:checked, QPushButton#noMicButton:checked,
167QPushButton#noVideoButton:checked, QPushButton#recButton:checked,
168QPushButton#chatButton:checked{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500169 background-color: rgba(0, 192, 213, 0.8);
Edric Milaret627500d2015-03-27 16:41:40 -0400170}
171
Nicolas Jagerb98066a2016-01-15 12:10:08 -0500172QPushButton#hangupButton{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500173 background-color: rgba(200, 0, 0, 0.6);
174 border-radius: 18px;
175 border:solid 1px;
Edric Milaret627500d2015-03-27 16:41:40 -0400176}
177
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500178QPushButton#hangupButton:hover{
179 background-color: rgba(255, 0, 0, 0.6);
Edric Milaret627500d2015-03-27 16:41:40 -0400180}
181
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500182QPushButton#hangupButton:pressed{
183 background-color: rgba(255, 0, 0, 0.8);
Edric Milaret12353822015-05-14 14:41:09 -0400184}
Edric Milareta0ebd062016-01-13 12:18:23 -0500185
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500186QPushButton#exitSettingsButton, QPushButton#settingsButton, QPushButton#addToContactButton,
Edric Milaret1e598592016-09-02 10:10:01 -0400187QPushButton#imBackButton, QPushButton#copyCMButton{
Nicolas Jager032c0002016-02-18 16:38:09 -0500188 background-color: #414141;
189 border-radius: 15px;
190 border:solid 1px;
Edric Milareta0ebd062016-01-13 12:18:23 -0500191}
Edric Milaret864a2052016-01-14 15:45:03 -0500192
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500193QPushButton#exitSettingsButton:hover, QPushButton#settingsButton:hover, QPushButton#imBackButton:hover,
Edric Milaret1e598592016-09-02 10:10:01 -0400194QPushButton#copyCMButton:hover{
Nicolas Jager032c0002016-02-18 16:38:09 -0500195 background-color: #515151;
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500196}
197
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500198QPushButton#exitSettingsButton:pressed, QPushButton#settingsButton:pressed, QToolButton#imBackButton:pressed,
Edric Milaret1e598592016-09-02 10:10:01 -0400199QPushButton#copyCMButton:pressed{
Nicolas Jager032c0002016-02-18 16:38:09 -0500200 background-color: #313131;
Edric Milaret864a2052016-01-14 15:45:03 -0500201}
Nicolas Jager540a5112016-01-15 15:54:34 -0500202
Edric Milaret1e598592016-09-02 10:10:01 -0400203QToolButton#qrButton, QToolButton#shareButton{
204 background-color: #3AC0D2;
205 border-radius: 15px;
206 border:solid 1px;
207}
208
209QToolButton#qrButton:hover, QToolButton#shareButton:hover{
210 background-color: #4dc6d6;
211}
212
213QToolButton#qrButton:pressed, QToolButton#shareButton:pressed{
214 background-color: #34acbd;
215}
216
217QToolButton#qrButton:checked {
218 background-color: #34acbd;
219}
220
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500221QPushButton#deleteAccountButton, QToolButton#addAccountButton{
222 background: transparent;
223}
224
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500225QPushButton#btnvideo{
Nicolas Jager032c0002016-02-18 16:38:09 -0500226 background-color: #3AC0D2;
227 border-radius: 15px;
228 border:solid 1px;
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500229}
230
Edric Milaret6a785af2016-03-07 15:39:30 -0500231QPushButton#btnCall, QPushButton#btnComBarVideo,
232QPushButton#sendButton, QPushButton#sendIMButton{
Nicolas Jager5e8c3822016-02-05 17:01:49 -0500233 background-color: #3AC0D2;
234 border-radius: 15px;
235 border:solid 1px;
236}
237
Edric Milaret6a785af2016-03-07 15:39:30 -0500238QPushButton#btnCall:hover, QPushButton#sendButton:hover,
239QPushButton#sendIMButton:hover, QPushButton#btnComBarVideo:hover{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500240 background-color: #4dc6d6;
241}
242
Edric Milaret6a785af2016-03-07 15:39:30 -0500243QPushButton#btnCall:pressed, QPushButton#sendButton:pressed,
244QPushButton#sendIMButton:pressed, QPushButton#btnComBarVideo:pressed{
Nicolas Jager5e8c3822016-02-05 17:01:49 -0500245 background-color: #34acbd;
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500246}
247
Nicolas Jager540a5112016-01-15 15:54:34 -0500248QScrollBar:vertical{
249 background: rgb(242, 242, 242);
250 width:10px;
251}
252
253QScrollBar::handle:vertical{
254 background: rgb(77, 77, 77);
255}
Nicolas Jagerd0b33752016-01-17 00:00:40 -0500256
Nicolas Jager6cdeba92016-03-05 18:05:53 -0500257QDialog#WizardDialog, QWidget#welcomePage{
258 background: rgb(242, 242, 242);
259 background-image : url(:/images/background-light.png);
260 background-repeat : repeat-x;
261 background-position: bottom;
262}
263
Nicolas Jager0a9fc602016-03-11 18:35:42 -0500264QDialog#CallUtilsDialog, QDialog#QualityDialog{
265 background: transparent;
266}
267
268QWidget#roundedFrame{
269 background-color: rgba(250, 250, 250, 0.8);
270 border-color: rgba(25, 25, 25, 1.0);
271 border-radius: 8px;
272 border:solid 1px;
273}
274
275QWidget#spike{
276 background-color: rgba(250, 250, 250, 0.8);
277 border-color: rgba(25, 25, 25, 1.0);
278}
279
280QListView#contactView{
281 background: transparent;
282}
283
Nicolas Jager6cdeba92016-03-05 18:05:53 -0500284QWidget#messagingPage{
Nicolas Jagerd0b33752016-01-17 00:00:40 -0500285 background: rgb(242, 242, 242);
286}
287
Nicolas Jager0a9fc602016-03-11 18:35:42 -0500288QPushButton#wizardButton, QPushButton#playButton, QPushButton#clearHistoryButton, QPushButton#doTransferButton,
Edric Milaret57467842016-08-30 13:06:11 -0400289QPushButton#checkUpdateButton, QPushButton#photoButton, QPushButton#takePhotoButton, QPushButton#importButton,
290QPushButton#existingPushButton, QPushButton#newAccountButton, QPushButton#previousButton, QPushButton#exportButton,
291QPushButton#cancelAddButton, QPushButton#exportOnRingButton, QPushButton#addDeviceButton, QPushButton#exportEndedOkButton{
Nicolas Jager032c0002016-02-18 16:38:09 -0500292 background-color: #3AC0D2;
293 border: 0px;
294 color: white;
295 font: 14px;
Edric Milaret4097d2f2016-02-09 14:41:50 -0500296}
297
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500298QPushButton#wizardButton:hover, QPushButton#playButton:hover, QPushButton#clearHistoryButton:hover,
Edric Milaret25236d92016-03-28 09:40:58 -0400299QPushButton#doTransferButton:hover, QPushButton#photoButton:hover,
Edric Milaret57467842016-08-30 13:06:11 -0400300QPushButton#takePhotoButton:hover, QPushButton#importButton:hover,
301QPushButton#existingPushButton:hover, QPushButton#newAccountButton:hover, QPushButton#previousButton:hover,
302QPushButton#exportButton:hover, QPushButton#cancelAddButton:hover, QPushButton#exportOnRingButton:hover,
303QPushButton#addDeviceButton:hover, QPushButton#exportEndedOkButton:hover{
Nicolas Jager032c0002016-02-18 16:38:09 -0500304 background-color: #4dc6d6;
Edric Milaret4097d2f2016-02-09 14:41:50 -0500305}
306
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500307QPushButton#wizardButton:pressed, QPushButton#playButton:pressed, QPushButton#clearHistoryButton:pressed,
Edric Milaret25236d92016-03-28 09:40:58 -0400308QPushButton#doTransferButton:pressed, QPushButton#photoButton:pressed,
Edric Milaret57467842016-08-30 13:06:11 -0400309QPushButton#takePhotoButton:pressed, QPushButton#importButton:pressed,
310QPushButton#existingPushButton:pressed, QPushButton#newAccountButton:pressed, QPushButton#previousButton:pressed,
311QPushButton#exportButton:pressed, QPushButton#cancelAddButton:pressed, QPushButton#exportOnRingButton:pressed,
312QPushButton#addDeviceButton:pressed, QPushButton#exportEndedOkButton:pressed{
Nicolas Jager032c0002016-02-18 16:38:09 -0500313 background-color: #34acbd;
314}
315
Edric Milaret57467842016-08-30 13:06:11 -0400316QLineEdit#usernameEdit:enabled, QLineEdit#passwordEdit:enabled, QLineEdit#confirmPasswordEdit:enabled, QLineEdit#pinEdit:enabled{
Nicolas Jager032c0002016-02-18 16:38:09 -0500317 border-color: rgb(0, 192, 212);
318 border-radius: 5px;
319 border-width: 1px;
320 border-style: outset;
321 background-color: rgb(255, 255, 255);
322}
323
Edric Milaret57467842016-08-30 13:06:11 -0400324QLineEdit#usernameEdit:disabled, QLineEdit#passwordEdit:disabled, QLineEdit#confirmPasswordEdit:disabled, QLineEdit#pinEdit:disabled{
Nicolas Jager032c0002016-02-18 16:38:09 -0500325 border-color: rgb(159, 157, 154);
326 border-radius: 5px;
327 border-width: 1px;
328 border-style: outset;
329 background-color: rgb(239, 235, 231);
Nicolas Jagerd0b33752016-01-17 00:00:40 -0500330}
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500331
332QComboBox{
333 background: transparent;
334 border-radius: 0px;
335 border-style: solid;
336 border-width: 2px;
337 border-color: #414141;
338 border-top: transparent;
339 border-left: transparent;
340 border-right: transparent;
341 font: 11pt "Sans Serif";
342 padding: 2px;
343}
344
345QComboBox:focus{
346 border-color: #3AC0D2;
347}
348
349QComboBox::down-arrow{
350 border-radius: 0px;
351 border-style: solid;
352 border-width: 2px;
353 height: 36;
354 width : 36;
355 image: url(":/images/icons/ic_arrow_drop_down_black_18dp_2x.png");
356}
357
358QComboBox::drop-down{
359 border-radius: 0px;
360 width: 36px;
361}
362
363QRadioButton::indicator{
364 width: 12px;
365 height: 12px;
366 border-radius: 8px;
367 border-width: 2px;
368 border-style: solid;
369}
370
371QRadioButton::indicator:unchecked{
372 border-color: rgb(77, 77, 77);
373 background: transparent;
374}
375
376QRadioButton::indicator:checked{
377 background: #3AC0D2;
378 border-color: #3AC0D2;
379 image: url(":/images/icons/ic_check_white_18dp_2x.png");
380}
381
382QWidget#horizontalWidget{
383 background: transparent;
384}
385
386
387QPushButton#generalTabButton, QPushButton#videoTabButton, QPushButton#accountTabButton{
388 background: transparent;
389 color: rgb(77, 77, 77);
390 border-radius: 0px;
391 border-style: solid;
392 border-width: 2px;
393 border-color: #414141;
394 border-top: transparent;
395 border-left: transparent;
396 border-right: transparent;
397 font: 12pt "Sans Serif";
398 padding: 2px;
399}
400
401QTabBar::tab{
402 background: transparent;
403 color: rgb(77, 77, 77);
404 border-radius: 0px;
405 border-style: solid;
406 border-width: 2px;
407 border-color: #414141;
408 border-top: transparent;
409 border-left: transparent;
410 border-right: transparent;
411 font: 12pt "Sans Serif";
412 padding: 2px;
413 width : 130px;
414 height: 20px;
415}
416
417QTabWidget::tab-bar{
418 alignment: center;
419}
420QTabBar QToolButton{
421 height: 9;
422 width : 9;
423 background: transparent;
424}
425
426QTabBar QToolButton::left-arrow{
427 height: 9;
428 width : 9;
429 image: url(":/images/icons/ic_arrow_tab_previous_black_9dp_2x.png");
430}
431
432QTabBar QToolButton::right-arrow{
433 height: 9;
434 width : 9;
435 image: url(":/images/icons/ic_arrow_tab_next_black_9dp_2x.png");
436}
437
438QPushButton#generalTabButton:checked, QPushButton#videoTabButton:checked, QPushButton#accountTabButton:checked,
439QTabBar::tab:selected{
440 border-color: #3AC0D2;
441}
442
443QTabWidget::pane{
444 border: 0px;
445}
446
447QPushButton#generalTabButton:hover, QPushButton#videoTabButton:hover, QPushButton#accountTabButton:hover,
448QTabBar::tab:hover{
449 border-color:#4dc6d6;
450}
451
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500452QSpinBox#historyDaySettingsSpinBox, QSpinBox#lrcfg_tlsNegotiationTimeoutSec, QSpinBox#lrcfg_registrationExpire,
453QSpinBox#lrcfg_localPort, QSpinBox#lrcfg_publishedPort, QSpinBox#lrcfg_audioPortMin, QSpinBox#lrcfg_audioPortMax,
Nicolas Jager68d5ed12016-03-10 13:50:44 -0500454QSpinBox#lrcfg_videoPortMin, QSpinBox#lrcfg_videoPortMax, QSpinBox#intervalUpdateCheckSpinBox{
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500455 background: transparent;
456 border-radius: 0px;
457 border-style: solid;
458 border-width: 2px;
459 border-color: #414141;
460 border-top: transparent;
461 border-left: transparent;
462 border-right: transparent;
463 font: 11pt "Sans Serif";
464 padding: 2px;
465}
466
467QSpinBox#historyDaySettingsSpinBox:focus, QSpinBox#lrcfg_tlsNegotiationTimeoutSec:focus,
468QSpinBox#lrcfg_registrationExpire:focus, QSpinBox#lrcfg_localPort:focus, QSpinBox#lrcfg_publishedPort:focus,
469QSpinBox#lrcfg_audioPortMin:focus, QSpinBox#lrcfg_audioPortMax:focus, QSpinBox#lrcfg_videoPortMin:focus,
470QSpinBox#lrcfg_videoPortMax:focus{
471 border-color: #3AC0D2;
472}
473
474QCheckBox::indicator{
475 height : 12 px;
476 width : 12 px;
477 border: 2px solid rgb(77, 77, 77);
478 border-radius: 4px;
479 background: none;
480}
481
482QCheckBox::indicator:checked{
483 border-color: #34acbd;
484 background: #34acbd;
485 image: url(":/images/icons/ic_check_white_18dp_2x.png");
486}
487
488QSpinBox::down-button{
489 height: 9;
490 width : 9;
Nicolas Jager68d5ed12016-03-10 13:50:44 -0500491 image: url(":/images/icons/ic_arrow_drop_down_black_9dp_2x.png");
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500492}
493
494QSpinBox::up-button{
495 height: 9;
496 width : 9;
Nicolas Jager68d5ed12016-03-10 13:50:44 -0500497 image: url(":/images/icons/ic_arrow_drop_up_black_9dp_2x.png");
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500498}
499
500QLineEdit#lrcfg_alias, QLineEdit#lrcfg_hostname, QLineEdit#lrcfg_password, QLineEdit#lrcfg_proxy,
501QLineEdit#lrcfg_mailbox, QLineEdit#lrcfg_tlsPassword, QLineEdit#lrcfg_tlsServerName,
502QLineEdit#lrcfg_turnServerRealm, QLineEdit#lrcfg_turnServerUsername, QLineEdit#lrcfg_turnServerPassword,
Edric Milaret9d877ab2016-04-11 11:15:56 -0400503QLineEdit#lrcfg_turnServer, QLineEdit#lrcfg_publishedAddress, QLineEdit#lrcfg_username{
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500504 background: transparent;
505 border-radius: 0px;
506 border-style: solid;
507 border-width: 2px;
508 border-color: #414141;
509 border-top: transparent;
510 border-left: transparent;
511 border-right: transparent;
512 font: 11pt "Sans Serif";
513 padding: 2px;
514}
515
Edric Milaret9d877ab2016-04-11 11:15:56 -0400516QLabel#typeValueLabel{
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500517 background: transparent;
518 font: 11pt "Sans Serif";
519 border-radius: 0px;
520 padding: 2px;
521}
522
523QLineEdit#lrcfg_alias:focus, QLineEdit#lrcfg_hostname:focus, QLineEdit#lrcfg_password:focus,
524QLineEdit#lrcfg_proxy:focus, QLineEdit#lrcfg_mailbox:focus, QLineEdit#lrcfg_tlsPassword:focus,
525QLineEdit#lrcfg_tlsServerName:focus, QLineEdit#lrcfg_turnServerRealm:focus, QLineEdit#lrcfg_turnServerUsername:focus,
Edric Milaret9d877ab2016-04-11 11:15:56 -0400526QLineEdit#lrcfg_turnServerPassword:focus, QLineEdit#lrcfg_turnServer:focus, QLineEdit#lrcfg_publishedAddress:focus,
527QLineEdit#lrcfg_username:focus{
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500528 border-color: #3AC0D2;
529}
530
531QTabWidget#tabWidget{
532 border-color: transparent;
533}
534
535QPushButton#upAudioButton, QPushButton#downAudioButton, QPushButton#upVideoButton, QPushButton#downVideoButton{
536 background: transparent;
537}
538
Edric Milaret25236d92016-03-28 09:40:58 -0400539QPushButton#avatarButton:hover {
540 border: 2px solid rgb(77, 77, 77);
541 border-radius: 37px;
542}
543
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500544QWidget#leftPannel{
545 background: white;
546}
547
548QSlider::groove:vertical{
549 background: red;
550 position: absolute; /* absolutely position 4px from the left and right of the widget. setting margins on the widget should work too... */
551 width:2px;
552}
553
554QSlider::handle:vertical{
555 height: 10px;
556 background: #3AC0D2;
557 border-radius: 5px;
558 margin: 0 -4px;
559}
560
561QSlider::sub-page:vertical{
562 background: #777777;
563}
564
565QSlider::add-page:vertical{
566 background: #3AC0D2;
567}
Edric Milarete19c4cd2016-02-12 10:19:44 -0500568
569QToolButton::menu-button {image:none;}
570
571QToolButton::menu-arrow {image:none;}