diff options
| author | 2021-03-20 07:53:00 -0400 | |
|---|---|---|
| committer | 2021-04-15 01:53:17 -0400 | |
| commit | f6e6913f8ff5f533e69a5831a81ca8f15f709baf (patch) | |
| tree | 4d0a70f14f194cb40550d32921d2c7451241b598 | |
| parent | icons: Add icons for the On-Screen Keyboard overlay (diff) | |
| download | yuzu-f6e6913f8ff5f533e69a5831a81ca8f15f709baf.tar.gz yuzu-f6e6913f8ff5f533e69a5831a81ca8f15f709baf.tar.xz yuzu-f6e6913f8ff5f533e69a5831a81ca8f15f709baf.zip | |
qt_themes: Add styles for the On-Screen Keyboard and OverlayDialog
| -rw-r--r-- | dist/qt_themes/default/style.qss | 377 | ||||
| -rw-r--r-- | dist/qt_themes/qdarkstyle/style.qss | 399 | ||||
| -rw-r--r-- | dist/qt_themes/qdarkstyle_midnight_blue/style.qss | 439 |
3 files changed, 1193 insertions, 22 deletions
diff --git a/dist/qt_themes/default/style.qss b/dist/qt_themes/default/style.qss index 836dd25ca..3bc92b69d 100644 --- a/dist/qt_themes/default/style.qss +++ b/dist/qt_themes/default/style.qss | |||
| @@ -281,3 +281,380 @@ QWidget#controllerPlayer7, | |||
| 281 | QWidget#controllerPlayer8 { | 281 | QWidget#controllerPlayer8 { |
| 282 | background: transparent; | 282 | background: transparent; |
| 283 | } | 283 | } |
| 284 | |||
| 285 | QDialog#QtSoftwareKeyboardDialog, | ||
| 286 | QStackedWidget#topOSK { | ||
| 287 | background: rgba(51, 51, 51, .9); | ||
| 288 | } | ||
| 289 | |||
| 290 | |||
| 291 | QDialog#OverlayDialog, | ||
| 292 | QStackedWidget#stackedDialog { | ||
| 293 | background: rgba(51, 51, 51, .7); | ||
| 294 | } | ||
| 295 | |||
| 296 | QWidget#boxOSK, | ||
| 297 | QWidget#lineOSK, | ||
| 298 | QWidget#richDialog, | ||
| 299 | QWidget#lineDialog { | ||
| 300 | background: transparent; | ||
| 301 | } | ||
| 302 | |||
| 303 | QStackedWidget#bottomOSK, | ||
| 304 | QWidget#contentDialog, | ||
| 305 | QWidget#contentRichDialog { | ||
| 306 | background: rgba(240, 240, 240, 1); | ||
| 307 | } | ||
| 308 | |||
| 309 | QWidget#contentDialog, | ||
| 310 | QWidget#contentRichDialog { | ||
| 311 | margin: 5px; | ||
| 312 | border-radius: 6px; | ||
| 313 | } | ||
| 314 | |||
| 315 | QWidget#buttonsDialog, | ||
| 316 | QWidget#buttonsRichDialog { | ||
| 317 | margin: 5px; | ||
| 318 | border-top: 2px solid rgba(44, 44, 44, 1); | ||
| 319 | } | ||
| 320 | |||
| 321 | QWidget#legendOSKnum { | ||
| 322 | border-top: 1px solid rgba(44, 44, 44, 1); | ||
| 323 | } | ||
| 324 | |||
| 325 | QStackedWidget#stackedDialog QTextBrowser QScrollBar::vertical { | ||
| 326 | background: #cdcdcd; | ||
| 327 | width: 15px; | ||
| 328 | margin: 15px 3px 15px 3px; | ||
| 329 | border: 1px transparent; | ||
| 330 | border-radius: 4px; | ||
| 331 | } | ||
| 332 | |||
| 333 | QStackedWidget#stackedDialog QTextBrowser QScrollBar::horizoncal { | ||
| 334 | background: #cdcdcd; | ||
| 335 | height: 15px; | ||
| 336 | margin: 3px 15px 3px 15px; | ||
| 337 | border: 1px transparent; | ||
| 338 | border-radius: 4px; | ||
| 339 | } | ||
| 340 | |||
| 341 | QStackedWidget#stackedDialog QTextBrowser QScrollBar::handle { | ||
| 342 | background: #fff; | ||
| 343 | border-radius: 4px; | ||
| 344 | min-height: 5px; | ||
| 345 | min-width: 5px; | ||
| 346 | } | ||
| 347 | |||
| 348 | QStackedWidget#stackedDialog QTextBrowser QScrollBar::add-line, | ||
| 349 | QStackedWidget#stackedDialog QTextBrowser QScrollBar::sub-line, | ||
| 350 | QStackedWidget#stackedDialog QTextBrowser QScrollBar::add-page, | ||
| 351 | QStackedWidget#stackedDialog QTextBrowser QScrollBar::sub-page { | ||
| 352 | background: none; | ||
| 353 | } | ||
| 354 | |||
| 355 | QWidget#inputOSK { | ||
| 356 | border-bottom: 3px solid rgba(255, 255, 255, .9); | ||
| 357 | } | ||
| 358 | |||
| 359 | QWidget#inputOSK QLineEdit { | ||
| 360 | background: transparent; | ||
| 361 | border: none; | ||
| 362 | color: #ccc; | ||
| 363 | } | ||
| 364 | |||
| 365 | QWidget#inputBoxOSK { | ||
| 366 | border: 2px solid rgba(255, 255, 255, .9); | ||
| 367 | } | ||
| 368 | |||
| 369 | QWidget#inputBoxOSK QTextEdit { | ||
| 370 | background: transparent; | ||
| 371 | border: none; | ||
| 372 | color: #ccc; | ||
| 373 | } | ||
| 374 | |||
| 375 | QWidget#richDialog QTextBrowser { | ||
| 376 | background: transparent; | ||
| 377 | border: none; | ||
| 378 | padding: 35px 65px; | ||
| 379 | } | ||
| 380 | |||
| 381 | |||
| 382 | QWidget#lineOSK QLabel#label_header { | ||
| 383 | color: #f0f0f0; | ||
| 384 | } | ||
| 385 | |||
| 386 | QWidget#lineOSK QLabel#label_sub, | ||
| 387 | QWidget#lineOSK QLabel#label_characters, | ||
| 388 | QWidget#boxOSK QLabel#label_characters_box { | ||
| 389 | color: #ccc; | ||
| 390 | } | ||
| 391 | |||
| 392 | QWidget#contentDialog QLabel#label_title, | ||
| 393 | QWidget#contentRichDialog QLabel#label_title_rich { | ||
| 394 | color: #888; | ||
| 395 | } | ||
| 396 | |||
| 397 | QWidget#contentDialog QLabel#label_dialog { | ||
| 398 | padding: 20px 65px; | ||
| 399 | } | ||
| 400 | |||
| 401 | QWidget#contentDialog QLabel#label_title, | ||
| 402 | QWidget#contentRichDialog QLabel#label_title_rich { | ||
| 403 | padding: 0px 65px; | ||
| 404 | } | ||
| 405 | |||
| 406 | QDialog#OverlayDialog QPushButton { | ||
| 407 | color: rgba(49, 79, 239, 1); | ||
| 408 | background: transparent; | ||
| 409 | border: none; | ||
| 410 | padding: 0px; | ||
| 411 | min-width: 0px; | ||
| 412 | } | ||
| 413 | |||
| 414 | QDialog#OverlayDialog QPushButton:focus, | ||
| 415 | QDialog#OverlayDialog QPushButton:hover { | ||
| 416 | color: rgba(49, 79, 239, 1); | ||
| 417 | background: rgba(255, 255, 255, 1); | ||
| 418 | border: 5px solid rgba(148, 250, 202, 1); | ||
| 419 | border-radius: 6px; | ||
| 420 | outline: none; | ||
| 421 | } | ||
| 422 | |||
| 423 | QDialog#OverlayDialog QPushButton:pressed { | ||
| 424 | color: rgba(240, 240, 240, 1); | ||
| 425 | background: rgba(150, 150, 150, 1); | ||
| 426 | border: 5px solid rgba(148, 250, 202, 1); | ||
| 427 | border-radius: 6px; | ||
| 428 | outline: none; | ||
| 429 | } | ||
| 430 | |||
| 431 | QDialog#QtSoftwareKeyboardDialog QPushButton { | ||
| 432 | background: rgba(232, 232, 232, 1); | ||
| 433 | border: 2px solid rgba(240, 240, 240, 1); | ||
| 434 | } | ||
| 435 | |||
| 436 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift, | ||
| 437 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return, | ||
| 438 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space, | ||
| 439 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift_shift, | ||
| 440 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return_shift, | ||
| 441 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift { | ||
| 442 | background: rgba(218, 218, 218, 1); | ||
| 443 | border: 2px solid rgba(240, 240, 240, 1); | ||
| 444 | } | ||
| 445 | |||
| 446 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace, | ||
| 447 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift, | ||
| 448 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num { | ||
| 449 | color: rgba(240, 240, 240, 1); | ||
| 450 | background: rgba(44, 44, 44, 1); | ||
| 451 | border: 2px solid rgba(240, 240, 240, 1); | ||
| 452 | } | ||
| 453 | |||
| 454 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok, | ||
| 455 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift, | ||
| 456 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num { | ||
| 457 | color: rgba(240, 240, 240, 1); | ||
| 458 | background: rgba(49, 79, 239, 1); | ||
| 459 | border: 2px solid rgba(240, 240, 240, 1); | ||
| 460 | } | ||
| 461 | |||
| 462 | QDialog#QtSoftwareKeyboardDialog QPushButton:focus, | ||
| 463 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok:focus, | ||
| 464 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift:focus, | ||
| 465 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space:focus, | ||
| 466 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return:focus, | ||
| 467 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace:focus, | ||
| 468 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift:focus, | ||
| 469 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift_shift:focus, | ||
| 470 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift:focus, | ||
| 471 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return_shift:focus, | ||
| 472 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift:focus, | ||
| 473 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num:focus, | ||
| 474 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num:focus, | ||
| 475 | |||
| 476 | QDialog#QtSoftwareKeyboardDialog QPushButton:hover, | ||
| 477 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok:hover, | ||
| 478 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift:hover, | ||
| 479 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space:hover, | ||
| 480 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return:hover, | ||
| 481 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace:hover, | ||
| 482 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift:hover, | ||
| 483 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift_shift:hover, | ||
| 484 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift:hover, | ||
| 485 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return_shift:hover, | ||
| 486 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift:hover, | ||
| 487 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num:hover, | ||
| 488 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num:hover { | ||
| 489 | color: rgba(0, 0, 0, 1); | ||
| 490 | background: rgba(255, 255, 255, 1); | ||
| 491 | border: 5px solid rgba(148, 250, 202, 1); | ||
| 492 | border-radius: 6px; | ||
| 493 | outline: none; | ||
| 494 | } | ||
| 495 | |||
| 496 | QDialog#QtSoftwareKeyboardDialog QPushButton:pressed, | ||
| 497 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok:pressed, | ||
| 498 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift:pressed, | ||
| 499 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space:pressed, | ||
| 500 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return:pressed, | ||
| 501 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace:pressed, | ||
| 502 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift:pressed, | ||
| 503 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift_shift:pressed, | ||
| 504 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift:pressed, | ||
| 505 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return_shift:pressed, | ||
| 506 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift:pressed, | ||
| 507 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num:pressed, | ||
| 508 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num:pressed { | ||
| 509 | color: rgba(240, 240, 240, 1); | ||
| 510 | background: rgba(150, 150, 150, 1); | ||
| 511 | border: 5px solid rgba(148, 250, 202, 1); | ||
| 512 | border-radius: 6px; | ||
| 513 | } | ||
| 514 | |||
| 515 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace, | ||
| 516 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift, | ||
| 517 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num { | ||
| 518 | background-position: right top; | ||
| 519 | background-repeat: no-repeat; | ||
| 520 | background-origin: content; | ||
| 521 | background-image: url(:/overlay/osk_button_B.png); | ||
| 522 | qproperty-icon: url(:/overlay/osk_button_backspace.png); | ||
| 523 | qproperty-iconSize: 36px; | ||
| 524 | } | ||
| 525 | |||
| 526 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space, | ||
| 527 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift { | ||
| 528 | background-position: right top; | ||
| 529 | background-repeat: no-repeat; | ||
| 530 | background-origin: content; | ||
| 531 | background-image: url(:/overlay/osk_button_Y.png); | ||
| 532 | } | ||
| 533 | |||
| 534 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok, | ||
| 535 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift, | ||
| 536 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num { | ||
| 537 | background-position: right top; | ||
| 538 | background-repeat: no-repeat; | ||
| 539 | background-origin: content; | ||
| 540 | background-image: url(:/overlay/osk_button_plus.png); | ||
| 541 | } | ||
| 542 | |||
| 543 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift { | ||
| 544 | background-position: left top; | ||
| 545 | background-repeat: no-repeat; | ||
| 546 | background-origin: content; | ||
| 547 | background-image: url(:/overlay/osk_button_shift_lock_off.png); | ||
| 548 | qproperty-icon: url(:/overlay/osk_button_shift.png); | ||
| 549 | qproperty-iconSize: 36px; | ||
| 550 | } | ||
| 551 | |||
| 552 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift_shift { | ||
| 553 | background-position: left top; | ||
| 554 | background-repeat: no-repeat; | ||
| 555 | background-origin: content; | ||
| 556 | background-image: url(:/overlay/osk_button_shift_lock_off.png); | ||
| 557 | qproperty-icon: url(:/overlay/osk_button_shift_on.png); | ||
| 558 | qproperty-iconSize: 36px; | ||
| 559 | } | ||
| 560 | |||
| 561 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_left_bracket, | ||
| 562 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_right_bracket, | ||
| 563 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_left_parenthesis, | ||
| 564 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_right_parenthesis { | ||
| 565 | padding-bottom: 7px; | ||
| 566 | } | ||
| 567 | |||
| 568 | QDialog#QtSoftwareKeyboardDialog QWidget#titleOSK QLabel { | ||
| 569 | background: transparent; | ||
| 570 | color: #ccc; | ||
| 571 | } | ||
| 572 | |||
| 573 | QDialog#QtSoftwareKeyboardDialog QWidget#button_L, | ||
| 574 | QDialog#QtSoftwareKeyboardDialog QWidget#button_L_shift, | ||
| 575 | QDialog#QtSoftwareKeyboardDialog QWidget#button_L_num { | ||
| 576 | image: url(:/overlay/button_L.png); | ||
| 577 | } | ||
| 578 | |||
| 579 | QDialog#QtSoftwareKeyboardDialog QWidget#arrow_left, | ||
| 580 | QDialog#QtSoftwareKeyboardDialog QWidget#arrow_left_shift, | ||
| 581 | QDialog#QtSoftwareKeyboardDialog QWidget#arrow_left_num { | ||
| 582 | image: url(:/overlay/arrow_left.png); | ||
| 583 | } | ||
| 584 | |||
| 585 | QDialog#QtSoftwareKeyboardDialog QWidget#button_R, | ||
| 586 | QDialog#QtSoftwareKeyboardDialog QWidget#button_R_shift, | ||
| 587 | QDialog#QtSoftwareKeyboardDialog QWidget#button_R_num { | ||
| 588 | image: url(:/overlay/button_R.png); | ||
| 589 | } | ||
| 590 | |||
| 591 | QDialog#QtSoftwareKeyboardDialog QWidget#arrow_right, | ||
| 592 | QDialog#QtSoftwareKeyboardDialog QWidget#arrow_right_shift, | ||
| 593 | QDialog#QtSoftwareKeyboardDialog QWidget#arrow_right_num { | ||
| 594 | image: url(:/overlay/arrow_right.png); | ||
| 595 | } | ||
| 596 | |||
| 597 | QDialog#QtSoftwareKeyboardDialog QWidget#button_press_stick, | ||
| 598 | QDialog#QtSoftwareKeyboardDialog QWidget#button_press_stick_shift { | ||
| 599 | image: url(:/overlay/button_press_stick.png); | ||
| 600 | } | ||
| 601 | |||
| 602 | QDialog#QtSoftwareKeyboardDialog QWidget#button_X, | ||
| 603 | QDialog#QtSoftwareKeyboardDialog QWidget#button_X_shift, | ||
| 604 | QDialog#QtSoftwareKeyboardDialog QWidget#button_X_num { | ||
| 605 | image: url(:/overlay/button_X.png); | ||
| 606 | } | ||
| 607 | |||
| 608 | QDialog#QtSoftwareKeyboardDialog QWidget#button_A, | ||
| 609 | QDialog#QtSoftwareKeyboardDialog QWidget#button_A_shift, | ||
| 610 | QDialog#QtSoftwareKeyboardDialog QWidget#button_A_num { | ||
| 611 | image: url(:/overlay/button_A.png); | ||
| 612 | } | ||
| 613 | |||
| 614 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok:disabled, | ||
| 615 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space:disabled, | ||
| 616 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return:disabled, | ||
| 617 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace:disabled, | ||
| 618 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift:disabled, | ||
| 619 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift:disabled, | ||
| 620 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return_shift:disabled, | ||
| 621 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift:disabled, | ||
| 622 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num:disabled, | ||
| 623 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num:disabled { | ||
| 624 | color: rgba(164, 164, 164, 1); | ||
| 625 | background-color: rgba(218, 218, 218, 1); | ||
| 626 | } | ||
| 627 | |||
| 628 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_at:disabled, | ||
| 629 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_slash:disabled, | ||
| 630 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_percent:disabled, | ||
| 631 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_1:disabled, | ||
| 632 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_2:disabled, | ||
| 633 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_3:disabled, | ||
| 634 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_4:disabled, | ||
| 635 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_5:disabled, | ||
| 636 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_6:disabled, | ||
| 637 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_7:disabled, | ||
| 638 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_8:disabled, | ||
| 639 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_9:disabled, | ||
| 640 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_0:disabled, | ||
| 641 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return:disabled { | ||
| 642 | color: rgba(164, 164, 164, 1); | ||
| 643 | } | ||
| 644 | |||
| 645 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok:disabled, | ||
| 646 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift:disabled, | ||
| 647 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num:disabled { | ||
| 648 | background-image: url(:/overlay/osk_button_plus_disabled.png); | ||
| 649 | } | ||
| 650 | |||
| 651 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace:disabled, | ||
| 652 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift:disabled, | ||
| 653 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num:disabled { | ||
| 654 | background-image: url(:/overlay/osk_button_B_disabled.png); | ||
| 655 | } | ||
| 656 | |||
| 657 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space:disabled, | ||
| 658 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift:disabled { | ||
| 659 | background-image: url(:/overlay/osk_button_Y_disabled.png); | ||
| 660 | } | ||
diff --git a/dist/qt_themes/qdarkstyle/style.qss b/dist/qt_themes/qdarkstyle/style.qss index 2a1e8ddeb..8ce6d75f7 100644 --- a/dist/qt_themes/qdarkstyle/style.qss +++ b/dist/qt_themes/qdarkstyle/style.qss | |||
| @@ -1560,7 +1560,400 @@ QWidget#controllerPlayer8 { | |||
| 1560 | background: transparent; | 1560 | background: transparent; |
| 1561 | } | 1561 | } |
| 1562 | 1562 | ||
| 1563 | /* touchscreen mapping widget */ | 1563 | QDialog#QtSoftwareKeyboardDialog, |
| 1564 | TouchScreenPreview { | 1564 | QStackedWidget#topOSK { |
| 1565 | qproperty-dotHighlightColor: #3daee9; | 1565 | background: rgba(41, 41, 41, .9); |
| 1566 | } | ||
| 1567 | |||
| 1568 | |||
| 1569 | QDialog#OverlayDialog, | ||
| 1570 | QStackedWidget#stackedDialog { | ||
| 1571 | background: rgba(41, 41, 41, .7); | ||
| 1572 | } | ||
| 1573 | |||
| 1574 | QWidget#boxOSK, | ||
| 1575 | QWidget#lineOSK, | ||
| 1576 | QWidget#richDialog, | ||
| 1577 | QWidget#lineDialog { | ||
| 1578 | background: transparent; | ||
| 1579 | } | ||
| 1580 | |||
| 1581 | QStackedWidget#bottomOSK, | ||
| 1582 | QWidget#contentDialog, | ||
| 1583 | QWidget#contentRichDialog { | ||
| 1584 | background: rgba(71, 69, 71, 1); | ||
| 1585 | } | ||
| 1586 | |||
| 1587 | QWidget#contentDialog, | ||
| 1588 | QWidget#contentRichDialog { | ||
| 1589 | margin: 5px; | ||
| 1590 | border-radius: 6px; | ||
| 1591 | } | ||
| 1592 | |||
| 1593 | QWidget#buttonsDialog, | ||
| 1594 | QWidget#buttonsRichDialog { | ||
| 1595 | margin: 5px; | ||
| 1596 | border-top: 2px solid rgba(255, 255, 255, .9); | ||
| 1597 | } | ||
| 1598 | |||
| 1599 | QWidget#legendOSKnum { | ||
| 1600 | border-top: 1px solid rgba(255, 255, 255, 1); | ||
| 1601 | } | ||
| 1602 | |||
| 1603 | QStackedWidget#stackedDialog QTextBrowser QWidget { | ||
| 1604 | background: transparent; | ||
| 1605 | } | ||
| 1606 | |||
| 1607 | QStackedWidget#stackedDialog QTextBrowser QScrollBar { | ||
| 1608 | background: #2a2929; | ||
| 1609 | } | ||
| 1610 | |||
| 1611 | QStackedWidget#stackedDialog QTextBrowser QScrollBar::sub-line, | ||
| 1612 | QStackedWidget#stackedDialog QTextBrowser QScrollBar::add-line { | ||
| 1613 | border-image: none; | ||
| 1614 | } | ||
| 1615 | |||
| 1616 | QWidget#inputOSK { | ||
| 1617 | border-bottom: 3px solid rgba(255, 255, 255, .9); | ||
| 1618 | } | ||
| 1619 | |||
| 1620 | QWidget#inputOSK QLineEdit { | ||
| 1621 | background: transparent; | ||
| 1622 | border: none; | ||
| 1623 | color: #ccc; | ||
| 1624 | padding: 0px; | ||
| 1625 | } | ||
| 1626 | |||
| 1627 | QWidget#inputBoxOSK { | ||
| 1628 | border: 2px solid rgba(255, 255, 255, .9); | ||
| 1629 | } | ||
| 1630 | |||
| 1631 | QWidget#inputBoxOSK QTextEdit { | ||
| 1632 | background: transparent; | ||
| 1633 | border: none; | ||
| 1634 | color: #ccc; | ||
| 1635 | } | ||
| 1636 | |||
| 1637 | QWidget#richDialog QTextBrowser { | ||
| 1638 | background: transparent; | ||
| 1639 | border: none; | ||
| 1640 | color: #fff; | ||
| 1641 | padding: 35px 65px; | ||
| 1642 | } | ||
| 1643 | |||
| 1644 | QWidget#lineOSK QLabel#label_header { | ||
| 1645 | color: #f0f0f0; | ||
| 1646 | } | ||
| 1647 | |||
| 1648 | QWidget#lineOSK QLabel#label_sub, | ||
| 1649 | QWidget#lineOSK QLabel#label_characters, | ||
| 1650 | QWidget#contentDialog QLabel#label_title, | ||
| 1651 | QWidget#contentRichDialog QLabel#label_title_rich, | ||
| 1652 | QWidget#boxOSK QLabel#label_characters_box { | ||
| 1653 | color: #ccc; | ||
| 1654 | } | ||
| 1655 | |||
| 1656 | QWidget#buttonsDialog, | ||
| 1657 | QWidget#buttonsRichDialog, | ||
| 1658 | QWidget#mainOSK, | ||
| 1659 | QWidget#headerOSK, | ||
| 1660 | QWidget#normalOSK, | ||
| 1661 | QWidget#shiftOSK, | ||
| 1662 | QWidget#numOSK, | ||
| 1663 | QWidget#subOSK, | ||
| 1664 | QWidget#inputOSK, | ||
| 1665 | QWidget#inputBoxOSK, | ||
| 1666 | QWidget#charactersOSK, | ||
| 1667 | QWidget#charactersBoxOSK, | ||
| 1668 | QWidget#legendOSK, | ||
| 1669 | QWidget#legendOSK QWidget, | ||
| 1670 | QWidget#legendOSKshift, | ||
| 1671 | QWidget#legendOSKshift QWidget, | ||
| 1672 | QWidget#legendOSKnum, | ||
| 1673 | QWidget#legendOSKnum QWidget { | ||
| 1674 | background: transparent; | ||
| 1675 | } | ||
| 1676 | |||
| 1677 | QWidget#contentDialog QLabel, | ||
| 1678 | QWidget#legendOSK QLabel, | ||
| 1679 | QWidget#legendOSKshift QLabel, | ||
| 1680 | QWidget#legendOSKnum QLabel { | ||
| 1681 | color: rgba(255, 255, 255, 1); | ||
| 1682 | } | ||
| 1683 | |||
| 1684 | QWidget#contentDialog QLabel#label_dialog { | ||
| 1685 | padding: 20px 65px; | ||
| 1686 | } | ||
| 1687 | |||
| 1688 | QWidget#contentDialog QLabel#label_title, | ||
| 1689 | QWidget#contentRichDialog QLabel#label_title_rich { | ||
| 1690 | padding: 0px 65px; | ||
| 1691 | } | ||
| 1692 | |||
| 1693 | QDialog#OverlayDialog QPushButton { | ||
| 1694 | color: rgba(1, 253, 201, 1); | ||
| 1695 | background: transparent; | ||
| 1696 | border: none; | ||
| 1697 | padding: 0px; | ||
| 1698 | min-width: 0px; | ||
| 1699 | } | ||
| 1700 | |||
| 1701 | QDialog#OverlayDialog QPushButton:focus, | ||
| 1702 | QDialog#OverlayDialog QPushButton:hover { | ||
| 1703 | color: rgba(1, 253, 201, 1); | ||
| 1704 | background: rgba(58, 61, 66, 1); | ||
| 1705 | border: 5px solid rgba(56, 189, 225, 1); | ||
| 1706 | border-radius: 6px; | ||
| 1707 | outline: none; | ||
| 1708 | } | ||
| 1709 | |||
| 1710 | QDialog#OverlayDialog QPushButton:pressed { | ||
| 1711 | color: rgba(240, 240, 240, 1); | ||
| 1712 | background: rgba(150, 150, 150, 1); | ||
| 1713 | border: 5px solid rgba(56, 189, 225, 1); | ||
| 1714 | border-radius: 6px; | ||
| 1715 | outline: none; | ||
| 1716 | } | ||
| 1717 | |||
| 1718 | QDialog#QtSoftwareKeyboardDialog QPushButton { | ||
| 1719 | color: rgba(255, 255, 255, 1); | ||
| 1720 | background: rgba(80, 79, 80, 1); | ||
| 1721 | border: 2px solid rgba(71, 69, 71, 1); | ||
| 1722 | padding: 0px; | ||
| 1723 | min-width: 0px; | ||
| 1724 | } | ||
| 1725 | |||
| 1726 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift, | ||
| 1727 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return, | ||
| 1728 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space, | ||
| 1729 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift_shift, | ||
| 1730 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return_shift, | ||
| 1731 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift { | ||
| 1732 | background: rgba(95, 94, 95, 1); | ||
| 1733 | border: 2px solid rgba(71, 69, 71, 1); | ||
| 1734 | } | ||
| 1735 | |||
| 1736 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace, | ||
| 1737 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift, | ||
| 1738 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num { | ||
| 1739 | color: rgba(240, 240, 240, 1); | ||
| 1740 | background: rgba(255, 255, 255, 1); | ||
| 1741 | border: 2px solid rgba(71, 69, 71, 1); | ||
| 1742 | } | ||
| 1743 | |||
| 1744 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok, | ||
| 1745 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift, | ||
| 1746 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num { | ||
| 1747 | color: rgba(0, 0, 0, 1); | ||
| 1748 | background: rgba(1, 253, 201, 1); | ||
| 1749 | border: 2px solid rgba(71, 69, 71, 1); | ||
| 1750 | } | ||
| 1751 | |||
| 1752 | QDialog#QtSoftwareKeyboardDialog QPushButton:focus, | ||
| 1753 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok:focus, | ||
| 1754 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift:focus, | ||
| 1755 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space:focus, | ||
| 1756 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return:focus, | ||
| 1757 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace:focus, | ||
| 1758 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift:focus, | ||
| 1759 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift_shift:focus, | ||
| 1760 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift:focus, | ||
| 1761 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return_shift:focus, | ||
| 1762 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift:focus, | ||
| 1763 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num:focus, | ||
| 1764 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num:focus, | ||
| 1765 | |||
| 1766 | QDialog#QtSoftwareKeyboardDialog QPushButton:hover, | ||
| 1767 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok:hover, | ||
| 1768 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift:hover, | ||
| 1769 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space:hover, | ||
| 1770 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return:hover, | ||
| 1771 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace:hover, | ||
| 1772 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift:hover, | ||
| 1773 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift_shift:hover, | ||
| 1774 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift:hover, | ||
| 1775 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return_shift:hover, | ||
| 1776 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift:hover, | ||
| 1777 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num:hover, | ||
| 1778 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num:hover { | ||
| 1779 | color: rgba(255, 255, 255, 1); | ||
| 1780 | background: rgba(58, 61, 66, 1); | ||
| 1781 | border: 5px solid rgba(56, 189, 225, 1); | ||
| 1782 | border-radius: 6px; | ||
| 1783 | outline: none; | ||
| 1784 | } | ||
| 1785 | |||
| 1786 | QDialog#QtSoftwareKeyboardDialog QPushButton:pressed, | ||
| 1787 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok:pressed, | ||
| 1788 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift:pressed, | ||
| 1789 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space:pressed, | ||
| 1790 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return:pressed, | ||
| 1791 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace:pressed, | ||
| 1792 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift:pressed, | ||
| 1793 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift_shift:pressed, | ||
| 1794 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift:pressed, | ||
| 1795 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return_shift:pressed, | ||
| 1796 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift:pressed, | ||
| 1797 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num:pressed, | ||
| 1798 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num:pressed { | ||
| 1799 | color: rgba(240, 240, 240, 1); | ||
| 1800 | background: rgba(150, 150, 150, 1); | ||
| 1801 | border: 5px solid rgba(56, 189, 225, 1); | ||
| 1802 | border-radius: 6px; | ||
| 1803 | } | ||
| 1804 | |||
| 1805 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace, | ||
| 1806 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift, | ||
| 1807 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num { | ||
| 1808 | background-position: right top; | ||
| 1809 | background-repeat: no-repeat; | ||
| 1810 | background-origin: content; | ||
| 1811 | background-image: url(:/overlay/osk_button_B_dark.png); | ||
| 1812 | qproperty-icon: url(:/overlay/osk_button_backspace_dark.png); | ||
| 1813 | qproperty-iconSize: 36px; | ||
| 1814 | } | ||
| 1815 | |||
| 1816 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space, | ||
| 1817 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift { | ||
| 1818 | background-position: right top; | ||
| 1819 | background-repeat: no-repeat; | ||
| 1820 | background-origin: content; | ||
| 1821 | background-image: url(:/overlay/osk_button_Y_dark.png); | ||
| 1822 | } | ||
| 1823 | |||
| 1824 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok, | ||
| 1825 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift, | ||
| 1826 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num { | ||
| 1827 | color: rgba(44, 44, 44, 1); | ||
| 1828 | background-position: right top; | ||
| 1829 | background-repeat: no-repeat; | ||
| 1830 | background-origin: content; | ||
| 1831 | background-image: url(:/overlay/osk_button_plus_dark.png); | ||
| 1832 | } | ||
| 1833 | |||
| 1834 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift { | ||
| 1835 | background-position: left top; | ||
| 1836 | background-repeat: no-repeat; | ||
| 1837 | background-origin: content; | ||
| 1838 | background-image: url(:/overlay/osk_button_shift_lock_off.png); | ||
| 1839 | qproperty-icon: url(:/overlay/osk_button_shift_dark.png); | ||
| 1840 | qproperty-iconSize: 36px; | ||
| 1841 | } | ||
| 1842 | |||
| 1843 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift_shift { | ||
| 1844 | background-position: left top; | ||
| 1845 | background-repeat: no-repeat; | ||
| 1846 | background-origin: content; | ||
| 1847 | background-image: url(:/overlay/osk_button_shift_lock_off.png); | ||
| 1848 | qproperty-icon: url(:/overlay/osk_button_shift_on_dark.png); | ||
| 1849 | qproperty-iconSize: 36px; | ||
| 1850 | } | ||
| 1851 | |||
| 1852 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_left_bracket, | ||
| 1853 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_right_bracket, | ||
| 1854 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_left_parenthesis, | ||
| 1855 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_right_parenthesis { | ||
| 1856 | padding-bottom: 7px; | ||
| 1857 | } | ||
| 1858 | |||
| 1859 | QDialog#QtSoftwareKeyboardDialog QWidget#titleOSK QLabel { | ||
| 1860 | background: transparent; | ||
| 1861 | color: #ccc; | ||
| 1862 | } | ||
| 1863 | |||
| 1864 | QDialog#QtSoftwareKeyboardDialog QWidget#button_L, | ||
| 1865 | QDialog#QtSoftwareKeyboardDialog QWidget#button_L_shift, | ||
| 1866 | QDialog#QtSoftwareKeyboardDialog QWidget#button_L_num { | ||
| 1867 | image: url(:/overlay/button_L_dark.png); | ||
| 1868 | } | ||
| 1869 | |||
| 1870 | QDialog#QtSoftwareKeyboardDialog QWidget#arrow_left, | ||
| 1871 | QDialog#QtSoftwareKeyboardDialog QWidget#arrow_left_shift, | ||
| 1872 | QDialog#QtSoftwareKeyboardDialog QWidget#arrow_left_num { | ||
| 1873 | image: url(:/overlay/arrow_left_dark.png); | ||
| 1874 | } | ||
| 1875 | |||
| 1876 | QDialog#QtSoftwareKeyboardDialog QWidget#button_R, | ||
| 1877 | QDialog#QtSoftwareKeyboardDialog QWidget#button_R_shift, | ||
| 1878 | QDialog#QtSoftwareKeyboardDialog QWidget#button_R_num { | ||
| 1879 | image: url(:/overlay/button_R_dark.png); | ||
| 1880 | } | ||
| 1881 | |||
| 1882 | QDialog#QtSoftwareKeyboardDialog QWidget#arrow_right, | ||
| 1883 | QDialog#QtSoftwareKeyboardDialog QWidget#arrow_right_shift, | ||
| 1884 | QDialog#QtSoftwareKeyboardDialog QWidget#arrow_right_num { | ||
| 1885 | image: url(:/overlay/arrow_right_dark.png); | ||
| 1886 | } | ||
| 1887 | |||
| 1888 | QDialog#QtSoftwareKeyboardDialog QWidget#button_press_stick, | ||
| 1889 | QDialog#QtSoftwareKeyboardDialog QWidget#button_press_stick_shift { | ||
| 1890 | image: url(:/overlay/button_press_stick_dark.png); | ||
| 1891 | } | ||
| 1892 | |||
| 1893 | QDialog#QtSoftwareKeyboardDialog QWidget#button_X, | ||
| 1894 | QDialog#QtSoftwareKeyboardDialog QWidget#button_X_shift, | ||
| 1895 | QDialog#QtSoftwareKeyboardDialog QWidget#button_X_num { | ||
| 1896 | image: url(:/overlay/button_X_dark.png); | ||
| 1897 | } | ||
| 1898 | |||
| 1899 | QDialog#QtSoftwareKeyboardDialog QWidget#button_A, | ||
| 1900 | QDialog#QtSoftwareKeyboardDialog QWidget#button_A_shift, | ||
| 1901 | QDialog#QtSoftwareKeyboardDialog QWidget#button_A_num { | ||
| 1902 | image: url(:/overlay/button_A_dark.png); | ||
| 1903 | } | ||
| 1904 | |||
| 1905 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok:disabled, | ||
| 1906 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space:disabled, | ||
| 1907 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return:disabled, | ||
| 1908 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace:disabled, | ||
| 1909 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift:disabled, | ||
| 1910 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift:disabled, | ||
| 1911 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return_shift:disabled, | ||
| 1912 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift:disabled, | ||
| 1913 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num:disabled, | ||
| 1914 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num:disabled { | ||
| 1915 | color: rgba(144, 144, 144, 1); | ||
| 1916 | background-color: rgba(95, 94, 95, 1); | ||
| 1917 | } | ||
| 1918 | |||
| 1919 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_at:disabled, | ||
| 1920 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_slash:disabled, | ||
| 1921 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_percent:disabled, | ||
| 1922 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_1:disabled, | ||
| 1923 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_2:disabled, | ||
| 1924 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_3:disabled, | ||
| 1925 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_4:disabled, | ||
| 1926 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_5:disabled, | ||
| 1927 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_6:disabled, | ||
| 1928 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_7:disabled, | ||
| 1929 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_8:disabled, | ||
| 1930 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_9:disabled, | ||
| 1931 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_0:disabled, | ||
| 1932 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return:disabled { | ||
| 1933 | color: rgba(144, 144, 144, 1); | ||
| 1934 | } | ||
| 1935 | |||
| 1936 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok:disabled, | ||
| 1937 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift:disabled, | ||
| 1938 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num:disabled { | ||
| 1939 | background-image: url(:/overlay/osk_button_plus_dark_disabled.png); | ||
| 1940 | } | ||
| 1941 | |||
| 1942 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace:disabled, | ||
| 1943 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift:disabled, | ||
| 1944 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num:disabled { | ||
| 1945 | background-image: url(:/overlay/osk_button_B_dark_disabled.png); | ||
| 1946 | } | ||
| 1947 | |||
| 1948 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space:disabled, | ||
| 1949 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift:disabled { | ||
| 1950 | background-image: url(:/overlay/osk_button_Y_dark_disabled.png); | ||
| 1951 | } | ||
| 1952 | |||
| 1953 | QDialog#QtSoftwareKeyboardDialog QFrame, | ||
| 1954 | QDialog#QtSoftwareKeyboardDialog QFrame[frameShape="0"], | ||
| 1955 | QDialog#OverlayDialog QFrame, | ||
| 1956 | QDialog#OverlayDialog QFrame[frameShape="0"] { | ||
| 1957 | border-radius: 0px; | ||
| 1958 | border: none; | ||
| 1566 | } | 1959 | } |
diff --git a/dist/qt_themes/qdarkstyle_midnight_blue/style.qss b/dist/qt_themes/qdarkstyle_midnight_blue/style.qss index a64037455..64e1ecbcc 100644 --- a/dist/qt_themes/qdarkstyle_midnight_blue/style.qss +++ b/dist/qt_themes/qdarkstyle_midnight_blue/style.qss | |||
| @@ -1,10 +1,10 @@ | |||
| 1 | /* --------------------------------------------------------------------------- | 1 | /* --------------------------------------------------------------------------- |
| 2 | 2 | ||
| 3 | Created by the qtsass compiler v0.1.1 | 3 | Created by the qtsass compiler v0.1.1 |
| 4 | 4 | ||
| 5 | The definitions are in the "qdarkstyle.qss._styles.scss" module | 5 | The definitions are in the "qdarkstyle.qss._styles.scss" module |
| 6 | 6 | ||
| 7 | WARNING! All changes made in this file will be lost! | 7 | WARNING! All changes made in this file will be lost! |
| 8 | 8 | ||
| 9 | --------------------------------------------------------------------------- */ | 9 | --------------------------------------------------------------------------- */ |
| 10 | /* QDarkStyleSheet ----------------------------------------------------------- | 10 | /* QDarkStyleSheet ----------------------------------------------------------- |
| @@ -15,34 +15,34 @@ It is based on three selecting colors, three greyish (background) colors | |||
| 15 | plus three whitish (foreground) colors. Each set of widgets of the same | 15 | plus three whitish (foreground) colors. Each set of widgets of the same |
| 16 | type have a header like this: | 16 | type have a header like this: |
| 17 | 17 | ||
| 18 | ------------------ | 18 | ------------------ |
| 19 | GroupName -------- | 19 | GroupName -------- |
| 20 | ------------------ | 20 | ------------------ |
| 21 | 21 | ||
| 22 | And each widget is separated with a header like this: | 22 | And each widget is separated with a header like this: |
| 23 | 23 | ||
| 24 | QWidgetName ------ | 24 | QWidgetName ------ |
| 25 | 25 | ||
| 26 | This makes more easy to find and change some css field. The basic | 26 | This makes more easy to find and change some css field. The basic |
| 27 | configuration is described bellow. | 27 | configuration is described bellow. |
| 28 | 28 | ||
| 29 | BACKGROUND ----------- | 29 | BACKGROUND ----------- |
| 30 | 30 | ||
| 31 | Light (unpressed) | 31 | Light (unpressed) |
| 32 | Normal (border, disabled, pressed, checked, toolbars, menus) | 32 | Normal (border, disabled, pressed, checked, toolbars, menus) |
| 33 | Dark (background) | 33 | Dark (background) |
| 34 | 34 | ||
| 35 | FOREGROUND ----------- | 35 | FOREGROUND ----------- |
| 36 | 36 | ||
| 37 | Light (texts/labels) | 37 | Light (texts/labels) |
| 38 | Normal (not used yet) | 38 | Normal (not used yet) |
| 39 | Dark (disabled texts) | 39 | Dark (disabled texts) |
| 40 | 40 | ||
| 41 | SELECTION ------------ | 41 | SELECTION ------------ |
| 42 | 42 | ||
| 43 | Light (selection/hover/active) | 43 | Light (selection/hover/active) |
| 44 | Normal (selected) | 44 | Normal (selected) |
| 45 | Dark (selected disabled) | 45 | Dark (selected disabled) |
| 46 | 46 | ||
| 47 | If a stranger configuration is required because of a bugfix or anything | 47 | If a stranger configuration is required because of a bugfix or anything |
| 48 | else, keep the comment on the line above so nobody changes it, including the | 48 | else, keep the comment on the line above so nobody changes it, including the |
| @@ -2483,3 +2483,404 @@ QWidget#controllerPlayer7, | |||
| 2483 | QWidget#controllerPlayer8 { | 2483 | QWidget#controllerPlayer8 { |
| 2484 | background: transparent; | 2484 | background: transparent; |
| 2485 | } | 2485 | } |
| 2486 | |||
| 2487 | QDialog#QtSoftwareKeyboardDialog, | ||
| 2488 | QStackedWidget#topOSK { | ||
| 2489 | background: rgba(15, 25, 34, .9); | ||
| 2490 | } | ||
| 2491 | |||
| 2492 | QDialog#OverlayDialog, | ||
| 2493 | QStackedWidget#stackedDialog { | ||
| 2494 | background: rgba(15, 25, 34, .7); | ||
| 2495 | } | ||
| 2496 | |||
| 2497 | QWidget#boxOSK, | ||
| 2498 | QWidget#lineOSK, | ||
| 2499 | QWidget#richDialog, | ||
| 2500 | QWidget#lineDialog { | ||
| 2501 | background: transparent; | ||
| 2502 | } | ||
| 2503 | |||
| 2504 | QStackedWidget#bottomOSK, | ||
| 2505 | QWidget#contentDialog, | ||
| 2506 | QWidget#contentRichDialog { | ||
| 2507 | background: rgba(31, 41, 51, 1); | ||
| 2508 | } | ||
| 2509 | |||
| 2510 | QWidget#contentDialog, | ||
| 2511 | QWidget#contentRichDialog { | ||
| 2512 | margin: 5px; | ||
| 2513 | border-radius: 6px; | ||
| 2514 | } | ||
| 2515 | |||
| 2516 | QWidget#buttonsDialog, | ||
| 2517 | QWidget#buttonsRichDialog { | ||
| 2518 | margin: 5px; | ||
| 2519 | border-top: 2px solid rgba(255, 255, 255, .9); | ||
| 2520 | } | ||
| 2521 | |||
| 2522 | QWidget#legendOSKnum { | ||
| 2523 | border-top: 1px solid rgba(255, 255, 255, 1); | ||
| 2524 | } | ||
| 2525 | |||
| 2526 | QStackedWidget#stackedDialog QTextBrowser QWidget { | ||
| 2527 | background: transparent; | ||
| 2528 | } | ||
| 2529 | |||
| 2530 | QStackedWidget#stackedDialog QTextBrowser QScrollBar { | ||
| 2531 | background: #19232d; | ||
| 2532 | border: none; | ||
| 2533 | } | ||
| 2534 | |||
| 2535 | QStackedWidget#stackedDialog QTextBrowser QScrollBar::sub-line, | ||
| 2536 | QStackedWidget#stackedDialog QTextBrowser QScrollBar::add-line { | ||
| 2537 | border-image: none; | ||
| 2538 | } | ||
| 2539 | |||
| 2540 | QWidget#mainOSK QStackedWidget, | ||
| 2541 | QDialog#OverlayDialog QStackedWidget { | ||
| 2542 | border: none; | ||
| 2543 | padding: 0px; | ||
| 2544 | } | ||
| 2545 | |||
| 2546 | QWidget#inputOSK { | ||
| 2547 | border-bottom: 3px solid rgba(255, 255, 255, .9); | ||
| 2548 | } | ||
| 2549 | |||
| 2550 | QWidget#inputOSK QLineEdit { | ||
| 2551 | background: transparent; | ||
| 2552 | border: none; | ||
| 2553 | color: #ccc; | ||
| 2554 | padding: 0px; | ||
| 2555 | } | ||
| 2556 | |||
| 2557 | QWidget#inputBoxOSK { | ||
| 2558 | border: 2px solid rgba(255, 255, 255, .9); | ||
| 2559 | } | ||
| 2560 | |||
| 2561 | QWidget#inputBoxOSK QTextEdit { | ||
| 2562 | background: transparent; | ||
| 2563 | border: none; | ||
| 2564 | color: #ccc; | ||
| 2565 | } | ||
| 2566 | |||
| 2567 | QWidget#richDialog QTextBrowser { | ||
| 2568 | background: transparent; | ||
| 2569 | border: none; | ||
| 2570 | color: #fff; | ||
| 2571 | padding: 35px 65px; | ||
| 2572 | } | ||
| 2573 | |||
| 2574 | QWidget#lineOSK QLabel#label_header { | ||
| 2575 | color: #f0f0f0; | ||
| 2576 | } | ||
| 2577 | |||
| 2578 | QWidget#lineOSK QLabel#label_sub, | ||
| 2579 | QWidget#lineOSK QLabel#label_characters, | ||
| 2580 | QWidget#contentDialog QLabel#label_title, | ||
| 2581 | QWidget#contentRichDialog QLabel#label_title_rich, | ||
| 2582 | QWidget#boxOSK QLabel#label_characters_box { | ||
| 2583 | color: #ccc; | ||
| 2584 | } | ||
| 2585 | |||
| 2586 | QWidget#buttonsDialog, | ||
| 2587 | QWidget#buttonsRichDialog, | ||
| 2588 | QWidget#mainOSK, | ||
| 2589 | QWidget#headerOSK, | ||
| 2590 | QWidget#normalOSK, | ||
| 2591 | QWidget#shiftOSK, | ||
| 2592 | QWidget#numOSK, | ||
| 2593 | QWidget#subOSK, | ||
| 2594 | QWidget#inputOSK, | ||
| 2595 | QWidget#inputBoxOSK, | ||
| 2596 | QWidget#charactersOSK, | ||
| 2597 | QWidget#charactersBoxOSK, | ||
| 2598 | QWidget#legendOSK, | ||
| 2599 | QWidget#legendOSK QWidget, | ||
| 2600 | QWidget#legendOSKshift, | ||
| 2601 | QWidget#legendOSKshift QWidget, | ||
| 2602 | QWidget#legendOSKnum, | ||
| 2603 | QWidget#legendOSKnum QWidget { | ||
| 2604 | background: transparent; | ||
| 2605 | } | ||
| 2606 | |||
| 2607 | QWidget#contentDialog QLabel, | ||
| 2608 | QWidget#legendOSK QLabel, | ||
| 2609 | QWidget#legendOSKshift QLabel, | ||
| 2610 | QWidget#legendOSKnum QLabel { | ||
| 2611 | color: rgba(255, 255, 255, 1); | ||
| 2612 | } | ||
| 2613 | |||
| 2614 | QWidget#contentDialog QLabel#label_dialog { | ||
| 2615 | padding: 20px 65px; | ||
| 2616 | } | ||
| 2617 | |||
| 2618 | QWidget#contentDialog QLabel#label_title, | ||
| 2619 | QWidget#contentRichDialog QLabel#label_title_rich { | ||
| 2620 | padding: 0px 65px; | ||
| 2621 | } | ||
| 2622 | |||
| 2623 | QDialog#OverlayDialog QPushButton { | ||
| 2624 | color: rgba(1, 253, 201, 1); | ||
| 2625 | background: transparent; | ||
| 2626 | border: none; | ||
| 2627 | padding: 0px; | ||
| 2628 | min-width: 0px; | ||
| 2629 | } | ||
| 2630 | |||
| 2631 | QDialog#OverlayDialog QPushButton:focus, | ||
| 2632 | QDialog#OverlayDialog QPushButton:hover { | ||
| 2633 | color: rgba(1, 253, 201, 1); | ||
| 2634 | background: rgba(18, 33, 46, 1); | ||
| 2635 | border: 5px solid rgba(56, 189, 225, 1); | ||
| 2636 | border-radius: 6px; | ||
| 2637 | outline: none; | ||
| 2638 | } | ||
| 2639 | |||
| 2640 | QDialog#OverlayDialog QPushButton:pressed { | ||
| 2641 | color: rgba(240, 240, 240, 1); | ||
| 2642 | background: rgba(110, 122, 130, 1); | ||
| 2643 | border: 5px solid rgba(56, 189, 225, 1); | ||
| 2644 | border-radius: 6px; | ||
| 2645 | outline: none; | ||
| 2646 | } | ||
| 2647 | |||
| 2648 | QDialog#QtSoftwareKeyboardDialog QLabel { | ||
| 2649 | padding: 0px; | ||
| 2650 | } | ||
| 2651 | |||
| 2652 | QDialog#QtSoftwareKeyboardDialog QPushButton { | ||
| 2653 | color: rgba(255, 255, 255, 1); | ||
| 2654 | background: rgba(40, 51, 60, 1); | ||
| 2655 | border: 2px solid rgba(31, 41, 51, 1); | ||
| 2656 | border-radius: 0px; | ||
| 2657 | padding: 0px; | ||
| 2658 | min-width: 0px; | ||
| 2659 | } | ||
| 2660 | |||
| 2661 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift, | ||
| 2662 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return, | ||
| 2663 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space, | ||
| 2664 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift_shift, | ||
| 2665 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return_shift, | ||
| 2666 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift { | ||
| 2667 | background: rgba(55, 66, 75, 1); | ||
| 2668 | border: 2px solid rgba(31, 41, 51, 1); | ||
| 2669 | } | ||
| 2670 | |||
| 2671 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace, | ||
| 2672 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift, | ||
| 2673 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num { | ||
| 2674 | color: rgba(240, 240, 240, 1); | ||
| 2675 | background: rgba(255, 255, 255, 1); | ||
| 2676 | border: 2px solid rgba(31, 41, 51, 1); | ||
| 2677 | } | ||
| 2678 | |||
| 2679 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok, | ||
| 2680 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift, | ||
| 2681 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num { | ||
| 2682 | color: rgba(0, 0, 0, 1); | ||
| 2683 | background: rgba(1, 253, 201, 1); | ||
| 2684 | border: 2px solid rgba(31, 41, 51, 1); | ||
| 2685 | } | ||
| 2686 | |||
| 2687 | QDialog#QtSoftwareKeyboardDialog QPushButton:focus, | ||
| 2688 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok:focus, | ||
| 2689 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift:focus, | ||
| 2690 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space:focus, | ||
| 2691 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return:focus, | ||
| 2692 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace:focus, | ||
| 2693 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift:focus, | ||
| 2694 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift_shift:focus, | ||
| 2695 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift:focus, | ||
| 2696 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return_shift:focus, | ||
| 2697 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift:focus, | ||
| 2698 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num:focus, | ||
| 2699 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num:focus, | ||
| 2700 | |||
| 2701 | QDialog#QtSoftwareKeyboardDialog QPushButton:hover, | ||
| 2702 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok:hover, | ||
| 2703 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift:hover, | ||
| 2704 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space:hover, | ||
| 2705 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return:hover, | ||
| 2706 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace:hover, | ||
| 2707 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift:hover, | ||
| 2708 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift_shift:hover, | ||
| 2709 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift:hover, | ||
| 2710 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return_shift:hover, | ||
| 2711 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift:hover, | ||
| 2712 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num:hover, | ||
| 2713 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num:hover { | ||
| 2714 | color: rgba(255, 255, 255, 1); | ||
| 2715 | background: rgba(18, 33, 46, 1); | ||
| 2716 | border: 5px solid rgba(56, 189, 225, 1); | ||
| 2717 | border-radius: 6px; | ||
| 2718 | outline: none; | ||
| 2719 | } | ||
| 2720 | |||
| 2721 | QDialog#QtSoftwareKeyboardDialog QPushButton:pressed, | ||
| 2722 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok:pressed, | ||
| 2723 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift:pressed, | ||
| 2724 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space:pressed, | ||
| 2725 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return:pressed, | ||
| 2726 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace:pressed, | ||
| 2727 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift:pressed, | ||
| 2728 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift_shift:pressed, | ||
| 2729 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift:pressed, | ||
| 2730 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return_shift:pressed, | ||
| 2731 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift:pressed, | ||
| 2732 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num:pressed, | ||
| 2733 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num:pressed { | ||
| 2734 | color: rgba(240, 240, 240, 1); | ||
| 2735 | background: rgba(110, 122, 130, 1); | ||
| 2736 | border: 5px solid rgba(56, 189, 225, 1); | ||
| 2737 | border-radius: 6px; | ||
| 2738 | } | ||
| 2739 | |||
| 2740 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace, | ||
| 2741 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift, | ||
| 2742 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num { | ||
| 2743 | background-position: right top; | ||
| 2744 | background-repeat: no-repeat; | ||
| 2745 | background-origin: content; | ||
| 2746 | background-image: url(:/overlay/osk_button_B_dark.png); | ||
| 2747 | qproperty-icon: url(:/overlay/osk_button_backspace_dark.png); | ||
| 2748 | qproperty-iconSize: 36px; | ||
| 2749 | } | ||
| 2750 | |||
| 2751 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space, | ||
| 2752 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift { | ||
| 2753 | background-position: right top; | ||
| 2754 | background-repeat: no-repeat; | ||
| 2755 | background-origin: content; | ||
| 2756 | background-image: url(:/overlay/osk_button_Y_dark.png); | ||
| 2757 | } | ||
| 2758 | |||
| 2759 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok, | ||
| 2760 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift, | ||
| 2761 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num { | ||
| 2762 | color: rgba(44, 44, 44, 1); | ||
| 2763 | background-position: right top; | ||
| 2764 | background-repeat: no-repeat; | ||
| 2765 | background-origin: content; | ||
| 2766 | background-image: url(:/overlay/osk_button_plus_dark.png); | ||
| 2767 | } | ||
| 2768 | |||
| 2769 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift { | ||
| 2770 | background-position: left top; | ||
| 2771 | background-repeat: no-repeat; | ||
| 2772 | background-origin: content; | ||
| 2773 | background-image: url(:/overlay/osk_button_shift_lock_off.png); | ||
| 2774 | qproperty-icon: url(:/overlay/osk_button_shift_dark.png); | ||
| 2775 | qproperty-iconSize: 36px; | ||
| 2776 | } | ||
| 2777 | |||
| 2778 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_shift_shift { | ||
| 2779 | background-position: left top; | ||
| 2780 | background-repeat: no-repeat; | ||
| 2781 | background-origin: content; | ||
| 2782 | background-image: url(:/overlay/osk_button_shift_lock_off.png); | ||
| 2783 | qproperty-icon: url(:/overlay/osk_button_shift_on_dark.png); | ||
| 2784 | qproperty-iconSize: 36px; | ||
| 2785 | } | ||
| 2786 | |||
| 2787 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_left_bracket, | ||
| 2788 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_right_bracket, | ||
| 2789 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_left_parenthesis, | ||
| 2790 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_right_parenthesis { | ||
| 2791 | padding-bottom: 7px; | ||
| 2792 | } | ||
| 2793 | |||
| 2794 | QDialog#QtSoftwareKeyboardDialog QWidget#titleOSK QLabel { | ||
| 2795 | background: transparent; | ||
| 2796 | color: #ccc; | ||
| 2797 | } | ||
| 2798 | |||
| 2799 | QDialog#QtSoftwareKeyboardDialog QWidget#button_L, | ||
| 2800 | QDialog#QtSoftwareKeyboardDialog QWidget#button_L_shift, | ||
| 2801 | QDialog#QtSoftwareKeyboardDialog QWidget#button_L_num { | ||
| 2802 | image: url(:/overlay/button_L_dark.png); | ||
| 2803 | } | ||
| 2804 | |||
| 2805 | QDialog#QtSoftwareKeyboardDialog QWidget#arrow_left, | ||
| 2806 | QDialog#QtSoftwareKeyboardDialog QWidget#arrow_left_shift, | ||
| 2807 | QDialog#QtSoftwareKeyboardDialog QWidget#arrow_left_num { | ||
| 2808 | image: url(:/overlay/arrow_left_dark.png); | ||
| 2809 | } | ||
| 2810 | |||
| 2811 | QDialog#QtSoftwareKeyboardDialog QWidget#button_R, | ||
| 2812 | QDialog#QtSoftwareKeyboardDialog QWidget#button_R_shift, | ||
| 2813 | QDialog#QtSoftwareKeyboardDialog QWidget#button_R_num { | ||
| 2814 | image: url(:/overlay/button_R_dark.png); | ||
| 2815 | } | ||
| 2816 | |||
| 2817 | QDialog#QtSoftwareKeyboardDialog QWidget#arrow_right, | ||
| 2818 | QDialog#QtSoftwareKeyboardDialog QWidget#arrow_right_shift, | ||
| 2819 | QDialog#QtSoftwareKeyboardDialog QWidget#arrow_right_num { | ||
| 2820 | image: url(:/overlay/arrow_right_dark.png); | ||
| 2821 | } | ||
| 2822 | |||
| 2823 | QDialog#QtSoftwareKeyboardDialog QWidget#button_press_stick, | ||
| 2824 | QDialog#QtSoftwareKeyboardDialog QWidget#button_press_stick_shift { | ||
| 2825 | image: url(:/overlay/button_press_stick_dark.png); | ||
| 2826 | } | ||
| 2827 | |||
| 2828 | QDialog#QtSoftwareKeyboardDialog QWidget#button_X, | ||
| 2829 | QDialog#QtSoftwareKeyboardDialog QWidget#button_X_shift, | ||
| 2830 | QDialog#QtSoftwareKeyboardDialog QWidget#button_X_num { | ||
| 2831 | image: url(:/overlay/button_X_dark.png); | ||
| 2832 | } | ||
| 2833 | |||
| 2834 | QDialog#QtSoftwareKeyboardDialog QWidget#button_A, | ||
| 2835 | QDialog#QtSoftwareKeyboardDialog QWidget#button_A_shift, | ||
| 2836 | QDialog#QtSoftwareKeyboardDialog QWidget#button_A_num { | ||
| 2837 | image: url(:/overlay/button_A_dark.png); | ||
| 2838 | } | ||
| 2839 | |||
| 2840 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok:disabled, | ||
| 2841 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space:disabled, | ||
| 2842 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return:disabled, | ||
| 2843 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace:disabled, | ||
| 2844 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift:disabled, | ||
| 2845 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift:disabled, | ||
| 2846 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return_shift:disabled, | ||
| 2847 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift:disabled, | ||
| 2848 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num:disabled, | ||
| 2849 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num:disabled { | ||
| 2850 | color: rgba(144, 144, 144, 1); | ||
| 2851 | background-color: rgba(55, 66, 75, 1); | ||
| 2852 | } | ||
| 2853 | |||
| 2854 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_at:disabled, | ||
| 2855 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_slash:disabled, | ||
| 2856 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_percent:disabled, | ||
| 2857 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_1:disabled, | ||
| 2858 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_2:disabled, | ||
| 2859 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_3:disabled, | ||
| 2860 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_4:disabled, | ||
| 2861 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_5:disabled, | ||
| 2862 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_6:disabled, | ||
| 2863 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_7:disabled, | ||
| 2864 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_8:disabled, | ||
| 2865 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_9:disabled, | ||
| 2866 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_0:disabled, | ||
| 2867 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_return:disabled { | ||
| 2868 | color: rgba(144, 144, 144, 1); | ||
| 2869 | } | ||
| 2870 | |||
| 2871 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok:disabled, | ||
| 2872 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_shift:disabled, | ||
| 2873 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_ok_num:disabled { | ||
| 2874 | background-image: url(:/overlay/osk_button_plus_dark_disabled.png); | ||
| 2875 | } | ||
| 2876 | |||
| 2877 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace:disabled, | ||
| 2878 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_shift:disabled, | ||
| 2879 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_backspace_num:disabled { | ||
| 2880 | background-image: url(:/overlay/osk_button_B_dark_disabled.png); | ||
| 2881 | } | ||
| 2882 | |||
| 2883 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space:disabled, | ||
| 2884 | QDialog#QtSoftwareKeyboardDialog QPushButton#button_space_shift:disabled { | ||
| 2885 | background-image: url(:/overlay/osk_button_Y_dark_disabled.png); | ||
| 2886 | } | ||