New upstream version 21.0.2+dfsg1

This commit is contained in:
Sebastian Ramacher 2018-02-19 20:54:37 +01:00
parent 1f1bbb3518
commit baafb6325b
706 changed files with 49633 additions and 5044 deletions

View file

@ -67,6 +67,31 @@ QListWidget::item:selected:!active {
background-color: rgb(48,47,48);
}
/* Dock Widget */
QDockWidget::title {
text-align: center;
background-color: QLinearGradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 rgb(86,85,86),
stop: 0.1 rgb(82,81,82),
stop: 0.5 rgb(78,77,78),
stop: 0.9 rgb(74,73,74),
stop: 1 rgb(70,69,70));
}
QDockWidget::close-button, QDockWidget::float-button {
border: 1px solid transparent;
background: transparent;
padding: 0px;
}
QDockWidget::close-button:hover, QDockWidget::float-button:hover {
background: transparent;
}
QDockWidget::close-button:pressed, QDockWidget::float-button:pressed {
padding: 1px -1px -1px 1px;
}
/* Group Box */
@ -180,6 +205,10 @@ QToolButton:pressed {
qproperty-icon: url(./Dark/cogwheel.png);
}
* [themeID="refreshIconSmall"] {
qproperty-icon: url(./Dark/refresh.png);
}
* [themeID="upArrowIconSmall"] {
qproperty-icon: url(./Dark/up_arrow.png);
}
@ -202,14 +231,24 @@ QTabWidget::tab-bar {
QTabBar::tab {
background-color: rgb(88,87,88); /* kindaDark */
border: none;
padding: 5px;
min-width: 50px;
margin: 1px;
}
QTabBar::tab:top {
border-bottom: 1px transparent;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
min-width: 8ex;
padding-top: 4px;
padding-bottom: 4px;
padding-left: 10px;
padding-right: 10px;
margin-right: 1px;
}
QTabBar::tab:bottom {
padding-top: 1px;
margin-bottom: 4px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
height: 14px;
}
QTabBar::tab:selected {
@ -374,6 +413,12 @@ QPushButton:checked {
background-color: rgb(122,121,122); /* light */
}
QPushButton::menu-indicator {
image: url(./Dark/down_arrow.png);
subcontrol-position: right;
subcontrol-origin: padding;
width: 25px;
}
/* Sliders */
@ -464,10 +509,15 @@ QSlider::handle:disabled {
/* Volume Control */
VolumeMeter {
qproperty-bkColor: rgb(31,30,31); /* veryDark */
qproperty-magColor:;
qproperty-peakColor:;
qproperty-peakHoldColor: rgb(225,224,225); /* veryLight */
qproperty-backgroundNominalColor: rgb(38, 127, 38);
qproperty-backgroundWarningColor: rgb(127, 127, 38);
qproperty-backgroundErrorColor: rgb(127, 38, 38);
qproperty-foregroundNominalColor: rgb(76, 255, 76);
qproperty-foregroundWarningColor: rgb(255, 255, 76);
qproperty-foregroundErrorColor: rgb(255, 76, 76);
qproperty-magnitudeColor: rgb(0, 0, 0);
qproperty-majorTickColor: rgb(225,224,225); /* veryLight */
qproperty-minorTickColor: rgb(122,121,122); /* light */
}