Skip to content
Snippets Groups Projects
Commit e3bba6fe authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Merge branch '791-user-page-width' into 'develop'

Fix #791: overflowing input on account detail page

Closes #791

See merge request funkwhale/funkwhale!711
parents 8eb00228 ae626a5c
No related branches found
No related tags found
No related merge requests found
Fixed overflowing input on account detail page (#791)
......@@ -338,3 +338,7 @@ td.align.right {
input + .help {
margin-top: 0.5em;
}
.table td .ui.dropdown {
min-width: auto;
}
......@@ -273,10 +273,10 @@
<td>
<div class="ui right labeled input">
<input
class="ui input"
@change="updateUser('upload_quota', true)"
v-model.number="object.user.upload_quota"
step="100"
name="quota"
type="number" />
<div class="ui basic label">
<translate translate-context="Content/*/*/Unit">MB</translate>
......@@ -487,4 +487,7 @@ export default {
.placeholder.segment {
width: 100%;
}
.ui.input input[name="quota"] {
max-width: 7em;
}
</style>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment