2013-03-10 12:59:50 -04:00
|
|
|
/*
|
2014-01-02 09:57:14 -05:00
|
|
|
* The MIT License (MIT)
|
2013-03-10 12:59:50 -04:00
|
|
|
*
|
2014-01-02 10:15:54 -05:00
|
|
|
* Copyright (c) <2013-2014> <Colin Duquesnoy>
|
2013-03-10 12:59:50 -04:00
|
|
|
*
|
2014-01-02 09:57:14 -05:00
|
|
|
* 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.
|
2013-03-10 12:59:50 -04:00
|
|
|
*/
|
|
|
|
|
2012-08-23 17:53:13 -04:00
|
|
|
QProgressBar:horizontal {
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
2012-08-23 17:53:13 -04:00
|
|
|
text-align: center;
|
|
|
|
padding: 1px;
|
2012-09-04 16:18:56 -04:00
|
|
|
background: #201F1F;
|
2012-08-23 17:53:13 -04:00
|
|
|
}
|
|
|
|
QProgressBar::chunk:horizontal {
|
2012-09-04 16:18:56 -04:00
|
|
|
background-color: qlineargradient(spread:reflect, x1:1, y1:0.545, x2:1, y2:0, stop:0 rgba(28, 66, 111, 255), stop:1 rgba(37, 87, 146, 255));
|
2012-08-23 17:53:13 -04:00
|
|
|
}
|
|
|
|
|
2012-08-23 08:58:28 -04:00
|
|
|
QToolTip
|
|
|
|
{
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
2012-08-23 08:58:28 -04:00
|
|
|
background-color: rgb(90, 102, 117);;
|
|
|
|
color: white;
|
|
|
|
padding: 1px;
|
|
|
|
opacity: 200;
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget
|
|
|
|
{
|
|
|
|
color: silver;
|
2012-09-29 17:47:48 -04:00
|
|
|
background-color: #302F2F;
|
2012-08-23 08:58:28 -04:00
|
|
|
selection-background-color:#78879b;
|
|
|
|
selection-color: black;
|
2014-02-20 05:00:57 -05:00
|
|
|
background-clip: border;
|
|
|
|
border-image: none;
|
|
|
|
outline: 0;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QWidget:item:hover
|
|
|
|
{
|
2012-09-04 16:18:56 -04:00
|
|
|
background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,
|
2012-08-23 08:58:28 -04:00
|
|
|
stop: 0 #78879b, stop: 1 #78879b);
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget:item:selected
|
|
|
|
{
|
2012-09-04 16:18:56 -04:00
|
|
|
background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,
|
2012-08-23 08:58:28 -04:00
|
|
|
stop: 0 #78879b, stop: 1 #78879b);
|
|
|
|
}
|
|
|
|
|
|
|
|
QMenuBar
|
|
|
|
{
|
2012-09-29 17:47:48 -04:00
|
|
|
background-color: #302F2F;
|
2012-08-23 08:58:28 -04:00
|
|
|
color: silver;
|
|
|
|
}
|
|
|
|
|
|
|
|
QMenuBar::item
|
|
|
|
{
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
QMenuBar::item:selected
|
|
|
|
{
|
|
|
|
background: transparent;
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QMenuBar::item:pressed
|
|
|
|
{
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
2012-08-23 08:58:28 -04:00
|
|
|
background-color: #78879b;
|
|
|
|
color: black;
|
|
|
|
margin-bottom:-1px;
|
|
|
|
padding-bottom:1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
QMenu
|
|
|
|
{
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
2012-08-23 08:58:28 -04:00
|
|
|
color: silver;
|
2014-02-20 07:18:59 -05:00
|
|
|
margin: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
QMenu::icon
|
|
|
|
{
|
|
|
|
margin: 5px;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QMenu::item
|
|
|
|
{
|
2014-02-20 07:18:59 -05:00
|
|
|
padding: 5px 30px 5px 30px;
|
|
|
|
margin-left: 5px;
|
|
|
|
border: 1px solid transparent; /* reserve space for selection border */
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QMenu::item:selected
|
|
|
|
{
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget:disabled
|
|
|
|
{
|
|
|
|
color: #404040;
|
2012-09-29 17:47:48 -04:00
|
|
|
background-color: #302F2F;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QAbstractItemView
|
|
|
|
{
|
2012-09-04 16:18:56 -04:00
|
|
|
alternate-background-color: #3A3939;
|
2012-08-23 08:58:28 -04:00
|
|
|
color: silver;
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid 3A3939;
|
2012-08-23 17:53:13 -04:00
|
|
|
border-radius: 3px;
|
2012-08-23 08:58:28 -04:00
|
|
|
padding: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget:focus, QMenuBar:focus
|
|
|
|
{
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid rgba(48, 86, 111);
|
2012-11-05 10:13:02 -05:00
|
|
|
}
|
2012-08-23 08:58:28 -04:00
|
|
|
|
2014-01-30 04:57:49 -05:00
|
|
|
QTabWidget:focus, QCheckBox:focus, QRadioButton:focus
|
2012-11-05 10:13:02 -05:00
|
|
|
{
|
|
|
|
border: none;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QLineEdit
|
|
|
|
{
|
2012-09-04 16:18:56 -04:00
|
|
|
background-color: #201F1F;
|
2012-08-23 08:58:28 -04:00
|
|
|
padding: 2px;
|
|
|
|
border-style: solid;
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
2012-08-23 17:53:13 -04:00
|
|
|
border-radius: 3px;
|
2012-08-23 08:58:28 -04:00
|
|
|
color: silver;
|
|
|
|
}
|
|
|
|
|
|
|
|
QGroupBox {
|
2012-11-07 06:26:01 -05:00
|
|
|
border:1px solid #3A3939;
|
2012-08-23 08:58:28 -04:00
|
|
|
border-radius: 7px;
|
2015-04-06 05:36:44 -04:00
|
|
|
margin-top: 20px;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QGroupBox::title {
|
|
|
|
subcontrol-origin: margin;
|
2012-11-05 16:03:11 -05:00
|
|
|
subcontrol-position: top center;
|
2012-11-05 10:13:02 -05:00
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
2015-04-06 05:36:44 -04:00
|
|
|
padding-top: 10px;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
2012-08-23 17:53:13 -04:00
|
|
|
QAbstractScrollArea
|
2012-08-23 08:58:28 -04:00
|
|
|
{
|
2012-08-23 17:53:13 -04:00
|
|
|
border-radius: 3px;
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
2012-08-23 17:53:13 -04:00
|
|
|
QScrollBar:horizontal
|
2012-08-23 08:58:28 -04:00
|
|
|
{
|
|
|
|
height: 15px;
|
2012-08-23 17:53:13 -04:00
|
|
|
margin: 0px 11px 0px 11px;
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
2012-08-23 08:58:28 -04:00
|
|
|
border-radius: 6px;
|
2012-11-05 10:13:02 -05:00
|
|
|
background-color: QLinearGradient( x1: 0, y1: 1, x2: 0, y2: 0,
|
|
|
|
stop: 0 #302F2F, stop: 1 #484846);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QScrollBar::handle:horizontal
|
|
|
|
{
|
2012-11-05 10:13:02 -05:00
|
|
|
background-color: QLinearGradient( x1: 0, y1: 1, x2: 0, y2: 0,
|
|
|
|
stop: 0 #605F5F, stop: 1 #787876);
|
2012-08-23 17:53:13 -04:00
|
|
|
min-width: 5px;
|
|
|
|
border-radius: 5px;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
2014-12-15 18:33:10 -05:00
|
|
|
QScrollBar::add-line:horizontal
|
2012-08-23 17:53:13 -04:00
|
|
|
{
|
2013-03-10 10:23:21 -04:00
|
|
|
border-image: url(:/qss_icons/rc/right_arrow_disabled.png);
|
2012-08-23 17:53:13 -04:00
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
2012-08-23 08:58:28 -04:00
|
|
|
subcontrol-position: right;
|
|
|
|
subcontrol-origin: margin;
|
2012-08-23 17:53:13 -04:00
|
|
|
}
|
2012-08-23 08:58:28 -04:00
|
|
|
|
2014-12-15 18:33:10 -05:00
|
|
|
QScrollBar::sub-line:horizontal
|
2012-08-23 17:53:13 -04:00
|
|
|
{
|
2013-03-10 10:23:21 -04:00
|
|
|
border-image: url(:/qss_icons/rc/left_arrow_disabled.png);
|
2012-08-23 17:53:13 -04:00
|
|
|
height: 10px;
|
|
|
|
width: 10px;
|
|
|
|
subcontrol-position: left;
|
|
|
|
subcontrol-origin: margin;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
2014-12-15 18:33:10 -05:00
|
|
|
QScrollBar::add-line:horizontal:hover,QScrollBar::add-line:horizontal:on
|
2012-08-23 17:53:13 -04:00
|
|
|
{
|
2013-03-10 10:23:21 -04:00
|
|
|
border-image: url(:/qss_icons/rc/right_arrow.png);
|
2012-08-23 17:53:13 -04:00
|
|
|
height: 10px;
|
|
|
|
width: 10px;
|
|
|
|
subcontrol-position: right;
|
|
|
|
subcontrol-origin: margin;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-15 18:33:10 -05:00
|
|
|
QScrollBar::sub-line:horizontal:hover, QScrollBar::sub-line:horizontal:on
|
2012-08-23 17:53:13 -04:00
|
|
|
{
|
2013-03-10 10:23:21 -04:00
|
|
|
border-image: url(:/qss_icons/rc/left_arrow.png);
|
2012-08-23 17:53:13 -04:00
|
|
|
height: 10px;
|
|
|
|
width: 10px;
|
2012-08-23 08:58:28 -04:00
|
|
|
subcontrol-position: left;
|
|
|
|
subcontrol-origin: margin;
|
|
|
|
}
|
|
|
|
|
2012-08-23 17:53:13 -04:00
|
|
|
QScrollBar::up-arrow:horizontal, QScrollBar::down-arrow:horizontal
|
2012-08-23 08:58:28 -04:00
|
|
|
{
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
2012-08-23 17:53:13 -04:00
|
|
|
|
2012-08-23 08:58:28 -04:00
|
|
|
QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal
|
|
|
|
{
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
QScrollBar:vertical
|
|
|
|
{
|
2012-11-05 10:13:02 -05:00
|
|
|
background-color: QLinearGradient( x1: 1, y1: 0, x2: 0, y2: 0,
|
|
|
|
stop: 0 #302F2F, stop: 1 #484846);
|
2012-08-23 08:58:28 -04:00
|
|
|
width: 15px;
|
2012-08-23 17:53:13 -04:00
|
|
|
margin: 11px 0 11px 0;
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
2012-08-23 17:53:13 -04:00
|
|
|
border-radius: 6px;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QScrollBar::handle:vertical
|
|
|
|
{
|
2012-11-05 10:13:02 -05:00
|
|
|
background-color: QLinearGradient( x1: 1, y1: 0, x2: 0, y2: 0,
|
|
|
|
stop: 0 #605F5F, stop: 1 #787876);
|
2012-08-23 17:53:13 -04:00
|
|
|
min-height: 5px;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
QScrollBar::sub-line:vertical
|
|
|
|
{
|
2013-03-10 10:23:21 -04:00
|
|
|
border-image: url(:/qss_icons/rc/up_arrow_disabled.png);
|
2012-08-23 17:53:13 -04:00
|
|
|
height: 10px;
|
|
|
|
width: 10px;
|
|
|
|
subcontrol-position: top;
|
|
|
|
subcontrol-origin: margin;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QScrollBar::add-line:vertical
|
|
|
|
{
|
2014-02-20 05:00:57 -05:00
|
|
|
|
2013-03-10 10:23:21 -04:00
|
|
|
border-image: url(:/qss_icons/rc/down_arrow_disabled.png);
|
2012-08-23 17:53:13 -04:00
|
|
|
height: 10px;
|
|
|
|
width: 10px;
|
2012-08-23 08:58:28 -04:00
|
|
|
subcontrol-position: bottom;
|
|
|
|
subcontrol-origin: margin;
|
|
|
|
}
|
|
|
|
|
2012-08-23 17:53:13 -04:00
|
|
|
QScrollBar::sub-line:vertical:hover,QScrollBar::sub-line:vertical:on
|
2012-08-23 08:58:28 -04:00
|
|
|
{
|
2012-11-05 16:03:11 -05:00
|
|
|
|
2013-03-10 10:23:21 -04:00
|
|
|
border-image: url(:/qss_icons/rc/up_arrow.png);
|
2012-08-23 17:53:13 -04:00
|
|
|
height: 10px;
|
|
|
|
width: 10px;
|
2012-08-23 08:58:28 -04:00
|
|
|
subcontrol-position: top;
|
|
|
|
subcontrol-origin: margin;
|
|
|
|
}
|
|
|
|
|
2012-08-23 17:53:13 -04:00
|
|
|
|
|
|
|
QScrollBar::add-line:vertical:hover, QScrollBar::add-line:vertical:on
|
|
|
|
{
|
2013-03-10 10:23:21 -04:00
|
|
|
border-image: url(:/qss_icons/rc/down_arrow.png);
|
2012-08-23 17:53:13 -04:00
|
|
|
height: 10px;
|
|
|
|
width: 10px;
|
|
|
|
subcontrol-position: bottom;
|
|
|
|
subcontrol-origin: margin;
|
|
|
|
}
|
|
|
|
|
2012-08-23 08:58:28 -04:00
|
|
|
QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical
|
|
|
|
{
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical
|
|
|
|
{
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
QTextEdit
|
|
|
|
{
|
2014-01-30 03:45:24 -05:00
|
|
|
background-color: #201F1F;
|
2012-08-23 08:58:28 -04:00
|
|
|
color: silver;
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QPlainTextEdit
|
|
|
|
{
|
2012-09-04 16:18:56 -04:00
|
|
|
background-color: #201F1F;;
|
2012-08-23 08:58:28 -04:00
|
|
|
color: silver;
|
2012-08-23 17:53:13 -04:00
|
|
|
border-radius: 3px;
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QHeaderView::section
|
|
|
|
{
|
2012-09-04 16:18:56 -04:00
|
|
|
background-color: #3A3939;
|
|
|
|
color: silver;
|
|
|
|
padding-left: 4px;
|
|
|
|
border: 1px solid #6c6c6c;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QCheckBox:disabled
|
|
|
|
{
|
|
|
|
color: #404040;
|
|
|
|
}
|
|
|
|
|
2012-08-23 17:53:13 -04:00
|
|
|
QSizeGrip {
|
2013-03-10 10:23:21 -04:00
|
|
|
image: url(:/qss_icons/rc/sizegrip.png);
|
2012-08-23 17:53:13 -04:00
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
}
|
|
|
|
|
2012-08-23 08:58:28 -04:00
|
|
|
|
|
|
|
QMainWindow::separator
|
|
|
|
{
|
2012-09-29 17:47:48 -04:00
|
|
|
background-color: #302F2F;
|
2012-08-23 08:58:28 -04:00
|
|
|
color: white;
|
|
|
|
padding-left: 4px;
|
2012-11-05 16:03:11 -05:00
|
|
|
spacing: 2px;
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px dashed #3A3939;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QMainWindow::separator:hover
|
|
|
|
{
|
|
|
|
|
2012-09-04 16:18:56 -04:00
|
|
|
background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1, stop:0 #58677b,
|
|
|
|
stop:0.5 #78879b stop:1 #58677b);
|
2012-08-23 08:58:28 -04:00
|
|
|
color: white;
|
|
|
|
padding-left: 4px;
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
2014-02-20 05:00:57 -05:00
|
|
|
spacing: 2px;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QMenu::separator
|
|
|
|
{
|
|
|
|
height: 1px;
|
2012-09-04 16:18:56 -04:00
|
|
|
background-color: #3A3939;
|
2012-08-23 08:58:28 -04:00
|
|
|
color: white;
|
|
|
|
padding-left: 4px;
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
QRadioButton::indicator:checked, QRadioButton::indicator:unchecked{
|
|
|
|
color: #b1b1b1;
|
2012-09-29 17:47:48 -04:00
|
|
|
background-color: #302F2F;
|
2012-08-23 08:58:28 -04:00
|
|
|
border: 1px solid silver;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
QRadioButton::indicator:checked
|
|
|
|
{
|
|
|
|
background-color: qradialgradient(
|
|
|
|
cx: 0.5, cy: 0.5,
|
|
|
|
fx: 0.5, fy: 0.5,
|
|
|
|
radius: 1.0,
|
|
|
|
stop: 0.25 #78879b,
|
2012-09-29 17:47:48 -04:00
|
|
|
stop: 0.3 #302F2F
|
2012-08-23 08:58:28 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2014-01-30 04:24:20 -05:00
|
|
|
QCheckBox, QRadioButton
|
|
|
|
{
|
|
|
|
padding: 3px;
|
2014-01-30 04:57:49 -05:00
|
|
|
outline: none;
|
2014-01-30 04:24:20 -05:00
|
|
|
}
|
|
|
|
|
2014-12-18 21:39:06 -05:00
|
|
|
QCheckBox::indicator, QGroupBox::indicator, QMenu::indicator:non-exclusive{
|
2012-08-23 08:58:28 -04:00
|
|
|
color: #b1b1b1;
|
2012-09-29 17:47:48 -04:00
|
|
|
background-color: #302F2F;
|
2012-08-23 08:58:28 -04:00
|
|
|
border: 1px solid silver;
|
2014-12-18 21:39:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
QCheckBox::indicator, QMenu::indicator:non-exclusive{
|
2012-08-23 08:58:28 -04:00
|
|
|
width: 9px;
|
|
|
|
height: 9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
QRadioButton::indicator
|
|
|
|
{
|
|
|
|
border-radius: 7px;
|
|
|
|
width: 9px;
|
|
|
|
height: 9px;
|
|
|
|
}
|
|
|
|
|
2014-01-30 03:45:24 -05:00
|
|
|
QCheckBox::indicator:pressed
|
|
|
|
{
|
|
|
|
border: 1px solid #78879b;
|
|
|
|
}
|
|
|
|
|
2012-08-23 08:58:28 -04:00
|
|
|
QRadioButton::indicator:hover, QCheckBox::indicator:hover
|
|
|
|
{
|
|
|
|
border: 1px solid #78879b;
|
|
|
|
}
|
|
|
|
|
2014-12-18 21:39:06 -05:00
|
|
|
QCheckBox::indicator:checked, QGroupBox::indicator:checked, QMenu::indicator:non-exclusive:checked
|
2012-08-23 08:58:28 -04:00
|
|
|
{
|
2013-03-10 10:23:21 -04:00
|
|
|
image:url(:/qss_icons/rc/checkbox.png);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QCheckBox::indicator:disabled, QRadioButton::indicator:disabled
|
|
|
|
{
|
|
|
|
border: 1px solid #444;
|
|
|
|
}
|
|
|
|
|
2014-12-18 21:39:06 -05:00
|
|
|
QCheckBox::indicator:indeterminate {
|
|
|
|
image: url(:/qss_icons/rc/checkbox_indeterminate.png);
|
|
|
|
}
|
|
|
|
|
2012-08-23 08:58:28 -04:00
|
|
|
QFrame
|
|
|
|
{
|
2012-08-23 17:53:13 -04:00
|
|
|
border-radius: 3px;
|
2015-04-22 11:25:47 -04:00
|
|
|
border: 1px solid #444;
|
2012-08-23 17:53:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QStackedWidget
|
|
|
|
{
|
|
|
|
border: none;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QToolBar {
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #393838;
|
2012-09-29 17:47:48 -04:00
|
|
|
background: 1px solid #302F2F;
|
2012-08-23 08:58:28 -04:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
QToolBar::handle:horizontal {
|
2013-03-10 10:23:21 -04:00
|
|
|
image: url(:/qss_icons/rc/Hmovetoolbar.png);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
QToolBar::handle:vertical {
|
2013-03-10 10:23:21 -04:00
|
|
|
image: url(:/qss_icons/rc/Vmovetoolbar.png);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
QToolBar::separator:horizontal {
|
2013-03-10 10:23:21 -04:00
|
|
|
image: url(:/qss_icons/rc/Hsepartoolbar.png);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
QToolBar::separator:vertical {
|
2013-03-10 10:23:21 -04:00
|
|
|
image: url(:/qss_icons/rc/Vsepartoolbars.png);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QPushButton
|
|
|
|
{
|
|
|
|
color: silver;
|
2012-09-04 16:18:56 -04:00
|
|
|
background-color: QLinearGradient( x1: 0, y1: 1, x2: 0, y2: 0,
|
2012-09-29 17:47:48 -04:00
|
|
|
stop: 0 #302F2F, stop: 1 #484846);
|
2012-08-23 08:58:28 -04:00
|
|
|
border-width: 1px;
|
2012-11-05 17:07:21 -05:00
|
|
|
border-color: #4A4949;
|
2012-08-23 08:58:28 -04:00
|
|
|
border-style: solid;
|
2012-11-05 10:13:02 -05:00
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
2012-11-05 17:07:21 -05:00
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
border-radius: 5px;
|
2014-01-30 04:57:49 -05:00
|
|
|
outline: none;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QPushButton:disabled
|
|
|
|
{
|
2014-01-30 05:03:47 -05:00
|
|
|
background-color: #302F2F;
|
2012-09-04 16:18:56 -04:00
|
|
|
border-width: 1px;
|
|
|
|
border-color: #3A3939;
|
|
|
|
border-style: solid;
|
2012-11-05 17:07:21 -05:00
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
2012-09-04 16:18:56 -04:00
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
2012-11-05 17:07:21 -05:00
|
|
|
/*border-radius: 3px;*/
|
2014-01-30 05:03:47 -05:00
|
|
|
color: #454545;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QComboBox
|
|
|
|
{
|
|
|
|
selection-background-color: #78879b;
|
2012-09-04 16:18:56 -04:00
|
|
|
background-color: #201F1F;
|
2012-08-23 08:58:28 -04:00
|
|
|
border-style: solid;
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
2012-08-23 17:53:13 -04:00
|
|
|
border-radius: 3px;
|
2012-11-05 10:13:02 -05:00
|
|
|
padding: 2px;
|
2014-08-31 08:01:54 -04:00
|
|
|
min-width: 75px;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
2012-10-31 11:21:34 -04:00
|
|
|
QComboBox:hover,QPushButton:hover,QAbstractSpinBox:hover,QLineEdit:hover,QTextEdit:hover,QPlainTextEdit:hover,QAbstractView:hover,QTreeView:hover
|
2012-08-23 08:58:28 -04:00
|
|
|
{
|
|
|
|
border: 1px solid #78879b;
|
|
|
|
color: silver;
|
|
|
|
}
|
|
|
|
|
|
|
|
QComboBox:on
|
|
|
|
{
|
|
|
|
background-color: #626873;
|
|
|
|
padding-top: 3px;
|
|
|
|
padding-left: 4px;
|
|
|
|
selection-background-color: #4a4a4a;
|
|
|
|
}
|
|
|
|
|
|
|
|
QComboBox QAbstractItemView
|
|
|
|
{
|
2012-09-04 16:18:56 -04:00
|
|
|
background-color: #201F1F;
|
2012-08-23 17:53:13 -04:00
|
|
|
border-radius: 3px;
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
2012-08-23 08:58:28 -04:00
|
|
|
selection-background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,
|
|
|
|
stop: 0 #78879b, stop: 1 #78879b);
|
|
|
|
}
|
|
|
|
|
|
|
|
QComboBox::drop-down
|
|
|
|
{
|
|
|
|
subcontrol-origin: padding;
|
|
|
|
subcontrol-position: top right;
|
|
|
|
width: 15px;
|
|
|
|
|
|
|
|
border-left-width: 0px;
|
|
|
|
border-left-color: darkgray;
|
2012-11-05 16:03:11 -05:00
|
|
|
border-left-style: solid;
|
2014-02-20 05:00:57 -05:00
|
|
|
border-top-right-radius: 3px;
|
2012-08-23 08:58:28 -04:00
|
|
|
border-bottom-right-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
QComboBox::down-arrow
|
|
|
|
{
|
2013-03-10 10:23:21 -04:00
|
|
|
image: url(:/qss_icons/rc/down_arrow_disabled.png);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QComboBox::down-arrow:on, QComboBox::down-arrow:hover,
|
|
|
|
QComboBox::down-arrow:focus
|
|
|
|
{
|
2013-03-10 10:23:21 -04:00
|
|
|
image: url(:/qss_icons/rc/down_arrow.png);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QPushButton:pressed
|
|
|
|
{
|
2012-11-05 10:13:02 -05:00
|
|
|
background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,
|
|
|
|
stop: 0 #302F2F, stop: 1 #484846);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
2012-10-31 11:21:34 -04:00
|
|
|
QAbstractSpinBox {
|
2012-08-23 08:58:28 -04:00
|
|
|
padding-top: 2px;
|
|
|
|
padding-bottom: 2px;
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
|
|
|
background-color: #201F1F;
|
2012-08-23 08:58:28 -04:00
|
|
|
color: silver;
|
2012-08-23 17:53:13 -04:00
|
|
|
border-radius: 3px;
|
2014-08-31 08:01:54 -04:00
|
|
|
min-width: 75px;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
2012-10-31 11:21:34 -04:00
|
|
|
QAbstractSpinBox:up-button
|
2012-08-23 08:58:28 -04:00
|
|
|
{
|
|
|
|
background-color: transparent;
|
|
|
|
subcontrol-origin: border;
|
|
|
|
subcontrol-position: center right;
|
|
|
|
}
|
|
|
|
|
2012-10-31 11:21:34 -04:00
|
|
|
QAbstractSpinBox:down-button
|
2012-08-23 08:58:28 -04:00
|
|
|
{
|
|
|
|
background-color: transparent;
|
|
|
|
subcontrol-origin: border;
|
|
|
|
subcontrol-position: center left;
|
|
|
|
}
|
|
|
|
|
2012-10-31 11:21:34 -04:00
|
|
|
QAbstractSpinBox::up-arrow,QAbstractSpinBox::up-arrow:disabled,QAbstractSpinBox::up-arrow:off {
|
2013-03-10 10:23:21 -04:00
|
|
|
image: url(:/qss_icons/rc/up_arrow_disabled.png);
|
2012-08-23 08:58:28 -04:00
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
}
|
2012-10-31 11:21:34 -04:00
|
|
|
QAbstractSpinBox::up-arrow:hover
|
2012-08-23 08:58:28 -04:00
|
|
|
{
|
2013-03-10 10:23:21 -04:00
|
|
|
image: url(:/qss_icons/rc/up_arrow.png);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-31 11:21:34 -04:00
|
|
|
QAbstractSpinBox::down-arrow,QAbstractSpinBox::down-arrow:disabled,QAbstractSpinBox::down-arrow:off
|
2012-08-23 08:58:28 -04:00
|
|
|
{
|
2013-03-10 10:23:21 -04:00
|
|
|
image: url(:/qss_icons/rc/down_arrow_disabled.png);
|
2012-08-23 08:58:28 -04:00
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
}
|
2012-10-31 11:21:34 -04:00
|
|
|
QAbstractSpinBox::down-arrow:hover
|
2012-08-23 08:58:28 -04:00
|
|
|
{
|
2013-03-10 10:23:21 -04:00
|
|
|
image: url(:/qss_icons/rc/down_arrow.png);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QLabel
|
|
|
|
{
|
|
|
|
border: 0px solid black;
|
|
|
|
}
|
|
|
|
|
2014-02-20 03:39:06 -05:00
|
|
|
QTabWidget::pane {
|
2015-04-25 09:16:52 -04:00
|
|
|
border: 1px transparent black;
|
2014-02-20 03:39:06 -05:00
|
|
|
}
|
|
|
|
|
2014-02-20 05:00:57 -05:00
|
|
|
QTabBar
|
|
|
|
{
|
|
|
|
qproperty-drawBase: 0;
|
2014-02-20 06:09:00 -05:00
|
|
|
padding-right: 15px;
|
2014-02-20 05:00:57 -05:00
|
|
|
}
|
|
|
|
|
2014-01-30 03:45:24 -05:00
|
|
|
QTabBar:focus
|
|
|
|
{
|
|
|
|
border: 0px transparent black;
|
|
|
|
}
|
|
|
|
|
|
|
|
QTabBar::close-button {
|
|
|
|
image: url(:/qss_icons/rc/close.png);
|
|
|
|
background: transparent;
|
|
|
|
icon-size: 10px;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
QTabBar::close-button:hover
|
|
|
|
{
|
|
|
|
background: rgba(255, 255, 255, 20);
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
QTabBar::close-button:pressed {
|
|
|
|
padding: 5px 4px 4px 5px;
|
|
|
|
}
|
|
|
|
|
2014-02-20 03:39:06 -05:00
|
|
|
/* TOP - BOTTOM TABS */
|
|
|
|
QTabBar::tab:top {
|
2012-08-23 08:58:28 -04:00
|
|
|
color: #b1b1b1;
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
2014-02-20 03:39:06 -05:00
|
|
|
background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1,
|
|
|
|
stop:1 #302F2F, stop:0 #5A5959);
|
2012-10-31 11:21:34 -04:00
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
2012-08-23 08:58:28 -04:00
|
|
|
padding-top: 3px;
|
|
|
|
padding-bottom: 2px;
|
|
|
|
margin-right: -1px;
|
|
|
|
|
2014-02-20 03:39:06 -05:00
|
|
|
border-top-left-radius: 3px;
|
|
|
|
border-top-right-radius: 3px;
|
|
|
|
}
|
2012-08-23 08:58:28 -04:00
|
|
|
|
2014-02-20 03:39:06 -05:00
|
|
|
QTabBar::tab:bottom {
|
|
|
|
color: #b1b1b1;
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
2014-02-24 05:21:47 -05:00
|
|
|
background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1,
|
2014-02-20 03:39:06 -05:00
|
|
|
stop:1 #302F2F, stop:0 #5A5959);
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
padding-top: 3px;
|
|
|
|
padding-bottom: 2px;
|
|
|
|
margin-right: -1px;
|
|
|
|
|
|
|
|
border-bottom-left-radius: 3px;
|
|
|
|
border-bottom-right-radius: 3px;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
2014-02-20 03:39:06 -05:00
|
|
|
QTabBar::tab:top:last, QTabBar::tab:bottom:last
|
2012-08-23 08:58:28 -04:00
|
|
|
{
|
2012-11-05 16:03:11 -05:00
|
|
|
margin-right: 0;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
2014-02-20 03:39:06 -05:00
|
|
|
QTabBar::tab:top:first:!selected, QTabBar::tab:bottom:first:!selected
|
2012-08-23 08:58:28 -04:00
|
|
|
{
|
2014-02-20 03:39:06 -05:00
|
|
|
margin-left: 0px;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
2014-02-20 03:39:06 -05:00
|
|
|
QTabBar::tab:top:!selected
|
2012-08-23 08:58:28 -04:00
|
|
|
{
|
|
|
|
color: #b1b1b1;
|
|
|
|
margin-top: 3px;
|
2014-03-21 06:39:57 -04:00
|
|
|
background-color: #302F2F;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
2014-02-20 03:39:06 -05:00
|
|
|
QTabBar::tab:top:selected
|
2012-08-23 08:58:28 -04:00
|
|
|
{
|
|
|
|
margin-bottom: 0px;
|
2014-02-20 03:39:06 -05:00
|
|
|
}
|
2012-08-23 08:58:28 -04:00
|
|
|
|
2014-02-20 03:39:06 -05:00
|
|
|
QTabBar::tab:bottom:!selected
|
|
|
|
{
|
|
|
|
color: #b1b1b1;
|
|
|
|
margin-bottom: 3px;
|
2014-03-21 06:39:57 -04:00
|
|
|
background-color: #302F2F;
|
2014-02-20 03:39:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
QTabBar::tab:bottom:selected
|
|
|
|
{
|
|
|
|
margin-top: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* LEFT - RIGHT TABS */
|
|
|
|
QTabBar::tab:left {
|
|
|
|
color: #b1b1b1;
|
|
|
|
border: 1px solid #3A3939;
|
|
|
|
background-color: QLinearGradient(x1:1, y1:0, x2:0, y2:0,
|
2012-11-07 06:26:01 -05:00
|
|
|
stop:1 #302F2F, stop:0 #5A5959);
|
2014-02-20 03:39:06 -05:00
|
|
|
padding-left: 3px;
|
|
|
|
padding-right: 2px;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
margin-bottom: -1px;
|
|
|
|
|
|
|
|
border-top-right-radius: 3px;
|
|
|
|
border-bottom-right-radius: 3px;
|
2012-11-07 06:26:01 -05:00
|
|
|
}
|
|
|
|
|
2014-02-20 03:39:06 -05:00
|
|
|
QTabBar::tab:right {
|
|
|
|
color: #b1b1b1;
|
|
|
|
border: 1px solid #3A3939;
|
|
|
|
background-color: QLinearGradient(x1:0, y1:0, x2:1, y2:0,
|
|
|
|
stop:1 #302F2F, stop:0 #5A5959);
|
|
|
|
padding-left: 3px;
|
|
|
|
padding-right: 2px;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
margin-bottom: -1px;
|
|
|
|
|
|
|
|
border-top-left-radius: 3px;
|
|
|
|
border-bottom-left-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
QTabBar::tab:left:!selected
|
2012-11-07 06:26:01 -05:00
|
|
|
{
|
2014-02-20 03:39:06 -05:00
|
|
|
color: #b1b1b1;
|
|
|
|
margin-right: 3px;
|
2014-03-21 06:39:57 -04:00
|
|
|
background-color: #302F2F;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
2014-02-20 03:39:06 -05:00
|
|
|
QTabBar::tab:left:selected
|
2012-08-23 08:58:28 -04:00
|
|
|
{
|
2014-02-20 03:39:06 -05:00
|
|
|
margin-left: 0px;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
2014-02-20 03:39:06 -05:00
|
|
|
QTabBar::tab:right:!selected
|
2012-08-23 08:58:28 -04:00
|
|
|
{
|
2014-02-20 03:39:06 -05:00
|
|
|
color: #b1b1b1;
|
|
|
|
margin-left: 3px;
|
2014-03-21 06:39:57 -04:00
|
|
|
background-color: #302F2F;
|
2014-02-20 03:39:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
QTabBar::tab:right:selected
|
|
|
|
{
|
|
|
|
margin-right: 0px;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
2014-02-20 06:09:00 -05:00
|
|
|
QTabBar QToolButton::right-arrow:enabled {
|
|
|
|
image: url(:/qss_icons/rc/right_arrow.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
QTabBar QToolButton::left-arrow:enabled {
|
|
|
|
image: url(:/qss_icons/rc/left_arrow.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
QTabBar QToolButton::right-arrow:disabled {
|
|
|
|
image: url(:/qss_icons/rc/right_arrow_disabled.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
QTabBar QToolButton::left-arrow:disabled {
|
|
|
|
image: url(:/qss_icons/rc/left_arrow_disabled.png);
|
|
|
|
}
|
|
|
|
|
2012-08-23 08:58:28 -04:00
|
|
|
|
|
|
|
QDockWidget {
|
2014-05-16 13:59:22 -04:00
|
|
|
border: 1px solid #403F3F;
|
2013-03-10 10:23:21 -04:00
|
|
|
titlebar-close-icon: url(:/qss_icons/rc/close.png);
|
|
|
|
titlebar-normal-icon: url(:/qss_icons/rc/undock.png);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QDockWidget::close-button, QDockWidget::float-button {
|
|
|
|
border: 1px solid transparent;
|
2014-01-30 03:45:24 -05:00
|
|
|
border-radius: 3px;
|
2012-09-04 16:18:56 -04:00
|
|
|
background: transparent;
|
2012-08-23 08:58:28 -04:00
|
|
|
icon-size: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
QDockWidget::close-button:hover, QDockWidget::float-button:hover {
|
2014-01-30 03:45:24 -05:00
|
|
|
background: rgba(255, 255, 255, 10);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QDockWidget::close-button:pressed, QDockWidget::float-button:pressed {
|
|
|
|
padding: 1px -1px -1px 1px;
|
2014-01-30 03:45:24 -05:00
|
|
|
background: rgba(255, 255, 255, 10);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
2014-02-24 05:10:06 -05:00
|
|
|
QTreeView, QListView
|
2012-08-23 17:53:13 -04:00
|
|
|
{
|
2014-02-24 05:10:06 -05:00
|
|
|
border: 1px solid #78879b;
|
2012-11-05 10:13:02 -05:00
|
|
|
background-color: #201F1F;
|
2012-08-23 17:53:13 -04:00
|
|
|
}
|
|
|
|
|
2012-11-05 16:33:01 -05:00
|
|
|
QTreeView:branch:selected, QTreeView:branch:hover
|
|
|
|
{
|
2013-03-10 10:23:21 -04:00
|
|
|
background: url(:/qss_icons/rc/transparent.png);
|
2012-11-05 16:33:01 -05:00
|
|
|
}
|
|
|
|
|
2012-08-23 08:58:28 -04:00
|
|
|
QTreeView::branch:has-siblings:!adjoins-item {
|
2013-03-10 10:23:21 -04:00
|
|
|
border-image: url(:/qss_icons/rc/transparent.png);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QTreeView::branch:has-siblings:adjoins-item {
|
2013-03-10 10:23:21 -04:00
|
|
|
border-image: url(:/qss_icons/rc/transparent.png);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QTreeView::branch:!has-children:!has-siblings:adjoins-item {
|
2013-03-10 10:23:21 -04:00
|
|
|
border-image: url(:/qss_icons/rc/transparent.png);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QTreeView::branch:has-children:!has-siblings:closed,
|
|
|
|
QTreeView::branch:closed:has-children:has-siblings {
|
2013-03-10 10:23:21 -04:00
|
|
|
image: url(:/qss_icons/rc/branch_closed.png);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QTreeView::branch:open:has-children:!has-siblings,
|
|
|
|
QTreeView::branch:open:has-children:has-siblings {
|
2013-03-10 10:23:21 -04:00
|
|
|
image: url(:/qss_icons/rc/branch_open.png);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
2012-11-07 07:15:41 -05:00
|
|
|
QTreeView::branch:has-children:!has-siblings:closed:hover,
|
|
|
|
QTreeView::branch:closed:has-children:has-siblings:hover {
|
2013-03-10 10:23:21 -04:00
|
|
|
image: url(:/qss_icons/rc/branch_closed-on.png);
|
2012-11-07 07:15:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
QTreeView::branch:open:has-children:!has-siblings:hover,
|
|
|
|
QTreeView::branch:open:has-children:has-siblings:hover {
|
2013-03-10 10:23:21 -04:00
|
|
|
image: url(:/qss_icons/rc/branch_open-on.png);
|
2012-11-07 07:15:41 -05:00
|
|
|
}
|
|
|
|
|
2014-02-20 05:31:56 -05:00
|
|
|
QListView::item:!selected:hover, QListView::item:!selected:hover, QTreeView::item:!selected:hover {
|
|
|
|
background: rgba(0, 0, 0, 0);
|
|
|
|
outline: 0;
|
2014-01-30 04:57:49 -05:00
|
|
|
color: #FFFFFF
|
|
|
|
}
|
|
|
|
|
2014-02-20 05:31:56 -05:00
|
|
|
QListView::item:selected:hover, QListView::item:selected:hover, QTreeView::item:selected:hover {
|
|
|
|
background: #78879b;;
|
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
|
|
|
2012-08-23 08:58:28 -04:00
|
|
|
QSlider::groove:horizontal {
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
2014-02-20 05:00:57 -05:00
|
|
|
height: 8px;
|
2012-09-04 16:18:56 -04:00
|
|
|
background: #201F1F;
|
2012-08-23 08:58:28 -04:00
|
|
|
margin: 2px 0;
|
2012-09-04 16:18:56 -04:00
|
|
|
border-radius: 4px;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QSlider::handle:horizontal {
|
2012-09-04 16:18:56 -04:00
|
|
|
background: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,
|
2012-08-23 08:58:28 -04:00
|
|
|
stop: 0.0 silver, stop: 0.2 #a8a8a8, stop: 1 #727272);
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
2012-11-05 16:03:11 -05:00
|
|
|
margin: -4px 0;
|
2012-08-23 08:58:28 -04:00
|
|
|
border-radius: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
QSlider::groove:vertical {
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
2014-02-20 05:00:57 -05:00
|
|
|
width: 8px;
|
2012-09-04 16:18:56 -04:00
|
|
|
background: #201F1F;
|
2012-08-23 08:58:28 -04:00
|
|
|
margin: 0 0px;
|
2012-09-04 16:18:56 -04:00
|
|
|
border-radius: 4px;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QSlider::handle:vertical {
|
2012-09-04 16:18:56 -04:00
|
|
|
background: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0.0 silver,
|
2012-08-23 08:58:28 -04:00
|
|
|
stop: 0.2 #a8a8a8, stop: 1 #727272);
|
2012-09-04 16:18:56 -04:00
|
|
|
border: 1px solid #3A3939;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
2014-02-20 05:00:57 -05:00
|
|
|
margin: 0 -4px;
|
2012-08-23 08:58:28 -04:00
|
|
|
border-radius: 7px;
|
|
|
|
}
|
|
|
|
|
2014-02-20 05:00:57 -05:00
|
|
|
QToolButton {
|
2014-05-29 16:30:48 -04:00
|
|
|
background-color: transparent;
|
2015-04-25 08:47:46 -04:00
|
|
|
border: 1px transparent #4A4949;
|
2014-02-20 06:09:00 -05:00
|
|
|
border-radius: 3px;
|
|
|
|
margin: 3px;
|
2015-04-25 08:47:46 -04:00
|
|
|
padding: 3px;
|
2014-02-20 06:09:00 -05:00
|
|
|
}
|
|
|
|
|
2015-04-25 08:47:46 -04:00
|
|
|
QToolButton[popupMode="1"] { /* only for MenuButtonPopup */
|
|
|
|
padding-right: 20px; /* make way for the popup button */
|
2015-04-25 09:16:52 -04:00
|
|
|
border: 1px transparent #4A4949;
|
2014-02-20 06:24:27 -05:00
|
|
|
}
|
|
|
|
|
2015-04-25 08:47:46 -04:00
|
|
|
QToolButton[popupMode="2"] { /* only for InstantPopup */
|
2015-04-25 07:58:47 -04:00
|
|
|
padding-right: 10px; /* make way for the popup button */
|
2015-04-25 09:16:52 -04:00
|
|
|
border: 1px transparent #4A4949;
|
2015-04-25 07:58:47 -04:00
|
|
|
}
|
|
|
|
|
2015-04-25 08:47:46 -04:00
|
|
|
|
|
|
|
QToolButton:hover, QToolButton::menu-button:hover {
|
|
|
|
background-color: transparent;
|
|
|
|
border: 1px solid #78879b;
|
2014-05-29 16:30:48 -04:00
|
|
|
}
|
2014-02-20 06:24:27 -05:00
|
|
|
|
2015-04-25 09:16:52 -04:00
|
|
|
QToolButton:checked, QToolButton:pressed, QToolButton::menu-button:pressed {
|
2015-04-25 08:47:46 -04:00
|
|
|
background-color: #4A4949;
|
|
|
|
border: 1px solid #78879b;
|
2014-05-29 16:30:48 -04:00
|
|
|
}
|
2014-02-20 06:24:27 -05:00
|
|
|
|
2015-04-25 07:58:47 -04:00
|
|
|
/* 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 */
|
|
|
|
}
|
|
|
|
|
2014-05-29 16:30:48 -04:00
|
|
|
/* the subcontrols below are used only in the MenuButtonPopup mode */
|
|
|
|
QToolButton::menu-button {
|
2015-04-25 09:16:52 -04:00
|
|
|
border: 1px transparent #4A4949;
|
2014-05-29 16:30:48 -04:00
|
|
|
border-top-right-radius: 6px;
|
|
|
|
border-bottom-right-radius: 6px;
|
|
|
|
/* 16px width + 4px for border = 20px allocated above */
|
|
|
|
width: 16px;
|
|
|
|
}
|
2014-02-20 06:24:27 -05:00
|
|
|
|
2014-05-29 16:30:48 -04:00
|
|
|
QToolButton::menu-arrow {
|
|
|
|
image: url(:/qss_icons/rc/down_arrow.png);
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
2014-05-29 16:30:48 -04:00
|
|
|
|
|
|
|
QToolButton::menu-arrow:open {
|
|
|
|
top: 1px; left: 1px; /* shift it a bit */
|
2015-04-25 08:47:46 -04:00
|
|
|
border: 1px solid #3A3939;
|
2014-01-30 04:24:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
QPushButton::menu-indicator {
|
|
|
|
subcontrol-origin: padding;
|
|
|
|
subcontrol-position: bottom right;
|
|
|
|
left: 8px;
|
2012-08-23 08:58:28 -04:00
|
|
|
}
|
2012-08-23 17:53:13 -04:00
|
|
|
|
2014-02-24 05:15:03 -05:00
|
|
|
QTableView
|
|
|
|
{
|
2014-02-24 05:29:05 -05:00
|
|
|
border: transparent;
|
2014-02-24 05:15:03 -05:00
|
|
|
gridline-color: #6c6c6c;
|
2014-02-24 06:26:50 -05:00
|
|
|
background-color: #201F1F;
|
2014-02-24 05:15:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-30 04:57:49 -05:00
|
|
|
QTableView, QHeaderView
|
|
|
|
{
|
|
|
|
border-radius: 0px;
|
|
|
|
}
|
|
|
|
|
2014-02-24 05:15:03 -05:00
|
|
|
QTableView::item:pressed, QListView::item:pressed, QTreeView::item:pressed {
|
|
|
|
background: #78879b;
|
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
QTableView::item:selected:active, QTreeView::item:selected:active, QListView::item:selected:active {
|
|
|
|
background: #78879b;
|
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-24 05:10:06 -05:00
|
|
|
QHeaderView
|
|
|
|
{
|
|
|
|
border: 1px transparent;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
2014-01-30 04:57:49 -05:00
|
|
|
QHeaderView::section {
|
2014-02-24 05:17:09 -05:00
|
|
|
background-color: #3A3939;
|
2014-02-24 05:10:06 -05:00
|
|
|
color: silver;
|
2014-01-30 04:57:49 -05:00
|
|
|
padding: 4px;
|
|
|
|
border: 1px solid #6c6c6c;
|
|
|
|
border-radius: 0px;
|
2014-02-24 05:10:06 -05:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2014-02-25 03:20:05 -05:00
|
|
|
QHeaderView::section::vertical::first, QHeaderView::section::vertical::only-one
|
2014-02-24 05:10:06 -05:00
|
|
|
{
|
|
|
|
border-top: 1px solid #6c6c6c;
|
|
|
|
}
|
|
|
|
|
|
|
|
QHeaderView::section::vertical
|
|
|
|
{
|
|
|
|
border-top: transparent;
|
|
|
|
}
|
|
|
|
|
2014-02-25 03:20:05 -05:00
|
|
|
QHeaderView::section::horizontal::first, QHeaderView::section::horizontal::only-one
|
2014-02-24 05:10:06 -05:00
|
|
|
{
|
|
|
|
border-left: 1px solid #6c6c6c;
|
|
|
|
}
|
|
|
|
|
|
|
|
QHeaderView::section::horizontal
|
|
|
|
{
|
|
|
|
border-left: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QHeaderView::section:checked
|
|
|
|
{
|
|
|
|
color: white;
|
|
|
|
background-color: #5A5959;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* style the sort indicator */
|
|
|
|
QHeaderView::down-arrow {
|
|
|
|
image: url(:/qss_icons/rc/down_arrow.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
QHeaderView::up-arrow {
|
2014-02-25 03:20:05 -05:00
|
|
|
image: url(:/qss_icons/rc/up_arrow.png);
|
2014-01-30 04:57:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-24 05:15:03 -05:00
|
|
|
QTableCornerButton::section {
|
2014-01-26 09:57:49 -05:00
|
|
|
background-color: #3A3939;
|
|
|
|
border: 1px solid #3A3939;
|
2014-01-30 04:57:49 -05:00
|
|
|
border-radius: 0px;
|
2014-01-26 10:00:30 -05:00
|
|
|
}
|
2014-02-25 03:17:10 -05:00
|
|
|
|
|
|
|
QToolBox::tab {
|
|
|
|
background-color: QLinearGradient(x1:0, y1:0, x2:0, y2:1,
|
|
|
|
stop:1 #302F2F, stop:0 #5A5959);
|
|
|
|
padding-left: 3px;
|
|
|
|
padding-right: 2px;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
margin-bottom: -1px;
|
|
|
|
|
|
|
|
border-top-left-radius: 3px;
|
|
|
|
border-top-right-radius: 3px;
|
|
|
|
color: darkgray;
|
|
|
|
}
|
|
|
|
|
|
|
|
QToolBox::tab:selected { /* italicize selected tabs */
|
|
|
|
font: italic bold;
|
|
|
|
color: white;
|
|
|
|
}
|
2014-05-29 16:30:48 -04:00
|
|
|
|
|
|
|
QStatusBar::item {
|
|
|
|
border: 1px solid #3A3939;
|
|
|
|
border-radius: 3px;
|
2015-01-09 11:08:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-22 11:25:47 -04:00
|
|
|
QFrame[height="3"], QFrame[width="3"] {
|
|
|
|
background-color: #444;
|
2015-04-05 12:11:22 -04:00
|
|
|
}
|
2015-04-25 09:16:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
QSplitter::handle {
|
|
|
|
image: url(:/qss_icons/rc/stylesheet-vline.png);
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
QSplitter::handle:horizontal {
|
|
|
|
width: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
QSplitter::handle:vertical {
|
|
|
|
height: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
QSplitter::handle:pressed {
|
|
|
|
image: url(:/qss_icons/rc/stylesheet-vline.png);
|
|
|
|
}
|