0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-26 01:24:39 +03:00
LimeReport/3rdparty/dark_style_sheet/qdarkstyle/style.qss

1311 lines
25 KiB
Plaintext
Raw Normal View History

2017-10-05 02:29:03 +03:00
/*
* The MIT License (MIT)
*
* Copyright (c) <2013-2014> <Colin Duquesnoy>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
QToolTip
{
border: 1px solid #2b2b2b;
2017-12-11 16:40:18 +03:00
background-color: #383838;
2017-10-05 02:29:03 +03:00
color: white;
2018-06-28 22:54:44 +03:00
\\ padding: 5px;
2017-10-05 02:29:03 +03:00
}
QWidget
{
color: #eff0f1;
background-color: #383838;
2017-12-20 13:17:15 +03:00
selection-background-color:#000;
2017-10-05 02:29:03 +03:00
selection-color: #eff0f1;
background-clip: border;
border-image: none;
border: 0px transparent black;
outline: 0;
}
QWidget:item:hover
{
background-color: #819a67;
color: #eff0f1;
}
QWidget:item:selected
{
background-color: #819a67;
}
QCheckBox
{
spacing: 5px;
outline: none;
color: #eff0f1;
margin-right: 2px;
2017-12-11 21:59:11 +03:00
}
QCheckBox::item{
background-color: #404040;
2017-10-05 02:29:03 +03:00
}
QCheckBox:disabled
{
2017-12-11 21:59:11 +03:00
color: #494949;
2017-10-05 02:29:03 +03:00
}
QCheckBox::indicator{
width: 16px;
height: 16px;
color: #222222;
}
2017-12-11 21:59:11 +03:00
QCheckBox::indicator:unchecked
{
image: url(:/qss_icons/rc/checkbox_unchecked.png);
}
QCheckBox::indicator:unchecked:hover,
QCheckBox::indicator:unchecked:focus,
QCheckBox::indicator:unchecked:pressed,
QGroupBox::indicator:unchecked:hover,
QGroupBox::indicator:unchecked:focus,
QGroupBox::indicator:unchecked:pressed
{
border: none;
image: url(:/qss_icons/rc/checkbox_unchecked_focus.png);
}
QCheckBox::indicator:checked
{
image: url(:/qss_icons/rc/checkbox_checked.png);
}
QCheckBox::indicator:checked:hover,
QCheckBox::indicator:checked:focus,
QCheckBox::indicator:checked:pressed,
QGroupBox::indicator:checked:hover,
QGroupBox::indicator:checked:focus,
QGroupBox::indicator:checked:pressed
{
border: none;
image: url(:/qss_icons/rc/checkbox_checked_focus.png);
}
QCheckBox::indicator:indeterminate
{
image: url(:/qss_icons/rc/checkbox_indeterminate.png);
}
QCheckBox::indicator:indeterminate:focus,
QCheckBox::indicator:indeterminate:hover,
QCheckBox::indicator:indeterminate:pressed
{
image: url(:/qss_icons/rc/checkbox_indeterminate_focus.png);
}
QCheckBox::indicator:checked:disabled,
QGroupBox::indicator:checked:disabled
{
image: url(:/qss_icons/rc/checkbox_checked_disabled.png);
}
QCheckBox::indicator:unchecked:disabled,
QGroupBox::indicator:unchecked:disabled
{
image: url(:/qss_icons/rc/checkbox_unchecked_disabled.png);
}
2017-10-05 02:29:03 +03:00
QGroupBox::indicator
{
width: 18px;
height: 18px;
}
QGroupBox::indicator
{
margin-left: 2px;
}
QRadioButton
{
spacing: 5px;
outline: none;
color: #eff0f1;
margin-bottom: 2px;
}
QRadioButton:disabled
{
color: #2b2b2b;
}
2017-12-11 21:59:11 +03:00
2017-10-05 02:29:03 +03:00
QRadioButton::indicator
{
width: 16px;
height: 16px;
}
2017-12-11 21:59:11 +03:00
QRadioButton::indicator:unchecked
{
image: url(:/qss_icons/rc/radio_unchecked.png);
}
QRadioButton::indicator:unchecked:hover,
QRadioButton::indicator:unchecked:focus,
QRadioButton::indicator:unchecked:pressed
{
border: none;
outline: none;
image: url(:/qss_icons/rc/radio_unchecked_focus.png);
}
QRadioButton::indicator:checked
{
border: none;
outline: none;
image: url(:/qss_icons/rc/radio_checked.png);
}
QRadioButton::indicator:checked:hover,
QRadioButton::indicator:checked:focus,
QRadioButton::indicator:checked:pressed
{
border: none;
outline: none;
image: url(:/qss_icons/rc/radio_checked_focus.png);
}
QRadioButton::indicator:checked:disabled
{
outline: none;
image: url(:/qss_icons/rc/radio_checked_disabled.png);
}
QRadioButton::indicator:unchecked:disabled
{
image: url(:/qss_icons/rc/radio_unchecked_disabled.png);
}
2017-10-05 02:29:03 +03:00
QMenuBar
{
2017-12-11 19:18:06 +03:00
background-color: #2f2f2f;
2017-10-05 02:29:03 +03:00
color: #eff0f1;
2017-12-11 19:18:06 +03:00
border-bottom: 1px solid #2b2b2b;
2017-10-05 02:29:03 +03:00
}
QMenuBar::item
{
background: transparent;
}
QMenuBar::item:selected
{
background: transparent;
2017-12-11 19:18:06 +03:00
background-color: #8fa876;
2017-10-05 02:29:03 +03:00
border: 1px solid #2b2b2b;
}
QMenuBar::item:pressed
{
border: 1px solid #2b2b2b;
2017-12-11 19:18:06 +03:00
\\ background-color: #2e2e2e;
background-color: #8fa876;
2017-10-05 02:29:03 +03:00
color: #eff0f1;
margin-bottom:-1px;
padding-bottom:1px;
}
QMenu
{
border: 1px solid #2b2b2b;
color: #eff0f1;
margin: 2px;
}
QMenu::icon
{
margin: 5px;
}
QMenu::item
{
padding: 5px 30px 5px 30px;
border: 1px solid transparent; /* reserve space for selection border */
}
QMenu::item:selected
{
color: #eff0f1;
}
QMenu::separator {
height: 2px;
background: lightblue;
margin-left: 10px;
margin-right: 5px;
}
QMenu::indicator {
width: 18px;
height: 18px;
2018-06-28 23:58:05 +03:00
padding-left: 4px;
2017-10-05 02:29:03 +03:00
}
/* non-exclusive indicator = check box style indicator
(see QActionGroup::setExclusive) */
QMenu::indicator:non-exclusive:unchecked {
2018-06-28 23:58:05 +03:00
image: url(:/qss_icons/rc/checkbox_unchecked.png);
2017-10-05 02:29:03 +03:00
}
QMenu::indicator:non-exclusive:unchecked:selected {
image: url(:/qss_icons/rc/checkbox_unchecked_disabled.png);
}
QMenu::indicator:non-exclusive:checked {
image: url(:/qss_icons/rc/checkbox_checked.png);
}
QMenu::indicator:non-exclusive:checked:selected {
image: url(:/qss_icons/rc/checkbox_checked_disabled.png);
}
/* exclusive indicator = radio button style indicator (see QActionGroup::setExclusive) */
QMenu::indicator:exclusive:unchecked {
image: url(:/qss_icons/rc/radio_unchecked.png);
}
QMenu::indicator:exclusive:unchecked:selected {
image: url(:/qss_icons/rc/radio_unchecked_disabled.png);
}
QMenu::indicator:exclusive:checked {
image: url(:/qss_icons/rc/radio_checked.png);
}
QMenu::indicator:exclusive:checked:selected {
image: url(:/qss_icons/rc/radio_checked_disabled.png);
}
QMenu::right-arrow {
margin: 5px;
image: url(:/qss_icons/rc/right_arrow.png)
}
QWidget:disabled
{
2017-12-11 21:59:11 +03:00
color: #7a7a7a;
background-color: #404040;
2017-10-05 02:29:03 +03:00
}
QAbstractItemView
{
alternate-background-color: #383838;
color: #eff0f1;
border: 1px solid 3A3939;
2018-06-28 21:35:06 +03:00
\\ border-radius: 2px;
2017-10-05 02:29:03 +03:00
}
QWidget:focus, QMenuBar:focus
{
border: 1px solid #4b6807;
}
QTabWidget:focus, QCheckBox:focus, QRadioButton:focus, QSlider:focus
{
border: none;
}
QLineEdit
{
background-color: #232629;
2017-12-11 19:18:06 +03:00
padding-right: 5px;
padding-left: 5px;
padding-top: 1px;
padding-bottom: 1px;
margin: 1px;
2017-10-05 02:29:03 +03:00
border-style: solid;
border: 1px solid #2b2b2b;
2018-06-28 21:35:06 +03:00
\\ border-radius: 2px;
2017-10-05 02:29:03 +03:00
color: #eff0f1;
}
QLineEdit:disabled{
color: #858585;
}
QAbstractItemView QLineEdit
{
padding: 0;
}
QGroupBox {
2017-12-20 13:08:05 +03:00
margin-top: 1.5em;
2017-10-05 02:29:03 +03:00
}
QGroupBox::title {
subcontrol-origin: margin;
subcontrol-position: top left;
2017-12-20 13:08:05 +03:00
padding-left: 0px;
padding-right: 0px;
margin-top: 2px;
margin-bottom: 2px;
2017-10-05 02:29:03 +03:00
}
QAbstractScrollArea
{
2018-06-28 21:35:06 +03:00
\\ border-radius: 2px;
2017-10-05 02:29:03 +03:00
border: 1px solid #2b2b2b;
background-color: transparent;
}
QScrollBar:horizontal
{
height: 15px;
margin: 3px 15px 3px 15px;
border: 1px transparent #2A2929;
border-radius: 4px;
background-color: #2A2929;
}
QScrollBar::handle:horizontal
{
background-color: #605F5F;
min-width: 5px;
border-radius: 4px;
}
QScrollBar::add-line:horizontal
{
margin: 0px 3px 0px 3px;
border-image: url(:/qss_icons/rc/right_arrow_disabled.png);
width: 10px;
height: 10px;
subcontrol-position: right;
subcontrol-origin: margin;
}
QScrollBar::sub-line:horizontal
{
margin: 0px 3px 0px 3px;
border-image: url(:/qss_icons/rc/left_arrow_disabled.png);
height: 10px;
width: 10px;
subcontrol-position: left;
subcontrol-origin: margin;
}
QScrollBar::add-line:horizontal:hover,QScrollBar::add-line:horizontal:on
{
border-image: url(:/qss_icons/rc/right_arrow.png);
height: 10px;
width: 10px;
subcontrol-position: right;
subcontrol-origin: margin;
}
QScrollBar::sub-line:horizontal:hover, QScrollBar::sub-line:horizontal:on
{
border-image: url(:/qss_icons/rc/left_arrow.png);
height: 10px;
width: 10px;
subcontrol-position: left;
subcontrol-origin: margin;
}
QScrollBar::up-arrow:horizontal, QScrollBar::down-arrow:horizontal
{
background: none;
}
QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal
{
background: none;
}
QScrollBar:vertical
{
background-color: #2A2929;
width: 15px;
margin: 15px 3px 15px 3px;
border: 1px transparent #2A2929;
border-radius: 4px;
}
QScrollBar::handle:vertical
{
background-color: #605F5F;
min-height: 5px;
border-radius: 4px;
}
QScrollBar::sub-line:vertical
{
margin: 3px 0px 3px 0px;
border-image: url(:/qss_icons/rc/up_arrow_disabled.png);
height: 10px;
width: 10px;
subcontrol-position: top;
subcontrol-origin: margin;
}
QScrollBar::add-line:vertical
{
margin: 3px 0px 3px 0px;
border-image: url(:/qss_icons/rc/down_arrow_disabled.png);
height: 10px;
width: 10px;
subcontrol-position: bottom;
subcontrol-origin: margin;
}
QScrollBar::sub-line:vertical:hover,QScrollBar::sub-line:vertical:on
{
border-image: url(:/qss_icons/rc/up_arrow.png);
height: 10px;
width: 10px;
subcontrol-position: top;
subcontrol-origin: margin;
}
QScrollBar::add-line:vertical:hover, QScrollBar::add-line:vertical:on
{
border-image: url(:/qss_icons/rc/down_arrow.png);
height: 10px;
width: 10px;
subcontrol-position: bottom;
subcontrol-origin: margin;
}
QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical
{
background: none;
}
QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical
{
background: none;
}
QTextEdit
{
background-color: #232629;
color: #eff0f1;
border: 1px solid #2b2b2b;
}
QPlainTextEdit
{
background-color: #232629;;
color: #eff0f1;
2018-06-28 21:35:06 +03:00
\\ border-radius: 2px;
2017-10-05 02:29:03 +03:00
border: 1px solid #2b2b2b;
}
QHeaderView::section
{
background-color: #2b2b2b;
color: #eff0f1;
padding: 5px;
border: 1px solid #2b2b2b;
}
QSizeGrip {
image: url(:/qss_icons/rc/sizegrip.png);
width: 12px;
height: 12px;
}
QMainWindow::separator
{
background-color: #383838;
color: white;
padding-left: 4px;
spacing: 2px;
border: 1px dashed #2b2b2b;
}
QMainWindow::separator:hover
{
background-color: #787876;
color: white;
padding-left: 4px;
border: 1px solid #2b2b2b;
spacing: 2px;
}
QMenu::separator
{
height: 1px;
background-color: #2b2b2b;
color: white;
padding-left: 4px;
margin-left: 10px;
margin-right: 5px;
}
QFrame
{
border-radius: 0px;
border-top: 1px solid #2b2b2b;
border-left: 1px solid #2b2b2b;
2017-12-11 21:59:11 +03:00
border-bottom: 1px solid #494949;
border-right: 1px solid #494949;
2017-10-05 02:29:03 +03:00
}
QFrame[frameShape="0"]
{
2018-06-28 21:35:06 +03:00
\\ border-radius: 2px;
2017-10-05 02:29:03 +03:00
border: 1px transparent #2b2b2b;
}
QStackedWidget
{
border: 1px transparent black;
}
QToolBar {
2018-06-28 23:17:03 +03:00
\\ border: 1px transparent #2b2b2b;
\\ background: #383838;
2017-10-05 02:29:03 +03:00
font-weight: bold;
2017-12-11 19:18:06 +03:00
border-bottom: 1px solid #2b2b2b;
2017-10-05 02:29:03 +03:00
}
QToolBar::handle:horizontal {
image: url(:/qss_icons/rc/Hmovetoolbar.png);
}
QToolBar::handle:vertical {
image: url(:/qss_icons/rc/Vmovetoolbar.png);
}
QToolBar::separator:horizontal {
image: url(:/qss_icons/rc/Hsepartoolbar.png);
}
QToolBar::separator:vertical {
image: url(:/qss_icons/rc/Vsepartoolbar.png);
}
QToolButton#qt_toolbar_ext_button {
background: transparent;
min-width: 8px;
width: 8px;
padding: 1px;
qproperty-icon: url(:/qss_icons/rc/extend.png);
}
QPushButton
{
color: #fff;
background-color: #404040;
border-width: 1px;
border-color: #2b2b2b;
border-style: solid;
padding: 5px;
2018-06-28 21:35:06 +03:00
\\ border-radius: 2px;
2017-10-05 02:29:03 +03:00
outline: none;
}
QPushButton:disabled
{
background-color: #383838;
border-width: 1px;
border-color: #454545;
border-style: solid;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 10px;
padding-right: 10px;
2018-06-28 21:35:06 +03:00
\\ border-radius: 2px;
2017-10-05 02:29:03 +03:00
color: #454545;
}
QPushButton:focus {
background-color: #2e2e2e;
color: white;
}
QPushButton:pressed
{
background-color: #2e2e2e;
padding-top: -15px;
padding-bottom: -17px;
}
QComboBox
{
selection-background-color: #2e2e2e;
border-style: solid;
border: 1px solid #2b2b2b;
2018-06-28 21:35:06 +03:00
\\ border-radius: 2px;
2017-12-11 19:18:06 +03:00
padding-right: 5px;
padding-left: 5px;
padding-top: 1px;
padding-bottom: 1px;
margin: 1px;
2017-10-05 02:29:03 +03:00
min-width: 75px;
}
QPushButton:checked{
background-color: #2b2b2b;
border-color: #6A6969;
}
2018-06-29 00:51:09 +03:00
QComboBox:hover,QPushButton:hover,QAbstractSpinBox:hover,QLineEdit:hover,
QTextEdit:hover,QPlainTextEdit:hover,QAbstractView:hover,QTreeView:hover,
QTableView:hover, QTableWidget::hover, QListWidget::hover
2017-10-05 02:29:03 +03:00
{
border: 1px solid #4b6807;
color: #eff0f1;
}
QComboBox:on
{
padding-top: 3px;
padding-left: 4px;
selection-background-color: #4a4a4a;
}
QComboBox QAbstractItemView
{
background-color: #232629;
2018-06-28 21:35:06 +03:00
\\ border-radius: 2px;
2017-10-05 02:29:03 +03:00
border: 1px solid #2b2b2b;
selection-background-color: #89ae30;
}
QComboBox::drop-down
{
subcontrol-origin: padding;
subcontrol-position: top right;
width: 15px;
border-left-width: 0px;
border-left-color: darkgray;
border-left-style: solid;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
QComboBox::down-arrow
{
image: url(:/qss_icons/rc/down_arrow_disabled.png);
}
QComboBox::down-arrow:on, QComboBox::down-arrow:hover,
QComboBox::down-arrow:focus
{
image: url(:/qss_icons/rc/down_arrow.png);
}
QAbstractSpinBox {
2017-12-11 19:18:06 +03:00
padding-right: 5px;
padding-left: 5px;
padding-top: 1px;
padding-bottom: 1px;
margin: 1px;
2017-10-05 02:29:03 +03:00
border: 1px solid #2b2b2b;
background-color: #232629;
color: #eff0f1;
2018-06-28 21:35:06 +03:00
\\ border-radius: 2px;
2017-10-05 02:29:03 +03:00
}
QAbstractSpinBox:up-button
{
background-color: transparent;
subcontrol-origin: border;
2017-10-05 02:48:13 +03:00
subcontrol-position: top right;
2017-10-05 02:29:03 +03:00
}
QAbstractSpinBox:down-button
{
background-color: transparent;
subcontrol-origin: border;
2017-10-05 02:48:13 +03:00
subcontrol-position: bottom right;
2017-10-05 02:29:03 +03:00
}
QAbstractSpinBox::up-arrow,QAbstractSpinBox::up-arrow:disabled,QAbstractSpinBox::up-arrow:off {
image: url(:/qss_icons/rc/up_arrow_disabled.png);
width: 10px;
height: 10px;
}
QAbstractSpinBox::up-arrow:hover
{
image: url(:/qss_icons/rc/up_arrow.png);
}
QAbstractSpinBox::down-arrow,QAbstractSpinBox::down-arrow:disabled,QAbstractSpinBox::down-arrow:off
{
image: url(:/qss_icons/rc/down_arrow_disabled.png);
width: 10px;
height: 10px;
}
QAbstractSpinBox::down-arrow:hover
{
image: url(:/qss_icons/rc/down_arrow.png);
}
QLabel
{
border: 0px solid black;
}
QTabWidget{
border: 0px transparent black;
}
QTabWidget::pane {
border: 1px solid #2b2b2b;
background-color: #404040;
padding: 5px;
}
QTabWidget QWidget{
background-color: #404040;
}
QTabWidget::tab-bar {
left: 5px; /* move to the right by 5px */
}
QTabBar
{
qproperty-drawBase: 0;
border-radius: 3px;
}
QTabBar:focus
{
border: 0px transparent black;
}
QTabBar::close-button {
image: url(:/qss_icons/rc/close.png);
background: transparent;
}
QTabBar::close-button:hover
{
image: url(:/qss_icons/rc/close-hover.png);
background: transparent;
}
QTabBar::close-button:pressed {
image: url(:/qss_icons/rc/close-pressed.png);
background: transparent;
}
/* TOP TABS */
QTabBar::tab:top {
color: #eff0f1;
border: 1px solid #2b2b2b;
2018-06-29 00:51:09 +03:00
border-bottom: 1px solid transparent;
2017-10-05 02:29:03 +03:00
background-color: #404040;
padding: 5px;
2018-06-28 21:35:06 +03:00
min-width: 10px;
margin-bottom: -1;
2017-10-05 02:29:03 +03:00
}
QTabBar::tab:top:!selected
{
color: #eff0f1;
background-color: #383838;
2018-06-29 00:51:09 +03:00
border: 1px solid transparent;
2017-10-05 02:29:03 +03:00
}
QTabBar::tab:top:!selected:hover {
background-color: #2e2e2e;
}
/* BOTTOM TABS */
QTabBar::tab:bottom {
color: #eff0f1;
border: 1px solid #2b2b2b;
border-top: 1px solid #404040;
background-color: #404040;
padding: 5px;
2018-06-28 21:35:06 +03:00
min-width: 10px;
margin-top: -1;
2017-10-05 02:29:03 +03:00
}
QTabBar::tab:bottom:!selected
{
color: #eff0f1;
background-color: #383838;
2018-06-29 00:51:09 +03:00
border: 1px solid transparent;
2017-10-05 02:29:03 +03:00
}
QTabBar::tab:bottom:!selected:hover {
background-color: #2e2e2e;
}
/* LEFT TABS */
QTabBar::tab:left {
color: #eff0f1;
border: 1px solid #2b2b2b;
2018-06-28 21:35:06 +03:00
border-left: 1px solid #404040;
background-color: #404040;
2017-10-05 02:29:03 +03:00
padding: 5px;
2018-06-28 21:35:06 +03:00
min-height: 10px;
2017-10-05 02:29:03 +03:00
}
QTabBar::tab:left:!selected
{
color: #eff0f1;
2018-06-28 21:35:06 +03:00
background-color: #383838;
2018-06-29 00:51:09 +03:00
border: 1px solid transparent;
2017-10-05 02:29:03 +03:00
}
QTabBar::tab:left:!selected:hover {
background-color: #2e2e2e;
}
/* RIGHT TABS */
QTabBar::tab:right {
color: #eff0f1;
border: 1px solid #2b2b2b;
2018-06-28 21:35:06 +03:00
border-right: 1px solid #404040;
background-color: #404040;
2017-10-05 02:29:03 +03:00
padding: 5px;
2018-06-28 21:35:06 +03:00
min-height: 10px;
2017-10-05 02:29:03 +03:00
}
QTabBar::tab:right:!selected
{
color: #eff0f1;
2018-06-28 21:35:06 +03:00
background-color: #383838;
2018-06-29 00:51:09 +03:00
border: 1px solid transparent;
2017-10-05 02:29:03 +03:00
}
QTabBar::tab:right:!selected:hover {
background-color: #2e2e2e;
}
QTabBar QToolButton::right-arrow:enabled {
image: url(:/qss_icons/rc/right_arrow.png);
2018-06-28 21:35:06 +03:00
}
2017-10-05 02:29:03 +03:00
QTabBar QToolButton::left-arrow:enabled {
image: url(:/qss_icons/rc/left_arrow.png);
2018-06-28 21:35:06 +03:00
}
2017-10-05 02:29:03 +03:00
QTabBar QToolButton::right-arrow:disabled {
image: url(:/qss_icons/rc/right_arrow_disabled.png);
2018-06-28 21:35:06 +03:00
}
2017-10-05 02:29:03 +03:00
QTabBar QToolButton::left-arrow:disabled {
image: url(:/qss_icons/rc/left_arrow_disabled.png);
2018-06-28 21:35:06 +03:00
}
2017-10-05 02:29:03 +03:00
QDockWidget {
background: #383838;
border: 1px solid #403F3F;
titlebar-close-icon: url(:/qss_icons/rc/close.png);
titlebar-normal-icon: url(:/qss_icons/rc/undock.png);
}
2018-03-26 23:57:44 +03:00
QDockWidget::title{
background: #383838;
padding-left: 5px;
2018-05-15 22:12:36 +03:00
margin-top: 4px;
2018-03-26 23:57:44 +03:00
}
2017-10-05 02:29:03 +03:00
QDockWidget::close-button, QDockWidget::float-button {
border: 1px solid transparent;
border-radius: 2px;
background: transparent;
}
QDockWidget::close-button:hover, QDockWidget::float-button:hover {
background: rgba(255, 255, 255, 10);
}
QDockWidget::close-button:pressed, QDockWidget::float-button:pressed {
padding: 1px -1px -1px 1px;
background: rgba(255, 255, 255, 10);
}
QLabel#limeReportLabel{
color: #7faa18;
}
QTreeView, QListView
{
border-top: 1px solid #2b2b2b;
border-left: 1px solid #2b2b2b;
2017-12-11 21:59:11 +03:00
border-bottom: 1px solid #494949;
border-right: 1px solid #494949;
2017-10-05 02:29:03 +03:00
background-color: #404040;
}
QTreeView::item, QListView::item{
height: 25px;
}
QTreeView::branch:selected{
background-color: #819a67;
}
QTreeView::branch:!selected:hover, QTreeView::item:!selected:hover{
2017-12-11 16:40:18 +03:00
\\ background-color: #287399;
background-color: #819a67;
2017-10-05 02:29:03 +03:00
}
QTreeView::branch:has-siblings:!adjoins-item {
border-image: url(:/qss_icons/rc/transparent.png);
}
QTreeView::branch:has-siblings:adjoins-item {
border-image: url(:/qss_icons/rc/transparent.png);
}
QTreeView::branch:!has-children:!has-siblings:adjoins-item {
border-image: url(:/qss_icons/rc/transparent.png);
}
QTreeView::branch:has-children:!has-siblings:closed,
QTreeView::branch:closed:has-children:has-siblings {
image: url(:/qss_icons/rc/branch_closed.png);
}
QTreeView::branch:open:has-children:!has-siblings,
QTreeView::branch:open:has-children:has-siblings {
image: url(:/qss_icons/rc/branch_open.png);
}
QTreeView::branch:has-children:!has-siblings:closed:hover,
QTreeView::branch:closed:has-children:has-siblings:hover {
image: url(:/qss_icons/rc/branch_closed-on.png);
}
QTreeView::branch:open:has-children:!has-siblings:hover,
QTreeView::branch:open:has-children:has-siblings:hover {
image: url(:/qss_icons/rc/branch_open-on.png);
}
QSlider::groove:horizontal {
border: 1px solid #565a5e;
height: 4px;
background: #565a5e;
margin: 0px;
border-radius: 2px;
}
QSlider::handle:horizontal {
background: #232629;
border: 1px solid #565a5e;
width: 16px;
height: 16px;
margin: -8px 0;
border-radius: 9px;
}
QSlider::groove:vertical {
border: 1px solid #565a5e;
width: 4px;
background: #565a5e;
margin: 0px;
border-radius: 3px;
}
QSlider::handle:vertical {
background: #232629;
border: 1px solid #565a5e;
width: 16px;
height: 16px;
margin: 0 -8px;
border-radius: 9px;
}
QToolButton {
color : white;
2018-06-28 23:58:05 +03:00
border: 1px solid transparent;
2017-10-05 02:29:03 +03:00
margin: 2px;
padding: 2px;
}
QToolButton:hover, QToolButton::menu-button:hover {
background-color: #2b2b2b;
border: 1px solid #7faa18;
}
QToolButton:checked, QToolButton:pressed,
QToolButton::menu-button:pressed {
background-color: #2e2e2e;
border: 1px solid #7faa18;
}
QToolButton:text{
color: #ffffff;
}
QToolButton:disabled{
background-color: transparent;
border: 1px transparent #2b2b2b;
}
2018-06-28 23:17:03 +03:00
2017-12-11 16:40:18 +03:00
\\
\\QToolButton[popupMode="1"] { /* only for MenuButtonPopup */
\\ padding-right: 20px; /* make way for the popup button */
\\ border: 1px #2b2b2b;
\\ border-radius: 5px;
\\}
\\
\\QToolButton[popupMode="2"] { /* only for InstantPopup */
\\ padding-right: 10px; /* make way for the popup button */
\\ border: 1px #2b2b2b;
\\}
\\
\\/* the subcontrol below is used only in the InstantPopup or DelayedPopup mode */
\\QToolButton::menu-indicator {
\\ image: url(:/qss_icons/rc/down_arrow.png);
\\ top: -7px; left: -2px; /* shift it a bit */
\\}
\\
\\/* the subcontrols below are used only in the MenuButtonPopup mode */
\\QToolButton::menu-button {
\\ border: 1px transparent #2b2b2b;
\\ border-top-right-radius: 6px;
\\ border-bottom-right-radius: 6px;
\\ /* 16px width + 4px for border = 20px allocated above */
\\ width: 16px;
\\ outline: none;
\\}
\\
\\QToolButton::menu-arrow {
\\ image: url(:/qss_icons/rc/down_arrow.png);
\\}
\\
\\QToolButton::menu-arrow:open {
\\ border: 1px solid #2b2b2b;
\\}
2017-10-05 02:29:03 +03:00
QPushButton::menu-indicator {
subcontrol-origin: padding;
subcontrol-position: bottom right;
left: 8px;
}
QTableView
{
border: 1px solid #2b2b2b;
gridline-color: #383838;
background-color: #232629;
}
QTableView, QHeaderView
{
border-radius: 0px;
}
QTableView::item:pressed, QListView::item:pressed {
background: #819a67;
color: #eff0f1;
}
QTableView::item:selected:active, QListView::item:selected:active {
background: #819a67;
color: #eff0f1;
}
2018-06-29 00:51:09 +03:00
QTableView::focus{
border: 1px solid #4b6807
}
2017-10-05 02:29:03 +03:00
QHeaderView
{
background-color: #383838;
border: 1px transparent;
border-radius: 0px;
margin: 0px;
padding: 0px;
}
QHeaderView::section {
background-color: #383838;
color: #eff0f1;
padding: 5px;
border: 1px solid #2b2b2b;
border-radius: 0px;
text-align: center;
}
QHeaderView::section::vertical::first, QHeaderView::section::vertical::only-one
{
border-top: 1px transparent #2b2b2b;
}
QHeaderView::section::vertical
{
border-top: transparent;
}
QHeaderView::section::horizontal::first, QHeaderView::section::horizontal::only-one
{
border-left: 1px transparent #2b2b2b;
}
QHeaderView::section::horizontal
{
border-left: transparent;
}
QHeaderView::section:checked
{
color: white;
background-color: #334e5e;
}
/* style the sort indicator */
QHeaderView::down-arrow {
image: url(:/qss_icons/rc/down_arrow.png);
}
QHeaderView::up-arrow {
image: url(:/qss_icons/rc/up_arrow.png);
}
QTableCornerButton::section {
background-color: #383838;
border: 1px transparent #2b2b2b;
border-radius: 0px;
}
QToolBox {
padding: 5px;
border: 1px transparent black;
}
QToolBox::tab {
color: #eff0f1;
background-color: #383838;
border: 1px solid #2b2b2b;
border-bottom: 1px transparent #383838;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
QToolBox::tab:selected { /* italicize selected tabs */
font: italic;
background-color: #383838;
border-color: #7faa18;
}
QStatusBar::item {
border: 0px transparent dark;
}
QFrame[height="3"], QFrame[width="3"] {
background-color: #2b2b2b;
}
QSplitter::handle {
border: 1px dashed #2b2b2b;
}
QSplitter::handle:hover {
background-color: #787876;
border: 1px solid #2b2b2b;
}
QSplitter::handle:horizontal {
width: 1px;
}
QSplitter::handle:vertical {
height: 1px;
}
QProgressBar {
border: 1px solid #2b2b2b;
border-radius: 5px;
text-align: center;
}
QProgressBar::chunk {
background-color: #05B8CC;
}
QDateEdit
{
selection-background-color: #2e2e2e;
border-style: solid;
border: 1px solid #3375A3;
border-radius: 2px;
padding: 1px;
min-width: 75px;
}
QDateEdit:on
{
padding-top: 3px;
padding-left: 4px;
selection-background-color: #4a4a4a;
}
QDateEdit QAbstractItemView
{
background-color: #232629;
border-radius: 2px;
border: 1px solid #3375A3;
selection-background-color: #2e2e2e;
}
QDateEdit::drop-down
{
subcontrol-origin: padding;
subcontrol-position: top right;
width: 15px;
border-left-width: 0px;
border-left-color: darkgray;
border-left-style: solid;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
QDateEdit::down-arrow
{
image: url(:/qss_icons/rc/down_arrow_disabled.png);
}
QDateEdit::down-arrow:on, QDateEdit::down-arrow:hover,
QDateEdit::down-arrow:focus
{
image: url(:/qss_icons/rc/down_arrow.png);
}