New upstream version 22.0.3+dfsg1
This commit is contained in:
parent
665f64a933
commit
cdc9a9fc87
334 changed files with 14525 additions and 2639 deletions
|
|
@ -1,3 +1,37 @@
|
|||
/* 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);
|
||||
}
|
||||
|
||||
/* General style, we override only what is needed. */
|
||||
QWidget {
|
||||
background-color: #181819;
|
||||
|
|
@ -9,6 +43,7 @@ QWidget {
|
|||
font-family: "Open Sans", "Tahoma", "Arial", sans-serif;
|
||||
font-size: 12px;
|
||||
padding: 4px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
#menubar {
|
||||
|
|
@ -45,6 +80,14 @@ QWidget::disabled {
|
|||
color: #484848;
|
||||
}
|
||||
|
||||
* [themeID="error"] {
|
||||
color: #d91740;
|
||||
}
|
||||
|
||||
* [themeID="warning"] {
|
||||
color: #d9af17;
|
||||
}
|
||||
|
||||
/* Dropdown menus, Scenes box, Sources box */
|
||||
QAbstractItemView {
|
||||
background-color: #181819;
|
||||
|
|
@ -94,7 +137,8 @@ QMenuBar::item:selected {
|
|||
}
|
||||
|
||||
/* Listbox item */
|
||||
QListWidget::item {
|
||||
QListWidget::item,
|
||||
SourceTree::item {
|
||||
padding: 4px 2px;
|
||||
margin-bottom: 2px;
|
||||
margin-top: 0px;
|
||||
|
|
@ -110,11 +154,6 @@ QListWidget QLineEdit {
|
|||
border-radius: none;
|
||||
}
|
||||
|
||||
SourceListWidget::item {
|
||||
margin-bottom: 1px;
|
||||
padding: -4px 2px;
|
||||
}
|
||||
|
||||
/* Dock stuff */
|
||||
QDockWidget {
|
||||
background: transparent;
|
||||
|
|
@ -157,6 +196,23 @@ SourceListWidget {
|
|||
border-bottom: 2px solid #2f2f2f;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
#scenesFrame,
|
||||
#sourcesFrame {
|
||||
margin-left: -7px;
|
||||
|
|
@ -179,13 +235,15 @@ SourceListWidget {
|
|||
}
|
||||
|
||||
/* Listbox item selected, unfocused */
|
||||
QListWidget::item:hover {
|
||||
QListWidget::item:hover,
|
||||
SourceTree::item:hover {
|
||||
background-color: #212121;
|
||||
border: 1px solid #333336;
|
||||
}
|
||||
|
||||
/* Listbox item selected */
|
||||
QListWidget::item:selected {
|
||||
QListWidget::item:selected,
|
||||
SourceTree::item:selected {
|
||||
background-color: #131a30;
|
||||
border: 1px solid #252a45;
|
||||
}
|
||||
|
|
@ -453,10 +511,12 @@ QPushButton {
|
|||
|
||||
QPushButton::flat {
|
||||
background-color: rgb(24,24,25);
|
||||
border: none;
|
||||
}
|
||||
|
||||
QPushButton:checked {
|
||||
background-color: #202b52;
|
||||
background-color: #581624;
|
||||
border-color: #84162d;
|
||||
}
|
||||
|
||||
QPushButton:hover {
|
||||
|
|
@ -468,6 +528,16 @@ QPushButton:pressed {
|
|||
background-color: #161f41;
|
||||
}
|
||||
|
||||
QPushButton:disabled {
|
||||
border: 1px solid #232426;
|
||||
background-color: #1a1a1b;
|
||||
}
|
||||
|
||||
QPushButton::flat:hover,
|
||||
QPushButton::flat:disabled {
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* Progress Bar */
|
||||
|
||||
QProgressBar {
|
||||
|
|
@ -505,16 +575,20 @@ QSlider::handle:horizontal {
|
|||
}
|
||||
|
||||
QSlider::handle:horizontal:pressed {
|
||||
background-color: QLinearGradient(x1: 0, y1: 1, x2: 0, y2: 0,
|
||||
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));
|
||||
}
|
||||
|
||||
QSlider::sub-page:horizontal {
|
||||
background-color: #2a3a75;
|
||||
}
|
||||
|
||||
QSlider::sub-page:horizontal:disabled {
|
||||
background-color: QLinearGradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 rgb(31,30,31),
|
||||
stop: 0.75 rgb(50, 49, 50));
|
||||
background-color: QLinearGradient(x1: 0, y1: 1, x2: 0, y2: 0,
|
||||
stop: 0 rgb(26,25,26),
|
||||
stop: 0.75 rgb(10, 10, 10));
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
|
|
@ -533,23 +607,27 @@ QSlider::handle:vertical {
|
|||
stop: 0.25 rgb(200,199,200),
|
||||
stop: 1 rgb(162,161,162));
|
||||
border: 1px solid rgb(24,24,25);
|
||||
border-radius: 4px;
|
||||
border-radius: 3px;
|
||||
width: 10px;
|
||||
height: 18px;
|
||||
margin: -3px 0; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */
|
||||
margin: 0 -3px; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */
|
||||
}
|
||||
|
||||
QSlider::handle:vertical:pressed {
|
||||
background-color: QLinearGradient(x1: 1, y1: 0, x2: 0, y2: 0,
|
||||
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));
|
||||
}
|
||||
|
||||
QSlider::sub-page:vertical:disabled {
|
||||
QSlider::add-page:vertical {
|
||||
background-color: #2a3a75;
|
||||
}
|
||||
|
||||
QSlider::add-page:vertical:disabled {
|
||||
background-color: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0,
|
||||
stop: 0 rgb(31,30,31),
|
||||
stop: 0.75 rgb(50, 49, 50));
|
||||
stop: 0 rgb(26,25,26),
|
||||
stop: 0.75 rgb(10, 10, 10));
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
|
|
@ -557,15 +635,10 @@ QSlider::handle:hover {
|
|||
background-color: rgb(200,199,200);
|
||||
}
|
||||
|
||||
QSlider::sub-page {
|
||||
background-color: #2a3a75;
|
||||
}
|
||||
|
||||
QSlider::handle:disabled {
|
||||
background-color: rgb(15,15,16);
|
||||
}
|
||||
|
||||
|
||||
/* Volume Control */
|
||||
|
||||
/* Old Meters */
|
||||
|
|
@ -724,6 +797,30 @@ OBSHotkeyLabel[hotkeyPairHover=true] {
|
|||
}
|
||||
|
||||
|
||||
/* Group Collapse Checkbox */
|
||||
|
||||
SourceTreeSubItemCheckBox {
|
||||
background: transparent;
|
||||
outline: none;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
SourceTreeSubItemCheckBox::indicator {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
}
|
||||
|
||||
SourceTreeSubItemCheckBox::indicator:checked,
|
||||
SourceTreeSubItemCheckBox::indicator:checked:hover {
|
||||
image: url(./Dark/expand.png);
|
||||
}
|
||||
|
||||
SourceTreeSubItemCheckBox::indicator:unchecked,
|
||||
SourceTreeSubItemCheckBox::indicator:unchecked:hover {
|
||||
image: url(./Dark/collapse.png);
|
||||
}
|
||||
|
||||
|
||||
/* Label warning/error */
|
||||
|
||||
QLabel#warningLabel {
|
||||
|
|
@ -750,21 +847,10 @@ OBSBasicProperties,
|
|||
background: #101010;
|
||||
}
|
||||
|
||||
#OBSBasicSourceSelect #sourceList {
|
||||
border-bottom: 2px solid #333336;
|
||||
}
|
||||
|
||||
FocusList::item {
|
||||
padding: 0px 2px;
|
||||
}
|
||||
|
||||
#transitionsContainer QPushButton,
|
||||
#mixerDock QPushButton,
|
||||
#effectWidget QPushButton,
|
||||
#asyncWidget QPushButton {
|
||||
border: none;
|
||||
}
|
||||
|
||||
#fpsTypes {
|
||||
padding: 0px;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue