|
1 | 1 | <template> |
2 | | - <div |
3 | | - v-if="status==='current'" |
4 | | - class="step-actions" |
5 | | - > |
6 | | - <p class="attribution-details-instructions"> |
7 | | - {{ $t('stepper.AD.instructions') }} |
8 | | - </p> |
9 | | - <form class="attribution-details-form"> |
10 | | - <b-field :label="this.$t('stepper.AD.form.creator-name.label')"> |
11 | | - <b-input |
12 | | - v-model="creatorName" |
13 | | - :placeholder="this.$t('stepper.AD.form.creator-name.placeholder')" |
14 | | - /> |
15 | | - </b-field> |
16 | | - <b-field :label="this.$t('stepper.AD.form.creator-profile.label')"> |
17 | | - <b-input |
18 | | - v-model="creatorProfileUrl" |
19 | | - :placeholder="this.$t('stepper.AD.form.creator-profile.placeholder')" |
20 | | - /> |
21 | | - </b-field> |
22 | | - <b-field :label="this.$t('stepper.AD.form.work-title.label')"> |
23 | | - <b-input |
24 | | - v-model="workTitle" |
25 | | - :placeholder="this.$t('stepper.AD.form.work-title.placeholder')" |
26 | | - /> |
27 | | - </b-field> |
28 | | - <b-field :label="this.$t('stepper.AD.form.work-url.label')"> |
29 | | - <b-input |
30 | | - v-model="workUrl" |
31 | | - :placeholder="this.$t('stepper.AD.form.work-url.placeholder')" |
32 | | - /> |
33 | | - </b-field> |
34 | | - </form> |
| 2 | + <div class="step-content"> |
| 3 | + <div |
| 4 | + v-if="status==='current'" |
| 5 | + class="step-actions" |
| 6 | + > |
| 7 | + <p class="attribution-details-instructions"> |
| 8 | + {{ $t('stepper.AD.instructions') }} |
| 9 | + </p> |
| 10 | + <form class="attribution-details-form"> |
| 11 | + <b-field :label="this.$t('stepper.AD.form.creator-name.label')"> |
| 12 | + <b-input |
| 13 | + v-model="creatorName" |
| 14 | + :placeholder="this.$t('stepper.AD.form.creator-name.placeholder')" |
| 15 | + /> |
| 16 | + </b-field> |
| 17 | + <b-field :label="this.$t('stepper.AD.form.creator-profile.label')"> |
| 18 | + <b-input |
| 19 | + v-model="creatorProfileUrl" |
| 20 | + :placeholder="this.$t('stepper.AD.form.creator-profile.placeholder')" |
| 21 | + /> |
| 22 | + </b-field> |
| 23 | + <b-field :label="this.$t('stepper.AD.form.work-title.label')"> |
| 24 | + <b-input |
| 25 | + v-model="workTitle" |
| 26 | + :placeholder="this.$t('stepper.AD.form.work-title.placeholder')" |
| 27 | + /> |
| 28 | + </b-field> |
| 29 | + <b-field :label="this.$t('stepper.AD.form.work-url.label')"> |
| 30 | + <b-input |
| 31 | + v-model="workUrl" |
| 32 | + :placeholder="this.$t('stepper.AD.form.work-url.placeholder')" |
| 33 | + /> |
| 34 | + </b-field> |
| 35 | + </form> |
| 36 | + </div> |
35 | 37 | </div> |
36 | 38 | </template> |
37 | 39 |
|
@@ -86,15 +88,16 @@ export default { |
86 | 88 | .attribution-details-form { |
87 | 89 | margin-top: 1rem; |
88 | 90 | } |
89 | | -.attribution-details-form label { |
| 91 | +.attribution-details-form .label { |
90 | 92 | font-style: normal; |
91 | 93 | font-weight: normal; |
92 | 94 | font-size: 16px; |
93 | 95 | line-height: 24px; |
94 | 96 | color: #333333; |
95 | 97 | } |
96 | | -.field .control .input { |
97 | | - font-weight: 500; |
| 98 | +.attribution-details-form .input { |
| 99 | + font-weight: 600; |
98 | 100 | font-size: 16px; |
| 101 | + color: #333333; |
99 | 102 | } |
100 | 103 | </style> |
0 commit comments