From d02e79ca0a5f66521f381a44bbce2773effd0b18 Mon Sep 17 00:00:00 2001 From: Jose Velazquez Date: Mon, 22 Jun 2020 10:36:38 -0400 Subject: [PATCH] [Ryuutama]: fixes and color on dice size change (#6797) * [Ryuutama]: fixed skill spacing and translation tag * [Ryuutama]: adding color indicators when dice size changes Co-authored-by: jlvgit --- Ryuutama/Ryuutama.css | 14 +++++++- Ryuutama/Ryuutama.html | 76 ++++++++++++++++++++++++++++++++++++------ 2 files changed, 79 insertions(+), 11 deletions(-) diff --git a/Ryuutama/Ryuutama.css b/Ryuutama/Ryuutama.css index a5b349585c..22297ae81d 100644 --- a/Ryuutama/Ryuutama.css +++ b/Ryuutama/Ryuutama.css @@ -111,7 +111,7 @@ button.btn.repcontrol_edit::after { border-radius: 4px; cursor: pointer; padding: 4px 6px; - color: #000; + color: #373737; } button.btn.repcontrol_add::before { @@ -379,6 +379,10 @@ button.btn.repcontrol_edit:hover::after { top: 1px; } +.sheet-skillCheckColumn { + min-width: 30%; +} + .sheet-conditionCheck { position: relative; bottom: 5px; @@ -526,6 +530,14 @@ input.sheet-overburdenPenalty { border-color: #ff8888; } +.sheet-diceAdjustment[value='increased'] ~ input{ + border: 1px solid limegreen; +} + +.sheet-diceAdjustment[value='reduced'] ~ input{ + border: 1px solid #ff8888; +} + .sheet-deathCondition { display: none; } diff --git a/Ryuutama/Ryuutama.html b/Ryuutama/Ryuutama.html index 999d3cf55d..ffac340179 100644 --- a/Ryuutama/Ryuutama.html +++ b/Ryuutama/Ryuutama.html @@ -2,6 +2,18 @@