Skip to content
Snippets Groups Projects
Commit a361e109 authored by Timothee P's avatar Timothee P :sunflower:
Browse files

prevent modal to stay open in continuing after fast mode editions aborted & fix not button style

parent 69727156
No related branches found
No related tags found
No related merge requests found
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
<span <span
v-if="featuresCount" v-if="featuresCount"
id="feature-count" id="feature-count"
class="ui button tiny-margin basic" class="ui button tiny-margin basic disabled no-opacity"
> >
{{ parseInt($route.query.offset) + 1 }} sur {{ featuresCount }} {{ parseInt($route.query.offset) + 1 }} sur {{ featuresCount }}
</span> </span>
...@@ -285,6 +285,9 @@ export default { ...@@ -285,6 +285,9 @@ export default {
#feature-actions > div { #feature-actions > div {
margin-left: .5rem; margin-left: .5rem;
} }
#feature-actions .no-opacity {
opacity: 1 !important; /* overide disabled low opacity to customize button style */
}
@media screen and (max-width: 700px) { @media screen and (max-width: 700px) {
.two-block { .two-block {
......
...@@ -394,6 +394,7 @@ export default { ...@@ -394,6 +394,7 @@ export default {
}, },
leavePage() { leavePage() {
this.isLeaving = false;
this.next(); this.next();
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment