Fix OneJournal header buttons in maximized state

This commit is contained in:
Vlyan
2022-06-08 14:28:11 +02:00
parent d991fd57b4
commit d1ed939e9a
6 changed files with 24 additions and 15 deletions

View File

@@ -4,7 +4,8 @@ Date format : day/month/year
## 1.8.1 - ??/??/2022 - ???
- Added a restriction on symbols, they are now lower-case only, ex : (air) work, (Air) will not (#36).
- Added some 20q questions in GM monitor global tooltip (q14, q15, q20) for quick access.
- Fixed css for body>background-size from auto to cover, for blank scene (Thx to Sasmira)
- Fixed css for body>background-size from auto to cover, for blank scene (Thx to Sasmira).
- Fixed css for header buttons in maximized state for "OneJournal" module.
## 1.8.0 - 29/04/2022 - QoL & Compendiums Update
- Added 179 Japanese villages name table.

View File

@@ -1,6 +1,7 @@
/* Global */
@import "../scss/colors";
@import "../scss/global";
@import "../scss/compatibility-modules";
@import "../scss/fonts";
@import "../scss/cursors";
@import "../scss/dices";
@@ -15,5 +16,5 @@
@import "../scss/rings";
@import "../scss/skills";
@import "../scss/items";
@import "../scss/twentyquestions";
@import "../scss/twenty-questions";
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,19 @@
/** Modules Compatibility fixes **/
// Fix for "search anywhere" draggable icon
.window-draggable-handle {
z-index: 20 !important;
}
// Fix forien-quest
#forien-quest-log .window-content,
#forien-quest-log-form .window-content,
.window-app.forien-quest-preview .window-content {
overflow: initial;
}
// Fix OneJournal header buttons in maximized state
#OneJournalShell:first-child > .window-header,
#OneJournalShell.maximized > .window-header {
z-index: 20;
}

View File

@@ -363,15 +363,3 @@ a.compendium-link {
color: #0096ff;
}
}
// Fix for "search anywhere" draggable icon
.window-draggable-handle {
z-index: 20 !important;
}
// Fix forien-quest
#forien-quest-log .window-content,
#forien-quest-log-form .window-content,
.window-app.forien-quest-preview .window-content {
overflow: initial;
}