Fix CSS namespace collisions
This commit is contained in:
parent
e514e06878
commit
5d540320ec
3 changed files with 5 additions and 4 deletions
|
@ -186,7 +186,8 @@
|
|||
.blades-in-the-dark .editor-content {
|
||||
min-height: 150px;
|
||||
}
|
||||
.blades-in-the-dark .description {
|
||||
.blades-in-the-dark .cohort-description,
|
||||
.blades-in-the-dark .gang-description {
|
||||
font-style: italic;
|
||||
}
|
||||
.blades-in-the-dark i.nullifier {
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
</select>
|
||||
|
||||
</div>
|
||||
<div id="selected-gang-description" class="description">
|
||||
<div id="selected-gang-description" class="gang-description">
|
||||
{{#each system.gang_type as |gang_type key|}}
|
||||
{{#with (lookup ../system.gang_type_list gang_type)}}
|
||||
{{localize description}}
|
||||
|
|
|
@ -39,12 +39,12 @@
|
|||
<div class="flex-vertical">
|
||||
{{#each system.edges_list as |edge key|}}
|
||||
{{#if edge.selected }}
|
||||
<div class="description">{{localize edge.description}} <b>({{localize edge.label}})</b></div>
|
||||
<div class="cohort-description">{{localize edge.description}} <b>({{localize edge.label}})</b></div>
|
||||
{{/if}}
|
||||
{{/each}}
|
||||
{{#each system.flaws_list as |flaw key|}}
|
||||
{{#if flaw.selected }}
|
||||
<div class="description">{{localize flaw.description}} <b>({{localize flaw.label}})</b></div>
|
||||
<div class="cohort-description">{{localize flaw.description}} <b>({{localize flaw.label}})</b></div>
|
||||
{{/if}}
|
||||
{{/each}}
|
||||
</div>
|
||||
|
|
Reference in a new issue