Compare commits
2 commits
8e3b991518
...
2aa19a77e6
| Author | SHA1 | Date | |
|---|---|---|---|
| 2aa19a77e6 | |||
| 92c7a2a9b9 |
3 changed files with 48 additions and 14 deletions
|
|
@ -2,10 +2,10 @@
|
|||
"id": "cosmos-dh-tweaks",
|
||||
"title": "Cosmo's Daggerheart Tweaks",
|
||||
"description": "A selection of quality of life tweaks for the Daggerheart system on Foundry VTT.",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"url": "https://git.geeks.gay/cosmo/cosmos-dh-tweaks",
|
||||
"manifest": "https://git.geeks.gay/cosmo/cosmos-dh-tweaks/raw/branch/main/module.json",
|
||||
"download": "https://git.geeks.gay/cosmo/cosmos-dh-tweaks/releases/download/1.0.0/cosmos-dh-tweaks.zip",
|
||||
"download": "https://git.geeks.gay/cosmo/cosmos-dh-tweaks/releases/download/1.0.1/cosmos-dh-tweaks.zip",
|
||||
"compatibility": {
|
||||
"minimum": "14.000",
|
||||
"verified": "14.364"
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ Hooks.once("init", () => {
|
|||
addBtn = document.createElement("a");
|
||||
addBtn.className = "cosmo-add-countdown";
|
||||
addBtn.setAttribute("data-tooltip", game.i18n.localize("COSMOS_DH_TWEAKS.Countdown.add"));
|
||||
addBtn.innerHTML = '<i class="fa-solid fa-plus"></i>';
|
||||
addBtn.innerHTML = '<i class="fa-solid fa-plus"></i><span class="cosmo-add-label">' + game.i18n.localize("COSMOS_DH_TWEAKS.Countdown.add") + '</span>';
|
||||
addBtn.addEventListener("click", (e) => {
|
||||
e.preventDefault();
|
||||
new game.system.api.applications.ui.CountdownEdit().render(true);
|
||||
|
|
|
|||
|
|
@ -9,21 +9,22 @@
|
|||
border-radius: 4px;
|
||||
align-self: flex-end;
|
||||
overflow: hidden;
|
||||
transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
|
||||
}
|
||||
|
||||
.daggerheart.dh-style.countdowns.cosmo-minimal-countdown::before {
|
||||
opacity: 1 !important;
|
||||
.daggerheart.dh-style.countdowns.cosmo-minimal-countdown:hover {
|
||||
width: 140px !important;
|
||||
}
|
||||
|
||||
.daggerheart.dh-style.countdowns.cosmo-minimal-countdown .countdowns-header {
|
||||
display: flex !important;
|
||||
width: 36px !important;
|
||||
width: 100% !important;
|
||||
height: 36px !important;
|
||||
flex: 0 0 36px !important;
|
||||
padding: 0 !important;
|
||||
margin: 0 !important;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
justify-content: flex-start;
|
||||
border: none !important;
|
||||
background: transparent !important;
|
||||
}
|
||||
|
|
@ -38,25 +39,58 @@
|
|||
|
||||
.daggerheart.dh-style.countdowns.cosmo-minimal-countdown .cosmo-add-countdown {
|
||||
display: flex !important;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 36px !important;
|
||||
align-items: center !important;
|
||||
justify-content: center !important;
|
||||
height: 36px !important;
|
||||
width: 36px;
|
||||
font-size: 16px !important;
|
||||
color: var(--golden, #c5a45e) !important;
|
||||
cursor: pointer;
|
||||
transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
|
||||
transition: color 0.2s ease, transform 0.2s ease;
|
||||
}
|
||||
|
||||
.daggerheart.dh-style.countdowns.cosmo-minimal-countdown:hover .cosmo-add-countdown {
|
||||
width: 100% !important;
|
||||
justify-content: flex-start !important;
|
||||
padding-left: 10px !important;
|
||||
}
|
||||
|
||||
.daggerheart.dh-style.countdowns.cosmo-minimal-countdown .cosmo-add-countdown:hover {
|
||||
color: #ffffff !important;
|
||||
transform: scale(1.15);
|
||||
text-shadow: 0 0 5px var(--golden, #c5a45e) !important;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.daggerheart.dh-style.countdowns.cosmo-minimal-countdown .cosmo-add-label {
|
||||
max-width: 0;
|
||||
opacity: 0;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
display: inline-block;
|
||||
transition: max-width 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, margin-left 0.25s ease;
|
||||
font-size: 13px;
|
||||
font-family: inherit;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.daggerheart.dh-style.countdowns.cosmo-minimal-countdown:hover .cosmo-add-label {
|
||||
max-width: 95px;
|
||||
opacity: 1;
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
/* Token HUD Spotlight Button styling */
|
||||
.control-icon.cosmo-spotlight-hud-btn {
|
||||
transition: color 0.2s ease, text-shadow 0.2s ease, background-color 0.2s ease;
|
||||
display: flex !important;
|
||||
align-items: center !important;
|
||||
justify-content: center !important;
|
||||
}
|
||||
|
||||
.control-icon.cosmo-spotlight-hud-btn i {
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
display: block !important;
|
||||
line-height: 1 !important;
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
.control-icon.cosmo-spotlight-hud-btn:hover {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue