blob: 606bd44dbccc955a4e818ca228725a6998dba36c [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,
Anthony Léonardaa90e1a2016-10-12 11:24:17 -0400291QPushButton#cancelAddButton, QPushButton#exportOnRingButton, QPushButton#addDeviceButton, QPushButton#exportEndedOkButton,
292QPushButton#errorPushButton, QPushButton#registerButton{
Nicolas Jager032c0002016-02-18 16:38:09 -0500293 background-color: #3AC0D2;
294 border: 0px;
295 color: white;
296 font: 14px;
Edric Milaret4097d2f2016-02-09 14:41:50 -0500297}
298
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500299QPushButton#wizardButton:hover, QPushButton#playButton:hover, QPushButton#clearHistoryButton:hover,
Edric Milaret25236d92016-03-28 09:40:58 -0400300QPushButton#doTransferButton:hover, QPushButton#photoButton:hover,
Edric Milaret57467842016-08-30 13:06:11 -0400301QPushButton#takePhotoButton:hover, QPushButton#importButton:hover,
302QPushButton#existingPushButton:hover, QPushButton#newAccountButton:hover, QPushButton#previousButton:hover,
303QPushButton#exportButton:hover, QPushButton#cancelAddButton:hover, QPushButton#exportOnRingButton:hover,
Anthony Léonardaa90e1a2016-10-12 11:24:17 -0400304QPushButton#addDeviceButton:hover, QPushButton#exportEndedOkButton:hover, QPushButton#errorPushButton:hover,
305QPushButton#registerButton:hover{
Nicolas Jager032c0002016-02-18 16:38:09 -0500306 background-color: #4dc6d6;
Edric Milaret4097d2f2016-02-09 14:41:50 -0500307}
308
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500309QPushButton#wizardButton:pressed, QPushButton#playButton:pressed, QPushButton#clearHistoryButton:pressed,
Edric Milaret25236d92016-03-28 09:40:58 -0400310QPushButton#doTransferButton:pressed, QPushButton#photoButton:pressed,
Edric Milaret57467842016-08-30 13:06:11 -0400311QPushButton#takePhotoButton:pressed, QPushButton#importButton:pressed,
312QPushButton#existingPushButton:pressed, QPushButton#newAccountButton:pressed, QPushButton#previousButton:pressed,
313QPushButton#exportButton:pressed, QPushButton#cancelAddButton:pressed, QPushButton#exportOnRingButton:pressed,
Anthony Léonardaa90e1a2016-10-12 11:24:17 -0400314QPushButton#addDeviceButton:pressed, QPushButton#exportEndedOkButton:pressed, QPushButton#errorPushButton:pressed,
315QPushButton#registerButton:pressed{
Nicolas Jager032c0002016-02-18 16:38:09 -0500316 background-color: #34acbd;
317}
318
Edric Milaret57467842016-08-30 13:06:11 -0400319QLineEdit#usernameEdit:enabled, QLineEdit#passwordEdit:enabled, QLineEdit#confirmPasswordEdit:enabled, QLineEdit#pinEdit:enabled{
Nicolas Jager032c0002016-02-18 16:38:09 -0500320 border-color: rgb(0, 192, 212);
321 border-radius: 5px;
322 border-width: 1px;
323 border-style: outset;
324 background-color: rgb(255, 255, 255);
325}
326
Edric Milaret57467842016-08-30 13:06:11 -0400327QLineEdit#usernameEdit:disabled, QLineEdit#passwordEdit:disabled, QLineEdit#confirmPasswordEdit:disabled, QLineEdit#pinEdit:disabled{
Nicolas Jager032c0002016-02-18 16:38:09 -0500328 border-color: rgb(159, 157, 154);
329 border-radius: 5px;
330 border-width: 1px;
331 border-style: outset;
332 background-color: rgb(239, 235, 231);
Nicolas Jagerd0b33752016-01-17 00:00:40 -0500333}
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500334
335QComboBox{
336 background: transparent;
337 border-radius: 0px;
338 border-style: solid;
339 border-width: 2px;
340 border-color: #414141;
341 border-top: transparent;
342 border-left: transparent;
343 border-right: transparent;
344 font: 11pt "Sans Serif";
345 padding: 2px;
346}
347
348QComboBox:focus{
349 border-color: #3AC0D2;
350}
351
352QComboBox::down-arrow{
353 border-radius: 0px;
354 border-style: solid;
355 border-width: 2px;
356 height: 36;
357 width : 36;
358 image: url(":/images/icons/ic_arrow_drop_down_black_18dp_2x.png");
359}
360
361QComboBox::drop-down{
362 border-radius: 0px;
363 width: 36px;
364}
365
366QRadioButton::indicator{
367 width: 12px;
368 height: 12px;
369 border-radius: 8px;
370 border-width: 2px;
371 border-style: solid;
372}
373
374QRadioButton::indicator:unchecked{
375 border-color: rgb(77, 77, 77);
376 background: transparent;
377}
378
379QRadioButton::indicator:checked{
380 background: #3AC0D2;
381 border-color: #3AC0D2;
382 image: url(":/images/icons/ic_check_white_18dp_2x.png");
383}
384
385QWidget#horizontalWidget{
386 background: transparent;
387}
388
389
390QPushButton#generalTabButton, QPushButton#videoTabButton, QPushButton#accountTabButton{
391 background: transparent;
392 color: rgb(77, 77, 77);
393 border-radius: 0px;
394 border-style: solid;
395 border-width: 2px;
396 border-color: #414141;
397 border-top: transparent;
398 border-left: transparent;
399 border-right: transparent;
400 font: 12pt "Sans Serif";
401 padding: 2px;
402}
403
404QTabBar::tab{
405 background: transparent;
406 color: rgb(77, 77, 77);
407 border-radius: 0px;
408 border-style: solid;
409 border-width: 2px;
410 border-color: #414141;
411 border-top: transparent;
412 border-left: transparent;
413 border-right: transparent;
414 font: 12pt "Sans Serif";
415 padding: 2px;
416 width : 130px;
417 height: 20px;
418}
419
420QTabWidget::tab-bar{
421 alignment: center;
422}
423QTabBar QToolButton{
424 height: 9;
425 width : 9;
426 background: transparent;
427}
428
429QTabBar QToolButton::left-arrow{
430 height: 9;
431 width : 9;
432 image: url(":/images/icons/ic_arrow_tab_previous_black_9dp_2x.png");
433}
434
435QTabBar QToolButton::right-arrow{
436 height: 9;
437 width : 9;
438 image: url(":/images/icons/ic_arrow_tab_next_black_9dp_2x.png");
439}
440
441QPushButton#generalTabButton:checked, QPushButton#videoTabButton:checked, QPushButton#accountTabButton:checked,
442QTabBar::tab:selected{
443 border-color: #3AC0D2;
444}
445
446QTabWidget::pane{
447 border: 0px;
448}
449
450QPushButton#generalTabButton:hover, QPushButton#videoTabButton:hover, QPushButton#accountTabButton:hover,
451QTabBar::tab:hover{
452 border-color:#4dc6d6;
453}
454
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500455QSpinBox#historyDaySettingsSpinBox, QSpinBox#lrcfg_tlsNegotiationTimeoutSec, QSpinBox#lrcfg_registrationExpire,
456QSpinBox#lrcfg_localPort, QSpinBox#lrcfg_publishedPort, QSpinBox#lrcfg_audioPortMin, QSpinBox#lrcfg_audioPortMax,
Nicolas Jager68d5ed12016-03-10 13:50:44 -0500457QSpinBox#lrcfg_videoPortMin, QSpinBox#lrcfg_videoPortMax, QSpinBox#intervalUpdateCheckSpinBox{
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500458 background: transparent;
459 border-radius: 0px;
460 border-style: solid;
461 border-width: 2px;
462 border-color: #414141;
463 border-top: transparent;
464 border-left: transparent;
465 border-right: transparent;
466 font: 11pt "Sans Serif";
467 padding: 2px;
468}
469
470QSpinBox#historyDaySettingsSpinBox:focus, QSpinBox#lrcfg_tlsNegotiationTimeoutSec:focus,
471QSpinBox#lrcfg_registrationExpire:focus, QSpinBox#lrcfg_localPort:focus, QSpinBox#lrcfg_publishedPort:focus,
472QSpinBox#lrcfg_audioPortMin:focus, QSpinBox#lrcfg_audioPortMax:focus, QSpinBox#lrcfg_videoPortMin:focus,
473QSpinBox#lrcfg_videoPortMax:focus{
474 border-color: #3AC0D2;
475}
476
477QCheckBox::indicator{
478 height : 12 px;
479 width : 12 px;
480 border: 2px solid rgb(77, 77, 77);
481 border-radius: 4px;
482 background: none;
483}
484
485QCheckBox::indicator:checked{
486 border-color: #34acbd;
487 background: #34acbd;
488 image: url(":/images/icons/ic_check_white_18dp_2x.png");
489}
490
491QSpinBox::down-button{
492 height: 9;
493 width : 9;
Nicolas Jager68d5ed12016-03-10 13:50:44 -0500494 image: url(":/images/icons/ic_arrow_drop_down_black_9dp_2x.png");
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500495}
496
497QSpinBox::up-button{
498 height: 9;
499 width : 9;
Nicolas Jager68d5ed12016-03-10 13:50:44 -0500500 image: url(":/images/icons/ic_arrow_drop_up_black_9dp_2x.png");
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500501}
502
503QLineEdit#lrcfg_alias, QLineEdit#lrcfg_hostname, QLineEdit#lrcfg_password, QLineEdit#lrcfg_proxy,
504QLineEdit#lrcfg_mailbox, QLineEdit#lrcfg_tlsPassword, QLineEdit#lrcfg_tlsServerName,
505QLineEdit#lrcfg_turnServerRealm, QLineEdit#lrcfg_turnServerUsername, QLineEdit#lrcfg_turnServerPassword,
Anthony Léonard5107a692016-11-04 13:20:37 -0400506QLineEdit#lrcfg_turnServer, QLineEdit#lrcfg_publishedAddress, QLineEdit#lrcfg_registeredName,
507QLineEdit#lrcfg_nameServiceURL{
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500508 background: transparent;
509 border-radius: 0px;
510 border-style: solid;
511 border-width: 2px;
512 border-color: #414141;
513 border-top: transparent;
514 border-left: transparent;
515 border-right: transparent;
516 font: 11pt "Sans Serif";
517 padding: 2px;
518}
519
Edric Milaret9d877ab2016-04-11 11:15:56 -0400520QLabel#typeValueLabel{
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500521 background: transparent;
522 font: 11pt "Sans Serif";
523 border-radius: 0px;
524 padding: 2px;
525}
526
527QLineEdit#lrcfg_alias:focus, QLineEdit#lrcfg_hostname:focus, QLineEdit#lrcfg_password:focus,
528QLineEdit#lrcfg_proxy:focus, QLineEdit#lrcfg_mailbox:focus, QLineEdit#lrcfg_tlsPassword:focus,
529QLineEdit#lrcfg_tlsServerName:focus, QLineEdit#lrcfg_turnServerRealm:focus, QLineEdit#lrcfg_turnServerUsername:focus,
Edric Milaret9d877ab2016-04-11 11:15:56 -0400530QLineEdit#lrcfg_turnServerPassword:focus, QLineEdit#lrcfg_turnServer:focus, QLineEdit#lrcfg_publishedAddress:focus,
Anthony Léonard5107a692016-11-04 13:20:37 -0400531QLineEdit#lrcfg_registeredName:focus, QLineEdit#lrcfg_nameServiceURL:focus{
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500532 border-color: #3AC0D2;
533}
534
535QTabWidget#tabWidget{
536 border-color: transparent;
537}
538
539QPushButton#upAudioButton, QPushButton#downAudioButton, QPushButton#upVideoButton, QPushButton#downVideoButton{
540 background: transparent;
541}
542
Edric Milaret25236d92016-03-28 09:40:58 -0400543QPushButton#avatarButton:hover {
544 border: 2px solid rgb(77, 77, 77);
545 border-radius: 37px;
546}
547
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500548QWidget#leftPannel{
549 background: white;
550}
551
552QSlider::groove:vertical{
553 background: red;
554 position: absolute; /* absolutely position 4px from the left and right of the widget. setting margins on the widget should work too... */
555 width:2px;
556}
557
558QSlider::handle:vertical{
559 height: 10px;
560 background: #3AC0D2;
561 border-radius: 5px;
562 margin: 0 -4px;
563}
564
565QSlider::sub-page:vertical{
566 background: #777777;
567}
568
569QSlider::add-page:vertical{
570 background: #3AC0D2;
571}
Edric Milarete19c4cd2016-02-12 10:19:44 -0500572
573QToolButton::menu-button {image:none;}
574
575QToolButton::menu-arrow {image:none;}