2019-05-15 15:09:44 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Default style sheet on Windows Platforms
|
|
|
|
* Note: Always use CSS-classes with and without "ads--" namespace to support Qt4 & Qt5
|
|
|
|
*/
|
|
|
|
|
|
|
|
ads--CDockContainerWidget
|
|
|
|
{
|
|
|
|
background: palette(dark);
|
|
|
|
}
|
|
|
|
|
|
|
|
ads--CDockContainerWidget QSplitter::handle
|
|
|
|
{
|
|
|
|
background: palette(dark);
|
|
|
|
}
|
|
|
|
|
|
|
|
ads--CDockAreaWidget
|
|
|
|
{
|
|
|
|
background: palette(window);
|
|
|
|
border: 1px solid white;
|
|
|
|
}
|
|
|
|
|
|
|
|
ads--CDockAreaWidget #tabsMenuButton::menu-indicator
|
|
|
|
{
|
|
|
|
image: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ads--CDockWidgetTab
|
|
|
|
{
|
|
|
|
background: palette(window);
|
|
|
|
border-color: palette(light);
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 0 1px 0 0;
|
|
|
|
padding: 0 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ads--CDockWidgetTab[activeTab="true"]
|
|
|
|
{
|
|
|
|
background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:0.5, stop:0 palette(window), stop:1 palette(light));
|
|
|
|
/*background: palette(highlight);*/
|
|
|
|
}
|
|
|
|
|
|
|
|
ads--CDockWidgetTab QLabel
|
|
|
|
{
|
|
|
|
color: palette(dark);
|
|
|
|
}
|
|
|
|
|
|
|
|
ads--CDockWidgetTab[activeTab="true"] QLabel
|
|
|
|
{
|
|
|
|
color: palette(foreground);
|
|
|
|
}
|
|
|
|
|
|
|
|
ads--CDockWidget
|
|
|
|
{
|
|
|
|
background: palette(light);
|
|
|
|
border-color: palette(light);
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px 0 0 0;
|
|
|
|
}
|
|
|
|
|
2020-02-06 16:15:13 +08:00
|
|
|
|
|
|
|
ads--CTitleBarButton
|
2019-05-15 15:09:44 +08:00
|
|
|
{
|
2020-02-06 16:15:13 +08:00
|
|
|
padding: 0px 0px;
|
2019-05-15 15:09:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-02-06 16:15:13 +08:00
|
|
|
|
2019-05-15 15:09:44 +08:00
|
|
|
QScrollArea#dockWidgetScrollArea
|
|
|
|
{
|
|
|
|
padding: 0px;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#tabCloseButton
|
|
|
|
{
|
|
|
|
margin-top: 2px;
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
padding: 0px -2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tabCloseButton:hover
|
|
|
|
{
|
|
|
|
border: 1px solid rgba(0, 0, 0, 32);
|
|
|
|
background: rgba(0, 0, 0, 16);
|
|
|
|
}
|
|
|
|
|
|
|
|
#tabCloseButton:pressed
|
|
|
|
{
|
|
|
|
background: rgba(0, 0, 0, 32);
|
|
|
|
}
|
|
|
|
|
2020-05-20 04:53:52 +08:00
|
|
|
/* Focus related styling */
|
|
|
|
ads--CDockWidgetTab[focused="true"]
|
|
|
|
{
|
|
|
|
background: palette(highlight);
|
|
|
|
border-color: palette(highlight);
|
|
|
|
}
|
|
|
|
|
|
|
|
ads--CDockWidgetTab[focused="true"] QLabel
|
|
|
|
{
|
|
|
|
color: palette(light);
|
|
|
|
}
|
2019-05-15 15:09:44 +08:00
|
|
|
|
2020-05-20 04:53:52 +08:00
|
|
|
|
|
|
|
ads--CDockAreaTitleBar
|
|
|
|
{
|
|
|
|
background: transparent;
|
|
|
|
border-bottom: 2px solid palette(light);
|
|
|
|
padding-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ads--CDockAreaWidget[focused="true"] ads--CDockAreaTitleBar
|
|
|
|
{
|
|
|
|
background: transparent;
|
|
|
|
border-bottom: 2px solid palette(highlight);
|
|
|
|
padding-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ads--CFloatingDockContainer[isActiveWindow="true"] ads--CFloatingWidgetTitleBar
|
|
|
|
{
|
|
|
|
background: palette(highlight);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ads--CFloatingDockContainer[isActiveWindow="true"] ads--CFloatingWidgetTitleBar > QLabel
|
|
|
|
{
|
|
|
|
color: palette(light);
|
|
|
|
}
|