* Fixing so that chat messages now show list icon * Fixed deprecation message from chat * Adding our custom drop down icons to search compendium filter * Fixing error when creating actors
162 lines
4.1 KiB
SCSS
162 lines
4.1 KiB
SCSS
.application {
|
|
color: var(--color-text-primary);
|
|
|
|
.scrollable {
|
|
--scroll-margin: 0;
|
|
}
|
|
|
|
.window-header {
|
|
background: linear-gradient(
|
|
$l5r5e-linear-gradient-second,
|
|
$l5r5e-linear-gradient-second-dark,
|
|
$l5r5e-linear-gradient-second
|
|
);
|
|
.window-title {
|
|
font-family: $font-secondary;
|
|
font-size: 1.25rem;
|
|
}
|
|
}
|
|
|
|
.window-content {
|
|
padding: 0.25rem;
|
|
}
|
|
}
|
|
|
|
// More specified stuff down here as to not make it too hard to read the overridden defaults
|
|
.application {
|
|
.window-content {
|
|
table {
|
|
background: transparent;
|
|
border: 1px solid $l5r5e-title;
|
|
thead {
|
|
background: $l5r5e-title;
|
|
color: $l5r5e-label;
|
|
text-shadow: none;
|
|
border-bottom: $l5r5e-title;
|
|
}
|
|
tbody {
|
|
}
|
|
tr {
|
|
&:nth-child(odd) {
|
|
background: $l5r5e-odd;
|
|
}
|
|
&:nth-child(even) {
|
|
background: $l5r5e-even;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Handle Sidebar here. Starting with custom icons
|
|
$l5r5e-custom-icons: (
|
|
chatIcon: "../assets/ui/sidebar/chat.svg",
|
|
combatIcon: "../assets/ui/sidebar/combat-tracker.svg",
|
|
sceneIcon: "../assets/ui/sidebar/scenes.svg",
|
|
actorIcon: "../assets/ui/sidebar/actors.svg",
|
|
itemIcon: "../assets/ui/sidebar/object.svg",
|
|
journalIcon: "../assets/ui/sidebar/journal.svg",
|
|
rolltableIcon: "../assets/ui/sidebar/rolltable.svg",
|
|
playlistIcon: "../assets/ui/sidebar/playlist.svg",
|
|
compendiumIcon: "../assets/ui/sidebar/compendium.svg",
|
|
settingsIcon: "../assets/ui/sidebar/settings.svg"
|
|
);
|
|
|
|
$selectors: (
|
|
"#sidebar-tabs button.l5r5e",
|
|
"#sidebar-content .create-button.l5r5e",
|
|
"#sidebar-content i.l5r5e",
|
|
"#context-menu i.l5r5e"
|
|
);
|
|
|
|
@each $selector in $selectors {
|
|
#{$selector} {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
@if str-index($selector, "i.") {
|
|
width: 2em;
|
|
height: 2em;
|
|
color: currentColor;
|
|
}
|
|
|
|
@if str-index($selector, "create-button") {
|
|
filter: drop-shadow(0 0 3px var(--color-dark-1));
|
|
}
|
|
|
|
// Apply masks for each icon
|
|
@each $name, $url in $l5r5e-custom-icons {
|
|
&.#{$name}::before {
|
|
content: "";
|
|
position: absolute;
|
|
width: 85%;
|
|
height: 85%;
|
|
background-color: currentColor;
|
|
mask: url($url) no-repeat center / contain;
|
|
-webkit-mask: url($url) no-repeat center / contain;
|
|
z-index: 0;
|
|
}
|
|
}
|
|
|
|
// Generic plus icon badge
|
|
&.icon-plus::after {
|
|
z-index: 2;
|
|
}
|
|
}
|
|
}
|
|
|
|
#sidebar-tabs > menu {
|
|
gap: 4px; // halve the distance between menu icons
|
|
}
|
|
|
|
|
|
#sidebar-content.expanded {
|
|
background: url("../assets/ui/bgSidebar.webp") no-repeat;
|
|
border-image: url("../assets/ui/macro-button.webp") 10 repeat;
|
|
border-style: solid;
|
|
border-image-width: 0.5rem;
|
|
border-image-outset: 0px;
|
|
margin-top: 2px;
|
|
margin-right: 2px;
|
|
height: calc(100% - 10px); // use height calculation to add margin at bottom
|
|
|
|
.sidebar-tab,.tab {
|
|
margin: 3px; // center content in sidebar
|
|
border-radius: 5px; // round of the inside content
|
|
}
|
|
|
|
#chat {
|
|
margin: unset;
|
|
padding-right: 4px; // scrollbar should be inside the container
|
|
.chat-scroll {
|
|
direction: unset; // Scrollbar on right
|
|
scrollbar-color: var(--color-light-4) var(--color-dark-3);
|
|
scrollbar-width: thin;
|
|
}
|
|
}
|
|
}
|
|
|
|
// hotbar
|
|
#hotbar {
|
|
//margin: 0;
|
|
#action-bar {
|
|
//flex: 0 0 100%;
|
|
.slot {
|
|
border-image: url("../assets/ui/macro-button.webp");
|
|
border-image-slice: 8 fill;
|
|
border-image-width: 0.25rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
#menu.active {
|
|
transition: max-height 150ms ease-in;
|
|
}
|
|
|
|
#menu {
|
|
// Foundry listens to transitionend and then close the menu so need something here.
|
|
// otherwise using ESC will result in a long wait and missed trigger events
|
|
transition: max-height 10ms ease-out;
|
|
} |