Skip to content

Commit

Permalink
fix: Style changes from kevin.
Browse files Browse the repository at this point in the history
Also fixed a typo and removed some logging.
  • Loading branch information
xdy committed Aug 6, 2020
1 parent 94bf604 commit a5730fc
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 5 deletions.
38 changes: 35 additions & 3 deletions static/styles/twodsix.css
Original file line number Diff line number Diff line change
Expand Up @@ -272,20 +272,52 @@ input[type="text"]:focus, input[type="password"]:focus, input[type="datetime-loc

select {
height: 25px;
background: rgba(0, 0, 0, 0.05);
background: #000000a6;
border: 1px solid #7a7971;
border-radius: 3px;
padding: 0 3px;
text-overflow: ellipsis;
color: #6e819e;
}

select:focus {
box-shadow: 0 0 5px #29aae1;
outline: none;
background: #000000a6;
}

form button {
background: rgba(0, 0, 0, 0.1);
background: #000000a6 !important;
border: 2px groove #6e819e;
color: #a2bce4;
}

button:hover {
box-shadow: 0 0 5px #29aae1;
}
color: #00e5ff;
border-color: #00e5ff;
}

form .notes, form .hint {
flex: 0 0 100%;
font-size: 12px;
line-height: 16px;
color: #bfbfbf;
margin: 3px 0;
}

#module-management .package-list .package-title, #module-management .package-list .package-metadata, #module-management .package-list .package-description {
color: #bfbfbf;
}

.dialog .dialog-buttons button:last-child {
margin-right: 0;
border: 2px groove #6e819e;
color: #a2bce4;
}

.dialog .dialog-buttons button:last-child:hover {
margin-right: 0;
color: #00e5ff;
border-color: #00e5ff;
}
2 changes: 1 addition & 1 deletion static/templates/actors/actor-sheet.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<span class="helper"></span>
<div class="character-photo"><img class="profile-img" src="{{actor.img}}" data-edit="img" title="{{actor.name}}"/></div>
</div>
<div class="character-name"><h2><input name="actor.name" type="text" value="{{actor.name}}" placeholder="Character Name"/></h2></div>
<div class="character-name"><h2><input name="name" type="text" value="{{actor.name}}" placeholder="Character Name"/></h2></div>
<div class="character-bgi">
<span class="bgi-age">Age:<input type="text" name="data.age" value="{{data.age}}" placeholder="0"/></span>
<span class="bgi-gender">Gender:<input name="data.gender" type="text" value="{{data.gender}}" placeholder="Sex"/></span>
Expand Down
1 change: 0 additions & 1 deletion static/templates/actors/parts/actor-skills.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<div class="skills grid grid-2col">
<h2 class="clearfix flexbreak">Skills</h2>

{{log actor.items}}
{{#each actor.items as |skill key|}}
{{#if (eq skill.type "skill")}}
<div class="rollable-skill">
Expand Down

0 comments on commit a5730fc

Please sign in to comment.