PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 2.4.6
Booking for Appointments and Events Calendar – Amelia v2.4.6
2.4.8 2.4.7 2.4.6 2.4.5 2.4.4 2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / v3 / src / views / public / EventForm / Common / EventInfo / EventInfoSkeleton.vue
ameliabooking / v3 / src / views / public / EventForm / Common / EventInfo Last commit date
EventInfo.vue 1 month ago EventInfoSkeleton.vue 1 month ago
EventInfoSkeleton.vue
56 lines
1 <template>
2 <el-skeleton animated class="am-efi-skel">
3 <template #template>
4 <el-skeleton-item class="am-efi-skel__heading" variant="text"></el-skeleton-item>
5 <div>
6 <el-skeleton-item class="am-efi-skel__tab" variant="text"></el-skeleton-item>
7 <el-skeleton-item class="am-efi-skel__tab" variant="text"></el-skeleton-item>
8 </div>
9 <el-skeleton-item class="am-efi-skel__text" variant="text"></el-skeleton-item>
10 </template>
11 </el-skeleton>
12 </template>
13
14 <script>
15 export default {
16 name: 'EventInfoSkeleton',
17 }
18 </script>
19
20 <style lang="scss">
21 @mixin am-efi-skeleton {
22 // am - amelia
23 // efi -
24 .am-efi-skel {
25 height: 650px;
26 padding: 16px 24px;
27
28 &__heading {
29 height: 80px;
30 margin-bottom: 12px;
31 }
32
33 &__tab {
34 width: 65px;
35 height: 40px;
36 margin: 0 8px 8px 0;
37 }
38
39 &__text {
40 width: 80%;
41 height: 400px;
42 }
43 }
44 }
45
46 // public
47 .amelia-v2-booking #amelia-container {
48 @include am-efi-skeleton;
49 }
50
51 // admin
52 #amelia-app-backend-new {
53 @include am-efi-skeleton;
54 }
55 </style>
56