blob: 35f6afdd573209d63442101442a3d8f3ea61040e [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 Jager74fe46f2016-02-29 14:55:09 -050057SmartList, QListView#contactView{
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 Jager74fe46f2016-02-29 14:55:09 -0500128QLineEdit#messageEdit, QLineEdit#imMessageEdit, QLineEdit#numberBar{
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 Jager1ddb38d2016-01-20 11:11:49 -0500136QPushButton#holdButton, QPushButton#chatButton, QPushButton#noMicButton, QPushButton#noVideoButton,
Edric Milareta5fe70f2016-02-05 15:03:31 -0500137QPushButton#transferButton, QPushButton#addPersonButton, QPushButton#joinButton,
138QPushButton#qualityButton, QPushButton#recButton{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500139 background-color: rgba(0, 0, 0, 140);
140 border-radius: 18px;
141 border:solid 1px;
Edric Milaret627500d2015-03-27 16:41:40 -0400142}
143
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500144QPushButton#holdButton:hover, QPushButton#chatButton:hover, QPushButton#noMicButton:hover,
145QPushButton#noVideoButton:hover, QPushButton#transferButton:hover, QPushButton#addPersonButton:hover,
146QPushButton#joinButton:hover, QPushButton#qualityButton:hover, QPushButton#addToContactButton:hover,
147QPushButton#recButton:hover{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500148 background-color: rgba(0, 192, 213, 0.6);
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500149}
150
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500151QPushButton#holdButton:pressed, QPushButton#chatButton:pressed, QPushButton#noMicButton:pressed,
152QPushButton#noVideoButton:pressed, QPushButton#transferButton:pressed, QPushButton#addPersonButton:pressed,
153QPushButton#joinButton:pressed, QPushButton#qualityButton:pressed, QPushButton#addToContactButton:pressed,
154QPushButton#recButton:pressed{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500155 background-color: rgba(0, 192, 213, 0.8);
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500156}
157
Edric Milareta5fe70f2016-02-05 15:03:31 -0500158QPushButton#holdButton:checked, QPushButton#noMicButton:checked,
159QPushButton#noVideoButton:checked, QPushButton#recButton:checked,
160QPushButton#chatButton:checked{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500161 background-color: rgba(0, 192, 213, 0.8);
Edric Milaret627500d2015-03-27 16:41:40 -0400162}
163
Nicolas Jagerb98066a2016-01-15 12:10:08 -0500164QPushButton#hangupButton{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500165 background-color: rgba(200, 0, 0, 0.6);
166 border-radius: 18px;
167 border:solid 1px;
Edric Milaret627500d2015-03-27 16:41:40 -0400168}
169
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500170QPushButton#hangupButton:hover{
171 background-color: rgba(255, 0, 0, 0.6);
Edric Milaret627500d2015-03-27 16:41:40 -0400172}
173
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500174QPushButton#hangupButton:pressed{
175 background-color: rgba(255, 0, 0, 0.8);
Edric Milaret12353822015-05-14 14:41:09 -0400176}
Edric Milareta0ebd062016-01-13 12:18:23 -0500177
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500178QPushButton#exitSettingsButton, QPushButton#settingsButton, QPushButton#addToContactButton,
179QPushButton#imBackButton, QPushButton#copyCMButton, QPushButton#shareButton{
Nicolas Jager032c0002016-02-18 16:38:09 -0500180 background-color: #414141;
181 border-radius: 15px;
182 border:solid 1px;
Edric Milareta0ebd062016-01-13 12:18:23 -0500183}
Edric Milaret864a2052016-01-14 15:45:03 -0500184
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500185QPushButton#exitSettingsButton:hover, QPushButton#settingsButton:hover, QPushButton#imBackButton:hover,
186QPushButton#copyCMButton:hover, QPushButton#shareButton:hover{
Nicolas Jager032c0002016-02-18 16:38:09 -0500187 background-color: #515151;
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500188}
189
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500190QPushButton#exitSettingsButton:pressed, QPushButton#settingsButton:pressed, QToolButton#imBackButton:pressed,
191QPushButton#copyCMButton:pressed, QPushButton#shareButton:pressed{
Nicolas Jager032c0002016-02-18 16:38:09 -0500192 background-color: #313131;
Edric Milaret864a2052016-01-14 15:45:03 -0500193}
Nicolas Jager540a5112016-01-15 15:54:34 -0500194
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500195QPushButton#deleteAccountButton, QToolButton#addAccountButton{
196 background: transparent;
197}
198
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500199QPushButton#btnvideo{
Nicolas Jager032c0002016-02-18 16:38:09 -0500200 background-color: #3AC0D2;
201 border-radius: 15px;
202 border:solid 1px;
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500203}
204
Edric Milaret6a785af2016-03-07 15:39:30 -0500205QPushButton#btnCall, QPushButton#btnComBarVideo,
206QPushButton#sendButton, QPushButton#sendIMButton{
Nicolas Jager5e8c3822016-02-05 17:01:49 -0500207 background-color: #3AC0D2;
208 border-radius: 15px;
209 border:solid 1px;
210}
211
Edric Milaret6a785af2016-03-07 15:39:30 -0500212QPushButton#btnCall:hover, QPushButton#sendButton:hover,
213QPushButton#sendIMButton:hover, QPushButton#btnComBarVideo:hover{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500214 background-color: #4dc6d6;
215}
216
Edric Milaret6a785af2016-03-07 15:39:30 -0500217QPushButton#btnCall:pressed, QPushButton#sendButton:pressed,
218QPushButton#sendIMButton:pressed, QPushButton#btnComBarVideo:pressed{
Nicolas Jager5e8c3822016-02-05 17:01:49 -0500219 background-color: #34acbd;
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500220}
221
Nicolas Jager540a5112016-01-15 15:54:34 -0500222QScrollBar:vertical{
223 background: rgb(242, 242, 242);
224 width:10px;
225}
226
227QScrollBar::handle:vertical{
228 background: rgb(77, 77, 77);
229}
Nicolas Jagerd0b33752016-01-17 00:00:40 -0500230
Nicolas Jager6cdeba92016-03-05 18:05:53 -0500231QDialog#WizardDialog, QWidget#welcomePage{
232 background: rgb(242, 242, 242);
233 background-image : url(:/images/background-light.png);
234 background-repeat : repeat-x;
235 background-position: bottom;
236}
237
238QWidget#messagingPage{
Nicolas Jagerd0b33752016-01-17 00:00:40 -0500239 background: rgb(242, 242, 242);
240}
241
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500242QPushButton#wizardButton, QPushButton#playButton, QPushButton#clearHistoryButton, QPushButton#doTransferButton{
Nicolas Jager032c0002016-02-18 16:38:09 -0500243 background-color: #3AC0D2;
244 border: 0px;
245 color: white;
246 font: 14px;
Edric Milaret4097d2f2016-02-09 14:41:50 -0500247}
248
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500249QPushButton#wizardButton:hover, QPushButton#playButton:hover, QPushButton#clearHistoryButton:hover,
250QPushButton#doTransferButton:hover{
Nicolas Jager032c0002016-02-18 16:38:09 -0500251 background-color: #4dc6d6;
Edric Milaret4097d2f2016-02-09 14:41:50 -0500252}
253
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500254QPushButton#wizardButton:pressed, QPushButton#playButton:pressed, QPushButton#clearHistoryButton:pressed,
255QPushButton#doTransferButton:pressed{
Nicolas Jager032c0002016-02-18 16:38:09 -0500256 background-color: #34acbd;
257}
258
259QLineEdit#usernameEdit:enabled{
260 border-color: rgb(0, 192, 212);
261 border-radius: 5px;
262 border-width: 1px;
263 border-style: outset;
264 background-color: rgb(255, 255, 255);
265}
266
267QLineEdit#usernameEdit:disabled{
268 border-color: rgb(159, 157, 154);
269 border-radius: 5px;
270 border-width: 1px;
271 border-style: outset;
272 background-color: rgb(239, 235, 231);
Nicolas Jagerd0b33752016-01-17 00:00:40 -0500273}
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500274
275QComboBox{
276 background: transparent;
277 border-radius: 0px;
278 border-style: solid;
279 border-width: 2px;
280 border-color: #414141;
281 border-top: transparent;
282 border-left: transparent;
283 border-right: transparent;
284 font: 11pt "Sans Serif";
285 padding: 2px;
286}
287
288QComboBox:focus{
289 border-color: #3AC0D2;
290}
291
292QComboBox::down-arrow{
293 border-radius: 0px;
294 border-style: solid;
295 border-width: 2px;
296 height: 36;
297 width : 36;
298 image: url(":/images/icons/ic_arrow_drop_down_black_18dp_2x.png");
299}
300
301QComboBox::drop-down{
302 border-radius: 0px;
303 width: 36px;
304}
305
306QRadioButton::indicator{
307 width: 12px;
308 height: 12px;
309 border-radius: 8px;
310 border-width: 2px;
311 border-style: solid;
312}
313
314QRadioButton::indicator:unchecked{
315 border-color: rgb(77, 77, 77);
316 background: transparent;
317}
318
319QRadioButton::indicator:checked{
320 background: #3AC0D2;
321 border-color: #3AC0D2;
322 image: url(":/images/icons/ic_check_white_18dp_2x.png");
323}
324
325QWidget#horizontalWidget{
326 background: transparent;
327}
328
329
330QPushButton#generalTabButton, QPushButton#videoTabButton, QPushButton#accountTabButton{
331 background: transparent;
332 color: rgb(77, 77, 77);
333 border-radius: 0px;
334 border-style: solid;
335 border-width: 2px;
336 border-color: #414141;
337 border-top: transparent;
338 border-left: transparent;
339 border-right: transparent;
340 font: 12pt "Sans Serif";
341 padding: 2px;
342}
343
344QTabBar::tab{
345 background: transparent;
346 color: rgb(77, 77, 77);
347 border-radius: 0px;
348 border-style: solid;
349 border-width: 2px;
350 border-color: #414141;
351 border-top: transparent;
352 border-left: transparent;
353 border-right: transparent;
354 font: 12pt "Sans Serif";
355 padding: 2px;
356 width : 130px;
357 height: 20px;
358}
359
360QTabWidget::tab-bar{
361 alignment: center;
362}
363QTabBar QToolButton{
364 height: 9;
365 width : 9;
366 background: transparent;
367}
368
369QTabBar QToolButton::left-arrow{
370 height: 9;
371 width : 9;
372 image: url(":/images/icons/ic_arrow_tab_previous_black_9dp_2x.png");
373}
374
375QTabBar QToolButton::right-arrow{
376 height: 9;
377 width : 9;
378 image: url(":/images/icons/ic_arrow_tab_next_black_9dp_2x.png");
379}
380
381QPushButton#generalTabButton:checked, QPushButton#videoTabButton:checked, QPushButton#accountTabButton:checked,
382QTabBar::tab:selected{
383 border-color: #3AC0D2;
384}
385
386QTabWidget::pane{
387 border: 0px;
388}
389
390QPushButton#generalTabButton:hover, QPushButton#videoTabButton:hover, QPushButton#accountTabButton:hover,
391QTabBar::tab:hover{
392 border-color:#4dc6d6;
393}
394
395QPushButton#recordPath, QPushButton#lrcfg_tlsCaListCertificate, QPushButton#lrcfg_tlsCertificate,
396QPushButton#lrcfg_tlsPrivateKeyCertificate, QPushButton#tlsProtocoCombo, QPushButton#keyExchangeModelCombo{
397 color: rgb(77, 77, 77);
398 border-radius: 0px;
399 border-style: solid;
400 border-width: 2px;
401 border-color: #414141;
402 border-top: transparent;
403 border-left: transparent;
404 border-right: transparent;
405 font: 11pt "Sans Serif";
406 padding: 2px;
407}
408
409QSpinBox#historyDaySettingsSpinBox, QSpinBox#lrcfg_tlsNegotiationTimeoutSec, QSpinBox#lrcfg_registrationExpire,
410QSpinBox#lrcfg_localPort, QSpinBox#lrcfg_publishedPort, QSpinBox#lrcfg_audioPortMin, QSpinBox#lrcfg_audioPortMax,
411QSpinBox#lrcfg_videoPortMin, QSpinBox#lrcfg_videoPortMax{
412 background: transparent;
413 border-radius: 0px;
414 border-style: solid;
415 border-width: 2px;
416 border-color: #414141;
417 border-top: transparent;
418 border-left: transparent;
419 border-right: transparent;
420 font: 11pt "Sans Serif";
421 padding: 2px;
422}
423
424QSpinBox#historyDaySettingsSpinBox:focus, QSpinBox#lrcfg_tlsNegotiationTimeoutSec:focus,
425QSpinBox#lrcfg_registrationExpire:focus, QSpinBox#lrcfg_localPort:focus, QSpinBox#lrcfg_publishedPort:focus,
426QSpinBox#lrcfg_audioPortMin:focus, QSpinBox#lrcfg_audioPortMax:focus, QSpinBox#lrcfg_videoPortMin:focus,
427QSpinBox#lrcfg_videoPortMax:focus{
428 border-color: #3AC0D2;
429}
430
431QCheckBox::indicator{
432 height : 12 px;
433 width : 12 px;
434 border: 2px solid rgb(77, 77, 77);
435 border-radius: 4px;
436 background: none;
437}
438
439QCheckBox::indicator:checked{
440 border-color: #34acbd;
441 background: #34acbd;
442 image: url(":/images/icons/ic_check_white_18dp_2x.png");
443}
444
445QSpinBox::down-button{
446 height: 9;
447 width : 9;
448 image: url(":/images/icons/ic_arrow_drop_down_black_18dp_2x.png");
449}
450
451QSpinBox::up-button{
452 height: 9;
453 width : 9;
454 image: url(":/images/icons/ic_arrow_drop_up_black_18dp_2x.png");
455}
456
457QSpinBox::down-button{
458 height: 9;
459 width : 9;
460 image: url(":/images/icons/ic_arrow_drop_down_black_18dp_2x.png");
461}
462
463QLineEdit#lrcfg_alias, QLineEdit#lrcfg_hostname, QLineEdit#lrcfg_password, QLineEdit#lrcfg_proxy,
464QLineEdit#lrcfg_mailbox, QLineEdit#lrcfg_tlsPassword, QLineEdit#lrcfg_tlsServerName,
465QLineEdit#lrcfg_turnServerRealm, QLineEdit#lrcfg_turnServerUsername, QLineEdit#lrcfg_turnServerPassword,
466QLineEdit#lrcfg_turnServer, QLineEdit#lrcfg_publishedAddress{
467 background: transparent;
468 border-radius: 0px;
469 border-style: solid;
470 border-width: 2px;
471 border-color: #414141;
472 border-top: transparent;
473 border-left: transparent;
474 border-right: transparent;
475 font: 11pt "Sans Serif";
476 padding: 2px;
477}
478
479QLabel#typeValueLabel, QLineEdit#lrcfg_username{
480 background: transparent;
481 font: 11pt "Sans Serif";
482 border-radius: 0px;
483 padding: 2px;
484}
485
486QLineEdit#lrcfg_alias:focus, QLineEdit#lrcfg_hostname:focus, QLineEdit#lrcfg_password:focus,
487QLineEdit#lrcfg_proxy:focus, QLineEdit#lrcfg_mailbox:focus, QLineEdit#lrcfg_tlsPassword:focus,
488QLineEdit#lrcfg_tlsServerName:focus, QLineEdit#lrcfg_turnServerRealm:focus, QLineEdit#lrcfg_turnServerUsername:focus,
489QLineEdit#lrcfg_turnServerPassword:focus, QLineEdit#lrcfg_turnServer:focus, QLineEdit#lrcfg_publishedAddress:focus{
490 border-color: #3AC0D2;
491}
492
493QTabWidget#tabWidget{
494 border-color: transparent;
495}
496
497QPushButton#upAudioButton, QPushButton#downAudioButton, QPushButton#upVideoButton, QPushButton#downVideoButton{
498 background: transparent;
499}
500
501QWidget#leftPannel{
502 background: white;
503}
504
505QSlider::groove:vertical{
506 background: red;
507 position: absolute; /* absolutely position 4px from the left and right of the widget. setting margins on the widget should work too... */
508 width:2px;
509}
510
511QSlider::handle:vertical{
512 height: 10px;
513 background: #3AC0D2;
514 border-radius: 5px;
515 margin: 0 -4px;
516}
517
518QSlider::sub-page:vertical{
519 background: #777777;
520}
521
522QSlider::add-page:vertical{
523 background: #3AC0D2;
524}