Improve text field appearance

This commit is contained in:
Trevor Vallender 2024-06-18 08:11:05 +01:00
parent 6c14632bd5
commit d502591c79
3 changed files with 23 additions and 6 deletions

View File

@ -57,7 +57,7 @@
justify-content: center; justify-content: center;
} }
.stat, .counter { .stat, .counter, .text-field {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
border-radius: var(--border-radius); border-radius: var(--border-radius);
@ -70,12 +70,30 @@
padding: .5em; padding: .5em;
} }
input, .stat-value { input, .stat-value {
font-size: 3em;
width: 2.5em;
}
input, .stat-value, .trix-content {
padding: .5em; padding: .5em;
color: var(--text-color); color: var(--text-color);
background-color: var(--input-background); background-color: var(--input-background);
text-align: center; text-align: center;
font-size: 3em;
width: 2.5em;
border: 1px solid var(--background-color); border: 1px solid var(--background-color);
height: 120px;
}
trix-toolbar {
display: none;
}
.trix-content {
min-width: 10em;
max-width: 20em;
overflow-y: scroll;
font-size: .8em;
}
input[type=submit] {
width: 100%;
font-size: .8em;
height: auto;
padding: auto;
} }
} }

View File

@ -11,7 +11,7 @@
<%= f.submit t(".save") %> <%= f.submit t(".save") %>
<% end %> <% end %>
<% else %> <% else %>
<p><%= text_field.content %></p> <%= text_field.content %>
<% end %> <% end %>
</div> </div>

View File

@ -1,9 +1,8 @@
- set orders on sheets - improve edit button appearance
- easily edit text fields without entering edit mode - easily edit text fields without entering edit mode
- add roll command to counters (e.g. luck) - add roll command to counters (e.g. luck)
- test for rolls controller & system tests - test for rolls controller & system tests
- Show individual dice on dice roll - Show individual dice on dice roll
- customise trix bar
- Sheets - Sheets
- Lists - Lists
- Weapons/spells - Weapons/spells