changeset 3066:e22ad52cc252

client: cleanup styling for LogEntry.vue a bit * Use the bootstrap style for bold instead doing our own. Change to use bolder which is slightly more flexible.
author Bernhard Reiter <bernhard@intevation.de>
date Tue, 16 Apr 2019 15:34:02 +0200
parents f6eae0b6c221
children 0ffa9d418959
files client/src/components/importoverview/LogEntry.vue
diffstat 1 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/importoverview/LogEntry.vue	Tue Apr 16 15:25:23 2019 +0200
+++ b/client/src/components/importoverview/LogEntry.vue	Tue Apr 16 15:34:02 2019 +0200
@@ -76,8 +76,6 @@
     background-color: #d2eaee
     &.rejected
       border-left: solid 1px rgba(255, 255, 255, 0.3)
-.text-bold
-  font-weight: bold
 </style>
 
 <script>
@@ -116,7 +114,7 @@
         "center",
         {
           "text-danger": this.entry.state === "failed",
-          "text-bold": this.entry.state === "running"
+          "font-weight-bolder": this.entry.state === "running"
         }
       ];
     },