Merge pull request #1771 from nextcloud/enh/a11y-modal-label

Add always visible new album labels
This commit is contained in:
Louis 2023-05-05 08:20:25 +02:00 committed by GitHub
commit 55f76c9d24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 12 additions and 5 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -28,12 +28,15 @@
name="name"
:required="true"
autofocus="true"
:placeholder="t('photos', 'Name of the album')" />
:label="t('photos', 'Name of the album')"
:label-visible="true" />
<label>
<MapMarker /><NcTextField :value.sync="albumLocation"
<MapMarker />
<NcTextField :value.sync="albumLocation"
name="location"
type="text"
:placeholder="t('photos', 'Location of the album')" />
:label="t('photos', 'Location of the album')"
:label-visible="true" />
</label>
</div>
<div class="form-buttons">
@ -267,8 +270,12 @@ export default {
display: flex;
margin-top: 16px;
:deep svg {
margin-right: 12px;
:deep {
.material-design-icon {
align-self: flex-end;
margin-right: 12px;
margin-bottom: 6px;
}
}
}
}