Fixed a bug with styling of the error dialog
This commit is contained in:
@@ -114,7 +114,11 @@ module.exports = new Vue({
|
|||||||
motors: [{}, {}, {}, {}],
|
motors: [{}, {}, {}, {}],
|
||||||
version: '<loading>'
|
version: '<loading>'
|
||||||
},
|
},
|
||||||
state: {messages: []},
|
state: {
|
||||||
|
messages: [],
|
||||||
|
wait_for_probing_complete: false,
|
||||||
|
show_probe_complete_modal: false
|
||||||
|
},
|
||||||
video_size: cookie.get('video-size', 'small'),
|
video_size: cookie.get('video-size', 'small'),
|
||||||
crosshair: cookie.get('crosshair', 'false') != 'false',
|
crosshair: cookie.get('crosshair', 'false') != 'false',
|
||||||
errorTimeout: 30,
|
errorTimeout: 30,
|
||||||
|
|||||||
@@ -36,6 +36,12 @@ module.exports = {
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
required: true,
|
required: true,
|
||||||
twoWay: true
|
twoWay: true
|
||||||
|
},
|
||||||
|
|
||||||
|
class: {
|
||||||
|
type: String,
|
||||||
|
required: false,
|
||||||
|
twoWay: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
//-/////////////////////////////////////////////////////////////////////////////
|
//-/////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
script#message-template(type="text/x-template")
|
script#message-template(type="text/x-template")
|
||||||
.modal-mask(v-if="show")
|
.modal-mask(v-if="show", :class="class")
|
||||||
.modal-wrapper
|
.modal-wrapper
|
||||||
.modal-container
|
.modal-container
|
||||||
.modal-header
|
.modal-header
|
||||||
|
|||||||
Reference in New Issue
Block a user