Skip to content

Commit

Permalink
Merge pull request #74 from Vesselchuck/main
Browse files Browse the repository at this point in the history
Focus pool pips update
  • Loading branch information
Dorako authored Aug 6, 2022
2 parents 4724688 + 02201f4 commit 5a25f2b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions styles/familiar-sheet-dark-red-header.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* Dark sheet background with red header */
.actor.sheet.familiar .window-content {
background: url(../img/header.webp), var(--sheet-dark);
background-attachment: local;
background-repeat: repeat-x, no-repeat;
background-size: 1335px, cover;
background: url(../img/header.webp), url("../../../ui/denim.png");
background-repeat: repeat-x, repeat;
background-size: 1335px, auto;
box-shadow: 0 0 10vw var(--color-shadow-dark) inset;
}
6 changes: 3 additions & 3 deletions styles/familiar-sheet-dark.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
/* Dark sheet background */
.actor.sheet.familiar .window-content {
background: var(--sheet-dark);
background-repeat: repeat-x, no-repeat;
background-size: cover;
background: url("../../../ui/denim.png");
box-shadow: 0 0 10vw var(--color-shadow-dark) inset;
}
/* Text color - White */
.actor.sheet.familiar .window-content .familiar-sheet-header .header-content .charname .familiar-title,
Expand Down Expand Up @@ -181,6 +180,7 @@
}
/* Familiar portrait appearance */
.actor.sheet.familiar .window-content .familiar-sheet-header img {
background: url("../../../ui/denim.png");
box-shadow: 0 0 0 1px #918c88,0 0 0 2px #e1d8cf,0 0 0 3px #a98f39,inset 0 0 8px rgba(0,0,0,.5),0 0 8px #000;
cursor: pointer;
margin: 2px -0.5px 10px -1px;
Expand Down
20 changes: 10 additions & 10 deletions styles/pc-sheet-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
}

.actor.sheet.character .window-content .crb-style {
background: url(../img/header.webp), var(--sheet-dark);
background-repeat: repeat-x, no-repeat;
background-size: auto, cover;
background: url(../img/header.webp), url("../../../ui/denim.png");
background-repeat: repeat-x, repeat;
box-shadow: 0 0 50vw var(--color-shadow-dark) inset;
}

.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.character .character-details .alignment {
Expand Down Expand Up @@ -64,7 +64,10 @@
.spellcasting-entry.sheet ol.spell-list>li.spell-level-header,
.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.actions .actions-container .actions-tabs-wrapper .actions-panels ol.actions-list li.action.expanded h4,
.actor.sheet.character .crb-style .sheet-body .sheet-content ol.directory-list .action-header .item-controls,
.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.character .ability-scores .ability .ability-score div {
.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.character .ability-scores .ability .ability-score div,
.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.spellcasting .spellcasting-entry .skills-list .skill-grid .focus-pool,
.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.spellcasting .spellcasting-entry .skills-list .skill-grid .focus-pool h4:hover,
.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.feats .feat-item .item-name .item-placeholder {
color: var(--text-light);
}

Expand All @@ -75,12 +78,13 @@
}

.actor.sheet.character .crb-style .details-label,
.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.feats .item.feat-item .item-name .feat-slot-title,
.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.feats .feat-item .item-name .feat-slot-title,
.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.spellcasting .spellcasting-entry .skills-list .skill-grid .skill-score,
.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.proficiencies .proficiencies-pane h1,
.actor.sheet.character .crb-style .tab.character .pc h3 .fas,
.actor.sheet.character .crb-style .sheet-body .sheet-content h3.header,
.actor.sheet.character .crb-style .sheet-body .sheet-content h3.header button {
.actor.sheet.character .crb-style .sheet-body .sheet-content h3.header button,
.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.spellcasting .spellcasting-entry .skills-list .skill-grid .focus-pool .pips .fas.fa-dot-circle {
color: var(--tertiary-dark);
}

Expand Down Expand Up @@ -618,10 +622,6 @@ a.inline-roll,
margin-top: 2px;
}

.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.spellcasting .spellcasting-entry .skills-list .skill-grid .skill-container {
display: none;
}

.actor.sheet.character .crb-style .sheet-body .sheet-content .tab.actions .actions-container .actions-tabs-wrapper .actions-panels ol.actions-list.strikes-list li.strike .alt-usage img.alt-usage-icon {
filter: invert(1);
}
Expand Down

0 comments on commit 5a25f2b

Please sign in to comment.