blob: 36a112e31ecee705d76575c32b61e4efdac4fc99 [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
Anthony Léonard955b9572016-11-10 13:28:39 -0500288QPushButton#nextButton, 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
Anthony Léonard955b9572016-11-10 13:28:39 -0500299QPushButton#nextButton:hover, QPushButton#playButton:hover, QPushButton#clearHistoryButton:hover,
Olivier SOLDANO257e0682016-11-09 13:59:04 -0500300QPushButton#checkUpdateButton:hover, QPushButton#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
Anthony Léonard955b9572016-11-10 13:28:39 -0500309QPushButton#nextButton:pressed, QPushButton#playButton:pressed, QPushButton#clearHistoryButton:pressed,
Olivier SOLDANO257e0682016-11-09 13:59:04 -0500310QPushButton#checkUpdateButton:pressed, QPushButton#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
Anthony Léonard955b9572016-11-10 13:28:39 -0500319QLineEdit#usernameEdit:enabled, QLineEdit#passwordEdit:enabled, QLineEdit#confirmPasswordEdit:enabled,
320QLineEdit#pinEdit:enabled, QLineEdit#fullNameEdit:enabled{
Nicolas Jager032c0002016-02-18 16:38:09 -0500321 border-color: rgb(0, 192, 212);
322 border-radius: 5px;
323 border-width: 1px;
324 border-style: outset;
325 background-color: rgb(255, 255, 255);
326}
327
Anthony Léonard955b9572016-11-10 13:28:39 -0500328QLineEdit#usernameEdit:disabled, QLineEdit#passwordEdit:disabled, QLineEdit#confirmPasswordEdit:disabled,
329QLineEdit#pinEdit:disabled, QLineEdit#fullNameEdit:disabled{
Nicolas Jager032c0002016-02-18 16:38:09 -0500330 border-color: rgb(159, 157, 154);
331 border-radius: 5px;
332 border-width: 1px;
333 border-style: outset;
334 background-color: rgb(239, 235, 231);
Nicolas Jagerd0b33752016-01-17 00:00:40 -0500335}
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500336
337QComboBox{
338 background: transparent;
339 border-radius: 0px;
340 border-style: solid;
341 border-width: 2px;
342 border-color: #414141;
343 border-top: transparent;
344 border-left: transparent;
345 border-right: transparent;
346 font: 11pt "Sans Serif";
347 padding: 2px;
348}
349
350QComboBox:focus{
351 border-color: #3AC0D2;
352}
353
354QComboBox::down-arrow{
355 border-radius: 0px;
356 border-style: solid;
357 border-width: 2px;
358 height: 36;
359 width : 36;
360 image: url(":/images/icons/ic_arrow_drop_down_black_18dp_2x.png");
361}
362
363QComboBox::drop-down{
364 border-radius: 0px;
365 width: 36px;
366}
367
368QRadioButton::indicator{
369 width: 12px;
370 height: 12px;
371 border-radius: 8px;
372 border-width: 2px;
373 border-style: solid;
374}
375
376QRadioButton::indicator:unchecked{
377 border-color: rgb(77, 77, 77);
378 background: transparent;
379}
380
381QRadioButton::indicator:checked{
382 background: #3AC0D2;
383 border-color: #3AC0D2;
384 image: url(":/images/icons/ic_check_white_18dp_2x.png");
385}
386
387QWidget#horizontalWidget{
388 background: transparent;
389}
390
391
392QPushButton#generalTabButton, QPushButton#videoTabButton, QPushButton#accountTabButton{
393 background: transparent;
394 color: rgb(77, 77, 77);
395 border-radius: 0px;
396 border-style: solid;
397 border-width: 2px;
398 border-color: #414141;
399 border-top: transparent;
400 border-left: transparent;
401 border-right: transparent;
402 font: 12pt "Sans Serif";
403 padding: 2px;
404}
405
406QTabBar::tab{
407 background: transparent;
408 color: rgb(77, 77, 77);
409 border-radius: 0px;
410 border-style: solid;
411 border-width: 2px;
412 border-color: #414141;
413 border-top: transparent;
414 border-left: transparent;
415 border-right: transparent;
416 font: 12pt "Sans Serif";
417 padding: 2px;
418 width : 130px;
419 height: 20px;
420}
421
422QTabWidget::tab-bar{
423 alignment: center;
424}
425QTabBar QToolButton{
426 height: 9;
427 width : 9;
428 background: transparent;
429}
430
431QTabBar QToolButton::left-arrow{
432 height: 9;
433 width : 9;
434 image: url(":/images/icons/ic_arrow_tab_previous_black_9dp_2x.png");
435}
436
437QTabBar QToolButton::right-arrow{
438 height: 9;
439 width : 9;
440 image: url(":/images/icons/ic_arrow_tab_next_black_9dp_2x.png");
441}
442
443QPushButton#generalTabButton:checked, QPushButton#videoTabButton:checked, QPushButton#accountTabButton:checked,
444QTabBar::tab:selected{
445 border-color: #3AC0D2;
446}
447
448QTabWidget::pane{
449 border: 0px;
450}
451
452QPushButton#generalTabButton:hover, QPushButton#videoTabButton:hover, QPushButton#accountTabButton:hover,
453QTabBar::tab:hover{
454 border-color:#4dc6d6;
455}
456
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500457QSpinBox#historyDaySettingsSpinBox, QSpinBox#lrcfg_tlsNegotiationTimeoutSec, QSpinBox#lrcfg_registrationExpire,
458QSpinBox#lrcfg_localPort, QSpinBox#lrcfg_publishedPort, QSpinBox#lrcfg_audioPortMin, QSpinBox#lrcfg_audioPortMax,
Nicolas Jager68d5ed12016-03-10 13:50:44 -0500459QSpinBox#lrcfg_videoPortMin, QSpinBox#lrcfg_videoPortMax, QSpinBox#intervalUpdateCheckSpinBox{
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500460 background: transparent;
461 border-radius: 0px;
462 border-style: solid;
463 border-width: 2px;
464 border-color: #414141;
465 border-top: transparent;
466 border-left: transparent;
467 border-right: transparent;
468 font: 11pt "Sans Serif";
469 padding: 2px;
470}
471
472QSpinBox#historyDaySettingsSpinBox:focus, QSpinBox#lrcfg_tlsNegotiationTimeoutSec:focus,
473QSpinBox#lrcfg_registrationExpire:focus, QSpinBox#lrcfg_localPort:focus, QSpinBox#lrcfg_publishedPort:focus,
474QSpinBox#lrcfg_audioPortMin:focus, QSpinBox#lrcfg_audioPortMax:focus, QSpinBox#lrcfg_videoPortMin:focus,
475QSpinBox#lrcfg_videoPortMax:focus{
476 border-color: #3AC0D2;
477}
478
479QCheckBox::indicator{
480 height : 12 px;
481 width : 12 px;
482 border: 2px solid rgb(77, 77, 77);
483 border-radius: 4px;
484 background: none;
485}
486
487QCheckBox::indicator:checked{
488 border-color: #34acbd;
489 background: #34acbd;
490 image: url(":/images/icons/ic_check_white_18dp_2x.png");
491}
492
493QSpinBox::down-button{
494 height: 9;
495 width : 9;
Nicolas Jager68d5ed12016-03-10 13:50:44 -0500496 image: url(":/images/icons/ic_arrow_drop_down_black_9dp_2x.png");
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500497}
498
499QSpinBox::up-button{
500 height: 9;
501 width : 9;
Nicolas Jager68d5ed12016-03-10 13:50:44 -0500502 image: url(":/images/icons/ic_arrow_drop_up_black_9dp_2x.png");
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500503}
504
505QLineEdit#lrcfg_alias, QLineEdit#lrcfg_hostname, QLineEdit#lrcfg_password, QLineEdit#lrcfg_proxy,
506QLineEdit#lrcfg_mailbox, QLineEdit#lrcfg_tlsPassword, QLineEdit#lrcfg_tlsServerName,
507QLineEdit#lrcfg_turnServerRealm, QLineEdit#lrcfg_turnServerUsername, QLineEdit#lrcfg_turnServerPassword,
Anthony Léonard5107a692016-11-04 13:20:37 -0400508QLineEdit#lrcfg_turnServer, QLineEdit#lrcfg_publishedAddress, QLineEdit#lrcfg_registeredName,
Anthony Léonard44338762016-11-15 11:22:27 -0500509QLineEdit#lrcfg_nameServiceURL, QLineEdit#lrcfg_username{
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500510 background: transparent;
511 border-radius: 0px;
512 border-style: solid;
513 border-width: 2px;
514 border-color: #414141;
515 border-top: transparent;
516 border-left: transparent;
517 border-right: transparent;
518 font: 11pt "Sans Serif";
519 padding: 2px;
520}
521
Edric Milaret9d877ab2016-04-11 11:15:56 -0400522QLabel#typeValueLabel{
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500523 background: transparent;
524 font: 11pt "Sans Serif";
525 border-radius: 0px;
526 padding: 2px;
527}
528
529QLineEdit#lrcfg_alias:focus, QLineEdit#lrcfg_hostname:focus, QLineEdit#lrcfg_password:focus,
530QLineEdit#lrcfg_proxy:focus, QLineEdit#lrcfg_mailbox:focus, QLineEdit#lrcfg_tlsPassword:focus,
531QLineEdit#lrcfg_tlsServerName:focus, QLineEdit#lrcfg_turnServerRealm:focus, QLineEdit#lrcfg_turnServerUsername:focus,
Edric Milaret9d877ab2016-04-11 11:15:56 -0400532QLineEdit#lrcfg_turnServerPassword:focus, QLineEdit#lrcfg_turnServer:focus, QLineEdit#lrcfg_publishedAddress:focus,
Anthony Léonard44338762016-11-15 11:22:27 -0500533QLineEdit#lrcfg_registeredName:focus, QLineEdit#lrcfg_nameServiceURL:focus, QLineEdit#lrcfg_username:focus{
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500534 border-color: #3AC0D2;
535}
536
537QTabWidget#tabWidget{
538 border-color: transparent;
539}
540
541QPushButton#upAudioButton, QPushButton#downAudioButton, QPushButton#upVideoButton, QPushButton#downVideoButton{
542 background: transparent;
543}
544
Edric Milaret25236d92016-03-28 09:40:58 -0400545QPushButton#avatarButton:hover {
546 border: 2px solid rgb(77, 77, 77);
Anthony Léonard955b9572016-11-10 13:28:39 -0500547 border-radius: 50px;
Edric Milaret25236d92016-03-28 09:40:58 -0400548}
549
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500550QWidget#leftPannel{
551 background: white;
552}
553
554QSlider::groove:vertical{
555 background: red;
556 position: absolute; /* absolutely position 4px from the left and right of the widget. setting margins on the widget should work too... */
557 width:2px;
558}
559
560QSlider::handle:vertical{
561 height: 10px;
562 background: #3AC0D2;
563 border-radius: 5px;
564 margin: 0 -4px;
565}
566
567QSlider::sub-page:vertical{
568 background: #777777;
569}
570
571QSlider::add-page:vertical{
572 background: #3AC0D2;
573}
Edric Milarete19c4cd2016-02-12 10:19:44 -0500574
575QToolButton::menu-button {image:none;}
576
577QToolButton::menu-arrow {image:none;}