Acri.qss 21.9 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;
W
Warchamp7 已提交
45
}
W
Warchamp7 已提交
46

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

QLabel:link {
	color: #2a3a75;
}

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

* [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 已提交
73
	image: url(./Acri/sizegrip.png);
W
Warchamp7 已提交
74 75 76 77 78 79 80 81
}

/* Misc */

QWidget::disabled {
	color: #484848;
}

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

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

W
Warchamp7 已提交
90 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
/* 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 已提交
139 140
QListWidget::item,
SourceTree::item {
W
Warchamp7 已提交
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
	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 */
W
Warchamp7 已提交
157
QDockWidget {
158 159
	titlebar-close-icon: url('./Dark/close.svg');
	titlebar-normal-icon: url('./Dark/popout.svg');
W
Warchamp7 已提交
160 161
}

W
Warchamp7 已提交
162
QDockWidget {
W
Warchamp7 已提交
163
	background: #181819;
W
Warchamp7 已提交
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
	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;
W
Warchamp7 已提交
190
	margin: 0px;
W
Warchamp7 已提交
191 192 193 194 195 196 197 198 199 200 201 202 203
}

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


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

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

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
}

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

C
Colin Edwards 已提交
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
/* Source Context */
#contextContainer {
    min-height: 40px;
    max-height: 40px;
}

#contextContainer QPushButton[themeID2=contextBarButton] {
    padding: 0px;
}

QPushButton#sourcePropertiesButton {
    qproperty-icon: url(./Dark/settings/general.svg);
}

QPushButton#sourceFiltersButton {
    qproperty-icon: url(./Dark/filter.svg);
}

W
Warchamp7 已提交
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
/* 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 已提交
351
	qproperty-icon: url(./Dark/plus.svg);
W
Warchamp7 已提交
352 353 354
}

* [themeID="removeIconSmall"] {
C
Clayton Groeneveld 已提交
355
	qproperty-icon: url(./Dark/minus.svg);
W
Warchamp7 已提交
356 357 358
}

* [themeID="propertiesIconSmall"] {
C
Clayton Groeneveld 已提交
359
	qproperty-icon: url(./Dark/settings/general.svg);
W
Warchamp7 已提交
360 361 362
}

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

366 367 368 369
* [themeID="refreshIconSmall"] {
    qproperty-icon: url(./Dark/refresh.svg);
}

W
Warchamp7 已提交
370
* [themeID="upArrowIconSmall"] {
C
Clayton Groeneveld 已提交
371
	qproperty-icon: url(./Dark/up.svg);
W
Warchamp7 已提交
372 373 374
}

* [themeID="downArrowIconSmall"] {
C
Clayton Groeneveld 已提交
375
	qproperty-icon: url(./Dark/down.svg);
W
Warchamp7 已提交
376 377
}

J
jp9000 已提交
378 379 380 381
* [themeID="pauseIconSmall"] {
	qproperty-icon: url(./Dark/media-pause.svg);
}

W
Warchamp7 已提交
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 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
/* 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 已提交
438
	image: url(./Dark/updown.svg);
W
Warchamp7 已提交
439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
	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 已提交
458
	image: url(./Dark/down.svg);
W
Warchamp7 已提交
459 460 461 462 463 464 465 466
	width: 8%;
}

/* Textedits etc */

QLineEdit, QTextEdit, QPlainTextEdit {
	background-color: rgb(8,8,11);
	border: none;
W
Warchamp7 已提交
467
	padding: 4px;
W
Warchamp7 已提交
468 469 470 471 472 473 474 475
	padding-left: 2px;
}

/* Spinbox and doubleSpinbox */

QSpinBox, QDoubleSpinBox {
	background-color: rgb(8,8,11);
	border: none;
W
Warchamp7 已提交
476
	padding: 4px;
W
Warchamp7 已提交
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
	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 已提交
524
	image: url(./Dark/up.svg);
W
Warchamp7 已提交
525 526 527 528
	width: 100%;
}

QSpinBox::down-arrow, QDoubleSpinBox::down-arrow {
C
Clayton Groeneveld 已提交
529
	image: url(./Dark/down.svg);
W
Warchamp7 已提交
530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
	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 已提交
546
	border: none;
W
Warchamp7 已提交
547 548 549
}

QPushButton:checked {
J
Joel Bethke 已提交
550 551
	background-color: #581624;
	border-color: #84162d;
W
Warchamp7 已提交
552 553 554 555 556 557 558 559 560 561 562
}

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

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

563 564 565 566 567
QPushButton:disabled {
	border: 1px solid #232426;
	background-color: #1a1a1b;
}

J
Joel Bethke 已提交
568 569 570 571 572
QPushButton::flat:hover,
QPushButton::flat:disabled {
	border: none;
}

W
Warchamp7 已提交
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
/* 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 已提交
610
	background-color: QLinearGradient(x1: 0, y1: 0, x2: 0, y2: 1,
W
Warchamp7 已提交
611 612 613 614 615
		stop: 0 rgb(240,239,240),
		stop: 0.25 rgb(200,199,200),
		stop: 1 rgb(162,161,162));
}

S
Shaolin 已提交
616 617 618 619
QSlider::sub-page:horizontal {
	background-color: #2a3a75;
}

W
Warchamp7 已提交
620
QSlider::sub-page:horizontal:disabled {
S
Shaolin 已提交
621 622 623
	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 已提交
624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641
	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 已提交
642
	border-radius: 3px;
W
Warchamp7 已提交
643 644
	width: 10px;
	height: 18px;
S
Shaolin 已提交
645
	margin: 0 -3px; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */
W
Warchamp7 已提交
646 647 648
}

QSlider::handle:vertical:pressed {
S
Shaolin 已提交
649
	background-color: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0,
W
Warchamp7 已提交
650 651 652 653 654
		stop: 0 rgb(240,239,240),
		stop: 0.25 rgb(200,199,200),
		stop: 1 rgb(162,161,162));
}

S
Shaolin 已提交
655 656 657 658 659
QSlider::add-page:vertical {
	background-color: #2a3a75;
}

QSlider::add-page:vertical:disabled {
W
Warchamp7 已提交
660
	background-color: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0,
S
Shaolin 已提交
661 662
		stop: 0 rgb(26,25,26),
		stop: 0.75 rgb(10, 10, 10));
W
Warchamp7 已提交
663 664 665 666 667 668 669 670 671 672 673 674 675 676
	border-radius: 2px;
}

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

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

/* Volume Control */

VolumeMeter {
W
Warchamp7 已提交
677 678 679 680 681 682 683

	qproperty-backgroundNominalColor: #42740c;
	qproperty-backgroundWarningColor: #988F0F;
	qproperty-backgroundErrorColor: #802004;
	qproperty-foregroundNominalColor: #84D82B;
	qproperty-foregroundWarningColor: #E4D717;
	qproperty-foregroundErrorColor: #D74116;
W
Warchamp7 已提交
684 685 686 687 688 689 690 691 692 693 694 695 696 697 698
	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 已提交
699 700 701 702
QCheckBox {
	padding: 4px;
}

W
Warchamp7 已提交
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 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792
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 已提交
793
	image: url(./Dark/mute.svg);
W
Warchamp7 已提交
794 795 796
}

MuteCheckBox::indicator:unchecked {
C
Clayton Groeneveld 已提交
797
	image: url(./Dark/settings/audio.svg);
W
Warchamp7 已提交
798 799 800
}

MuteCheckBox::indicator:unchecked:hover {
C
Clayton Groeneveld 已提交
801
	image: url(./Dark/settings/audio.svg);
W
Warchamp7 已提交
802 803 804
}

MuteCheckBox::indicator:unchecked:focus {
C
Clayton Groeneveld 已提交
805
	image: url(./Dark/settings/audio.svg);
W
Warchamp7 已提交
806 807
}
MuteCheckBox::indicator:checked:hover {
C
Clayton Groeneveld 已提交
808
	image: url(./Dark/mute.svg);
W
Warchamp7 已提交
809 810 811
}

MuteCheckBox::indicator:checked:focus {
C
Clayton Groeneveld 已提交
812
	image: url(./Dark/mute.svg);
W
Warchamp7 已提交
813 814 815
}

MuteCheckBox::indicator:checked:disabled {
C
Clayton Groeneveld 已提交
816
	image: url(./Dark/mute.svg);
W
Warchamp7 已提交
817 818 819
}

MuteCheckBox::indicator:unchecked:disabled {
C
Clayton Groeneveld 已提交
820
	image: url(./Dark/settings/audio.svg);
W
Warchamp7 已提交
821 822 823 824 825 826 827
}

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


J
jp9000 已提交
828 829 830 831 832 833 834 835 836 837 838 839 840 841 842
/* 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 已提交
843
    image: url(./Dark/expand.svg);
J
jp9000 已提交
844 845 846 847
}

SourceTreeSubItemCheckBox::indicator:unchecked,
SourceTreeSubItemCheckBox::indicator:unchecked:hover {
C
Clayton Groeneveld 已提交
848
    image: url(./Dark/down.svg);
J
jp9000 已提交
849 850 851
}


W
Warchamp7 已提交
852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890
/* 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 已提交
891 892 893

/* About dialog */

W
Warchamp7 已提交
894 895 896 897 898 899 900 901 902
#OBSAbout #icon {
	padding: 0;
}

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

C
cg2121 已提交
903 904 905
* [themeID="aboutName"] {
	font-size: 36px;
	font-weight: bold;
W
Warchamp7 已提交
906
	padding: 0;
C
cg2121 已提交
907 908 909 910 911
}

* [themeID="aboutVersion"] {
	font-size: 16px;
	margin-bottom: 20px;
W
Warchamp7 已提交
912
	padding: 0;
C
cg2121 已提交
913 914 915 916 917 918 919 920 921
}

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

* [themeID="aboutHLayout"] {
	background-color: rgb(8, 8, 11);
}
922 923 924

/* Preview background color */

925 926
OBSQTDisplay {
	qproperty-displayBackgroundColor: #28282A;
927
}
928 929 930 931 932 933 934 935

/* Preview/Program labels */

* [themeID="previewProgramLabels"] {
	font-size: 18px;
	font-weight: bold;
	color: rgb(122,121,122);
}
C
Clayton Groeneveld 已提交
936 937 938 939 940 941 942 943 944 945 946 947

/* 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 已提交
948

949 950 951 952 953
OBSBasicSettings QListWidget::item {
    padding-top: 5px;
    padding-bottom: 5px;
}

954 955 956 957 958 959 960 961 962 963 964 965 966 967
/* Table */

QTableView {
    gridline-color: #333336;
}

QHeaderView {
    border: none;
}
QHeaderView::section {
    background-color: #101010;
    border: 1px solid #333336;
    border-left: none;
}
968 969 970 971
*[themeID="trashIcon"] {
    margin: 0;
}

C
Clayton Groeneveld 已提交
972 973 974 975
/* Locked CheckBox */

LockedCheckBox {
    outline: none;
976 977 978 979 980 981 982
    background: transparent;
    padding: 0px;
}

LockedCheckBox::indicator {
    width: 16px;
    height: 16px;
C
Clayton Groeneveld 已提交
983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
}

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);
}

L
luz.paz 已提交
1001
/* Visibility CheckBox */
C
Clayton Groeneveld 已提交
1002 1003 1004

VisibilityCheckBox {
    outline: none;
1005 1006 1007 1008 1009 1010 1011
    background: transparent;
    padding: 0px;
}

VisibilityCheckBox::indicator {
    width: 16px;
    height: 16px;
C
Clayton Groeneveld 已提交
1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
}

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);
}
1029 1030 1031 1032 1033 1034 1035 1036

* [themeID="trashIcon"] {
    qproperty-icon: url(./Dark/trash.svg);
}

* [themeID="revertIcon"] {
    qproperty-icon: url(./Dark/revert.svg);
}
1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049

QPushButton#extraPanelDelete {
     background: transparent;
     border: none;
}

QPushButton#extraPanelDelete:hover {
     background-color: #2a3a75;
}

QPushButton#extraPanelDelete:pressed {
    background-color: #161f41;
}
C
Clayton Groeneveld 已提交
1050

V
VodBox 已提交
1051 1052 1053 1054
OBSMissingFiles {
	qproperty-warningIcon: url(./Dark/alert.svg);
}

C
Clayton Groeneveld 已提交
1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073
/* Source Icons */

OBSBasic {
    qproperty-imageIcon: url(./Dark/sources/image.svg);
    qproperty-colorIcon: url(./Dark/sources/brush.svg);
    qproperty-slideshowIcon: url(./Dark/sources/slideshow.svg);
    qproperty-audioInputIcon: url(./Dark/sources/microphone.svg);
    qproperty-audioOutputIcon: url(./Dark/settings/audio.svg);
    qproperty-desktopCapIcon: url(./Dark/settings/video.svg);
    qproperty-windowCapIcon: url(./Dark/sources/window.svg);
    qproperty-gameCapIcon: url(./Dark/sources/gamepad.svg);
    qproperty-cameraIcon: url(./Dark/sources/camera.svg);
    qproperty-textIcon: url(./Dark/sources/text.svg);
    qproperty-mediaIcon: url(./Dark/sources/media.svg);
    qproperty-browserIcon: url(./Dark/sources/globe.svg);
    qproperty-groupIcon: url(./Dark/sources/group.svg);
    qproperty-sceneIcon: url(./Dark/sources/scene.svg);
    qproperty-defaultIcon: url(./Dark/sources/default.svg);
}
V
VodBox 已提交
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095

/* Scene Tree */

SceneTree#scenes {
    qproperty-gridItemWidth: 180;
    qproperty-gridItemHeight: 35;
}

*[gridMode="true"] SceneTree#scenes {
	border-bottom: none;
}

*[gridMode="false"] SceneTree#scenes {
	border-bottom: 2px solid #2f2f2f;
}

*[gridMode="true"] SceneTree::item {
    padding: 4px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0px;
}
1096 1097 1098 1099 1100 1101

/* Save replay icon */

* [themeID="replayIconSmall"] {
    qproperty-icon: url(./Dark/save.svg);
}
C
Clayton Groeneveld 已提交
1102 1103 1104 1105

/* Studio Mode T-Bar */

QSlider[themeID="tBarSlider"] {
C
Clayton Groeneveld 已提交
1106
	height: 28px;
C
Clayton Groeneveld 已提交
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128
}

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

QSlider::sub-page:horizontal[themeID="tBarSlider"] {
	height: 5px;
	background-color: QLinearGradient(x1: 0, y1: 0, x2: 0, y2: 1,
		stop: 0 rgb(31,30,31),
		stop: 0.75 rgb(50, 49, 50));
	border: none;
	border-radius: 2px;
}

QSlider::handle:horizontal[themeID="tBarSlider"] {
	background-color: #d2d2d2;
C
Clayton Groeneveld 已提交
1129 1130 1131
	width: 14px;
	height: 28px;
	margin: -28px 0px;
C
Clayton Groeneveld 已提交
1132
}
C
Colin Edwards 已提交
1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158

/* Media icons */

* [themeID="playIcon"] {
    qproperty-icon: url(./Dark/media/media_play.svg);
}

* [themeID="pauseIcon"] {
    qproperty-icon: url(./Dark/media/media_pause.svg);
}

* [themeID="restartIcon"] {
    qproperty-icon: url(./Dark/media/media_restart.svg);
}

* [themeID="stopIcon"] {
    qproperty-icon: url(./Dark/media/media_stop.svg);
}

* [themeID="nextIcon"] {
    qproperty-icon: url(./Dark/media/media_next.svg);
}

* [themeID="previousIcon"] {
    qproperty-icon: url(./Dark/media/media_previous.svg);
}