diff --git a/src/style/atoms/_colours.scss b/src/style/atoms/_colours.scss index e495c79a..950f42d7 100644 --- a/src/style/atoms/_colours.scss +++ b/src/style/atoms/_colours.scss @@ -9,17 +9,17 @@ $talent-text-color: #000; $kampftalent-color: #cc0000; $kampftalent-text-color: #FFF; -$talent-body-color: #16bd6c; +$talent-body-color: #45d18c; $talent-body-text-color: #000; -$talent-nature-color: #46800d; +$talent-nature-color: #7cb544; $talent-nature-text-color: #000; -$talent-social-color: #ae9809; +$talent-social-color: #c8588a; $talent-social-text-color: #000; -$talent-knowledge-color: #d319ba; +$talent-knowledge-color: #2ba9c5; $talent-knowledge-text-color: #000; -$talent-language-color: #573bbc; -$talent-language-text-color: #fff; -$talent-crafting-color: #ae6813; +$talent-language-color: #957fe8; +$talent-language-text-color: #000; +$talent-crafting-color: #cd9551; $talent-crafting-text-color: #000; diff --git a/src/style/molecules/_attribute-die.scss b/src/style/molecules/_attribute-die.scss index c3126fcf..484520a5 100644 --- a/src/style/molecules/_attribute-die.scss +++ b/src/style/molecules/_attribute-die.scss @@ -31,11 +31,12 @@ position: absolute; left: -1px; width: 48px; - top: -1px; - font-size: smaller; + top: 2px; + font-size: large; line-height: 48px; vertical-align: middle; text-align: center; + @if $darkmode { color: colours.$attribute-die-label-color-darkmode; } @else { @@ -62,7 +63,7 @@ &.colorfulDice { - &.Mut { + .Mut { .die svg path { fill: colours.$attribute-die-co-color; diff --git a/src/style/molecules/_rollable.scss b/src/style/molecules/_rollable.scss index a1c7cb5b..642d23bd 100644 --- a/src/style/molecules/_rollable.scss +++ b/src/style/molecules/_rollable.scss @@ -52,7 +52,7 @@ $rollable_colours_font: ( .value { position: absolute; left: 0; - top: 0; + top: 1px; width: 32px; line-height: 30px; vertical-align: middle; @@ -126,9 +126,9 @@ $rollable_colours_font: ( // interactivity .block.rollable { - &:hover { + .die:hover { - .die svg { + svg { filter: drop-shadow(0px 0px 10px rgb(255 0 0)); } @@ -138,16 +138,9 @@ $rollable_colours_font: ( &:active { .die { - width: 28px; - height: 28px; - left: 2px; - top: 2px; + scale: 0.8; .value { - width: 28px; - height: 28px; - left: -1px; - top: -2px; img { position: absolute; @@ -168,7 +161,6 @@ $rollable_colours_font: ( .#{$name}.rollable { .die { - stroke-width: 0.5; svg { @@ -176,8 +168,7 @@ $rollable_colours_font: ( path { fill: $color; - stroke: colour.$rollable-die-border-color; - stroke-width: 5px; + } } @@ -189,7 +180,10 @@ $rollable_colours_font: ( } .container { - background-image: linear-gradient(to right, rgba($color, numbers.$start_gradient), rgba($color, numbers.$end_gradient)); + // background-image: linear-gradient(to right, rgba($color, numbers.$start_gradient), rgba($color, numbers.$end_gradient)); + background: rgba(0, 0, 0, 0.05); + border: 1px solid #ccc; + box-shadow: 1px 1px 1px #ccc; border-top-right-radius: 8px; border-bottom-right-radius: 8px; } diff --git a/src/style/organisms/character-tabs/_skills.scss b/src/style/organisms/character-tabs/_skills.scss index 3a2a7e4f..bbb542d0 100644 --- a/src/style/organisms/character-tabs/_skills.scss +++ b/src/style/organisms/character-tabs/_skills.scss @@ -17,6 +17,13 @@ gap: unset; padding: unset; + fieldset { + margin-top: 0; + margin-bottom: 0; + padding-top: 0; + padding-bottom: 0; + } + } ul { diff --git a/src/templates/actor/character/tab-skills.hbs b/src/templates/actor/character/tab-skills.hbs index 26c619c2..49203fec 100644 --- a/src/templates/actor/character/tab-skills.hbs +++ b/src/templates/actor/character/tab-skills.hbs @@ -2,8 +2,9 @@ data-tab="{{tabs.skills.id}}" data-group="{{tabs.skills.group}}">
-
-

Kampftalente

+
+
+

Kampftalente

    {{#each skills.Kampf}}
  • @@ -11,9 +12,11 @@
  • {{/each}}
+
-
-

Körperliche Talente

+
+
+

Körperliche Talente

  • {{#each skills.Körperlich}} @@ -22,9 +25,11 @@
  • {{/each}}
+
-
-

Gesellschaftliche Talente

+ -
-

Natur Talente

+
+
+

Natur Talente

  • {{#each skills.Natur}} @@ -44,9 +51,11 @@
  • {{/each}}
+
-
-

Wissenstalente

+
+
+

Wissenstalente

  • {{#each skills.Wissen}} @@ -55,9 +64,11 @@
  • {{/each}}
+
-
-

Schriften & Sprachen

+
+
+

Schriften & Sprachen

  • {{#each skills.Schriften}} @@ -71,9 +82,11 @@
  • {{/each}}
+
-
-

Handwerkliche Talente

+
+
+

Handwerkliche Talente

  • {{#each skills.Handwerk}} @@ -82,6 +95,7 @@
  • {{/each}}
+
\ No newline at end of file diff --git a/src/templates/ui/partial-rollable-button.hbs b/src/templates/ui/partial-rollable-button.hbs index 7007661b..ee575a8c 100644 --- a/src/templates/ui/partial-rollable-button.hbs +++ b/src/templates/ui/partial-rollable-button.hbs @@ -1,9 +1,5 @@ -
+
{{> 'systems/DSA_4-1/templates/ui/partial-die.hbs' }} diff --git a/src/templates/ui/partial-rollable-language-button.hbs b/src/templates/ui/partial-rollable-language-button.hbs index 76027387..27c0e810 100644 --- a/src/templates/ui/partial-rollable-language-button.hbs +++ b/src/templates/ui/partial-rollable-language-button.hbs @@ -1,10 +1,7 @@ -
+
-
+
{{> 'systems/DSA_4-1/templates/ui/partial-die.hbs' }} {{#if this.taw}} {{this.taw}} diff --git a/src/templates/ui/partial-rollable-weaponskill-button.hbs b/src/templates/ui/partial-rollable-weaponskill-button.hbs index 552ea31f..5225fbc8 100644 --- a/src/templates/ui/partial-rollable-weaponskill-button.hbs +++ b/src/templates/ui/partial-rollable-weaponskill-button.hbs @@ -1,11 +1,10 @@ -
+
{{> 'systems/DSA_4-1/templates/ui/partial-die.hbs' }} - {{#if this.taw}} {{this.taw}} {{else}}