From 943564d2066aad01b19405e38f1b84660f9e8b45 Mon Sep 17 00:00:00 2001 From: jaknapper Date: Wed, 21 May 2025 16:04:36 +0100 Subject: [PATCH] Alert and warning message as CSS classes --- .../tabContentComponents/scanListContent.vue | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/webapp/src/components/tabContentComponents/scanListContent.vue b/webapp/src/components/tabContentComponents/scanListContent.vue index 16899053..293b9d0c 100644 --- a/webapp/src/components/tabContentComponents/scanListContent.vue +++ b/webapp/src/components/tabContentComponents/scanListContent.vue @@ -126,9 +126,9 @@
  • created: {{ formatDate(item.created) }}
  • modified: {{ formatDate(item.modified) }}
  • -
  • Not enough images to stitch
  • -
  • Interactive preview not available
  • -
  • High quality stitch not available
  • +
  • Not enough images to stitch
  • +
  • Interactive preview not available
  • +
  • High quality stitch not available
  • @@ -369,4 +369,16 @@ ul { list-style-type:none; margin: 5px 0px 10px 0px; } + +.warning-msg { + color: red; + text-align: center; + font-weight: bold; +} + +.alert-msg{ + color: orange; + text-align: center; + font-weight: bold; +} \ No newline at end of file