Skip to content

Commit

Permalink
Add original stylesheets (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
chennes authored Jun 24, 2024
1 parent 83dcaa6 commit c3a55d0
Show file tree
Hide file tree
Showing 12 changed files with 15,744 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .pre-commit-config.yaml
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
104 changes: 104 additions & 0 deletions Behave-dark/Behave-dark-overlay.qss
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;
}
Loading

0 comments on commit c3a55d0

Please sign in to comment.