Acri.qss 18.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
/* OBSTheme, main QApplication palette and QML values */
OBSTheme {
    window: #181819;
    windowText: rgb(225,224,225);
    base: rgb(18,18,21);
    alternateBase: rgb(0,0,0);
    text: rgb(225,224,225);
    button: #162458;
    buttonText: rgb(225,224,225);
    brightText: #484848;

    light: #162458;
    mid: #181819;
    dark: rgb(18,18,21);
    shadow: rgb(0,0,0);

    highlight: #252458;
    highlightText: #FFFFFF;

    link: #605ee6;
    linkVisited: #605ee6;
}

OBSTheme::disabled {
    text: #484848;
    buttonText: #484848;
    brightText: #484848;
}

OBSTheme::inactive {
    highlight: rgb(48,47,48);
    highlightText: rgb(255, 255, 255);
}

W
Warchamp7 已提交
35 36 37 38 39 40 41 42 43 44
/* General style, we override only what is needed. */
QWidget {
	background-color: #181819;
	alternate-background-color: rgb(18,18,21);
	color: rgb(225,224,225);
	selection-background-color: #252458;
	selection-color: white;
	outline: none;
	font-family: "Open Sans", "Tahoma", "Arial", sans-serif;
	font-size: 12px;
J
Joel Bethke 已提交
45
	overflow: auto;
W
Warchamp7 已提交
46
}
W
Warchamp7 已提交
47

W
Warchamp7 已提交
48 49
#menubar {
	padding: 2px 8px 0px;
W
Warchamp7 已提交
50 51 52 53 54 55 56 57
}

QLabel:link {
	color: #2a3a75;
}

QMenu {
	border: 1px solid #333336;
W
Warchamp7 已提交
58
	padding: 4px;
W
Warchamp7 已提交
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
}

* [frameShape="1"], * [frameShape="2"], * [frameShape="3"], * [frameShape="4"], * [frameShape="5"], * [frameShape="6"] {
	/*border: 1px solid rgb(231,30,31); */
	border: none;
}

* [frameShape="2"],
* [frameShape="4"] {
	border: 1px solid #333336;
}


QSizeGrip {
	background-color: transparent;
W
Warchamp7 已提交
74
	image: url(./Acri/sizegrip.png);
W
Warchamp7 已提交
75 76 77 78 79 80 81 82
}

/* Misc */

QWidget::disabled {
	color: #484848;
}

J
Joel Bethke 已提交
83 84 85 86 87 88 89 90
* [themeID="error"] {
	color: #d91740;
}

* [themeID="warning"] {
	color: #d9af17;
}

W
Warchamp7 已提交
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
/* Dropdown menus, Scenes box, Sources box */
QAbstractItemView {
	background-color: #181819;
	border: 1px solid #333336;
}

/* Group Box */

QGroupBox {
	border: 2px solid #2f2f2f;
	margin-bottom: 8px;
	padding-top: 32px;
	font-weight: bold;
	font-size: 14px;
}

QGroupBox::title {
	left: 4px;
	right: 0;
	top: 8px;
	font-weight: bold;
	padding-left: 8px;
	padding-right: 8px;
	padding-bottom: 8px;
	font-size: 16px;
}

/* --- */


/* Tooltips */
QToolTip {
	background-color: #212121;
	color: rgb(205,205,205);
	border: 1px solid #343335;
	border-radius: 4px;
}

/* Top Menu Bar Items */
QMenuBar::item {
	background-color: rgb(24,24,25);
	padding: 6px;
}

QMenuBar::item:selected {
	background: #2a3a75;
}

/* Listbox item */
J
jp9000 已提交
140 141
QListWidget::item,
SourceTree::item {
W
Warchamp7 已提交
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
	padding: 4px 2px;
	margin-bottom: 2px;
	margin-top: 0px;
	border: 1px solid transparent;
}

QListWidget QLineEdit {
	 padding-top: 0px;
	 padding-bottom: 0px;
	 padding-right: 0;
	 padding-left: 2px;
	 border: none;
	 border-radius: none;
}

/* Dock stuff */
QDockWidget {
W
Warchamp7 已提交
159
	background: #181819;
W
Warchamp7 已提交
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
	border: none;
	font-size: 14px;
	font-weight: bold;
	border-bottom: 2px solid #2f2f2f;
}

QDockWidget::title {
	border-bottom: 2px solid #2f2f2f;
	margin-left: 5px;
	margin-right: 5px;
	padding-top: 0px;
	padding-bottom: 6px;
	text-align: left;
	background-image: url(./Acri/top_hook.png);
	background-origin: padding;
	background-clip: padding;
	background-position: bottom left;
	background-repeat: none;
}

QDockWidget::close-button,
QDockWidget::float-button {
	icon-size: 20px;
	subcontrol-position: top right;
	subcontrol-origin: padding;
	right: 0px;
}

QDockWidget::float-button {
	right: 20px;
}


QListWidget#scenes,
SourceListWidget {
	border: none;
	border-bottom: 2px solid #2f2f2f;
}

J
jp9000 已提交
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
SourceTree {
	border: none;
	border-bottom: 1px solid #2f2f2f;
}

SourceTree QLabel {
	padding: 2px 0px;
	margin: -2px 4px -2px;
}

SourceTree QLineEdit {
	background-color: #0c101e;
	padding: 2px;
	margin: -2px 6px -2px 3px;
	font-size: 12px;
}

W
Warchamp7 已提交
216 217 218 219 220
#scenesFrame,
#sourcesFrame {
	margin-left: -7px;
	margin-right: -7px;
	margin-top: -8px;
W
Warchamp7 已提交
221
	margin-bottom: -12px;
W
Warchamp7 已提交
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
}

#scenesToolbar,
#sourcesToolbar{
	background-image: url(./Acri/bot_hook2.png);
	background-origin: margin;
	background-clip: margin;
	background-position: top left;
	background-repeat: none;
}

#sourcesToolbar {
	background-image: url(./Acri/bot_hook.png);
}

/* Listbox item selected, unfocused */
J
jp9000 已提交
238 239
QListWidget::item:hover,
SourceTree::item:hover {
W
Warchamp7 已提交
240 241 242 243 244
	background-color: #212121;
	border: 1px solid #333336;
}

/* Listbox item selected */
J
jp9000 已提交
245 246
QListWidget::item:selected,
SourceTree::item:selected {
W
Warchamp7 已提交
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
	background-color: #131a30;
	border: 1px solid #252a45;
}

/* ScrollBars */

QScrollBar::corner {
	background-color: transparent;
	border: none;
}

QScrollBar:vertical {
	background-color: transparent;
	width: 20px;
	margin-top: -3px;
	margin-bottom: -3px;
W
Warchamp7 已提交
263
	padding: 4px;
W
Warchamp7 已提交
264 265 266 267 268 269 270 271 272 273 274 275 276
}

QScrollBar::handle:vertical {
	background-color: #2f2f2f;
	min-height: 20px;
	margin: 0px 3px;
	border-radius: 0px;
	border: none;
}

QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical {
	border: none;
	background: none;
W
Warchamp7 已提交
277
	height: 0;
W
Warchamp7 已提交
278 279 280 281 282 283 284 285 286 287
}

QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical, QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
	border: none;
	background: none;
	color: none;
}

QScrollBar:horizontal {
	background-color: transparent;
288
	height: 20px;
W
Warchamp7 已提交
289 290
	margin-left: -3px;
	margin-right: -3px;
W
Warchamp7 已提交
291
	padding: 4px;
W
Warchamp7 已提交
292 293 294 295 296
}

QScrollBar::handle:horizontal {
	background-color: #2f2f2f;
	min-width: 20px;
297
	margin: 3px 0px;
W
Warchamp7 已提交
298 299 300 301 302 303 304
	border-radius: 0px;
	border: none;
}

QScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal {
	border: none;
	background: none;
W
Warchamp7 已提交
305
	width: 0;
W
Warchamp7 已提交
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
}

QScrollBar::left-arrow:horizontal, QScrollBar::right-arrow:horizontal, QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal {
	border: none;
	background: none;
	color: none;
}

/* Scenes and Sources toolbar */

QToolBar {
	background-color: rgb(24,24,25);
	margin-top: 4px;
}

QToolButton:hover {
	background-color: #2a3a75;
	border: 1px solid #233166;
	border-radius: none;
}

QToolButton:pressed {
	background-color: #161f41;
	border-radius: none;
}

* [themeID="addIconSmall"] {
C
Clayton Groeneveld 已提交
333
	qproperty-icon: url(./Dark/plus.svg);
W
Warchamp7 已提交
334 335 336
}

* [themeID="removeIconSmall"] {
C
Clayton Groeneveld 已提交
337
	qproperty-icon: url(./Dark/minus.svg);
W
Warchamp7 已提交
338 339 340
}

* [themeID="propertiesIconSmall"] {
C
Clayton Groeneveld 已提交
341
	qproperty-icon: url(./Dark/settings/general.svg);
W
Warchamp7 已提交
342 343 344
}

* [themeID="configIconSmall"] {
C
Clayton Groeneveld 已提交
345
	qproperty-icon: url(./Dark/settings/general.svg);
W
Warchamp7 已提交
346 347 348
}

* [themeID="upArrowIconSmall"] {
C
Clayton Groeneveld 已提交
349
	qproperty-icon: url(./Dark/up.svg);
W
Warchamp7 已提交
350 351 352
}

* [themeID="downArrowIconSmall"] {
C
Clayton Groeneveld 已提交
353
	qproperty-icon: url(./Dark/down.svg);
W
Warchamp7 已提交
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
}

/* Tab Widget */

QTabWidget::pane { /* The tab widget frame */
	border-top: 1px solid #2f2f2f;
}

QTabWidget::tab-bar {
	alignment: left;
}

QTabBar::tab {
	background-color: #212121;
	border: 1px solid #333336;
	min-width: 8ex;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 10px;
	padding-right: 10px;
	margin-right: 2px;
	margin-top: 1px;
	margin-bottom: 1px;
}

QTabBar::tab:selected {
	background-color: #131a30;
	border-color: #252a45;
}

QTabBar::tab:hover {
	background-color: #233166;
	border-color: #364683;
}

QTabBar::tab:pressed {
	background-color: #161f41;
}

/* ComboBox */

QComboBox {
	background-color: rgb(40,40,42);
	border-style: solid;
	border: 1px;
	border-color: rgb(24,24,30);
	padding: 4px;
	padding-left: 10px;
}

QComboBox::drop-down {
	border:none;
	border-left: 1px solid rgba(31,30,31,155);
	width: 20px;
}

QComboBox::down-arrow {
	qproperty-alignment: AlignTop;
C
Clayton Groeneveld 已提交
412
	image: url(./Dark/updown.svg);
W
Warchamp7 已提交
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
	width: 100%;
}

QComboBox:on {
	background-color: #2a3a75;
}

QComboBox:editable {
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

QComboBox::drop-down:editable {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

QComboBox::down-arrow:editable {
	qproperty-alignment: AlignTop;
C
Clayton Groeneveld 已提交
432
	image: url(./Dark/down.svg);
W
Warchamp7 已提交
433 434 435 436 437 438 439 440
	width: 8%;
}

/* Textedits etc */

QLineEdit, QTextEdit, QPlainTextEdit {
	background-color: rgb(8,8,11);
	border: none;
W
Warchamp7 已提交
441
	padding: 4px;
W
Warchamp7 已提交
442 443 444 445 446 447 448 449
	padding-left: 2px;
}

/* Spinbox and doubleSpinbox */

QSpinBox, QDoubleSpinBox {
	background-color: rgb(8,8,11);
	border: none;
W
Warchamp7 已提交
450
	padding: 4px;
W
Warchamp7 已提交
451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
	padding-left: 2px;
	padding-right: 15px;
	margin-right: 10px;
}

QSpinBox::up-button, QDoubleSpinBox::up-button {
	subcontrol-origin: margin;
	subcontrol-position: top right; /* position at the top right corner */

	background-color: rgb(24,24,30);
	border: 1px solid rgb(8,8,11);
	border-radius: 3px;
	border-width: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom-width: 0;
}

QSpinBox::down-button, QDoubleSpinBox::down-button {
	subcontrol-origin: margin;
	subcontrol-position: bottom right; /* position at the top right corner */
	background-color: rgb(24,24,30);
	border: 1px solid rgb(8,8,11);
	border-radius: 3px;
	border-width: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-top-width: 0;
}

QSpinBox::up-button:hover, QSpinBox::down-button:hover, QDoubleSpinBox::up-button:hover, QDoubleSpinBox::down-button:hover {
	background-color: rgb(15,33,51);
}

QSpinBox::up-button:pressed, QSpinBox::down-button:pressed, QDoubleSpinBox::up-button:pressed, QDoubleSpinBox::down-button:pressed {
	background-color: rgb(24,24,25);
}

QSpinBox::up-button:disabled, QSpinBox::up-button:off, QSpinBox::down-button:disabled, QSpinBox::down-button:off {
	background-color: rgb(24,24,25);
}

QDoubleSpinBox::up-button:disabled, QDoubleSpinBox::up-button:off, QDoubleSpinBox::down-button:disabled, QDoubleSpinBox::down-button:off {
	background-color: rgb(24,24,25);
}

QSpinBox::up-arrow, QDoubleSpinBox::up-arrow {
C
Clayton Groeneveld 已提交
498
	image: url(./Dark/up.svg);
W
Warchamp7 已提交
499 500 501 502
	width: 100%;
}

QSpinBox::down-arrow, QDoubleSpinBox::down-arrow {
C
Clayton Groeneveld 已提交
503
	image: url(./Dark/down.svg);
W
Warchamp7 已提交
504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
	width: 100%;
}


/* Buttons */

QPushButton {
	color: rgb(225,224,225);
	background-color: #162458;
	border: 1px solid #233166;
	padding: 6px 20px;
	margin: 1px;
}

QPushButton::flat {
	background-color: rgb(24,24,25);
J
Joel Bethke 已提交
520
	border: none;
W
Warchamp7 已提交
521 522 523
}

QPushButton:checked {
J
Joel Bethke 已提交
524 525
	background-color: #581624;
	border-color: #84162d;
W
Warchamp7 已提交
526 527 528 529 530 531 532 533 534 535 536
}

QPushButton:hover {
	background-color: #2a3a75;
	border: 1px solid #364683;
}

QPushButton:pressed {
	background-color: #161f41;
}

537 538 539 540 541
QPushButton:disabled {
	border: 1px solid #232426;
	background-color: #1a1a1b;
}

J
Joel Bethke 已提交
542 543 544 545 546
QPushButton::flat:hover,
QPushButton::flat:disabled {
	border: none;
}

W
Warchamp7 已提交
547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
/* Progress Bar */

QProgressBar {
	background: #101010;
	border: 2px solid #363636;
	border-radius: 0px;
	text-align: center;
}

QProgressBar::chunk {
	background-color: #2a3a75;
}

/* Sliders */

QSlider::groove:horizontal {
	background-color: QLinearGradient(x1: 0, y1: 0, x2: 0, y2: 1,
		stop: 0 rgb(31,30,31),
		stop: 0.75 rgb(50, 49, 50));
	height: 4px;
	border: none;
	border-radius: 2px;
}

QSlider::handle:horizontal {
	background-color: QLinearGradient(x1: 0, y1: 0, x2: 0, y2: 1,
		stop: 0 rgb(240,239,240),
		stop: 0.25 rgb(200,199,200),
		stop: 1 rgb(162,161,162));
	border: 1px solid rgb(24,24,25);
	border-radius: 3px;
	height: 10px;
	width: 18px;
	margin: -3px 0; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */
}

QSlider::handle:horizontal:pressed {
S
Shaolin 已提交
584
	background-color: QLinearGradient(x1: 0, y1: 0, x2: 0, y2: 1,
W
Warchamp7 已提交
585 586 587 588 589
		stop: 0 rgb(240,239,240),
		stop: 0.25 rgb(200,199,200),
		stop: 1 rgb(162,161,162));
}

S
Shaolin 已提交
590 591 592 593
QSlider::sub-page:horizontal {
	background-color: #2a3a75;
}

W
Warchamp7 已提交
594
QSlider::sub-page:horizontal:disabled {
S
Shaolin 已提交
595 596 597
	background-color: QLinearGradient(x1: 0, y1: 1, x2: 0, y2: 0,
		stop: 0 rgb(26,25,26),
		stop: 0.75 rgb(10, 10, 10));
W
Warchamp7 已提交
598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615
	border-radius: 2px;
}

QSlider::groove:vertical {
	background-color: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0,
		stop: 0 rgb(31,30,31),
		stop: 0.75 rgb(50, 49, 50));
	width: 4px;
	border: none;
	border-radius: 2px;
}

QSlider::handle:vertical {
	background-color: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0,
		stop: 0 rgb(240,239,240),
		stop: 0.25 rgb(200,199,200),
		stop: 1 rgb(162,161,162));
	border: 1px solid rgb(24,24,25);
S
Shaolin 已提交
616
	border-radius: 3px;
W
Warchamp7 已提交
617 618
	width: 10px;
	height: 18px;
S
Shaolin 已提交
619
	margin: 0 -3px; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */
W
Warchamp7 已提交
620 621 622
}

QSlider::handle:vertical:pressed {
S
Shaolin 已提交
623
	background-color: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0,
W
Warchamp7 已提交
624 625 626 627 628
		stop: 0 rgb(240,239,240),
		stop: 0.25 rgb(200,199,200),
		stop: 1 rgb(162,161,162));
}

S
Shaolin 已提交
629 630 631 632 633
QSlider::add-page:vertical {
	background-color: #2a3a75;
}

QSlider::add-page:vertical:disabled {
W
Warchamp7 已提交
634
	background-color: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0,
S
Shaolin 已提交
635 636
		stop: 0 rgb(26,25,26),
		stop: 0.75 rgb(10, 10, 10));
W
Warchamp7 已提交
637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658
	border-radius: 2px;
}

QSlider::handle:hover {
	background-color: rgb(200,199,200);
}

QSlider::handle:disabled {
	background-color: rgb(15,15,16);
}

/* Volume Control */

/* Old Meters */
VolumeMeter {
	qproperty-bkColor: rgb(8,8,11);
	qproperty-magColor:;
	qproperty-peakColor:;
	qproperty-peakHoldColor: rgb(225,224,225);
}

VolumeMeter {
W
Warchamp7 已提交
659 660 661 662 663 664 665

	qproperty-backgroundNominalColor: #42740c;
	qproperty-backgroundWarningColor: #988F0F;
	qproperty-backgroundErrorColor: #802004;
	qproperty-foregroundNominalColor: #84D82B;
	qproperty-foregroundWarningColor: #E4D717;
	qproperty-foregroundErrorColor: #D74116;
W
Warchamp7 已提交
666 667 668 669 670 671 672 673 674 675 676 677 678 679 680
	qproperty-magnitudeColor: rgb(49, 54, 59); /* Blue-gray */
	qproperty-majorTickColor: rgb(239, 240, 241); /* White */
	qproperty-minorTickColor: rgb(118, 121, 124); /* Light Gray */
	qproperty-peakDecayRate: 23.4; /* Override of the standard PPM Type I rate. */
}


/* Status Bar */


QStatusBar::item {
	border: none;
}

/* Checkboxes */
W
Warchamp7 已提交
681 682 683 684
QCheckBox {
	padding: 4px;
}

W
Warchamp7 已提交
685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774
QCheckBox::indicator,
QGroupBox::indicator {
	width: 20px;
	height: 20px;
}

QGroupBox::indicator {
	margin-left: 2px;
}

QCheckBox::indicator:unchecked {
	image: url(./Acri/checkbox_unchecked.png);
}

QCheckBox::indicator:unchecked:hover,
QGroupBox::indicator:unchecked:hover {
	border: none;
	image: url(./Acri/checkbox_unchecked_focus.png);
}

QCheckBox::indicator:checked {
	image: url(./Acri/checkbox_checked.png);
}

QCheckBox::indicator:checked:hover,
QGroupBox::indicator:checked:hover {
	border: none;
	image: url(./Acri/checkbox_checked_focus.png);
}

QCheckBox::indicator:checked:disabled,
QGroupBox::indicator:checked:disabled {
	image: url(./Acri/checkbox_checked_disabled.png);
}

QCheckBox::indicator:unchecked:disabled,
QGroupBox::indicator:unchecked:disabled {
	image: url(./Acri/checkbox_unchecked_disabled.png);
}

/* Radio Buttons */

QRadioButton::indicator {
	width: 19px;
	height: 19px;
}

QRadioButton::indicator:unchecked {
	image: url(./Acri/radio_unchecked.png);
}


QRadioButton::indicator:unchecked:hover,
QRadioButton::indicator:unchecked:focus,
QRadioButton::indicator:unchecked:pressed {
	border: none;
	outline: none;
	image: url(./Acri/radio_unchecked_focus.png);
}

QRadioButton::indicator:checked {
	border: none;
	outline: none;
	image: url(./Acri/radio_checked.png);
}

QRadioButton::indicator:checked:hover,
QRadioButton::indicator:checked:focus,
QRadioButton::indicator:checked:pressed {
	border: none;
	outline: none;
	image: url(./Acri/radio_checked_focus.png);
}

QRadioButton::indicator:checked:disabled {
	outline: none;
	image: url(./Acri/radio_checked_disabled.png);
}

QRadioButton::indicator:unchecked:disabled {
	image: url(./Acri/radio_unchecked_disabled.png);
}

/* Mute CheckBox */

MuteCheckBox {
	outline: none;
}

MuteCheckBox::indicator:checked {
C
Clayton Groeneveld 已提交
775
	image: url(./Dark/mute.svg);
W
Warchamp7 已提交
776 777 778
}

MuteCheckBox::indicator:unchecked {
C
Clayton Groeneveld 已提交
779
	image: url(./Dark/settings/audio.svg);
W
Warchamp7 已提交
780 781 782
}

MuteCheckBox::indicator:unchecked:hover {
C
Clayton Groeneveld 已提交
783
	image: url(./Dark/settings/audio.svg);
W
Warchamp7 已提交
784 785 786
}

MuteCheckBox::indicator:unchecked:focus {
C
Clayton Groeneveld 已提交
787
	image: url(./Dark/settings/audio.svg);
W
Warchamp7 已提交
788 789
}
MuteCheckBox::indicator:checked:hover {
C
Clayton Groeneveld 已提交
790
	image: url(./Dark/mute.svg);
W
Warchamp7 已提交
791 792 793
}

MuteCheckBox::indicator:checked:focus {
C
Clayton Groeneveld 已提交
794
	image: url(./Dark/mute.svg);
W
Warchamp7 已提交
795 796 797
}

MuteCheckBox::indicator:checked:disabled {
C
Clayton Groeneveld 已提交
798
	image: url(./Dark/mute.svg);
W
Warchamp7 已提交
799 800 801
}

MuteCheckBox::indicator:unchecked:disabled {
C
Clayton Groeneveld 已提交
802
	image: url(./Dark/settings/audio.svg);
W
Warchamp7 已提交
803 804 805 806 807 808 809
}

OBSHotkeyLabel[hotkeyPairHover=true] {
	color: rgba(27, 96, 166);
}


J
jp9000 已提交
810 811 812 813 814 815 816 817 818 819 820 821 822 823 824
/* Group Collapse Checkbox */

SourceTreeSubItemCheckBox {
    background: transparent;
    outline: none;
    padding: 0px;
}

SourceTreeSubItemCheckBox::indicator {
    width: 12px;
    height: 12px;
}

SourceTreeSubItemCheckBox::indicator:checked,
SourceTreeSubItemCheckBox::indicator:checked:hover {
C
Clayton Groeneveld 已提交
825
    image: url(./Dark/expand.svg);
J
jp9000 已提交
826 827 828 829
}

SourceTreeSubItemCheckBox::indicator:unchecked,
SourceTreeSubItemCheckBox::indicator:unchecked:hover {
C
Clayton Groeneveld 已提交
830
    image: url(./Dark/down.svg);
J
jp9000 已提交
831 832 833
}


W
Warchamp7 已提交
834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872
/* Label warning/error */

QLabel#warningLabel {
	color: rgb(192, 128, 0);
	font-weight: bold;
}

QLabel#errorLabel {
	color: rgb(192, 0, 0);
	font-weight: bold;
}

/* Settings Menu */

#buttonBox {
	border-top: 2px solid grey;
}

/* Special Fixes */

OBSBasicProperties,
#OBSBasicSettings,
#OBSBasicFilters {
	background: #101010;
}

FocusList::item {
	padding: 0px 2px;
}

#fpsTypes {
	padding: 0px;
}

#finishPage QLabel {
	padding: -2px 0px;
	background: transparent;
	min-height: 26px;
}
C
cg2121 已提交
873 874 875

/* About dialog */

W
Warchamp7 已提交
876 877 878 879 880 881 882 883 884
#OBSAbout #icon {
	padding: 0;
}

#OBSAbout QTextBrowser {
	background: transparent;
	padding: 2px 0;
}

C
cg2121 已提交
885 886 887
* [themeID="aboutName"] {
	font-size: 36px;
	font-weight: bold;
W
Warchamp7 已提交
888
	padding: 0;
C
cg2121 已提交
889 890 891 892 893
}

* [themeID="aboutVersion"] {
	font-size: 16px;
	margin-bottom: 20px;
W
Warchamp7 已提交
894
	padding: 0;
C
cg2121 已提交
895 896 897 898 899 900 901 902 903
}

* [themeID="aboutInfo"] {
	margin-bottom: 20px;
}

* [themeID="aboutHLayout"] {
	background-color: rgb(8, 8, 11);
}
904 905 906

/* Preview background color */

907 908
OBSQTDisplay {
	qproperty-displayBackgroundColor: #28282A;
909
}
910 911 912 913 914 915 916 917

/* Preview/Program labels */

* [themeID="previewProgramLabels"] {
	font-size: 18px;
	font-weight: bold;
	color: rgb(122,121,122);
}
C
Clayton Groeneveld 已提交
918 919 920 921 922 923 924 925 926 927 928 929

/* Settings Icons */

OBSBasicSettings {
    qproperty-generalIcon: url(./Dark/settings/general.svg);
    qproperty-streamIcon: url(./Dark/settings/stream.svg);
    qproperty-outputIcon: url(./Dark/settings/output.svg);
    qproperty-audioIcon: url(./Dark/settings/audio.svg);
    qproperty-videoIcon: url(./Dark/settings/video.svg);
    qproperty-hotkeysIcon: url(./Dark/settings/hotkeys.svg);
    qproperty-advancedIcon: url(./Dark/settings/advanced.svg);
}
C
Clayton Groeneveld 已提交
930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973

/* Locked CheckBox */

LockedCheckBox {
    outline: none;
}

LockedCheckBox::indicator:checked {
    image: url(./Dark/locked.svg);
}

LockedCheckBox::indicator:unchecked {
    image: url(:res/images/unlocked.svg);
}

LockedCheckBox::indicator:checked:hover {
    image: url(./Dark/locked.svg);
}

LockedCheckBox::indicator:unchecked:hover {
    image: url(:res/images/unlocked.svg);
}

/* Visibilty CheckBox */

VisibilityCheckBox {
    outline: none;
}

VisibilityCheckBox::indicator:checked {
    image: url(./Dark/visible.svg);
}

VisibilityCheckBox::indicator:unchecked {
    image: url(:res/images/invisible.svg);
}

VisibilityCheckBox::indicator:checked:hover {
    image: url(./Dark/visible.svg);
}

VisibilityCheckBox::indicator:unchecked:hover {
    image: url(:res/images/invisible.svg);
}