comparison client/src/components/importconfiguration/types/Availablefairwaydepth.vue @ 3281:439e1865a2d2

client: define stretches/imports: code cleanup / style improvements
author Markus Kottlaender <markus@intevation.de>
date Thu, 16 May 2019 09:52:32 +0200
parents 8f266dc8b4e3
children
comparison
equal deleted inserted replaced
3280:8fb81b45085f 3281:439e1865a2d2
1 <template> 1 <template>
2 <div> 2 <div>
3 <div class="d-flex flex-row"> 3 <div class="d-flex px-2">
4 <div class="flex-column mt-3 mr-3 w-100"> 4 <div class="flex-column w-100">
5 <div class="flex-row text-left"> 5 <div class="flex-row text-left">
6 <small class="text-muted"> <translate>URL</translate> </small> 6 <small class="text-muted"> <translate>URL</translate> </small>
7 </div> 7 </div>
8 <div class="w-100"> 8 <div class="w-100">
9 <input 9 <input
10 @input="urlChanged" 10 @input="urlChanged"
11 class="url form-control" 11 class="url form-control form-control-sm"
12 type="url" 12 type="url"
13 :value="url" 13 :value="url"
14 /> 14 />
15 </div> 15 </div>
16 </div> 16 </div>
17 </div> 17 </div>
18 <div v-if="!url" class="d-flex flex-row"> 18 <div v-if="!url" class="d-flex px-2">
19 <small 19 <small
20 ><translate class="text-danger">Please enter a URL</translate></small 20 ><translate class="text-danger">Please enter a URL</translate></small
21 > 21 >
22 </div> 22 </div>
23 </div> 23 </div>