Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,18 @@
<v-card class="pa-3">
<p>{{ i18n.fillColor }}</p>
<div class="tocactionrenderer--color-picker">
<color-picker v-model="colorPickerValue" />
<color-picker
v-model="colorPickerValue"
:aria-label="`${i18n.colorSelectionFor} ${i18n.fillColor}`"
/>
</div>
<div class="mb-4" />
<p>{{ i18n.outlineColor }}</p>
<div class="tocactionrenderer--color-picker">
<color-picker v-model="outlineColorPickerValue" />
<color-picker
v-model="outlineColorPickerValue"
:aria-label="`${i18n.colorSelectionFor} ${i18n.outlineColor}`"
/>
</div>
<div class="mb-4" />
<p>{{ i18n.outlineWidth }}</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
small
block
:style="`background-color: ${backgroundColor}`"
:aria-label="ariaLabel"
class="ma-0"
v-on="on"
/>
Expand All @@ -48,6 +49,10 @@
default: () => {
return {};
}
},
ariaLabel: {
type: String,
default: ""
}
},
data() {
Expand Down
1 change: 1 addition & 0 deletions src/main/js/bundles/dn_tocactionrenderer/nls/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export default {
],
resetRenderer: "Reset Renderer",
attribute: "Attribute",
colorSelectionFor: "Color selection for",
fillColor: "Fill Color",
outlineColor: "Outline Color",
outlineWidth: "Outline Width",
Expand Down
1 change: 1 addition & 0 deletions src/main/js/bundles/dn_tocactionrenderer/nls/de/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export default {
],
resetRenderer: "Symbolisierung zurücksetzen",
attribute: "Attribut",
colorSelectionFor: "Farbauswahl für",
fillColor: "Füllfarbe",
outlineColor: "Umrandfarbe",
outlineWidth: "Umriss-Breite",
Expand Down