renusify 1.4.8 → 2.0.0
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/style.scss +2 -10
- package/components/app/toast/toast.vue +4 -3
- package/components/bar/bottomNavigationCircle.vue +1 -1
- package/components/bar/scss/bottomNav.scss +2 -2
- package/components/breadcrumb/style.scss +1 -1
- package/components/button/index.vue +4 -4
- package/components/button/style.scss +17 -27
- package/components/calendar/index.vue +3 -4
- package/components/card/style.scss +1 -3
- package/components/chat/chatInput.vue +2 -2
- package/components/chat/chatMsg.vue +3 -3
- package/components/chat/index.vue +2 -1
- package/components/chip/index.vue +1 -1
- package/components/chip/style.scss +20 -10
- package/components/codeEditor/index.vue +5 -4
- package/components/confirm/index.vue +3 -3
- package/components/container/style.scss +1 -1
- package/components/form/checkbox.vue +1 -1
- package/components/form/colorPicker/picker.vue +6 -5
- package/components/form/datePicker/index.vue +2 -4
- package/components/form/form.vue +7 -4
- package/components/form/group-input.vue +1 -1
- package/components/form/input.vue +21 -20
- package/components/form/inputTel/index.vue +1 -31
- package/components/form/json/index.vue +1 -1
- package/components/form/radioInput.vue +1 -1
- package/components/form/rating.vue +4 -1
- package/components/form/select.vue +1 -1
- package/components/form/switch.vue +1 -7
- package/components/form/text-editor/index.vue +15 -15
- package/components/form/text-editor/style.scss +6 -6
- package/components/form/timepicker/timepicker.vue +3 -4
- package/components/form/unit-input.vue +2 -2
- package/components/formCreator/index.vue +1 -1
- package/components/icon/style.scss +1 -4
- package/components/img/index.vue +1 -1
- package/components/img/svgImg.vue +5 -3
- package/components/infinite/div.vue +2 -2
- package/components/infinite/index.vue +1 -1
- package/components/infinite/page.vue +2 -2
- package/components/list/index.vue +2 -2
- package/components/list/style.scss +10 -6
- package/components/map/index.vue +1 -1
- package/components/map/route.vue +2 -2
- package/components/menu/index.vue +1 -1
- package/components/notify/notification.vue +2 -2
- package/components/progress/style.scss +4 -4
- package/components/searchBox/index.vue +2 -2
- package/components/table/crud/header.vue +1 -1
- package/components/table/index.vue +4 -3
- package/components/table/style.scss +19 -16
- package/components/timeline/index.vue +1 -1
- package/components/tour/index.vue +5 -5
- package/components/tree/index.vue +0 -1
- package/package.json +1 -1
- package/style/app.scss +40 -34
- package/style/base.scss +45 -51
- package/style/colors.scss +48 -39
- package/style/mixins/index.scss +17 -6
- package/style/variables/base.scss +84 -69
- package/style/variables/color.scss +1 -2
|
@@ -2,9 +2,6 @@
|
|
|
2
2
|
<r-input :class="`${$r.prefix}switch`" :modelValue="lazyValue" hide>
|
|
3
3
|
<div class="switch-container" :class="{'switch-active':modelValue}">
|
|
4
4
|
<div class="switch-label me-1 mt-1"
|
|
5
|
-
:class="{
|
|
6
|
-
'color-primary-text':label2?modelValue:!modelValue
|
|
7
|
-
}"
|
|
8
5
|
>{{label}}
|
|
9
6
|
</div>
|
|
10
7
|
<div class="switch-holder" @click="toggle()">
|
|
@@ -12,9 +9,6 @@
|
|
|
12
9
|
<div class="switch-dot"></div>
|
|
13
10
|
</div>
|
|
14
11
|
<div class="switch-label ms-1 mt-1"
|
|
15
|
-
:class="{
|
|
16
|
-
'color-primary-text':label2?!modelValue:modelValue
|
|
17
|
-
}"
|
|
18
12
|
v-if="label2">{{label2}}</div>
|
|
19
13
|
</div>
|
|
20
14
|
</r-input>
|
|
@@ -87,7 +81,7 @@ emits:['update:modelValue','change'],
|
|
|
87
81
|
width: 100%;
|
|
88
82
|
height: 100%;
|
|
89
83
|
border-radius: 10px;
|
|
90
|
-
background-color: var(--color-
|
|
84
|
+
background-color: var(--color-sheet-container);
|
|
91
85
|
}
|
|
92
86
|
|
|
93
87
|
.switch-dot {
|
|
@@ -41,9 +41,8 @@
|
|
|
41
41
|
@update:model-value="addClass"></r-select-input>
|
|
42
42
|
</r-col>
|
|
43
43
|
<r-col class="col-12 ltr">
|
|
44
|
-
<span
|
|
45
|
-
<span class="color-
|
|
46
|
-
<span :class="{'color-error-text':selectElm===item}" v-else>{{item.nodeName}} > </span>
|
|
44
|
+
<span v-for="(item,i) in currentPath" :key="i" class="cursor-pointer" @click.prevent="borderd(item)">
|
|
45
|
+
<span :class="{'color-one-text':selectElm===item}">{{ item.nodeName }} > </span>
|
|
47
46
|
</span>
|
|
48
47
|
</r-col>
|
|
49
48
|
<r-col class="col-12">
|
|
@@ -259,16 +258,19 @@ export default {
|
|
|
259
258
|
items: [{text: 'HI', value: 'display-1'},
|
|
260
259
|
{text: 'HI', value: 'display-2'},
|
|
261
260
|
{text: 'HI', value: 'display-3'},
|
|
262
|
-
{text: 'HI', value: '
|
|
263
|
-
{text: 'HI', value: '
|
|
264
|
-
{text: 'HI', value: '
|
|
265
|
-
{text: 'HI', value: '
|
|
266
|
-
{text: 'HI', value: '
|
|
267
|
-
{text: 'HI', value: '
|
|
261
|
+
{text: 'HI', value: 'headline-1'},
|
|
262
|
+
{text: 'HI', value: 'headline-2'},
|
|
263
|
+
{text: 'HI', value: 'headline-3'},
|
|
264
|
+
{text: 'HI', value: 'title-1'},
|
|
265
|
+
{text: 'HI', value: 'title-2'},
|
|
266
|
+
{text: 'HI', value: 'title-3'},
|
|
267
|
+
{text: 'HI', value: 'body-1'},
|
|
268
268
|
{text: 'HI', value: 'body-2'},
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
269
|
+
{text: 'HI', value: 'body-3'},
|
|
270
|
+
{text: 'HI', value: 'label-1'},
|
|
271
|
+
{text: 'HI', value: 'label-2'},
|
|
272
|
+
{text: 'HI', value: 'label-3'},
|
|
273
|
+
]
|
|
272
274
|
},
|
|
273
275
|
'header': {
|
|
274
276
|
icon: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M3 4h2v6h4V4h2v14H9v-6H5v6H3V4m10 4h2.31l.32-3h2l-.32 3h2l.32-3h2l-.32 3H23v2h-1.9l-.2 2H23v2h-2.31l-.32 3h-2l.32-3h-2l-.32 3h-2l.32-3H13v-2h1.9l.2-2H13V8m4.1 2l-.2 2h2l.2-2h-2Z"/></svg>',
|
|
@@ -284,8 +286,6 @@ export default {
|
|
|
284
286
|
'color': {
|
|
285
287
|
icon: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M19 11.5s-2 2.17-2 3.5a2 2 0 0 0 2 2a2 2 0 0 0 2-2c0-1.33-2-3.5-2-3.5M5.21 10L10 5.21L14.79 10m1.77-1.06L7.62 0L6.21 1.41l2.38 2.38l-5.15 5.15c-.59.56-.59 1.53 0 2.12l5.5 5.5c.29.29.68.44 1.06.44s.77-.15 1.06-.44l5.5-5.5c.59-.59.59-1.56 0-2.12Z"/></svg>',
|
|
286
288
|
items: [
|
|
287
|
-
{text: 'color', value: 'color-primary-text'},
|
|
288
|
-
{text: 'color', value: 'color-secondary-text'},
|
|
289
289
|
{text: 'color', value: 'color-disabled-text'},
|
|
290
290
|
{text: 'color', value: 'color-one-text'},
|
|
291
291
|
{text: 'color', value: 'color-two-text'},
|
|
@@ -370,7 +370,7 @@ export default {
|
|
|
370
370
|
return
|
|
371
371
|
}
|
|
372
372
|
this.selectElm = el
|
|
373
|
-
|
|
373
|
+
el.style.border = '1px solid var(--color-one)'
|
|
374
374
|
},
|
|
375
375
|
bordered() {
|
|
376
376
|
const a = this.getSelection()
|
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
.#{$prefix}text-editor {
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
.editor-content {
|
|
7
|
+
border: 1px solid var(--color-border);
|
|
8
|
+
}
|
|
9
9
|
|
|
10
|
-
@include typography($headings, 'body-
|
|
10
|
+
@include typography($headings, 'body-2');
|
|
11
11
|
|
|
12
12
|
a {
|
|
13
|
-
color: var(--color-
|
|
13
|
+
color: var(--color-one)
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
img {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
.editor-content {
|
|
21
|
-
color: var(--color-
|
|
21
|
+
color: var(--color-on-sheet);
|
|
22
22
|
transition: all .3s ease;
|
|
23
23
|
min-height: 200px;
|
|
24
24
|
max-height: 60vh;
|
|
@@ -554,8 +554,8 @@ export default {
|
|
|
554
554
|
}
|
|
555
555
|
|
|
556
556
|
.meridiem-active {
|
|
557
|
-
background-color: var(--color-
|
|
558
|
-
color:
|
|
557
|
+
background-color: var(--color-three-container);
|
|
558
|
+
color: var(--color-on-three-container);
|
|
559
559
|
}
|
|
560
560
|
|
|
561
561
|
.text-meridiem > .time-meridiem {
|
|
@@ -683,8 +683,7 @@ export default {
|
|
|
683
683
|
|
|
684
684
|
|
|
685
685
|
.number-disabled {
|
|
686
|
-
|
|
687
|
-
color: var(--color-disabled)
|
|
686
|
+
@include disable-states()
|
|
688
687
|
}
|
|
689
688
|
}
|
|
690
689
|
</style>
|
|
@@ -78,7 +78,7 @@ emits:['update:modelValue'],
|
|
|
78
78
|
|
|
79
79
|
.#{$prefix}unit-input {
|
|
80
80
|
.input-shadow, .input-shadow * {
|
|
81
|
-
|
|
81
|
+
@include disable-states()
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
input {
|
|
@@ -94,7 +94,7 @@ emits:['update:modelValue'],
|
|
|
94
94
|
overflow-x: clip;
|
|
95
95
|
|
|
96
96
|
* {
|
|
97
|
-
font-size: map-metro-get($headings, '
|
|
97
|
+
font-size: map-metro-get($headings, 'label-3', 'size') !important;
|
|
98
98
|
}
|
|
99
99
|
|
|
100
100
|
.input-control {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<r-card v-if="!autoSend" :class="$r.prefix+'form-creator'" class="overflow-auto">
|
|
3
3
|
<r-container>
|
|
4
|
-
<h1 v-if="title" class="title">{{ title }}</h1>
|
|
4
|
+
<h1 v-if="title" class="title-1">{{ title }}</h1>
|
|
5
5
|
<r-form ref="form" v-model="valid" @submit.prevent="save">
|
|
6
6
|
<r-row>
|
|
7
7
|
<template :key="key" v-for="(item,key) in options">
|
package/components/img/index.vue
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[$r.prefix+'img']:true,
|
|
4
4
|
'img-hoverZoom':hoverZoom,'img-hoverDark':hoverDark,'img-hoverTitle':hoverTitle}"
|
|
5
5
|
ref="rImg">
|
|
6
|
-
<div v-if="hoverTitle" class="title color-white-text img-title w-full"
|
|
6
|
+
<div v-if="hoverTitle" class="title-3 color-white-text img-title w-full"
|
|
7
7
|
:class="{
|
|
8
8
|
'title-hs':titleHs,
|
|
9
9
|
'title-hc':titleHc,
|
|
@@ -28,9 +28,11 @@ export default {
|
|
|
28
28
|
const el = document.createElement('div')
|
|
29
29
|
el.innerHTML = d
|
|
30
30
|
let svg = el.querySelector('svg')
|
|
31
|
-
svg
|
|
32
|
-
|
|
33
|
-
|
|
31
|
+
if (svg) {
|
|
32
|
+
svg.setAttribute('width', that.size.width + 'px')
|
|
33
|
+
svg.setAttribute('height', that.size.height + 'px')
|
|
34
|
+
that.replace(svg)
|
|
35
|
+
}
|
|
34
36
|
})
|
|
35
37
|
})
|
|
36
38
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div :class="classes">
|
|
3
3
|
<div
|
|
4
4
|
class="list-item h-space-between"
|
|
5
|
-
:class="{'list-item-active
|
|
5
|
+
:class="{'list-item-active':$helper.searchArray(list,text,item_value[text])!==false}"
|
|
6
6
|
:key="item_key"
|
|
7
7
|
@click.prevent="handle(item_value)"
|
|
8
8
|
v-for="(item_value,item_key) in genItems"
|
|
@@ -52,7 +52,7 @@ export default {
|
|
|
52
52
|
return []
|
|
53
53
|
},
|
|
54
54
|
classes() {
|
|
55
|
-
let c = `${this.$r.prefix}list
|
|
55
|
+
let c = `${this.$r.prefix}list`
|
|
56
56
|
if (this.disabled) {
|
|
57
57
|
c += ' list-disabled'
|
|
58
58
|
}
|
|
@@ -12,15 +12,19 @@ $item-height: 48px;
|
|
|
12
12
|
max-width: 100%;
|
|
13
13
|
|
|
14
14
|
.list-item {
|
|
15
|
-
|
|
16
|
-
background-color: var(--color-sheet-
|
|
17
|
-
|
|
15
|
+
&:hover {
|
|
16
|
+
background-color: var(--color-sheet-container);
|
|
17
|
+
color: var(--color-on-sheet-container);
|
|
18
|
+
}
|
|
18
19
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
&.list-item-active {
|
|
21
|
+
background-color: var(--color-one-container);
|
|
22
|
+
color: var(--color-on-one-container)
|
|
22
23
|
}
|
|
23
24
|
|
|
25
|
+
|
|
26
|
+
}
|
|
27
|
+
|
|
24
28
|
&.list-subheader {
|
|
25
29
|
align-items: center;
|
|
26
30
|
display: flex;
|
package/components/map/index.vue
CHANGED
package/components/map/route.vue
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<r-col :style="'height: '+height" class="overflow-y-auto col-12 sm-3">
|
|
9
9
|
<div class="pa-2">
|
|
10
10
|
<slot :distance="distance" :time="time" name="header">
|
|
11
|
-
<div class="
|
|
11
|
+
<div class="bodey-1">{{ $helper.ifHas(modelValue, '------', 'summary', 'name') }}</div>
|
|
12
12
|
<r-divider class="my-3"></r-divider>
|
|
13
13
|
<div>{{ time || '---' }}</div>
|
|
14
14
|
<div>{{ distance || '0 km' }}</div>
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
<div v-for="(point,i) in points"
|
|
19
19
|
:key="i" class="route-point px-2 py-1 my-2 br-lg text-end">
|
|
20
20
|
<div class="d-flex">
|
|
21
|
-
<span class="mt-1
|
|
21
|
+
<span class="mt-1 bodey-3">{{ pos(points_keys.indexOf(i)) }}</span>
|
|
22
22
|
<r-spacer></r-spacer>
|
|
23
23
|
<r-btn v-if="editable && i!==points_keys[0]" icon text
|
|
24
24
|
@click.prevent="to(points_keys.indexOf(i),points_keys.indexOf(i)-1)">
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
<div v-if="show" :class="[status, 'notify-msg']" :style="{ width: width }">
|
|
6
6
|
<slot>
|
|
7
7
|
<div>
|
|
8
|
-
<h3 class="title"><b>{{ content.title }}</b></h3>
|
|
9
|
-
<p class="
|
|
8
|
+
<h3 class="title-1"><b>{{ content.title }}</b></h3>
|
|
9
|
+
<p class="title-2 ma-0">{{ content.text }}</p>
|
|
10
10
|
</div>
|
|
11
11
|
</slot>
|
|
12
12
|
<r-btn class="h-end" icon text @click.prevent.stop="hideMe">
|
|
@@ -86,19 +86,19 @@ $progress-circle-overlay-transition: all .6s ease-in-out !default;
|
|
|
86
86
|
text-align: center;
|
|
87
87
|
|
|
88
88
|
&.progress-outlined {
|
|
89
|
-
color: var(--color-
|
|
89
|
+
color: var(--color-border)
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
.line-determinate {
|
|
93
|
-
background-color: var(--color-
|
|
93
|
+
background-color: var(--color-on-sheet);
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
.line-indeterminate {
|
|
97
|
-
background-color: var(--color-
|
|
97
|
+
background-color: var(--color-on-sheet);
|
|
98
98
|
}
|
|
99
99
|
|
|
100
100
|
.progress-background {
|
|
101
|
-
background-color: var(--color-
|
|
101
|
+
background-color: var(--color-sheet-container);
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
&.progress-outlined {
|
|
@@ -191,7 +191,7 @@ export default {
|
|
|
191
191
|
display: flex;
|
|
192
192
|
align-items: center;
|
|
193
193
|
border: solid 1px var(--color-border);
|
|
194
|
-
color: var(--color-
|
|
194
|
+
color: var(--color-on-sheet);
|
|
195
195
|
position: relative;
|
|
196
196
|
border-radius: map-get($borders, "md");
|
|
197
197
|
|
|
@@ -207,7 +207,7 @@ export default {
|
|
|
207
207
|
padding: 12px;
|
|
208
208
|
max-width: 100%;
|
|
209
209
|
min-width: 0px;
|
|
210
|
-
caret-color: var(--color-
|
|
210
|
+
caret-color: var(--color-on-sheet);
|
|
211
211
|
}
|
|
212
212
|
|
|
213
213
|
.card-search {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div
|
|
3
|
+
v-bind="$attrs"
|
|
3
4
|
:class="{
|
|
4
5
|
[`${$r.prefix}table`]:true,
|
|
5
6
|
'table-editable':editable,
|
|
@@ -13,7 +14,7 @@
|
|
|
13
14
|
<svg class="table-svg" height="18" width="18">
|
|
14
15
|
<path class="table-svg-path" d="M 0 0 l 0 18 l 18 0 q -18 0 -18 -18"/>
|
|
15
16
|
</svg>
|
|
16
|
-
<span class="
|
|
17
|
+
<span class="table-editable-icon px-2"
|
|
17
18
|
@click.prevent="open_modal()">
|
|
18
19
|
<r-icon v-html="$r.icons.setting"></r-icon>
|
|
19
20
|
</span>
|
|
@@ -57,7 +58,7 @@
|
|
|
57
58
|
class="tr-hidden">
|
|
58
59
|
<td :colspan="($helper.size(th)||th.length)">
|
|
59
60
|
<div v-for="(v,h) in hidden" :key="key+h" class="pa-2">
|
|
60
|
-
<span class="title">{{ getText(h) }}: </span>
|
|
61
|
+
<span class="title-1">{{ getText(h) }}: </span>
|
|
61
62
|
<span>{{ item[h] }}</span>
|
|
62
63
|
</div>
|
|
63
64
|
</td>
|
|
@@ -85,7 +86,7 @@
|
|
|
85
86
|
>
|
|
86
87
|
<r-col>
|
|
87
88
|
<r-card class="pa-4 ma-1 d-flex h-space-between" tile>
|
|
88
|
-
<span class="title">
|
|
89
|
+
<span class="title-1">
|
|
89
90
|
<r-btn class="drag-btn" icon text>
|
|
90
91
|
<r-icon v-html="$r.icons.drag"></r-icon>
|
|
91
92
|
</r-btn>
|
|
@@ -9,31 +9,31 @@ $data-table-regular-header-height: 38px !default;
|
|
|
9
9
|
position: relative;
|
|
10
10
|
|
|
11
11
|
.table-wrapper {
|
|
12
|
-
background-color: var(--color-sheet);
|
|
13
|
-
color: var(--color-
|
|
12
|
+
background-color: var(--color-sheet-container-lowest);
|
|
13
|
+
color: var(--color-on-sheet-container-lowest);
|
|
14
14
|
}
|
|
15
15
|
.table-svg-path {
|
|
16
16
|
fill: var(--color-sheet);
|
|
17
17
|
}
|
|
18
18
|
.table-editable-icon {
|
|
19
|
-
background-color: var(--color-sheet)
|
|
20
|
-
color: var(--color-
|
|
19
|
+
background-color: var(--color-sheet);
|
|
20
|
+
color: var(--color-on-sheet);
|
|
21
21
|
}
|
|
22
22
|
&.table-fixed-header {
|
|
23
23
|
thead th {
|
|
24
|
-
|
|
25
|
-
box-shadow: inset 0 -2px var(--color-divider)
|
|
24
|
+
box-shadow: inset 0 -2px var(--color-border)
|
|
26
25
|
}
|
|
27
26
|
}
|
|
28
27
|
|
|
29
28
|
thead {
|
|
30
29
|
tr {
|
|
31
30
|
&:last-child th {
|
|
32
|
-
border-bottom: 1px solid var(--color-
|
|
31
|
+
border-bottom: 1px solid var(--color-border)
|
|
33
32
|
}
|
|
34
33
|
|
|
35
34
|
th {
|
|
36
|
-
color: var(--color-
|
|
35
|
+
background-color: var(--color-sheet);
|
|
36
|
+
color: var(--color-on-sheet)
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
}
|
|
@@ -41,16 +41,19 @@ $data-table-regular-header-height: 38px !default;
|
|
|
41
41
|
&.table-fixed-first-columns {
|
|
42
42
|
tr {
|
|
43
43
|
th:first-child {
|
|
44
|
-
background: var(--color-sheet)
|
|
44
|
+
background: var(--color-sheet);
|
|
45
|
+
color: var(--color-on-sheet)
|
|
45
46
|
}
|
|
46
47
|
|
|
47
48
|
td:first-child {
|
|
48
|
-
background: var(--color-sheet)
|
|
49
|
+
background: var(--color-sheet);
|
|
50
|
+
color: var(--color-on-sheet)
|
|
49
51
|
}
|
|
50
52
|
|
|
51
53
|
&:hover {
|
|
52
54
|
td:first-child {
|
|
53
|
-
background: var(--color-sheet-
|
|
55
|
+
background: var(--color-sheet-container);
|
|
56
|
+
color: var(--color-on-sheet-container)
|
|
54
57
|
}
|
|
55
58
|
}
|
|
56
59
|
}
|
|
@@ -60,7 +63,7 @@ $data-table-regular-header-height: 38px !default;
|
|
|
60
63
|
tbody {
|
|
61
64
|
tr:nth-child(2n):not(:hover) {
|
|
62
65
|
td {
|
|
63
|
-
background: var(--color-sheet-
|
|
66
|
+
background: var(--color-sheet-container-low)
|
|
64
67
|
}
|
|
65
68
|
}
|
|
66
69
|
}
|
|
@@ -69,23 +72,23 @@ $data-table-regular-header-height: 38px !default;
|
|
|
69
72
|
tbody {
|
|
70
73
|
tr {
|
|
71
74
|
&:active {
|
|
72
|
-
background: var(--color-sheet-
|
|
75
|
+
background: var(--color-sheet-container)
|
|
73
76
|
}
|
|
74
77
|
|
|
75
78
|
&:hover {
|
|
76
|
-
background: var(--color-sheet-
|
|
79
|
+
background: var(--color-sheet-container)
|
|
77
80
|
}
|
|
78
81
|
}
|
|
79
82
|
|
|
80
83
|
tr:not(:last-child) {
|
|
81
84
|
td {
|
|
82
|
-
border-bottom: 1px solid var(--color-
|
|
85
|
+
border-bottom: 1px solid var(--color-border)
|
|
83
86
|
}
|
|
84
87
|
}
|
|
85
88
|
}
|
|
86
89
|
|
|
87
90
|
&.table-bordered .table-wrapper {
|
|
88
|
-
border: 1px solid var(--color-
|
|
91
|
+
border: 1px solid var(--color-border);
|
|
89
92
|
border-collapse: collapse;
|
|
90
93
|
}
|
|
91
94
|
|
|
@@ -2,23 +2,23 @@
|
|
|
2
2
|
<teleport :to="`.${$r.prefix}app`">
|
|
3
3
|
<div :style="style" class="tour-layer"></div>
|
|
4
4
|
<transition name="slide-up" mode="out-in">
|
|
5
|
-
<div v-if="msg" ref="tourMsg" :style="style_msg" class="tour-msg
|
|
5
|
+
<div v-if="msg" ref="tourMsg" :style="style_msg" class="tour-msg headline-1">
|
|
6
6
|
<r-container>
|
|
7
7
|
<div v-html="$helper.cleanXss(steps[run].msg)"></div>
|
|
8
8
|
<div class="d-flex">
|
|
9
9
|
<div><span
|
|
10
|
-
class="
|
|
10
|
+
class="title-2 color-success br-lg py-1 px-2 ltr">{{ steps.length }} / {{ run + 1 }}</span>
|
|
11
11
|
</div>
|
|
12
12
|
<r-spacer></r-spacer>
|
|
13
|
-
<r-btn v-if="has_prev" :disabled="disable_prev" class="color-
|
|
13
|
+
<r-btn v-if="has_prev" :disabled="disable_prev" class="color-info tour-clickable" @click.prevent="prev">
|
|
14
14
|
{{ $t('prev', 'renusify') }}
|
|
15
15
|
</r-btn>
|
|
16
|
-
<r-btn v-if="has_next" :disabled="disable_next" class="color-
|
|
16
|
+
<r-btn v-if="has_next" :disabled="disable_next" class="color-info mx-1 tour-clickable"
|
|
17
17
|
@click.prevent="next">
|
|
18
18
|
{{ $t('next', 'renusify') }}
|
|
19
19
|
</r-btn>
|
|
20
20
|
<r-btn v-if="steps.length===run+1||canFinish" :disabled="disable_finish"
|
|
21
|
-
class="color-
|
|
21
|
+
class="color-success mx-1 tour-clickable"
|
|
22
22
|
@click.prevent="finish">{{ $t('finish', 'renusify') }}
|
|
23
23
|
</r-btn>
|
|
24
24
|
</div>
|