diff client/src/components/admin/Systemconfiguration.vue @ 1361:ea3a89a1813a

remove trailing whitespace, add headers for Makefile, add the missed authors * remove trailing whitespace for some cleint files * add headers for licensing to Makefile * add the missed authors in the header to Systemconfiguration.vue file
author Fadi Abbud <fadi.abbud@intevation.de>
date Mon, 26 Nov 2018 11:11:13 +0100
parents aec9ed491dad
children ca33ad696594
line wrap: on
line diff
--- a/client/src/components/admin/Systemconfiguration.vue	Mon Nov 26 10:04:47 2018 +0100
+++ b/client/src/components/admin/Systemconfiguration.vue	Mon Nov 26 11:11:13 2018 +0100
@@ -1,42 +1,41 @@
 <template>
-    <div class="d-flex flex-row">
-        <div class="card sysconfig mt-3 mx-auto">
-            <div class="card-header shadow-sm text-white bg-info mb-6">
-                Systemconfiguration
-            </div>
-            <div class="card-body config">
-                <section class="configsection">
-                    <h4 class="card-title">Bottleneck Areas stroke-color</h4>
-                    <compact-picker v-model="strokeColor" />
-                </section>
-                <section>
-                    <h4 class="card-title">Bottleneck Areas fill-color</h4>
-                    <chrome-picker v-model="fillColor" />
-                </section>
-                <div class="sendbutton">
-                    <a @click.prevent="submit" class="btn btn-info">Send</a>
-                </div>
-            </div> <!-- card-body -->
+  <div class="d-flex flex-row">
+    <div class="card sysconfig mt-3 mx-auto">
+      <div class="card-header shadow-sm text-white bg-info mb-6">Systemconfiguration</div>
+      <div class="card-body config">
+        <section class="configsection">
+          <h4 class="card-title">Bottleneck Areas stroke-color</h4>
+          <compact-picker v-model="strokeColor"/>
+        </section>
+        <section>
+          <h4 class="card-title">Bottleneck Areas fill-color</h4>
+          <chrome-picker v-model="fillColor"/>
+        </section>
+        <div class="sendbutton">
+          <a @click.prevent="submit" class="btn btn-info">Send</a>
         </div>
+      </div>
+      <!-- card-body -->
     </div>
+  </div>
 </template>
 
 <style scoped lang="sass">
 .config
   text-align: left
-  
+
 .configsection
   margin-bottom: $large-offset
-  
+
 .sendbutton
   position: absolute
   right: $offset
   bottom: $offset
-  
+
 .inputs
   margin-left: auto
   margin-right: auto
-  
+
 .sysconfig
   width: 30vw
 </style>
@@ -45,16 +44,17 @@
 /*
  * This is Free Software under GNU Affero General Public License v >= 3.0
  * without warranty, see README.md and license for details.
- * 
+ *
  * SPDX-License-Identifier: AGPL-3.0-or-later
  * License-Filename: LICENSES/AGPL-3.0.txt
- * 
- * Copyright (C) 2018 by via donau 
+ *
+ * Copyright (C) 2018 by via donau
  *   – Österreichische Wasserstraßen-Gesellschaft mbH
  * Software engineering by Intevation GmbH
- * 
+ *
  * Author(s):
  * Thomas Junk <thomas.junk@intevation.de>
+ * Bernhard Reiter <bernhard@intevation.de>
  */
 import { Chrome } from "vue-color";
 import { Compact } from "vue-color";