mirror of https://github.com/Lissy93/dashy.git
💬 Updates copy to include estimated built time after config write
This commit is contained in:
parent
ec3db490b2
commit
3d4c7118ba
|
@ -40,6 +40,7 @@
|
||||||
<p class="response-output">{{ responseText }}</p>
|
<p class="response-output">{{ responseText }}</p>
|
||||||
<p v-if="saveSuccess" class="response-output">
|
<p v-if="saveSuccess" class="response-output">
|
||||||
The app should rebuild automatically.
|
The app should rebuild automatically.
|
||||||
|
This may take up to a minute.
|
||||||
You will need to refresh the page for changes to take effect.
|
You will need to refresh the page for changes to take effect.
|
||||||
</p>
|
</p>
|
||||||
<p class="note">
|
<p class="note">
|
||||||
|
@ -226,8 +227,14 @@ p.response-output {
|
||||||
margin: 0.5rem auto;
|
margin: 0.5rem auto;
|
||||||
width: 95%;
|
width: 95%;
|
||||||
color: var(--config-settings-color);
|
color: var(--config-settings-color);
|
||||||
&.status-success { color: var(--success); }
|
&.status-success {
|
||||||
&.status-fail { color: var(--danger); }
|
font-weight: bold;
|
||||||
|
color: var(--success);
|
||||||
|
}
|
||||||
|
&.status-fail {
|
||||||
|
font-weight: bold;
|
||||||
|
color: var(--danger);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
button.save-button {
|
button.save-button {
|
||||||
|
|
Loading…
Reference in New Issue