|
1 | 1 | <template>
|
2 |
| - <div class="card-content step-card-content" v-if="!(this.status==='inactive')"> |
3 |
| - <div class="step-actions" v-if="this.status==='current'"> |
4 |
| - <p class="attribution-details-instructions">{{$t('stepper.AD.instructions')}}</p> |
5 |
| - <form class="attribution-details-form"> |
6 |
| - <b-field :label="this.$t('stepper.attribution-details.creator-name.label')"> |
7 |
| - <b-input |
8 |
| - v-model="creatorName" |
9 |
| - :placeholder="this.$t('stepper.attribution-details.creator-name.placeholder')" |
10 |
| - /> |
11 |
| - </b-field> |
12 |
| - <b-field :label="this.$t('stepper.attribution-details.creator-profile.label')"> |
13 |
| - <b-input |
14 |
| - v-model="creatorProfileUrl" |
15 |
| - :placeholder="this.$t('stepper.attribution-details.creator-profile.placeholder')" |
16 |
| - /> |
17 |
| - </b-field> |
18 |
| - <b-field :label="this.$t('stepper.attribution-details.work-title.label')"> |
19 |
| - <b-input |
20 |
| - v-model="workTitle" |
21 |
| - :placeholder="this.$t('stepper.attribution-details.work-title.placeholder')" |
22 |
| - /> |
23 |
| - </b-field> |
24 |
| - <b-field :label="this.$t('stepper.attribution-details.work-url.label')"> |
25 |
| - <b-input |
26 |
| - v-model="workUrl" |
27 |
| - :placeholder="this.$t('stepper.attribution-details.work-url.placeholder')" |
28 |
| - /> |
29 |
| - </b-field> |
30 |
| - </form> |
| 2 | + <div class="step-actions" v-if="this.status==='current'"> |
| 3 | + <p class="attribution-details-instructions">{{$t('stepper.AD.instructions')}}</p> |
| 4 | + <form class="attribution-details-form"> |
| 5 | + <b-field :label="this.$t('stepper.attribution-details.creator-name.label')"> |
| 6 | + <b-input |
| 7 | + v-model="creatorName" |
| 8 | + :placeholder="this.$t('stepper.attribution-details.creator-name.placeholder')" |
| 9 | + /> |
| 10 | + </b-field> |
| 11 | + <b-field :label="this.$t('stepper.attribution-details.creator-profile.label')"> |
| 12 | + <b-input |
| 13 | + v-model="creatorProfileUrl" |
| 14 | + :placeholder="this.$t('stepper.attribution-details.creator-profile.placeholder')" |
| 15 | + /> |
| 16 | + </b-field> |
| 17 | + <b-field :label="this.$t('stepper.attribution-details.work-title.label')"> |
| 18 | + <b-input |
| 19 | + v-model="workTitle" |
| 20 | + :placeholder="this.$t('stepper.attribution-details.work-title.placeholder')" |
| 21 | + /> |
| 22 | + </b-field> |
| 23 | + <b-field :label="this.$t('stepper.attribution-details.work-url.label')"> |
| 24 | + <b-input |
| 25 | + v-model="workUrl" |
| 26 | + :placeholder="this.$t('stepper.attribution-details.work-url.placeholder')" |
| 27 | + /> |
| 28 | + </b-field> |
| 29 | + </form> |
31 | 30 | </div>
|
32 |
| - </div> |
33 | 31 | </template>
|
34 | 32 |
|
35 | 33 | <script>
|
@@ -73,18 +71,18 @@ export default {
|
73 | 71 | </script>
|
74 | 72 |
|
75 | 73 | <style>
|
76 |
| - .attribution-details-form { |
77 |
| - margin-top: 1rem; |
78 |
| - } |
| 74 | +.attribution-details-form { |
| 75 | + margin-top: 1rem; |
| 76 | +} |
79 | 77 | .attribution-details-form label {
|
80 | 78 | font-style: normal;
|
81 | 79 | font-weight: normal;
|
82 | 80 | font-size: 16px;
|
83 | 81 | line-height: 24px;
|
84 | 82 | color: #333333;
|
85 | 83 | }
|
86 |
| - .field .control .input { |
87 |
| - font-weight: 500; |
88 |
| - font-size: 16px; |
89 |
| - } |
| 84 | +.field .control .input { |
| 85 | + font-weight: 500; |
| 86 | + font-size: 16px; |
| 87 | +} |
90 | 88 | </style>
|
0 commit comments