mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-11-22 12:25:38 +01:00
ui: makes error message selectable
This commit is contained in:
parent
e83cf6cf4e
commit
c8699b6e62
@ -1,6 +1,8 @@
|
||||
<template>
|
||||
<div class="column has-padding">
|
||||
<b-message title="An error occurred" type="is-danger" :closable="false">{{ msg }}</b-message>
|
||||
<b-message title="An error occurred" type="is-danger" :closable="false">
|
||||
<span id="error_msg">{{ msg }}</span>
|
||||
</b-message>
|
||||
<div class="field is-grouped is-right-floating is-bottom-floating">
|
||||
<p class="control">
|
||||
<a class="button is-primary is-medium" v-if="remaining" v-on:click="go_back">Back</a>
|
||||
@ -18,6 +20,14 @@
|
||||
white-space: -o-pre-wrap; /* Opera 7 */
|
||||
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
||||
}
|
||||
|
||||
#error_msg {
|
||||
-webkit-user-select: text;
|
||||
-moz-user-select: text;
|
||||
-ms-user-select: text;
|
||||
user-select: text;
|
||||
cursor: text;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
|
Loading…
Reference in New Issue
Block a user