comparison 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
comparison
equal deleted inserted replaced
1360:3fee649d3d5d 1361:ea3a89a1813a
1 <template> 1 <template>
2 <div class="d-flex flex-row"> 2 <div class="d-flex flex-row">
3 <div class="card sysconfig mt-3 mx-auto"> 3 <div class="card sysconfig mt-3 mx-auto">
4 <div class="card-header shadow-sm text-white bg-info mb-6"> 4 <div class="card-header shadow-sm text-white bg-info mb-6">Systemconfiguration</div>
5 Systemconfiguration 5 <div class="card-body config">
6 </div> 6 <section class="configsection">
7 <div class="card-body config"> 7 <h4 class="card-title">Bottleneck Areas stroke-color</h4>
8 <section class="configsection"> 8 <compact-picker v-model="strokeColor"/>
9 <h4 class="card-title">Bottleneck Areas stroke-color</h4> 9 </section>
10 <compact-picker v-model="strokeColor" /> 10 <section>
11 </section> 11 <h4 class="card-title">Bottleneck Areas fill-color</h4>
12 <section> 12 <chrome-picker v-model="fillColor"/>
13 <h4 class="card-title">Bottleneck Areas fill-color</h4> 13 </section>
14 <chrome-picker v-model="fillColor" /> 14 <div class="sendbutton">
15 </section> 15 <a @click.prevent="submit" class="btn btn-info">Send</a>
16 <div class="sendbutton">
17 <a @click.prevent="submit" class="btn btn-info">Send</a>
18 </div>
19 </div> <!-- card-body -->
20 </div> 16 </div>
17 </div>
18 <!-- card-body -->
21 </div> 19 </div>
20 </div>
22 </template> 21 </template>
23 22
24 <style scoped lang="sass"> 23 <style scoped lang="sass">
25 .config 24 .config
26 text-align: left 25 text-align: left
27 26
28 .configsection 27 .configsection
29 margin-bottom: $large-offset 28 margin-bottom: $large-offset
30 29
31 .sendbutton 30 .sendbutton
32 position: absolute 31 position: absolute
33 right: $offset 32 right: $offset
34 bottom: $offset 33 bottom: $offset
35 34
36 .inputs 35 .inputs
37 margin-left: auto 36 margin-left: auto
38 margin-right: auto 37 margin-right: auto
39 38
40 .sysconfig 39 .sysconfig
41 width: 30vw 40 width: 30vw
42 </style> 41 </style>
43 42
44 <script> 43 <script>
45 /* 44 /*
46 * This is Free Software under GNU Affero General Public License v >= 3.0 45 * This is Free Software under GNU Affero General Public License v >= 3.0
47 * without warranty, see README.md and license for details. 46 * without warranty, see README.md and license for details.
48 * 47 *
49 * SPDX-License-Identifier: AGPL-3.0-or-later 48 * SPDX-License-Identifier: AGPL-3.0-or-later
50 * License-Filename: LICENSES/AGPL-3.0.txt 49 * License-Filename: LICENSES/AGPL-3.0.txt
51 * 50 *
52 * Copyright (C) 2018 by via donau 51 * Copyright (C) 2018 by via donau
53 * – Österreichische Wasserstraßen-Gesellschaft mbH 52 * – Österreichische Wasserstraßen-Gesellschaft mbH
54 * Software engineering by Intevation GmbH 53 * Software engineering by Intevation GmbH
55 * 54 *
56 * Author(s): 55 * Author(s):
57 * Thomas Junk <thomas.junk@intevation.de> 56 * Thomas Junk <thomas.junk@intevation.de>
57 * Bernhard Reiter <bernhard@intevation.de>
58 */ 58 */
59 import { Chrome } from "vue-color"; 59 import { Chrome } from "vue-color";
60 import { Compact } from "vue-color"; 60 import { Compact } from "vue-color";
61 61
62 import { HTTP } from "../../lib/http"; 62 import { HTTP } from "../../lib/http";