1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
57
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<#ibizinclude>
../@MACRO/CSS/DEFAULT.less.ftl
</#ibizinclude>
<#if ctrl.getToolbarStyle() == 'MOBBOTTOMMENU'>
.app-${ctrl.name}-bar-button {
position: absolute;
bottom: @toolbar-bottomtoolbar-offset-y;
right: @toolbar-bottomtoolbar-offset-x;
border-radius: @border-radius-round;
height: @toolbar-bottomtoolbar-height;
line-height: @toolbar-bottomtoolbar-height;
}
.app-${ctrl.name}-bar-overlay {
.wrapper {
display: flex;
align-items: flex-end;
justify-content: flex-end;
height: 100%;
.block {
width: 120px;
height: 100%;
display: flex;
z-index: 2000;
.app-toolbar-container {
position: absolute;
bottom: @toolbar-bottomtoolbar-group-offset-y;
right: @toolbar-bottomtoolbar-group-offset-x;
width: auto;
height: auto;
.righttoolbar-item {
color: @toolbar-bottomtoolbar-item-color;
margin-bottom: 10px;
font-size: @toolbar-bottomtoolbar-item-fontSize;
display: flex;
.righttoolbar-item-btn {
margin-left: 5px;
border-radius: @border-radius-round;
}
}
}
}
}
}
.fab_container{
width: 60px;
position: fixed;
right: 1vh;
bottom: 7vh;
.bottom_menu{
width: 60px;
height: 70px;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}
}
.fab-list{
ion-fab-button{
--background:#eeeeee;
}
}
</#if>
.toolbar_group_right{
position: absolute;
right: 20px;
z-index: 999;
width: 40%;
}
.toolbar_group_left{
position: absolute;
left: 20px;
z-index: 999;
width: 40%;
}
ion-backdrop {
opacity: 0.3;
}
.ionlist{
border-radius: @toolbar-group-border-radius;
}
.group_ion-icon{
margin-right: 10px;
}
.footer_group {
position: absolute;
z-index: 99;
bottom: 67px;
width: 40%;
right: 20px;
}
.app-quick-toolbar{
text-align: center;
}
<#assign havestyle = 0>
<#if ctrl.getToolbarStyle() == 'MOBNAVLEFTMENU'|| ctrl.getToolbarStyle() == 'MOBNAVRIGHTMENU' && havestyle = 0>
<#assign havestyle = 1>
.group-button{
display: flex;
flex-flow: column;
position: absolute;
}
.app-view-righttoolbar,
.app-view-lefttoolbar {
.toolbar_group_right {
border-radius: @toolbar-group-border-radius;
position: absolute;
right: @toolbar-toptoolbar-offset-x;
top: @toolbar-toptoolbar-offset-y;
}
.toolbar_group_left {
border-radius: @toolbar-group-border-radius;
position: absolute;
left:@toolbar-toptoolbar-offset-x;
top: @toolbar-toptoolbar-offset-y;
}
.van-cell__title,
.van-cell__value {
text-align: left;
}
.van-cell {
border-radius: @toolbar-group-border-radius;
}
.van-hairline--top-bottom::after, .van-hairline-unset--top-bottom::after {
border-width: 0;
}
.van-button--default {
background-color: transparent;
border: none;
padding: 0;
color: #fff;
}
}
</#if>