Skip to content

Commit

Permalink
OceanBlues: Fix for Midi-Qol colors in setting menus
Browse files Browse the repository at this point in the history
OceanBlues: Fix for number and password fields
Version push: 1.1.6
  • Loading branch information
MajorVictory committed Apr 26, 2021
1 parent ac9561e commit b54bbfd
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## Version 1.1.6

* OceanBlues: Fix for Midi-Qol colors in setting menus
* OceanBlues: Fix for number and password fields

## Version 1.1.5

* OceanBlues: Reorganized folders and filenames
Expand Down
4 changes: 2 additions & 2 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Whetstone",
"title": "Whetstone - Foundry Theme Manager",
"description": "A robust theme manager for Foundry, designed to make applying and customizing themes easier for users and theme authors.",
"version": "1.1.5",
"version": "1.1.6",
"author": "MajorVictory",
"esmodules": [
"Whetstone.js"
Expand All @@ -19,7 +19,7 @@
"packs": [],
"url": "https://github.com/MajorVictory/Whetstone",
"manifest": "https://raw.githubusercontent.com/MajorVictory/Whetstone/master/module.json",
"download": "https://github.com/MajorVictory/Whetstone/releases/download/v1.1.5/Whetstone.zip",
"download": "https://github.com/MajorVictory/Whetstone/releases/download/v1.1.6/Whetstone.zip",
"compatibleCoreVersion": "0.7.9",
"minimumCoreVersion": "0.6.6"
}
19 changes: 19 additions & 0 deletions styles/OceanBlues/Main.css
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,11 @@ form button,
border: 2px groove var(--OceanBlues-border-color);
}

.dialog .dialog-buttons button.default {
background: var(--OceanBlues-fg-color-darker);
border: 2px groove var(--OceanBlues-border-color);
}

button:hover,
.dialog .dialog-buttons button:hover {
background: var(--OceanBlues-highlight-color);
Expand All @@ -186,6 +191,7 @@ button,
textarea,
input[type="text"],
input[type="password"],
input[type="number"],
input[type="range"], .range-value,
input[type="range"] + .range-value,
input[type="color"][data-edit],
Expand All @@ -208,6 +214,10 @@ select:hover,
select:focus,
input[type="text"]:hover,
input[type="text"]:focus,
input[type="password"]:hover,
input[type="password"]:focus,
input[type="number"]:hover,
input[type="number"]:focus,
input[type="color"][data-edit]:hover,
input[type="color"][data-edit]:focus,
input[type="range"]:hover,
Expand Down Expand Up @@ -565,4 +575,13 @@ form .hint,
border: 1px solid var(--OceanBlues-border-color);
border-radius: 5px;
box-shadow: 0 0 20px #000;
}

/* Midi-Qol */
.midi-qol-faint {
color: var(--OceanBlues-text-dark-color);
}

.midi-qol-box {
border: 2px groove var(--OceanBlues-border-color);
}

0 comments on commit b54bbfd

Please sign in to comment.