Skip to content
Merged
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
5 changes: 5 additions & 0 deletions .changeset/chubby-points-guess.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@getodk/web-forms': patch
---

Allow text selection in properties dialog and status bar
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ const orderedProps = computed(() => {
align-items: flex-start;
gap: var(--odk-map-properties-spacing-md);
padding: 0;
-webkit-user-select: text;
user-select: text;

strong {
font-size: var(--odk-dialog-title-font-size);
Expand All @@ -106,6 +108,8 @@ const orderedProps = computed(() => {
.property-line {
display: block;
padding: 15px 0;
-webkit-user-select: text;
user-select: text;

dt,
dd {
Expand Down
2 changes: 2 additions & 0 deletions packages/web-forms/src/components/common/map/MapStatusBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,8 @@ const displayState = computed(() => {

.map-status {
gap: var(--odk-map-controls-spacing);
-webkit-user-select: text;
user-select: text;
}

.map-status-container {
Expand Down
Loading