forked from public/fvtt-cthulhu-eternal
		
	Enhance roll result colors
This commit is contained in:
		| @@ -110,11 +110,11 @@ | |||||||
|   --font-secondary: "RozhaOne"; |   --font-secondary: "RozhaOne"; | ||||||
|   --font-title: "Broadway"; |   --font-title: "Broadway"; | ||||||
|   --logo-standard: url("../assets/logos/reanimated-ce-logo.webp"); |   --logo-standard: url("../assets/logos/reanimated-ce-logo.webp"); | ||||||
|   --color-success: darkgreen; |   --color-success: #12e912; | ||||||
|   --color-failure: darkred; |   --color-failure: darkred; | ||||||
|   --color-warning: darkorange; |   --color-warning: darkorange; | ||||||
|   --color-critical-success: lightgreen; |   --color-critical-success: #1527cc; | ||||||
|   --color-critical-failure: lightcoral; |   --color-critical-failure: #8d20e7; | ||||||
|   --img-icon-color-filter: brightness(0) saturate(100%) invert(52%) sepia(9%) saturate(2368%) hue-rotate(360deg) brightness(86%) contrast(84%); |   --img-icon-color-filter: brightness(0) saturate(100%) invert(52%) sepia(9%) saturate(2368%) hue-rotate(360deg) brightness(86%) contrast(84%); | ||||||
| } | } | ||||||
| .d100 { | .d100 { | ||||||
| @@ -364,10 +364,16 @@ i.fvtt-cthulhu-eternal { | |||||||
|   max-width: 2.4rem; |   max-width: 2.4rem; | ||||||
| } | } | ||||||
| .fvtt-cthulhu-eternal .protagonist-main .protagonist-pc .protagonist-right .willpower .label-field { | .fvtt-cthulhu-eternal .protagonist-main .protagonist-pc .protagonist-right .willpower .label-field { | ||||||
|   flex-grow: 0; |   flex-grow: 1; | ||||||
|   margin-left: 4px; |   margin-left: 4px; | ||||||
|   max-width: 3rem; |   max-width: 5rem; | ||||||
|   min-width: 3rem; |   min-width: 5rem; | ||||||
|  |   font-size: 0.9rem; | ||||||
|  | } | ||||||
|  | .fvtt-cthulhu-eternal .protagonist-main .protagonist-pc .protagonist-right .willpower .checkbox { | ||||||
|  |   flex-grow: 0; | ||||||
|  |   min-width: 1rem; | ||||||
|  |   max-width: 1rem; | ||||||
| } | } | ||||||
| .fvtt-cthulhu-eternal .protagonist-main .protagonist-pc .protagonist-right .protagonist-infos { | .fvtt-cthulhu-eternal .protagonist-main .protagonist-pc .protagonist-right .protagonist-infos { | ||||||
|   display: flex; |   display: flex; | ||||||
|   | |||||||
| @@ -7,11 +7,11 @@ | |||||||
|   --font-secondary: "RozhaOne"; |   --font-secondary: "RozhaOne"; | ||||||
|   --font-title: "Broadway"; |   --font-title: "Broadway"; | ||||||
|   --logo-standard: url("../assets/logos/reanimated-ce-logo.webp"); |   --logo-standard: url("../assets/logos/reanimated-ce-logo.webp"); | ||||||
|   --color-success: darkgreen; |   --color-success: rgb(18, 233, 18); | ||||||
|   --color-failure: darkred; |   --color-failure: darkred; | ||||||
|   --color-warning: darkorange; |   --color-warning: darkorange; | ||||||
|   --color-critical-success: lightgreen; |   --color-critical-success: rgb(21, 39, 204); | ||||||
|   --color-critical-failure: lightcoral; |   --color-critical-failure: rgb(141, 32, 231); | ||||||
|   --img-icon-color-filter: brightness(0) saturate(100%) invert(52%) sepia(9%) saturate(2368%) hue-rotate(360deg) brightness(86%) contrast(84%); |   --img-icon-color-filter: brightness(0) saturate(100%) invert(52%) sepia(9%) saturate(2368%) hue-rotate(360deg) brightness(86%) contrast(84%); | ||||||
| } | } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -127,12 +127,16 @@ | |||||||
|           max-width: 2.4rem; |           max-width: 2.4rem; | ||||||
|         } |         } | ||||||
|         .label-field { |         .label-field { | ||||||
|           flex-grow: 0; |           flex-grow: 1; | ||||||
|           margin-left: 4px; |           margin-left: 4px; | ||||||
|           max-width: 3.0rem; |           max-width: 5rem; | ||||||
|           min-width: 3.0rem; |           min-width: 5rem; | ||||||
|  |           font-size: 0.9rem; | ||||||
|         } |         } | ||||||
|         .checkbox {        |         .checkbox {        | ||||||
|  |           flex-grow: 0; | ||||||
|  |           min-width: 1rem; | ||||||
|  |           max-width: 1rem; | ||||||
|         } |         } | ||||||
|  |  | ||||||
|       } |       } | ||||||
|   | |||||||
| @@ -82,12 +82,12 @@ | |||||||
|         <fieldset class="willpower"> |         <fieldset class="willpower"> | ||||||
|           <legend>{{localize "CTHULHUETERNAL.Label.willpower"}}</legend> |           <legend>{{localize "CTHULHUETERNAL.Label.willpower"}}</legend> | ||||||
|           <div class="flexrow"> |           <div class="flexrow"> | ||||||
|             <span class="label-field">{{localize "CTHULHUETERNAL.Label.current"}}</span> |             <label class="label-field">{{localize "CTHULHUETERNAL.Label.current"}}</label> | ||||||
|             {{formField systemFields.wp.fields.value value=system.wp.value}} |             {{formInput systemFields.wp.fields.value value=system.wp.value}} | ||||||
|             <span class="label-field">{{localize "CTHULHUETERNAL.Label.max"}}</span> |             <label class="label-field">{{localize "CTHULHUETERNAL.Label.max"}}</label> | ||||||
|             {{formField systemFields.wp.fields.max value=system.wp.max rootId=partId disabled=true}} |             {{formInput systemFields.wp.fields.max value=system.wp.max rootId=partId disabled=true}} | ||||||
|             <span class="label-field">{{localize "CTHULHUETERNAL.Label.exhausted"}}</span> |             <label class="label-field">{{localize "CTHULHUETERNAL.Label.exhausted"}}</label> | ||||||
|             {{formField systemFields.wp.fields.exhausted value=system.wp.exhausted classes="checkbox"}} |             {{formInput systemFields.wp.fields.exhausted value=system.wp.exhausted classes="checkbox"}} | ||||||
|           </div> |           </div> | ||||||
|         </fieldset> |         </fieldset> | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user