kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
Merge branch '791-user-page-width' into 'develop'
Fix #791: overflowing input on account detail page Closes #791 See merge request funkwhale/funkwhale!711merge-requests/757/head
commit
e3bba6fe01
|
@ -0,0 +1 @@
|
|||
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>
|
||||
|
|
Ładowanie…
Reference in New Issue