Skip to content

Commit

Permalink
Merge pull request #206 from scruffynerf/themes1
Browse files Browse the repository at this point in the history
Add Themes
  • Loading branch information
scruffynerf authored Jan 1, 2024
2 parents ac05d47 + 176a50e commit 50d3dc0
Show file tree
Hide file tree
Showing 16 changed files with 5,512 additions and 9 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ We're beginning to review plugins and the rest and patch them to work, but it's
We'll update the table below as we do this...
We will also be rearranging things a bit, and updating documentation (including this page)

## Plugins and Themes will no longer be listed here.
## Plugins will no longer be listed individually here...

Category|Triggers|Plugin Name|Description|Minimum Stash version|Updated for v24|
--------|-----------|-----------|-----------|---------------------|-----
Expand All @@ -42,9 +42,8 @@ Reporting||[TagGraph](plugins/tagGraph)|Creates a visual of the Tag relations.|v

## Themes

Theme Name|Description |Updated for v24|
----------|--------------------------------------------|----
[Plex](themes/plex) |Theme inspired by the popular Plex Interface|:x:
# A Variety of Themes are now available to be one click installed via the Plugin Setting page in your Stash
We welcome new themes, as well as patches to existing themes.

## Utility Scripts

Expand Down
91 changes: 91 additions & 0 deletions themes/Theme-BlackHole/Theme-BlackHole.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
/* Black Hole Theme by BViking78 v2.0 */
/* STASH GENERAL */
/* Set Background to Black & Optional Custom Image */
body {
background: black url("") no-repeat fixed center;
background-size: contain;
}

/* Change Top Nav Bar Colors */
.bg-dark {
background-color: #000000!important;
}

/* Set Red Border on Button on Hover */
.btn-primary.btn:hover {
border: 1px solid red;
}

/* Set Background to Transparent for Tags/Performers Popups*/
.fade.hover-popover-content {
background: transparent;
}

/* Zoom Performers image when Hover*/
.hover-popover-content {
max-width: initial;
}
.image-thumbnail:hover {
height: 100%;
}

/* Set Opacity Studio Logo to 100% */
.scene-studio-overlay {
opacity: 100%;
}

/* Making Checkbox Slightly Bigger */
.grid-card .card-check {
top: 0.9rem;
width: 1.75rem;
}

/* Center Titles on Cards */
.grid-card a .card-section-title {
text-align: center;
}

/* Setting Background on Cards to Black and Borders to "Stash Grey" */
.card {
background-color: black;
border: 1px solid #30404d;
}

/* STASH MAIN PAGE*/
/* Change Card Header Color */
.card-header {
background: black;
border: 1px solid white;
}
/* Change Markdown Color */
.card-body {
background: black;
border: 1px solid white;
}

/* SCENE PAGE */
/* Hide the scene scrubber */
.scrubber-wrapper {
display: none;
}

/* Setting Row "Scrape With" Background to Black */
#scene-edit-details .edit-buttons-container {
background-color: black;
}

/* Setting Other Rows Background to Black */
div.react-select__control {
background-color: black;
}

/* SETTING */
/* Setting Text Input Border to White */
.input-control, .text-input {
border: 1px solid white;
}

/* Setting Background on Task Queue to Black */
#tasks-panel .tasks-panel-queue {
background-color: black;
}
6 changes: 6 additions & 0 deletions themes/Theme-BlackHole/Theme-BlackHole.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
name: Theme - BlackHole
description: BlackHole Theme for Stash by BViking78
version: 2.0.0
ui:
css:
- Theme-BlackHole.css
Loading

0 comments on commit 50d3dc0

Please sign in to comment.