renusify 1.4.2 → 1.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/app/index.vue +1 -10
- package/components/chart/worldMap.vue +293 -34
- package/components/chip/style.scss +0 -1
- package/components/codeEditor/highlightCss.vue +10 -112
- package/components/codeEditor/highlightHtml.vue +20 -159
- package/components/codeEditor/highlightJs.vue +14 -243
- package/components/codeEditor/index.vue +37 -57
- package/components/codeEditor/mixin.js +186 -0
- package/components/cropper/index.vue +2 -1
- package/components/form/camInput.vue +6 -2
- package/components/form/input.vue +1 -1
- package/components/form/json/index.vue +113 -65
- package/components/form/mask-input.vue +2 -2
- package/components/form/text-area.vue +1 -1
- package/components/form/text-editor/index.vue +0 -1
- package/components/form/timepicker/index.vue +18 -16
- package/components/form/unit-input.vue +1 -0
- package/components/formCreator/index.vue +7 -20
- package/components/img/index.vue +18 -18
- package/components/index.js +2 -2
- package/components/infinite/index.vue +9 -6
- package/components/map/index.vue +52 -20
- package/components/map/leaflet.css +511 -397
- package/components/map/route.vue +570 -560
- package/components/map/select.vue +64 -48
- package/components/message/index.vue +22 -21
- package/components/modal/index.vue +76 -17
- package/components/modal/style.scss +21 -16
- package/components/{app/notify → notify}/index.vue +21 -29
- package/components/{app/notify → notify}/notification.vue +10 -10
- package/components/notify/notify.js +27 -0
- package/components/searchBox/index.vue +30 -12
- package/components/slider/index.vue +16 -12
- package/components/table/index.vue +378 -379
- package/components/table/style.scss +1 -4
- package/components/tabs/index.vue +9 -23
- package/components/timeAgo/index.vue +4 -1
- package/components/tour/index.vue +237 -222
- package/components/tree/index.vue +135 -136
- package/components/tree/tree-element.vue +17 -3
- package/directive/drag/index.js +5 -5
- package/directive/index.js +1 -2
- package/directive/mask/index.js +1 -4
- package/directive/skeleton/index.js +27 -0
- package/directive/skeleton/style.scss +37 -0
- package/directive/sortable/index.js +3 -3
- package/directive/title/index.js +2 -3
- package/directive/touch/index.js +2 -4
- package/index.js +14 -9
- package/package.json +1 -1
- package/style/transitions.scss +6 -116
- package/tools/helper.js +1 -22
- package/components/app/notify/notify.js +0 -28
|
@@ -247,7 +247,7 @@ $data-table-regular-header-height: 38px !default;
|
|
|
247
247
|
}
|
|
248
248
|
|
|
249
249
|
.table-row-enter-active, .table-row-leave-active {
|
|
250
|
-
transition: height .3s
|
|
250
|
+
transition: height .3s linear;
|
|
251
251
|
line-height: 0;
|
|
252
252
|
}
|
|
253
253
|
|
|
@@ -265,9 +265,6 @@ $data-table-regular-header-height: 38px !default;
|
|
|
265
265
|
line-height: 0;
|
|
266
266
|
overflow: hidden;
|
|
267
267
|
|
|
268
|
-
> * {
|
|
269
|
-
height: 0;
|
|
270
|
-
}
|
|
271
268
|
}
|
|
272
269
|
}
|
|
273
270
|
|
|
@@ -13,18 +13,18 @@
|
|
|
13
13
|
'tabs-hidden':$r.breakpoint.width>960
|
|
14
14
|
}]" class="tabs-wrap" ref="tabs">
|
|
15
15
|
<button
|
|
16
|
+
v-for="tab in items"
|
|
17
|
+
:key="tab.title"
|
|
18
|
+
:ref="tab.value.toString()"
|
|
16
19
|
:class="[
|
|
17
20
|
{ 'tabs__item_active' : tab.value === modelValue,
|
|
18
21
|
[tabActiveClass]:tab.value === modelValue },
|
|
19
22
|
tabClass,
|
|
20
23
|
]"
|
|
21
24
|
:disabled="tab.disabled || false"
|
|
22
|
-
:key="tab.title"
|
|
23
|
-
:ref="tab.value.toString()"
|
|
24
|
-
@click="handleClick(tab.value)"
|
|
25
25
|
class="tabs__item"
|
|
26
26
|
type="button"
|
|
27
|
-
|
|
27
|
+
@click="handleClick(tab.value)"
|
|
28
28
|
>
|
|
29
29
|
<slot :item="tab">{{ tab.title }}</slot>
|
|
30
30
|
</button>
|
|
@@ -72,12 +72,9 @@ export default {
|
|
|
72
72
|
type: String,
|
|
73
73
|
required: false
|
|
74
74
|
},
|
|
75
|
-
autoScrollToView:
|
|
76
|
-
type: Boolean,
|
|
77
|
-
default: true
|
|
78
|
-
}
|
|
75
|
+
autoScrollToView: Boolean
|
|
79
76
|
},
|
|
80
|
-
emits:['update:modelValue'],
|
|
77
|
+
emits: ['update:modelValue'],
|
|
81
78
|
data() {
|
|
82
79
|
return {
|
|
83
80
|
disableLeft: true,
|
|
@@ -89,7 +86,9 @@ export default {
|
|
|
89
86
|
mounted() {
|
|
90
87
|
setTimeout(() => {
|
|
91
88
|
this.offset()
|
|
92
|
-
|
|
89
|
+
if (this.modelValue) {
|
|
90
|
+
this.moveActiveLine(this.modelValue.toString())
|
|
91
|
+
}
|
|
93
92
|
}, 100)
|
|
94
93
|
},
|
|
95
94
|
watch: {
|
|
@@ -163,19 +162,6 @@ $btnTabsWidth: 50px;
|
|
|
163
162
|
display: flex;
|
|
164
163
|
flex-direction: row;
|
|
165
164
|
|
|
166
|
-
.tabs__item {
|
|
167
|
-
color: var(--color-text-secondary);
|
|
168
|
-
|
|
169
|
-
&_active {
|
|
170
|
-
color: var(--color-text-primary)
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
&:hover {
|
|
174
|
-
color: var(--color-text-primary);
|
|
175
|
-
border-bottom: 2px solid var(--color-text-secondary);
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
|
|
179
165
|
.tabs-wrap {
|
|
180
166
|
position: relative;
|
|
181
167
|
margin: 0 auto;
|
|
@@ -73,7 +73,7 @@ export default {
|
|
|
73
73
|
listChoice = 2
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
-
if (seconds <
|
|
76
|
+
if (seconds < 5) {
|
|
77
77
|
return this.t('just_now')
|
|
78
78
|
}
|
|
79
79
|
const lng = timeFormats.length
|
|
@@ -97,6 +97,9 @@ export default {
|
|
|
97
97
|
}
|
|
98
98
|
},
|
|
99
99
|
t(val) {
|
|
100
|
+
if (this.noTrans) {
|
|
101
|
+
return val.replace(/_/g, ' ')
|
|
102
|
+
}
|
|
100
103
|
return this.$t('date_time_' + val, 'renusify')
|
|
101
104
|
}
|
|
102
105
|
},
|
|
@@ -1,243 +1,258 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
|
|
2
|
+
<teleport :to="`.${$r.prefix}app`">
|
|
3
|
+
<div :style="style" class="tour-layer"></div>
|
|
3
4
|
<transition name="slide-up" mode="out-in">
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
</r-
|
|
23
|
-
|
|
5
|
+
<div v-if="msg" ref="tourMsg" :style="style_msg" class="tour-msg display-4">
|
|
6
|
+
<r-container>
|
|
7
|
+
<div v-html="$helper.cleanXss(steps[run].msg)"></div>
|
|
8
|
+
<div class="d-flex">
|
|
9
|
+
<div><span
|
|
10
|
+
class="subtitle-1 color-success br-lg py-1 px-2 ltr">{{ steps.length }} / {{ run + 1 }}</span>
|
|
11
|
+
</div>
|
|
12
|
+
<r-spacer></r-spacer>
|
|
13
|
+
<r-btn v-if="has_prev" :disabled="disable_prev" class="color-warning tour-clickable" @click.prevent="prev">
|
|
14
|
+
{{ $t('prev', 'renusify') }}
|
|
15
|
+
</r-btn>
|
|
16
|
+
<r-btn v-if="has_next" :disabled="disable_next" class="color-warning mx-1 tour-clickable"
|
|
17
|
+
@click.prevent="next">
|
|
18
|
+
{{ $t('next', 'renusify') }}
|
|
19
|
+
</r-btn>
|
|
20
|
+
<r-btn v-if="steps.length===run+1||canFinish" :disabled="disable_finish"
|
|
21
|
+
class="color-warning mx-1 tour-clickable"
|
|
22
|
+
@click.prevent="finish">{{ $t('finish', 'renusify') }}
|
|
23
|
+
</r-btn>
|
|
24
|
+
</div>
|
|
25
|
+
</r-container>
|
|
26
|
+
</div>
|
|
24
27
|
</transition>
|
|
28
|
+
</teleport>
|
|
25
29
|
</template>
|
|
26
30
|
<script>
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
}, this.delay)
|
|
31
|
+
export default {
|
|
32
|
+
name: 'r-tour',
|
|
33
|
+
props: {
|
|
34
|
+
steps: {
|
|
35
|
+
type: Array, default: () => {
|
|
36
|
+
return []
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
canFinish: Boolean,
|
|
40
|
+
abortOnNotFound: Boolean,
|
|
41
|
+
delay: {type: Number, default: 2000}
|
|
42
|
+
},
|
|
43
|
+
data() {
|
|
44
|
+
return {
|
|
45
|
+
finished: false,
|
|
46
|
+
disable_next: false,
|
|
47
|
+
disable_prev: false,
|
|
48
|
+
disable_finish: false,
|
|
49
|
+
all: {},
|
|
50
|
+
style: {},
|
|
51
|
+
style_msg: {},
|
|
52
|
+
msg: null,
|
|
53
|
+
run: 0
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
mounted() {
|
|
57
|
+
setTimeout(() => {
|
|
58
|
+
this._show()
|
|
59
|
+
}, this.delay)
|
|
57
60
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
61
|
+
},
|
|
62
|
+
watch: {
|
|
63
|
+
'$r.breakpoint.height': function () {
|
|
64
|
+
this._show()
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
computed: {
|
|
68
|
+
has_next() {
|
|
69
|
+
if (this.finished) {
|
|
70
|
+
console.log('tour finished has_next:' + this.run)
|
|
71
|
+
this.reset()
|
|
72
|
+
return false
|
|
73
|
+
}
|
|
74
|
+
return this.$helper.ifHas(this.steps, false, this.run + 1, 'key')
|
|
75
|
+
},
|
|
76
|
+
has_prev() {
|
|
77
|
+
if (this.finished) {
|
|
78
|
+
console.log('tour finished has_prev:' + this.run)
|
|
79
|
+
this.reset()
|
|
80
|
+
return false
|
|
81
|
+
}
|
|
82
|
+
return this.$helper.ifHas(this.steps, false, this.run - 1, 'key')
|
|
83
|
+
},
|
|
84
|
+
elm() {
|
|
85
|
+
if (this.finished) {
|
|
86
|
+
console.log('tour finished step:' + this.run)
|
|
87
|
+
this.reset()
|
|
88
|
+
return null
|
|
89
|
+
}
|
|
90
|
+
const key = this.$helper.ifHas(this.steps, false, this.run, 'key')
|
|
91
|
+
if (key) {
|
|
92
|
+
return document.querySelector(key)
|
|
93
|
+
}
|
|
94
|
+
console.log(key + ': key not found in step:' + this.run)
|
|
95
|
+
return null
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
methods: {
|
|
99
|
+
elm_next() {
|
|
100
|
+
return document.querySelector(this.has_next)
|
|
101
|
+
},
|
|
102
|
+
elm_prev() {
|
|
103
|
+
return document.querySelector(this.has_prev)
|
|
104
|
+
},
|
|
105
|
+
_getOffsetLeft(elem) {
|
|
106
|
+
let box = elem.getBoundingClientRect();
|
|
104
107
|
|
|
105
|
-
|
|
106
|
-
|
|
108
|
+
let body = document.body;
|
|
109
|
+
let docEl = document.documentElement;
|
|
107
110
|
|
|
108
|
-
|
|
109
|
-
|
|
111
|
+
let scrollTop = window.pageYOffset || docEl.scrollTop || body.scrollTop;
|
|
112
|
+
let scrollLeft = window.pageXOffset || docEl.scrollLeft || body.scrollLeft;
|
|
110
113
|
|
|
111
|
-
|
|
112
|
-
|
|
114
|
+
let clientTop = docEl.clientTop || body.clientTop || 0;
|
|
115
|
+
let clientLeft = docEl.clientLeft || body.clientLeft || 0;
|
|
113
116
|
|
|
114
|
-
|
|
115
|
-
|
|
117
|
+
let top = box.top + scrollTop - clientTop;
|
|
118
|
+
let left = box.left + scrollLeft - clientLeft;
|
|
116
119
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
item.before()
|
|
168
|
-
}
|
|
169
|
-
if (item.options) {
|
|
170
|
-
for (let key in item.options) {
|
|
171
|
-
if (this.$helper.hasKey(item.options, key)) {
|
|
172
|
-
this[key] = item.options[key]
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
this.msg = item['msg']
|
|
177
|
-
setTimeout(() => {
|
|
178
|
-
let msgDiv = this.$refs.tourMsg.getBoundingClientRect()
|
|
120
|
+
return {top: Math.round(top), left: Math.round(left)};
|
|
121
|
+
},
|
|
122
|
+
reset() {
|
|
123
|
+
this.style = {}
|
|
124
|
+
this.style_msg = {}
|
|
125
|
+
this.msg = null
|
|
126
|
+
this.disable_next = false
|
|
127
|
+
this.disable_prev = false
|
|
128
|
+
this.disable_finish = false
|
|
129
|
+
},
|
|
130
|
+
finish() {
|
|
131
|
+
document.documentElement.classList.remove('disable-event')
|
|
132
|
+
document.documentElement.style.overflow = 'auto';
|
|
133
|
+
const item = this.steps[this.run]
|
|
134
|
+
if (item.onFinish) {
|
|
135
|
+
item.onFinish()
|
|
136
|
+
}
|
|
137
|
+
this.finished = true
|
|
138
|
+
this.run = 0
|
|
139
|
+
this.reset()
|
|
140
|
+
this.$storage.set("tour_finish", true);
|
|
141
|
+
},
|
|
142
|
+
prev() {
|
|
143
|
+
this.reset()
|
|
144
|
+
const item = this.steps[this.run]
|
|
145
|
+
if (item.onPrev) {
|
|
146
|
+
item.onPrev()
|
|
147
|
+
}
|
|
148
|
+
this.run--
|
|
149
|
+
const s = this._show()
|
|
150
|
+
if (!s && this.run > 0) {
|
|
151
|
+
this.prev()
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
next() {
|
|
155
|
+
this.reset()
|
|
156
|
+
const item = this.steps[this.run]
|
|
157
|
+
if (item.onNext) {
|
|
158
|
+
item.onNext()
|
|
159
|
+
}
|
|
160
|
+
this.run++
|
|
161
|
+
const s = this._show()
|
|
162
|
+
if (!s && this.run < this.steps.length - 1) {
|
|
163
|
+
this.next()
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
_show() {
|
|
167
|
+
this.msg = null
|
|
168
|
+
if (this.elm && !this.finished) {
|
|
169
|
+
const item = this.steps[this.run]
|
|
179
170
|
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
171
|
+
if (item.before) {
|
|
172
|
+
item.before()
|
|
173
|
+
}
|
|
174
|
+
if (item.options) {
|
|
175
|
+
if (item.options.clickable) {
|
|
176
|
+
this.elm.classList.add('tour-clickable')
|
|
177
|
+
}
|
|
178
|
+
for (let key in item.options) {
|
|
179
|
+
if (this.$helper.hasKey(item.options, key)) {
|
|
180
|
+
this[key] = item.options[key]
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
this.msg = item['msg']
|
|
185
|
+
setTimeout(() => {
|
|
186
|
+
this.elm.scrollIntoView()
|
|
187
|
+
let msgDiv = this.$refs.tourMsg.getBoundingClientRect()
|
|
188
|
+
document.documentElement.classList.add('disable-event')
|
|
189
|
+
document.documentElement.style.overflow = 'hidden';
|
|
190
|
+
const b = this.elm.getBoundingClientRect()
|
|
191
|
+
const s = window.getComputedStyle(this.elm)
|
|
192
|
+
const p = this._getOffsetLeft(this.elm)
|
|
193
|
+
this.style.width = b.width + 'px'
|
|
194
|
+
this.style.height = b.height + 'px'
|
|
195
|
+
this.style.top = p.top + 'px'
|
|
196
|
+
this.style.left = p.left + 'px'
|
|
187
197
|
|
|
188
|
-
|
|
189
|
-
|
|
198
|
+
this.style['border-radius'] = s['border-radius']
|
|
199
|
+
this.style.opacity = 1
|
|
190
200
|
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
201
|
+
let scroll = p.top
|
|
202
|
+
if (msgDiv.height < p.top) {
|
|
203
|
+
scroll = p.top - msgDiv.height
|
|
204
|
+
this.style_msg.top = scroll + 'px'
|
|
205
|
+
} else {
|
|
206
|
+
this.style_msg.top = scroll + b.height + 'px'
|
|
207
|
+
}
|
|
198
208
|
|
|
199
209
|
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
}
|
|
215
|
-
}
|
|
210
|
+
window.scroll({
|
|
211
|
+
top: scroll,
|
|
212
|
+
behavior: 'smooth'
|
|
213
|
+
});
|
|
214
|
+
if (item.after) {
|
|
215
|
+
item.after()
|
|
216
|
+
}
|
|
217
|
+
}, 1)
|
|
218
|
+
return true
|
|
219
|
+
} else if (this.abortOnNotFound) {
|
|
220
|
+
console.log('abort on not found tour')
|
|
221
|
+
this.finish()
|
|
222
|
+
}
|
|
223
|
+
return false
|
|
216
224
|
}
|
|
225
|
+
}
|
|
226
|
+
}
|
|
217
227
|
</script>
|
|
218
228
|
<style lang="scss">
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
box-shadow: #444444 0px 0px 1px 2px, rgba(160, 10, 255, 0.8) 0px 0px 0px 5000px;
|
|
223
|
-
z-index: 100;
|
|
224
|
-
opacity: 0;
|
|
225
|
-
width: 1px;
|
|
226
|
-
height: 1px;
|
|
227
|
-
left: 0;
|
|
228
|
-
top: 0;
|
|
229
|
+
.disable-event {
|
|
230
|
+
pointer-events: none !important;
|
|
231
|
+
}
|
|
229
232
|
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
233
|
+
.tour-layer {
|
|
234
|
+
transition: all .7s ease-in-out;
|
|
235
|
+
position: absolute;
|
|
236
|
+
box-shadow: #444444 0px 0px 1px 2px, rgba(160, 10, 255, 0.8) 0px 0px 0px 5000px;
|
|
237
|
+
z-index: 1000;
|
|
238
|
+
opacity: 0;
|
|
239
|
+
width: 1px;
|
|
240
|
+
height: 1px;
|
|
241
|
+
left: 0;
|
|
242
|
+
top: 0;
|
|
234
243
|
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.tour-clickable {
|
|
247
|
+
pointer-events: auto !important;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.tour-msg {
|
|
251
|
+
transition: all 1s ease-in-out;
|
|
252
|
+
color: white !important;
|
|
253
|
+
position: absolute;
|
|
254
|
+
width: 100%;
|
|
255
|
+
z-index: 1001;
|
|
256
|
+
top: 0
|
|
257
|
+
}
|
|
258
|
+
</style>
|