Skip to content

Commit edda3ec

Browse files
committed
style: improve field editing styles
adjust so can edit multiple fields in different rows and columns
1 parent 49a7d57 commit edda3ec

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

src/lib/sass/components/_column.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,12 @@
124124
opacity: 0;
125125
}
126126
}
127+
128+
&:has(.editing-field) {
129+
.column-actions {
130+
display: none;
131+
}
132+
}
127133
}
128134

129135
// this is column styleing in the row edit window

src/lib/sass/components/_row.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,12 @@
8282
opacity: 0;
8383
}
8484
}
85+
86+
&:has(.editing-field) {
87+
.row-actions {
88+
display: none;
89+
}
90+
}
8591
}
8692

8793
.row-moving {

src/lib/sass/components/_stage.scss

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,6 @@
5353
@include mixins.breakpoint("phone-lrg") {
5454
width: calc(100% - 50px);
5555
}
56-
57-
&:has(.editing-field) {
58-
.column-actions {
59-
display: none;
60-
}
61-
.row-actions {
62-
display: none;
63-
}
64-
}
6556
}
6657

6758
.editing-stage {

0 commit comments

Comments
 (0)