-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
15,744 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# SPDX-License-Identifier: LGPL-2.1-or-later | ||
|
||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-yaml | ||
- id: check-added-large-files | ||
- id: mixed-line-ending |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
/* The OverlayTabWidget is named as OverlayLeft, OverlayRight, OverlayTop, OverlayBottom. | ||
To customize for each overlay docking site, use the following selector | ||
|
||
Gui--OverlayTabWidget#OverlayLeft {} | ||
*/ | ||
/* | ||
* { | ||
color: #f0f0f0; | ||
alternate-background-color: rgba(255, 179, 0, 0.607); | ||
background-color: rgba(0, 255, 132, 0.607); | ||
}*/ | ||
|
||
Gui--OverlayTabWidget { | ||
qproperty-effectColor: rgba(42, 42, 42, 0.278); | ||
qproperty-effectBlurRadius: 1.0; | ||
qproperty-effectOffsetX: 0.0; | ||
qproperty-effectOffsetY: 0.0; | ||
qproperty-effectWidth: 2; | ||
qproperty-effectHeight: 2; | ||
qproperty-enableEffect: 1; | ||
} | ||
|
||
Gui--OverlayTabWidget::tab-bar:top, | ||
Gui--OverlayTabWidget::tab-bar:bottom { | ||
left: 10px; | ||
alignment: left; | ||
} | ||
|
||
Gui--OverlayTabWidget::tab-bar:left, | ||
Gui--OverlayTabWidget::tab-bar:right { | ||
top: 10px; | ||
alignment: top; | ||
} | ||
|
||
Gui--OverlayTabWidget::pane { | ||
background-color: transparent; | ||
} | ||
|
||
Gui--OverlayProxyWidget { | ||
qproperty-hintColor: rgba(100, 100, 100, 0.6); | ||
} | ||
|
||
Gui--OverlayToolButton { | ||
background-color: qlineargradient(x1:0, y1:0.3, x2:0, y2:1, stop:0 #333333, stop:1 #2a2a2a); | ||
padding: 1px; | ||
border: 0px outset rgb(255, 255, 255); | ||
border-radius: 0px; | ||
} | ||
Gui--OverlayToolButton:hover { | ||
padding: 0px; | ||
} | ||
|
||
Gui--OverlayToolButton:focus { | ||
background: #000000; | ||
padding: 0px; | ||
border: 1px rgb(135, 135, 135); | ||
} | ||
|
||
Gui--OverlayToolButton::pressed { | ||
background: #000000; | ||
padding: 0px; | ||
} | ||
|
||
Gui--OverlayToolButton:checked { | ||
padding: 0px; | ||
} | ||
|
||
Gui--OverlayToolButton:checked:hover { | ||
background: #000000; | ||
border: 1px inset #525252; | ||
padding: 0px; | ||
} | ||
|
||
/* Use the following selector to customize title bar for each side */ | ||
/* | ||
Gui--OverlayTabWidget#OverlayBottom Gui--OverlayTitleBar, | ||
Gui--OverlayTabWidget#OverlayBottom QSplitter Gui--OverlaySplitterHandle { | ||
background-color: qlineargradient( | ||
spread:pad, x1:0, y1:1, x2:0, y2:0, | ||
stop:0 #80202020, stop:1 #00202020); | ||
} | ||
*/ | ||
|
||
Gui--OverlaySplitterHandle { | ||
background-color: qlineargradient(x1:0, y1:0.3, x2:0, y2:1, stop:0 #333333, stop:1 #2a2a2a); | ||
} | ||
Gui--OverlayTitle { | ||
background-color: #1cb00b; | ||
} | ||
Gui--OverlayTitleBar { | ||
background-color: qlineargradient(x1:0, y1:0.3, x2:0, y2:1, stop:0 #333333, stop:1 #2a2a2a); | ||
} | ||
|
||
QScrollArea#ClippingScrollArea, | ||
QWidget#ClippingScrollAreaContents { | ||
background-color: #750000; | ||
} | ||
QSint--ActionGroup QFrame[class="content"] { | ||
background-color: #444444; /* Task Panel background color */ | ||
} | ||
|
||
QAbstractItemView { | ||
alternate-background-color: #313131; | ||
} |
Oops, something went wrong.