Acri.qss 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853
  1. /* OBSTheme, main QApplication palette and QML values */
  2. OBSTheme {
  3. window: #181819;
  4. windowText: rgb(225,224,225);
  5. base: rgb(18,18,21);
  6. alternateBase: rgb(0,0,0);
  7. text: rgb(225,224,225);
  8. button: #162458;
  9. buttonText: rgb(225,224,225);
  10. brightText: #484848;
  11. light: #162458;
  12. mid: #181819;
  13. dark: rgb(18,18,21);
  14. shadow: rgb(0,0,0);
  15. highlight: #252458;
  16. highlightText: #FFFFFF;
  17. link: #605ee6;
  18. linkVisited: #605ee6;
  19. }
  20. OBSTheme::disabled {
  21. text: #484848;
  22. buttonText: #484848;
  23. brightText: #484848;
  24. }
  25. OBSTheme::inactive {
  26. highlight: rgb(48,47,48);
  27. highlightText: rgb(255, 255, 255);
  28. }
  29. /* General style, we override only what is needed. */
  30. QWidget {
  31. background-color: #181819;
  32. alternate-background-color: rgb(18,18,21);
  33. color: rgb(225,224,225);
  34. selection-background-color: #252458;
  35. selection-color: white;
  36. outline: none;
  37. font-family: "Open Sans", "Tahoma", "Arial", sans-serif;
  38. font-size: 12px;
  39. padding: 4px;
  40. }
  41. #menubar {
  42. padding: 2px 8px 0px;
  43. }
  44. QLabel:link {
  45. color: #2a3a75;
  46. }
  47. QMenu {
  48. border: 1px solid #333336;
  49. }
  50. * [frameShape="1"], * [frameShape="2"], * [frameShape="3"], * [frameShape="4"], * [frameShape="5"], * [frameShape="6"] {
  51. /*border: 1px solid rgb(231,30,31); */
  52. border: none;
  53. }
  54. * [frameShape="2"],
  55. * [frameShape="4"] {
  56. border: 1px solid #333336;
  57. }
  58. QSizeGrip {
  59. background-color: transparent;
  60. image: url(./Acri/sizegrip.png);
  61. }
  62. /* Misc */
  63. QWidget::disabled {
  64. color: #484848;
  65. }
  66. /* Dropdown menus, Scenes box, Sources box */
  67. QAbstractItemView {
  68. background-color: #181819;
  69. border: 1px solid #333336;
  70. }
  71. /* Group Box */
  72. QGroupBox {
  73. border: 2px solid #2f2f2f;
  74. margin-bottom: 8px;
  75. padding-top: 32px;
  76. font-weight: bold;
  77. font-size: 14px;
  78. }
  79. QGroupBox::title {
  80. left: 4px;
  81. right: 0;
  82. top: 8px;
  83. font-weight: bold;
  84. padding-left: 8px;
  85. padding-right: 8px;
  86. padding-bottom: 8px;
  87. font-size: 16px;
  88. }
  89. /* --- */
  90. /* Tooltips */
  91. QToolTip {
  92. background-color: #212121;
  93. color: rgb(205,205,205);
  94. border: 1px solid #343335;
  95. border-radius: 4px;
  96. }
  97. /* Top Menu Bar Items */
  98. QMenuBar::item {
  99. background-color: rgb(24,24,25);
  100. padding: 6px;
  101. }
  102. QMenuBar::item:selected {
  103. background: #2a3a75;
  104. }
  105. /* Listbox item */
  106. QListWidget::item,
  107. SourceTree::item {
  108. padding: 4px 2px;
  109. margin-bottom: 2px;
  110. margin-top: 0px;
  111. border: 1px solid transparent;
  112. }
  113. QListWidget QLineEdit {
  114. padding-top: 0px;
  115. padding-bottom: 0px;
  116. padding-right: 0;
  117. padding-left: 2px;
  118. border: none;
  119. border-radius: none;
  120. }
  121. /* Dock stuff */
  122. QDockWidget {
  123. background: transparent;
  124. border: none;
  125. font-size: 14px;
  126. font-weight: bold;
  127. border-bottom: 2px solid #2f2f2f;
  128. }
  129. QDockWidget::title {
  130. border-bottom: 2px solid #2f2f2f;
  131. margin-left: 5px;
  132. margin-right: 5px;
  133. padding-top: 0px;
  134. padding-bottom: 6px;
  135. text-align: left;
  136. background-image: url(./Acri/top_hook.png);
  137. background-origin: padding;
  138. background-clip: padding;
  139. background-position: bottom left;
  140. background-repeat: none;
  141. }
  142. QDockWidget::close-button,
  143. QDockWidget::float-button {
  144. icon-size: 20px;
  145. subcontrol-position: top right;
  146. subcontrol-origin: padding;
  147. right: 0px;
  148. }
  149. QDockWidget::float-button {
  150. right: 20px;
  151. }
  152. QListWidget#scenes,
  153. SourceListWidget {
  154. border: none;
  155. border-bottom: 2px solid #2f2f2f;
  156. }
  157. SourceTree {
  158. border: none;
  159. border-bottom: 1px solid #2f2f2f;
  160. }
  161. SourceTree QLabel {
  162. padding: 2px 0px;
  163. margin: -2px 4px -2px;
  164. }
  165. SourceTree QLineEdit {
  166. background-color: #0c101e;
  167. padding: 2px;
  168. margin: -2px 6px -2px 3px;
  169. font-size: 12px;
  170. }
  171. #scenesFrame,
  172. #sourcesFrame {
  173. margin-left: -7px;
  174. margin-right: -7px;
  175. margin-top: -8px;
  176. margin-bottom: -12px;
  177. }
  178. #scenesToolbar,
  179. #sourcesToolbar{
  180. background-image: url(./Acri/bot_hook2.png);
  181. background-origin: margin;
  182. background-clip: margin;
  183. background-position: top left;
  184. background-repeat: none;
  185. }
  186. #sourcesToolbar {
  187. background-image: url(./Acri/bot_hook.png);
  188. }
  189. /* Listbox item selected, unfocused */
  190. QListWidget::item:hover,
  191. SourceTree::item:hover {
  192. background-color: #212121;
  193. border: 1px solid #333336;
  194. }
  195. /* Listbox item selected */
  196. QListWidget::item:selected,
  197. SourceTree::item:selected {
  198. background-color: #131a30;
  199. border: 1px solid #252a45;
  200. }
  201. /* ScrollBars */
  202. QScrollBar::corner {
  203. background-color: transparent;
  204. border: none;
  205. }
  206. QScrollBar:vertical {
  207. background-color: transparent;
  208. width: 20px;
  209. margin-top: -3px;
  210. margin-bottom: -3px;
  211. }
  212. QScrollBar::handle:vertical {
  213. background-color: #2f2f2f;
  214. min-height: 20px;
  215. margin: 0px 3px;
  216. border-radius: 0px;
  217. border: none;
  218. }
  219. QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical {
  220. border: none;
  221. background: none;
  222. }
  223. QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical, QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
  224. border: none;
  225. background: none;
  226. color: none;
  227. }
  228. QScrollBar:horizontal {
  229. background-color: transparent;
  230. height: 10px;
  231. margin-left: -3px;
  232. margin-right: -3px;
  233. }
  234. QScrollBar::handle:horizontal {
  235. background-color: #2f2f2f;
  236. min-width: 20px;
  237. margin: 0px 0px -3px;
  238. border-radius: 0px;
  239. border: none;
  240. }
  241. QScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal {
  242. border: none;
  243. background: none;
  244. }
  245. QScrollBar::left-arrow:horizontal, QScrollBar::right-arrow:horizontal, QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal {
  246. border: none;
  247. background: none;
  248. color: none;
  249. }
  250. /* Scenes and Sources toolbar */
  251. QToolBar {
  252. background-color: rgb(24,24,25);
  253. margin-top: 4px;
  254. }
  255. QToolButton:hover {
  256. background-color: #2a3a75;
  257. border: 1px solid #233166;
  258. border-radius: none;
  259. }
  260. QToolButton:pressed {
  261. background-color: #161f41;
  262. border-radius: none;
  263. }
  264. * [themeID="addIconSmall"] {
  265. qproperty-icon: url(./Acri/plus.png);
  266. }
  267. * [themeID="removeIconSmall"] {
  268. qproperty-icon: url(./Acri/minus.png);
  269. }
  270. * [themeID="propertiesIconSmall"] {
  271. qproperty-icon: url(./Acri/cogwheel.png);
  272. }
  273. * [themeID="configIconSmall"] {
  274. qproperty-icon: url(./Acri/cogwheel.png);
  275. }
  276. * [themeID="upArrowIconSmall"] {
  277. qproperty-icon: url(./Acri/up_arrow.png);
  278. }
  279. * [themeID="downArrowIconSmall"] {
  280. qproperty-icon: url(./Acri/down_arrow.png);
  281. }
  282. /* Tab Widget */
  283. QTabWidget::pane { /* The tab widget frame */
  284. border-top: 1px solid #2f2f2f;
  285. }
  286. QTabWidget::tab-bar {
  287. alignment: left;
  288. }
  289. QTabBar::tab {
  290. background-color: #212121;
  291. border: 1px solid #333336;
  292. min-width: 8ex;
  293. padding-top: 4px;
  294. padding-bottom: 4px;
  295. padding-left: 10px;
  296. padding-right: 10px;
  297. margin-right: 2px;
  298. margin-top: 1px;
  299. margin-bottom: 1px;
  300. }
  301. QTabBar::tab:selected {
  302. background-color: #131a30;
  303. border-color: #252a45;
  304. }
  305. QTabBar::tab:hover {
  306. background-color: #233166;
  307. border-color: #364683;
  308. }
  309. QTabBar::tab:pressed {
  310. background-color: #161f41;
  311. }
  312. /* ComboBox */
  313. QComboBox {
  314. background-color: rgb(40,40,42);
  315. border-style: solid;
  316. border: 1px;
  317. border-color: rgb(24,24,30);
  318. padding: 4px;
  319. padding-left: 10px;
  320. }
  321. QComboBox::drop-down {
  322. border:none;
  323. border-left: 1px solid rgba(31,30,31,155);
  324. width: 20px;
  325. }
  326. QComboBox::down-arrow {
  327. qproperty-alignment: AlignTop;
  328. image: url(./Acri/updown.png);
  329. width: 100%;
  330. }
  331. QComboBox:on {
  332. background-color: #2a3a75;
  333. }
  334. QComboBox:editable {
  335. border-top-left-radius: 0px;
  336. border-bottom-left-radius: 0px;
  337. }
  338. QComboBox::drop-down:editable {
  339. border-top-right-radius: 3px;
  340. border-bottom-right-radius: 3px;
  341. }
  342. QComboBox::down-arrow:editable {
  343. qproperty-alignment: AlignTop;
  344. image: url(./Acri/down_arrow.png);
  345. width: 8%;
  346. }
  347. /* Textedits etc */
  348. QLineEdit, QTextEdit, QPlainTextEdit {
  349. background-color: rgb(8,8,11);
  350. border: none;
  351. padding-left: 2px;
  352. }
  353. /* Spinbox and doubleSpinbox */
  354. QSpinBox, QDoubleSpinBox {
  355. background-color: rgb(8,8,11);
  356. border: none;
  357. padding-left: 2px;
  358. padding-right: 15px;
  359. margin-right: 10px;
  360. }
  361. QSpinBox::up-button, QDoubleSpinBox::up-button {
  362. subcontrol-origin: margin;
  363. subcontrol-position: top right; /* position at the top right corner */
  364. background-color: rgb(24,24,30);
  365. border: 1px solid rgb(8,8,11);
  366. border-radius: 3px;
  367. border-width: 0;
  368. border-bottom-left-radius: 0;
  369. border-bottom-right-radius: 0;
  370. border-bottom-width: 0;
  371. }
  372. QSpinBox::down-button, QDoubleSpinBox::down-button {
  373. subcontrol-origin: margin;
  374. subcontrol-position: bottom right; /* position at the top right corner */
  375. background-color: rgb(24,24,30);
  376. border: 1px solid rgb(8,8,11);
  377. border-radius: 3px;
  378. border-width: 0;
  379. border-top-left-radius: 0;
  380. border-top-right-radius: 0;
  381. border-top-width: 0;
  382. }
  383. QSpinBox::up-button:hover, QSpinBox::down-button:hover, QDoubleSpinBox::up-button:hover, QDoubleSpinBox::down-button:hover {
  384. background-color: rgb(15,33,51);
  385. }
  386. QSpinBox::up-button:pressed, QSpinBox::down-button:pressed, QDoubleSpinBox::up-button:pressed, QDoubleSpinBox::down-button:pressed {
  387. background-color: rgb(24,24,25);
  388. }
  389. QSpinBox::up-button:disabled, QSpinBox::up-button:off, QSpinBox::down-button:disabled, QSpinBox::down-button:off {
  390. background-color: rgb(24,24,25);
  391. }
  392. QDoubleSpinBox::up-button:disabled, QDoubleSpinBox::up-button:off, QDoubleSpinBox::down-button:disabled, QDoubleSpinBox::down-button:off {
  393. background-color: rgb(24,24,25);
  394. }
  395. QSpinBox::up-arrow, QDoubleSpinBox::up-arrow {
  396. image: url(./Acri/up_arrow.png);
  397. width: 100%;
  398. }
  399. QSpinBox::down-arrow, QDoubleSpinBox::down-arrow {
  400. image: url(./Acri/down_arrow.png);
  401. width: 100%;
  402. }
  403. /* Buttons */
  404. QPushButton {
  405. color: rgb(225,224,225);
  406. background-color: #162458;
  407. border: 1px solid #233166;
  408. padding: 6px 20px;
  409. margin: 1px;
  410. }
  411. QPushButton::flat {
  412. background-color: rgb(24,24,25);
  413. }
  414. QPushButton:checked {
  415. background-color: #202b52;
  416. }
  417. QPushButton:hover {
  418. background-color: #2a3a75;
  419. border: 1px solid #364683;
  420. }
  421. QPushButton:pressed {
  422. background-color: #161f41;
  423. }
  424. QPushButton:disabled {
  425. border: 1px solid #232426;
  426. background-color: #1a1a1b;
  427. }
  428. /* Progress Bar */
  429. QProgressBar {
  430. background: #101010;
  431. border: 2px solid #363636;
  432. border-radius: 0px;
  433. text-align: center;
  434. }
  435. QProgressBar::chunk {
  436. background-color: #2a3a75;
  437. }
  438. /* Sliders */
  439. QSlider::groove:horizontal {
  440. background-color: QLinearGradient(x1: 0, y1: 0, x2: 0, y2: 1,
  441. stop: 0 rgb(31,30,31),
  442. stop: 0.75 rgb(50, 49, 50));
  443. height: 4px;
  444. border: none;
  445. border-radius: 2px;
  446. }
  447. QSlider::handle:horizontal {
  448. background-color: QLinearGradient(x1: 0, y1: 0, x2: 0, y2: 1,
  449. stop: 0 rgb(240,239,240),
  450. stop: 0.25 rgb(200,199,200),
  451. stop: 1 rgb(162,161,162));
  452. border: 1px solid rgb(24,24,25);
  453. border-radius: 3px;
  454. height: 10px;
  455. width: 18px;
  456. margin: -3px 0; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */
  457. }
  458. QSlider::handle:horizontal:pressed {
  459. background-color: QLinearGradient(x1: 0, y1: 0, x2: 0, y2: 1,
  460. stop: 0 rgb(240,239,240),
  461. stop: 0.25 rgb(200,199,200),
  462. stop: 1 rgb(162,161,162));
  463. }
  464. QSlider::sub-page:horizontal {
  465. background-color: #2a3a75;
  466. }
  467. QSlider::sub-page:horizontal:disabled {
  468. background-color: QLinearGradient(x1: 0, y1: 1, x2: 0, y2: 0,
  469. stop: 0 rgb(26,25,26),
  470. stop: 0.75 rgb(10, 10, 10));
  471. border-radius: 2px;
  472. }
  473. QSlider::groove:vertical {
  474. background-color: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0,
  475. stop: 0 rgb(31,30,31),
  476. stop: 0.75 rgb(50, 49, 50));
  477. width: 4px;
  478. border: none;
  479. border-radius: 2px;
  480. }
  481. QSlider::handle:vertical {
  482. background-color: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0,
  483. stop: 0 rgb(240,239,240),
  484. stop: 0.25 rgb(200,199,200),
  485. stop: 1 rgb(162,161,162));
  486. border: 1px solid rgb(24,24,25);
  487. border-radius: 3px;
  488. width: 10px;
  489. height: 18px;
  490. margin: 0 -3px; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */
  491. }
  492. QSlider::handle:vertical:pressed {
  493. background-color: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0,
  494. stop: 0 rgb(240,239,240),
  495. stop: 0.25 rgb(200,199,200),
  496. stop: 1 rgb(162,161,162));
  497. }
  498. QSlider::add-page:vertical {
  499. background-color: #2a3a75;
  500. }
  501. QSlider::add-page:vertical:disabled {
  502. background-color: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0,
  503. stop: 0 rgb(26,25,26),
  504. stop: 0.75 rgb(10, 10, 10));
  505. border-radius: 2px;
  506. }
  507. QSlider::handle:hover {
  508. background-color: rgb(200,199,200);
  509. }
  510. QSlider::handle:disabled {
  511. background-color: rgb(15,15,16);
  512. }
  513. /* Volume Control */
  514. /* Old Meters */
  515. VolumeMeter {
  516. qproperty-bkColor: rgb(8,8,11);
  517. qproperty-magColor:;
  518. qproperty-peakColor:;
  519. qproperty-peakHoldColor: rgb(225,224,225);
  520. }
  521. VolumeMeter {
  522. qproperty-backgroundNominalColor: #42740c;
  523. qproperty-backgroundWarningColor: #988F0F;
  524. qproperty-backgroundErrorColor: #802004;
  525. qproperty-foregroundNominalColor: #84D82B;
  526. qproperty-foregroundWarningColor: #E4D717;
  527. qproperty-foregroundErrorColor: #D74116;
  528. qproperty-magnitudeColor: rgb(49, 54, 59); /* Blue-gray */
  529. qproperty-majorTickColor: rgb(239, 240, 241); /* White */
  530. qproperty-minorTickColor: rgb(118, 121, 124); /* Light Gray */
  531. qproperty-peakDecayRate: 23.4; /* Override of the standard PPM Type I rate. */
  532. }
  533. /* Status Bar */
  534. QStatusBar::item {
  535. border: none;
  536. }
  537. /* Checkboxes */
  538. QCheckBox::indicator,
  539. QGroupBox::indicator {
  540. width: 20px;
  541. height: 20px;
  542. }
  543. QGroupBox::indicator {
  544. margin-left: 2px;
  545. }
  546. QCheckBox::indicator:unchecked {
  547. image: url(./Acri/checkbox_unchecked.png);
  548. }
  549. QCheckBox::indicator:unchecked:hover,
  550. QGroupBox::indicator:unchecked:hover {
  551. border: none;
  552. image: url(./Acri/checkbox_unchecked_focus.png);
  553. }
  554. QCheckBox::indicator:checked {
  555. image: url(./Acri/checkbox_checked.png);
  556. }
  557. QCheckBox::indicator:checked:hover,
  558. QGroupBox::indicator:checked:hover {
  559. border: none;
  560. image: url(./Acri/checkbox_checked_focus.png);
  561. }
  562. QCheckBox::indicator:checked:disabled,
  563. QGroupBox::indicator:checked:disabled {
  564. image: url(./Acri/checkbox_checked_disabled.png);
  565. }
  566. QCheckBox::indicator:unchecked:disabled,
  567. QGroupBox::indicator:unchecked:disabled {
  568. image: url(./Acri/checkbox_unchecked_disabled.png);
  569. }
  570. /* Radio Buttons */
  571. QRadioButton::indicator {
  572. width: 19px;
  573. height: 19px;
  574. }
  575. QRadioButton::indicator:unchecked {
  576. image: url(./Acri/radio_unchecked.png);
  577. }
  578. QRadioButton::indicator:unchecked:hover,
  579. QRadioButton::indicator:unchecked:focus,
  580. QRadioButton::indicator:unchecked:pressed {
  581. border: none;
  582. outline: none;
  583. image: url(./Acri/radio_unchecked_focus.png);
  584. }
  585. QRadioButton::indicator:checked {
  586. border: none;
  587. outline: none;
  588. image: url(./Acri/radio_checked.png);
  589. }
  590. QRadioButton::indicator:checked:hover,
  591. QRadioButton::indicator:checked:focus,
  592. QRadioButton::indicator:checked:pressed {
  593. border: none;
  594. outline: none;
  595. image: url(./Acri/radio_checked_focus.png);
  596. }
  597. QRadioButton::indicator:checked:disabled {
  598. outline: none;
  599. image: url(./Acri/radio_checked_disabled.png);
  600. }
  601. QRadioButton::indicator:unchecked:disabled {
  602. image: url(./Acri/radio_unchecked_disabled.png);
  603. }
  604. /* Mute CheckBox */
  605. MuteCheckBox {
  606. outline: none;
  607. }
  608. MuteCheckBox::indicator:checked {
  609. image: url(./Dark/mute.png);
  610. }
  611. MuteCheckBox::indicator:unchecked {
  612. image: url(./Dark/unmute.png);
  613. }
  614. MuteCheckBox::indicator:unchecked:hover {
  615. image: url(./Dark/unmute.png);
  616. }
  617. MuteCheckBox::indicator:unchecked:focus {
  618. image: url(./Dark/unmute.png);
  619. }
  620. MuteCheckBox::indicator:checked:hover {
  621. image: url(./Dark/mute.png);
  622. }
  623. MuteCheckBox::indicator:checked:focus {
  624. image: url(./Dark/mute.png);
  625. }
  626. MuteCheckBox::indicator:checked:disabled {
  627. image: url(./Dark/mute.png);
  628. }
  629. MuteCheckBox::indicator:unchecked:disabled {
  630. image: url(./Dark/unmute.png);
  631. }
  632. OBSHotkeyLabel[hotkeyPairHover=true] {
  633. color: rgba(27, 96, 166);
  634. }
  635. /* Group Collapse Checkbox */
  636. SourceTreeSubItemCheckBox {
  637. background: transparent;
  638. outline: none;
  639. padding: 0px;
  640. }
  641. SourceTreeSubItemCheckBox::indicator {
  642. width: 12px;
  643. height: 12px;
  644. }
  645. SourceTreeSubItemCheckBox::indicator:checked,
  646. SourceTreeSubItemCheckBox::indicator:checked:hover {
  647. image: url(./Dark/expand.png);
  648. }
  649. SourceTreeSubItemCheckBox::indicator:unchecked,
  650. SourceTreeSubItemCheckBox::indicator:unchecked:hover {
  651. image: url(./Dark/collapse.png);
  652. }
  653. /* Label warning/error */
  654. QLabel#warningLabel {
  655. color: rgb(192, 128, 0);
  656. font-weight: bold;
  657. }
  658. QLabel#errorLabel {
  659. color: rgb(192, 0, 0);
  660. font-weight: bold;
  661. }
  662. /* Settings Menu */
  663. #buttonBox {
  664. border-top: 2px solid grey;
  665. }
  666. /* Special Fixes */
  667. OBSBasicProperties,
  668. #OBSBasicSettings,
  669. #OBSBasicFilters {
  670. background: #101010;
  671. }
  672. FocusList::item {
  673. padding: 0px 2px;
  674. }
  675. #transitionsContainer QPushButton,
  676. #mixerDock QPushButton,
  677. #effectWidget QPushButton,
  678. #asyncWidget QPushButton {
  679. border: none;
  680. }
  681. #fpsTypes {
  682. padding: 0px;
  683. }
  684. #finishPage QLabel {
  685. padding: -2px 0px;
  686. background: transparent;
  687. min-height: 26px;
  688. }