Fix OneJournal header buttons in maximized state
This commit is contained in:
@@ -4,7 +4,8 @@ Date format : day/month/year
|
|||||||
## 1.8.1 - ??/??/2022 - ???
|
## 1.8.1 - ??/??/2022 - ???
|
||||||
- Added a restriction on symbols, they are now lower-case only, ex : (air) work, (Air) will not (#36).
|
- 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.
|
- 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
|
## 1.8.0 - 29/04/2022 - QoL & Compendiums Update
|
||||||
- Added 179 Japanese villages name table.
|
- Added 179 Japanese villages name table.
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
/* Global */
|
/* Global */
|
||||||
@import "../scss/colors";
|
@import "../scss/colors";
|
||||||
@import "../scss/global";
|
@import "../scss/global";
|
||||||
|
@import "../scss/compatibility-modules";
|
||||||
@import "../scss/fonts";
|
@import "../scss/fonts";
|
||||||
@import "../scss/cursors";
|
@import "../scss/cursors";
|
||||||
@import "../scss/dices";
|
@import "../scss/dices";
|
||||||
@@ -15,5 +16,5 @@
|
|||||||
@import "../scss/rings";
|
@import "../scss/rings";
|
||||||
@import "../scss/skills";
|
@import "../scss/skills";
|
||||||
@import "../scss/items";
|
@import "../scss/items";
|
||||||
@import "../scss/twentyquestions";
|
@import "../scss/twenty-questions";
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
19
system/styles/scss/compatibility-modules.scss
Normal file
19
system/styles/scss/compatibility-modules.scss
Normal 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;
|
||||||
|
}
|
||||||
@@ -363,15 +363,3 @@ a.compendium-link {
|
|||||||
color: #0096ff;
|
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;
|
|
||||||
}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user