blob: ceef3ea4502544caa7040a4c3b448f2421c9a5c6 [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
Olivier SOLDANO47aa97f2017-04-04 10:40:00 -040013QPushButton#searchBtn:hover, QPushButton#acceptButton:hover{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -050014 background-color: #5db761;
Edric Milaret627500d2015-03-27 16:41:40 -040015}
16
Olivier SOLDANO47aa97f2017-04-04 10:40:00 -040017QPushButton#searchBtn:pressed, QPushButton#acceptButton:pressed{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -050018 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
Olivier SOLDANO69361192017-04-20 10:32:05 -040057SmartList, ContactRequestListWidget{
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
Anthony Léonardf95f7f62017-04-04 11:01:51 -0400109SmartList::item:selected, QListView#accountView::item:selected, QListView#contactView::item:selected,
Olivier SOLDANO69361192017-04-20 10:32:05 -0400110QTreeView#contactRequestList::item:selected{
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500111 background-color: rgba(220, 220, 220, 255);
112 border: none;
113}
114
Anthony Léonardf95f7f62017-04-04 11:01:51 -0400115SmartList::item:hover, QListView#accountView::item:hover, QListView#contactView::item:hover,
Olivier SOLDANO69361192017-04-20 10:32:05 -0400116QTreeView#contactRequestList::item:hover{
Nicolas Jagerd0b33752016-01-17 00:00:40 -0500117 background-color: rgba(242, 242, 242, 255);
Edric Milareta0ebd062016-01-13 12:18:23 -0500118}
119
Nicolas Jagerb98066a2016-01-15 12:10:08 -0500120QListView#listMessageView::item:hover{
Nicolas Jagerd0b33752016-01-17 00:00:40 -0500121 background-color: rgba(229, 229, 229, 255);
122 border-radius: 18px;
123}
124
125QListView#listMessageView{
126 background: rgb(242, 242, 242);
127 border-top: 1px solid rgb(229, 229, 229);
128}
129
Nicolas Jager0a9fc602016-03-11 18:35:42 -0500130QLineEdit#messageEdit, QLineEdit#imMessageEdit{
Nicolas Jagerd0b33752016-01-17 00:00:40 -0500131 border-color: rgb(0, 192, 212);
132 border-radius: 5px;
133 border-width: 1px;
134 border-style: outset;
135 background-color: rgb(255, 255, 255);
Edric Milaret816cc902015-10-21 10:59:34 -0400136}
137
Nicolas Jager0a9fc602016-03-11 18:35:42 -0500138QLineEdit#numberBar{
139 border-color: rgba(0, 192, 212, 0.6);
140 border-radius: 5px;
141 border-width: 2px;
142 border-style: outset;
143 background-color: rgba(255, 255, 255, 0.8)
144}
145
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500146QPushButton#holdButton, QPushButton#chatButton, QPushButton#noMicButton, QPushButton#noVideoButton,
Edric Milareta5fe70f2016-02-05 15:03:31 -0500147QPushButton#transferButton, QPushButton#addPersonButton, QPushButton#joinButton,
148QPushButton#qualityButton, QPushButton#recButton{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500149 background-color: rgba(0, 0, 0, 140);
150 border-radius: 18px;
151 border:solid 1px;
Edric Milaret627500d2015-03-27 16:41:40 -0400152}
153
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500154QPushButton#holdButton:hover, QPushButton#chatButton:hover, QPushButton#noMicButton:hover,
155QPushButton#noVideoButton:hover, QPushButton#transferButton:hover, QPushButton#addPersonButton:hover,
156QPushButton#joinButton:hover, QPushButton#qualityButton:hover, QPushButton#addToContactButton:hover,
157QPushButton#recButton:hover{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500158 background-color: rgba(0, 192, 213, 0.6);
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500159}
160
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500161QPushButton#holdButton:pressed, QPushButton#chatButton:pressed, QPushButton#noMicButton:pressed,
162QPushButton#noVideoButton:pressed, QPushButton#transferButton:pressed, QPushButton#addPersonButton:pressed,
163QPushButton#joinButton:pressed, QPushButton#qualityButton:pressed, QPushButton#addToContactButton:pressed,
164QPushButton#recButton:pressed{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500165 background-color: rgba(0, 192, 213, 0.8);
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500166}
167
Edric Milareta5fe70f2016-02-05 15:03:31 -0500168QPushButton#holdButton:checked, QPushButton#noMicButton:checked,
169QPushButton#noVideoButton:checked, QPushButton#recButton:checked,
170QPushButton#chatButton:checked{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500171 background-color: rgba(0, 192, 213, 0.8);
Edric Milaret627500d2015-03-27 16:41:40 -0400172}
173
Nicolas Jagerb98066a2016-01-15 12:10:08 -0500174QPushButton#hangupButton{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500175 background-color: rgba(200, 0, 0, 0.6);
176 border-radius: 18px;
177 border:solid 1px;
Edric Milaret627500d2015-03-27 16:41:40 -0400178}
179
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500180QPushButton#hangupButton:hover{
181 background-color: rgba(255, 0, 0, 0.6);
Edric Milaret627500d2015-03-27 16:41:40 -0400182}
183
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500184QPushButton#hangupButton:pressed{
185 background-color: rgba(255, 0, 0, 0.8);
Edric Milaret12353822015-05-14 14:41:09 -0400186}
Edric Milareta0ebd062016-01-13 12:18:23 -0500187
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500188QPushButton#exitSettingsButton, QPushButton#settingsButton, QPushButton#addToContactButton,
Anthony Léonardd47179c2017-03-28 10:39:10 -0400189QPushButton#imBackButton, QPushButton#sendCRBackButton, QPushButton#copyCMButton, QPushButton#pendingCRBackButton{
Nicolas Jager032c0002016-02-18 16:38:09 -0500190 background-color: #414141;
191 border-radius: 15px;
192 border:solid 1px;
Edric Milareta0ebd062016-01-13 12:18:23 -0500193}
Edric Milaret864a2052016-01-14 15:45:03 -0500194
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500195QPushButton#exitSettingsButton:hover, QPushButton#settingsButton:hover, QPushButton#imBackButton:hover,
Anthony Léonardd47179c2017-03-28 10:39:10 -0400196QPushButton#sendCRBackButton:hover, QPushButton#copyCMButton:hover, QPushButton#pendingCRBackButton:hover{
Nicolas Jager032c0002016-02-18 16:38:09 -0500197 background-color: #515151;
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500198}
199
Olivier SOLDANO9657fd12017-03-27 16:06:53 -0400200QPushButton#exitSettingsButton:pressed, QPushButton#settingsButton:pressed, QPushButton#imBackButton:pressed,
Anthony Léonardd47179c2017-03-28 10:39:10 -0400201QPushButton#sendCRBackButton:pressed, QPushButton#copyCMButton:pressed, QPushButton#pendingCRBackButton:pressed{
Nicolas Jager032c0002016-02-18 16:38:09 -0500202 background-color: #313131;
Edric Milaret864a2052016-01-14 15:45:03 -0500203}
Nicolas Jager540a5112016-01-15 15:54:34 -0500204
Edric Milaret1e598592016-09-02 10:10:01 -0400205QToolButton#qrButton, QToolButton#shareButton{
206 background-color: #3AC0D2;
207 border-radius: 15px;
208 border:solid 1px;
209}
210
211QToolButton#qrButton:hover, QToolButton#shareButton:hover{
212 background-color: #4dc6d6;
213}
214
215QToolButton#qrButton:pressed, QToolButton#shareButton:pressed{
216 background-color: #34acbd;
217}
218
219QToolButton#qrButton:checked {
220 background-color: #34acbd;
221}
222
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500223QPushButton#deleteAccountButton, QToolButton#addAccountButton{
224 background: transparent;
225}
226
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500227QPushButton#btnvideo{
Nicolas Jager032c0002016-02-18 16:38:09 -0500228 background-color: #3AC0D2;
229 border-radius: 15px;
230 border:solid 1px;
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500231}
232
Olivier SOLDANO47aa97f2017-04-04 10:40:00 -0400233QPushButton#searchBtn, QPushButton#btnComBarVideo,
Edric Milaret6a785af2016-03-07 15:39:30 -0500234QPushButton#sendButton, QPushButton#sendIMButton{
Nicolas Jager5e8c3822016-02-05 17:01:49 -0500235 background-color: #3AC0D2;
236 border-radius: 15px;
237 border:solid 1px;
238}
239
Olivier SOLDANO47aa97f2017-04-04 10:40:00 -0400240QPushButton#searchBtn:hover, QPushButton#sendButton:hover,
Edric Milaret6a785af2016-03-07 15:39:30 -0500241QPushButton#sendIMButton:hover, QPushButton#btnComBarVideo:hover{
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500242 background-color: #4dc6d6;
243}
244
Olivier SOLDANO47aa97f2017-04-04 10:40:00 -0400245QPushButton#searchBtn:pressed, QPushButton#sendButton:pressed,
Edric Milaret6a785af2016-03-07 15:39:30 -0500246QPushButton#sendIMButton:pressed, QPushButton#btnComBarVideo:pressed{
Nicolas Jager5e8c3822016-02-05 17:01:49 -0500247 background-color: #34acbd;
Nicolas Jager1ddb38d2016-01-20 11:11:49 -0500248}
249
Nicolas Jager540a5112016-01-15 15:54:34 -0500250QScrollBar:vertical{
251 background: rgb(242, 242, 242);
252 width:10px;
253}
254
255QScrollBar::handle:vertical{
256 background: rgb(77, 77, 77);
257}
Nicolas Jagerd0b33752016-01-17 00:00:40 -0500258
Olivier SOLDANOdd878662017-03-27 16:00:06 -0400259QDialog#WizardDialog, QWidget#welcomePage, QWidget#sendContactRequestPage{
Nicolas Jager6cdeba92016-03-05 18:05:53 -0500260 background: rgb(242, 242, 242);
261 background-image : url(:/images/background-light.png);
262 background-repeat : repeat-x;
263 background-position: bottom;
264}
265
Nicolas Jager0a9fc602016-03-11 18:35:42 -0500266QDialog#CallUtilsDialog, QDialog#QualityDialog{
267 background: transparent;
268}
269
270QWidget#roundedFrame{
271 background-color: rgba(250, 250, 250, 0.8);
272 border-color: rgba(25, 25, 25, 1.0);
273 border-radius: 8px;
274 border:solid 1px;
275}
276
277QWidget#spike{
278 background-color: rgba(250, 250, 250, 0.8);
279 border-color: rgba(25, 25, 25, 1.0);
280}
281
282QListView#contactView{
283 background: transparent;
284}
285
Anthony Léonard2fde81d2017-04-17 10:06:55 -0400286QWidget#messagingPage, QWidget#contactRequestPage{
Nicolas Jagerd0b33752016-01-17 00:00:40 -0500287 background: rgb(242, 242, 242);
288}
289
Anthony Léonard955b9572016-11-10 13:28:39 -0500290QPushButton#nextButton, QPushButton#playButton, QPushButton#clearHistoryButton, QPushButton#doTransferButton,
Edric Milaret57467842016-08-30 13:06:11 -0400291QPushButton#checkUpdateButton, QPushButton#photoButton, QPushButton#takePhotoButton, QPushButton#importButton,
292QPushButton#existingPushButton, QPushButton#newAccountButton, QPushButton#previousButton, QPushButton#exportButton,
Anthony Léonardaa90e1a2016-10-12 11:24:17 -0400293QPushButton#cancelAddButton, QPushButton#exportOnRingButton, QPushButton#addDeviceButton, QPushButton#exportEndedOkButton,
Olivier SOLDANOdd878662017-03-27 16:00:06 -0400294QPushButton#errorPushButton, QPushButton#registerButton, QPushButton#sendContactRequestPageButton,
Anthony Léonardd47179c2017-03-28 10:39:10 -0400295QPushButton#sendContactRequestButton, QPushButton#acceptCRButton, QPushButton#discardCRButton{
Nicolas Jager032c0002016-02-18 16:38:09 -0500296 background-color: #3AC0D2;
297 border: 0px;
298 color: white;
299 font: 14px;
Edric Milaret4097d2f2016-02-09 14:41:50 -0500300}
301
Anthony Léonarddd9fb6a2017-04-26 10:25:48 -0400302QPushButton#blockCRButton{
303 background-color: rgb(251, 72, 71);
304 border: 0px;
305 color: white;
306 font: 14px;
307}
308
Anthony Léonard955b9572016-11-10 13:28:39 -0500309QPushButton#nextButton:hover, QPushButton#playButton:hover, QPushButton#clearHistoryButton:hover,
Olivier SOLDANO257e0682016-11-09 13:59:04 -0500310QPushButton#checkUpdateButton:hover, QPushButton#doTransferButton:hover, QPushButton#photoButton:hover,
Edric Milaret57467842016-08-30 13:06:11 -0400311QPushButton#takePhotoButton:hover, QPushButton#importButton:hover,
312QPushButton#existingPushButton:hover, QPushButton#newAccountButton:hover, QPushButton#previousButton:hover,
313QPushButton#exportButton:hover, QPushButton#cancelAddButton:hover, QPushButton#exportOnRingButton:hover,
Anthony Léonardaa90e1a2016-10-12 11:24:17 -0400314QPushButton#addDeviceButton:hover, QPushButton#exportEndedOkButton:hover, QPushButton#errorPushButton:hover,
Olivier SOLDANOdd878662017-03-27 16:00:06 -0400315QPushButton#registerButton:hover, QPushButton#sendContactRequestPageButton:hover,
Anthony Léonardd47179c2017-03-28 10:39:10 -0400316QPushButton#sendContactRequestButton:hover, QPushButton#acceptCRButton:hover, QPushButton#discardCRButton:hover{
Nicolas Jager032c0002016-02-18 16:38:09 -0500317 background-color: #4dc6d6;
Edric Milaret4097d2f2016-02-09 14:41:50 -0500318}
319
Anthony Léonarddd9fb6a2017-04-26 10:25:48 -0400320QPushButton#blockCRButton:hover{
321 background-color: rgb(252, 91, 90);
322}
323
324
Anthony Léonard955b9572016-11-10 13:28:39 -0500325QPushButton#nextButton:pressed, QPushButton#playButton:pressed, QPushButton#clearHistoryButton:pressed,
Olivier SOLDANO257e0682016-11-09 13:59:04 -0500326QPushButton#checkUpdateButton:pressed, QPushButton#doTransferButton:pressed, QPushButton#photoButton:pressed,
Edric Milaret57467842016-08-30 13:06:11 -0400327QPushButton#takePhotoButton:pressed, QPushButton#importButton:pressed,
328QPushButton#existingPushButton:pressed, QPushButton#newAccountButton:pressed, QPushButton#previousButton:pressed,
329QPushButton#exportButton:pressed, QPushButton#cancelAddButton:pressed, QPushButton#exportOnRingButton:pressed,
Anthony Léonardaa90e1a2016-10-12 11:24:17 -0400330QPushButton#addDeviceButton:pressed, QPushButton#exportEndedOkButton:pressed, QPushButton#errorPushButton:pressed,
Olivier SOLDANOdd878662017-03-27 16:00:06 -0400331QPushButton#registerButton:pressed, QPushButton#sendContactRequestPageButton:pressed,
Anthony Léonardd47179c2017-03-28 10:39:10 -0400332QPushButton#sendContactRequestButton:pressed, QPushButton#acceptCRButton:pressed, QPushButton#discardCRButton:pressed{
Nicolas Jager032c0002016-02-18 16:38:09 -0500333 background-color: #34acbd;
334}
Anthony Léonarddd9fb6a2017-04-26 10:25:48 -0400335QPushButton#blockCRButton:pressed{
336 background-color: rgb(219, 55, 54);
337}
Nicolas Jager032c0002016-02-18 16:38:09 -0500338
Anthony Léonard955b9572016-11-10 13:28:39 -0500339QLineEdit#usernameEdit:enabled, QLineEdit#passwordEdit:enabled, QLineEdit#confirmPasswordEdit:enabled,
340QLineEdit#pinEdit:enabled, QLineEdit#fullNameEdit:enabled{
Nicolas Jager032c0002016-02-18 16:38:09 -0500341 border-color: rgb(0, 192, 212);
342 border-radius: 5px;
343 border-width: 1px;
344 border-style: outset;
345 background-color: rgb(255, 255, 255);
346}
347
Anthony Léonard955b9572016-11-10 13:28:39 -0500348QLineEdit#usernameEdit:disabled, QLineEdit#passwordEdit:disabled, QLineEdit#confirmPasswordEdit:disabled,
349QLineEdit#pinEdit:disabled, QLineEdit#fullNameEdit:disabled{
Nicolas Jager032c0002016-02-18 16:38:09 -0500350 border-color: rgb(159, 157, 154);
351 border-radius: 5px;
352 border-width: 1px;
353 border-style: outset;
354 background-color: rgb(239, 235, 231);
Nicolas Jagerd0b33752016-01-17 00:00:40 -0500355}
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500356
357QComboBox{
358 background: transparent;
359 border-radius: 0px;
360 border-style: solid;
361 border-width: 2px;
362 border-color: #414141;
363 border-top: transparent;
364 border-left: transparent;
365 border-right: transparent;
366 font: 11pt "Sans Serif";
367 padding: 2px;
368}
369
370QComboBox:focus{
371 border-color: #3AC0D2;
372}
373
374QComboBox::down-arrow{
375 border-radius: 0px;
376 border-style: solid;
377 border-width: 2px;
378 height: 36;
379 width : 36;
380 image: url(":/images/icons/ic_arrow_drop_down_black_18dp_2x.png");
381}
382
383QComboBox::drop-down{
384 border-radius: 0px;
385 width: 36px;
386}
387
388QRadioButton::indicator{
389 width: 12px;
390 height: 12px;
391 border-radius: 8px;
392 border-width: 2px;
393 border-style: solid;
394}
395
396QRadioButton::indicator:unchecked{
397 border-color: rgb(77, 77, 77);
398 background: transparent;
399}
400
401QRadioButton::indicator:checked{
402 background: #3AC0D2;
403 border-color: #3AC0D2;
404 image: url(":/images/icons/ic_check_white_18dp_2x.png");
405}
406
407QWidget#horizontalWidget{
408 background: transparent;
409}
410
411
412QPushButton#generalTabButton, QPushButton#videoTabButton, QPushButton#accountTabButton{
413 background: transparent;
414 color: rgb(77, 77, 77);
415 border-radius: 0px;
416 border-style: solid;
417 border-width: 2px;
418 border-color: #414141;
419 border-top: transparent;
420 border-left: transparent;
421 border-right: transparent;
422 font: 12pt "Sans Serif";
423 padding: 2px;
424}
425
Olivier SOLDANO57442b22017-04-20 11:56:57 -0400426QPushButton#quickValidCRBtn, QPushButton#quickMuteCRBtn, QPushButton#quickBanCRBtn{
427 border-radius: 2px;
428 height:25px;
429 width:25px;
430 margin: 2px 2px 2px 2px;
431 text-align: center;
432 font: 10pt "FontAwesome";
433}
434
435QPushButton#quickValidCRBtn{
436 background-color: #66cc00;
437}
438QPushButton#quickValidCRBtn:hover{
439 background-color: #80ff00;
440}
441
442QPushButton#quickMuteCRBtn{
443 background-color: #ff9933;
444}
445QPushButton#quickMuteCRBtn:hover{
446 background-color: #ffb366;
447}
448
449QPushButton#quickBanCRBtn{
450 background-color: #ff3333;
451}
452QPushButton#quickBanCRBtn:hover{
453 background-color: #ff6666;
454}
455
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500456QTabBar::tab{
457 background: transparent;
458 color: rgb(77, 77, 77);
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: 12pt "Sans Serif";
467 padding: 2px;
468 width : 130px;
469 height: 20px;
470}
471
472QTabWidget::tab-bar{
473 alignment: center;
474}
475QTabBar QToolButton{
476 height: 9;
477 width : 9;
478 background: transparent;
479}
480
481QTabBar QToolButton::left-arrow{
482 height: 9;
483 width : 9;
484 image: url(":/images/icons/ic_arrow_tab_previous_black_9dp_2x.png");
485}
486
487QTabBar QToolButton::right-arrow{
488 height: 9;
489 width : 9;
490 image: url(":/images/icons/ic_arrow_tab_next_black_9dp_2x.png");
491}
492
493QPushButton#generalTabButton:checked, QPushButton#videoTabButton:checked, QPushButton#accountTabButton:checked,
494QTabBar::tab:selected{
495 border-color: #3AC0D2;
496}
497
498QTabWidget::pane{
499 border: 0px;
500}
501
502QPushButton#generalTabButton:hover, QPushButton#videoTabButton:hover, QPushButton#accountTabButton:hover,
503QTabBar::tab:hover{
504 border-color:#4dc6d6;
505}
506
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500507QSpinBox#historyDaySettingsSpinBox, QSpinBox#lrcfg_tlsNegotiationTimeoutSec, QSpinBox#lrcfg_registrationExpire,
508QSpinBox#lrcfg_localPort, QSpinBox#lrcfg_publishedPort, QSpinBox#lrcfg_audioPortMin, QSpinBox#lrcfg_audioPortMax,
Nicolas Jager68d5ed12016-03-10 13:50:44 -0500509QSpinBox#lrcfg_videoPortMin, QSpinBox#lrcfg_videoPortMax, QSpinBox#intervalUpdateCheckSpinBox{
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
522QSpinBox#historyDaySettingsSpinBox:focus, QSpinBox#lrcfg_tlsNegotiationTimeoutSec:focus,
523QSpinBox#lrcfg_registrationExpire:focus, QSpinBox#lrcfg_localPort:focus, QSpinBox#lrcfg_publishedPort:focus,
524QSpinBox#lrcfg_audioPortMin:focus, QSpinBox#lrcfg_audioPortMax:focus, QSpinBox#lrcfg_videoPortMin:focus,
525QSpinBox#lrcfg_videoPortMax:focus{
526 border-color: #3AC0D2;
527}
528
529QCheckBox::indicator{
530 height : 12 px;
531 width : 12 px;
532 border: 2px solid rgb(77, 77, 77);
533 border-radius: 4px;
534 background: none;
535}
536
537QCheckBox::indicator:checked{
538 border-color: #34acbd;
539 background: #34acbd;
540 image: url(":/images/icons/ic_check_white_18dp_2x.png");
541}
542
543QSpinBox::down-button{
544 height: 9;
545 width : 9;
Nicolas Jager68d5ed12016-03-10 13:50:44 -0500546 image: url(":/images/icons/ic_arrow_drop_down_black_9dp_2x.png");
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500547}
548
549QSpinBox::up-button{
550 height: 9;
551 width : 9;
Nicolas Jager68d5ed12016-03-10 13:50:44 -0500552 image: url(":/images/icons/ic_arrow_drop_up_black_9dp_2x.png");
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500553}
554
555QLineEdit#lrcfg_alias, QLineEdit#lrcfg_hostname, QLineEdit#lrcfg_password, QLineEdit#lrcfg_proxy,
556QLineEdit#lrcfg_mailbox, QLineEdit#lrcfg_tlsPassword, QLineEdit#lrcfg_tlsServerName,
557QLineEdit#lrcfg_turnServerRealm, QLineEdit#lrcfg_turnServerUsername, QLineEdit#lrcfg_turnServerPassword,
Anthony Léonard5107a692016-11-04 13:20:37 -0400558QLineEdit#lrcfg_turnServer, QLineEdit#lrcfg_publishedAddress, QLineEdit#lrcfg_registeredName,
Olivier SOLDANO9657fd12017-03-27 16:06:53 -0400559QLineEdit#lrcfg_nameServiceURL, QLineEdit#lrcfg_username, QLineEdit#profileNameEdit{
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500560 background: transparent;
561 border-radius: 0px;
562 border-style: solid;
563 border-width: 2px;
564 border-color: #414141;
565 border-top: transparent;
566 border-left: transparent;
567 border-right: transparent;
568 font: 11pt "Sans Serif";
569 padding: 2px;
570}
571
Edric Milaret9d877ab2016-04-11 11:15:56 -0400572QLabel#typeValueLabel{
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500573 background: transparent;
574 font: 11pt "Sans Serif";
575 border-radius: 0px;
576 padding: 2px;
577}
578
579QLineEdit#lrcfg_alias:focus, QLineEdit#lrcfg_hostname:focus, QLineEdit#lrcfg_password:focus,
580QLineEdit#lrcfg_proxy:focus, QLineEdit#lrcfg_mailbox:focus, QLineEdit#lrcfg_tlsPassword:focus,
581QLineEdit#lrcfg_tlsServerName:focus, QLineEdit#lrcfg_turnServerRealm:focus, QLineEdit#lrcfg_turnServerUsername:focus,
Edric Milaret9d877ab2016-04-11 11:15:56 -0400582QLineEdit#lrcfg_turnServerPassword:focus, QLineEdit#lrcfg_turnServer:focus, QLineEdit#lrcfg_publishedAddress:focus,
Olivier SOLDANO9657fd12017-03-27 16:06:53 -0400583QLineEdit#lrcfg_registeredName:focus, QLineEdit#lrcfg_nameServiceURL:focus, QLineEdit#lrcfg_username:focus,
584QLineEdit#profileNameEdit:focus{
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500585 border-color: #3AC0D2;
586}
587
588QTabWidget#tabWidget{
589 border-color: transparent;
590}
591
592QPushButton#upAudioButton, QPushButton#downAudioButton, QPushButton#upVideoButton, QPushButton#downVideoButton{
593 background: transparent;
594}
595
Edric Milaret25236d92016-03-28 09:40:58 -0400596QPushButton#avatarButton:hover {
597 border: 2px solid rgb(77, 77, 77);
Anthony Léonard955b9572016-11-10 13:28:39 -0500598 border-radius: 50px;
Edric Milaret25236d92016-03-28 09:40:58 -0400599}
600
Nicolas Jager74fe46f2016-02-29 14:55:09 -0500601QWidget#leftPannel{
602 background: white;
603}
604
605QSlider::groove:vertical{
606 background: red;
607 position: absolute; /* absolutely position 4px from the left and right of the widget. setting margins on the widget should work too... */
608 width:2px;
609}
610
611QSlider::handle:vertical{
612 height: 10px;
613 background: #3AC0D2;
614 border-radius: 5px;
615 margin: 0 -4px;
616}
617
618QSlider::sub-page:vertical{
619 background: #777777;
620}
621
622QSlider::add-page:vertical{
623 background: #3AC0D2;
624}
Edric Milarete19c4cd2016-02-12 10:19:44 -0500625
626QToolButton::menu-button {image:none;}
627
628QToolButton::menu-arrow {image:none;}