@xenknight/framework7 0.0.7 → 0.0.9
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/navbar-new/navbar-ios.less +135 -135
- package/components/navbar-new/navbar-md.less +105 -105
- package/components/navbar-new/navbar-vars.less +78 -78
- package/components/navbar-new/navbar.d.ts +77 -77
- package/components/navbar-new/navbar.less +268 -268
- package/components/page/page.less +4 -2
- package/components/searchbar-new/searchbar-ios.less +131 -131
- package/components/searchbar-new/searchbar-md.less +154 -153
- package/components/searchbar-new/searchbar-new-class.js +32 -20
- package/components/searchbar-new/searchbar-vars.less +75 -75
- package/components/searchbar-new/searchbar.less +336 -331
- package/components/subnavbar-new/subnavbar-new-ios.less +67 -0
- package/components/subnavbar-new/subnavbar-new-md.less +48 -0
- package/components/subnavbar-new/subnavbar-new-vars.less +42 -0
- package/components/subnavbar-new/subnavbar-new.d.ts +12 -0
- package/components/subnavbar-new/subnavbar-new.js +20 -0
- package/components/subnavbar-new/subnavbar-new.less +151 -0
- package/components/toolbar-new/tabbar-highlight.js +29 -9
- package/components/toolbar-new/toolbar-ios.less +193 -193
- package/components/toolbar-new/toolbar-md.less +152 -152
- package/components/toolbar-new/toolbar-vars.less +77 -77
- package/components/toolbar-new/toolbar.less +261 -261
- package/framework7-bundle-rtl.css +259 -8
- package/framework7-bundle-rtl.min.css +4 -4
- package/framework7-bundle.css +259 -8
- package/framework7-bundle.esm.js +4 -2
- package/framework7-bundle.js +83 -31
- package/framework7-bundle.js.map +1 -1
- package/framework7-bundle.less +2 -1
- package/framework7-bundle.min.css +4 -4
- package/framework7-bundle.min.js +2 -2
- package/framework7-bundle.min.js.map +1 -1
- package/framework7-lite-bundle.esm.js +4 -2
- package/framework7-lite.esm.js +4 -2
- package/framework7-lite.js +3 -1
- package/framework7-rtl.css +259 -8
- package/framework7-rtl.min.css +4 -4
- package/framework7-types.d.ts +5 -1
- package/framework7.css +259 -8
- package/framework7.d.ts +4 -0
- package/framework7.esm.js +4 -2
- package/framework7.js +3 -1
- package/framework7.less +2 -1
- package/framework7.min.css +4 -4
- package/package.json +1 -1
|
@@ -1,131 +1,131 @@
|
|
|
1
|
-
.ios {
|
|
2
|
-
.searchbar-new {
|
|
3
|
-
input[type='search'],
|
|
4
|
-
input[type='text'] {
|
|
5
|
-
z-index: 30;
|
|
6
|
-
.ios-glass-backdrop();
|
|
7
|
-
box-shadow: var(--f7-glass-shadow);
|
|
8
|
-
}
|
|
9
|
-
.input-clear-button {
|
|
10
|
-
z-index: 40;
|
|
11
|
-
.ltr({
|
|
12
|
-
right: 16px;
|
|
13
|
-
});
|
|
14
|
-
.rtl({
|
|
15
|
-
left: 16px;
|
|
16
|
-
});
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
.searchbar-new-icon {
|
|
20
|
-
width: 13px;
|
|
21
|
-
height: 13px;
|
|
22
|
-
position: absolute;
|
|
23
|
-
top: 50%;
|
|
24
|
-
margin-top: -6px;
|
|
25
|
-
z-index: 40;
|
|
26
|
-
&:after {
|
|
27
|
-
content: 'search_ios';
|
|
28
|
-
line-height: 13px;
|
|
29
|
-
}
|
|
30
|
-
.ltr({
|
|
31
|
-
left: 16px;
|
|
32
|
-
});
|
|
33
|
-
.rtl({
|
|
34
|
-
right: 16px;
|
|
35
|
-
});
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.searchbar-new-disable-button {
|
|
39
|
-
font-size: 17px;
|
|
40
|
-
flex-shrink: 0;
|
|
41
|
-
transform: translate3d(0, 0, 0);
|
|
42
|
-
transition-duration: 300ms;
|
|
43
|
-
color: var(--f7-searchbar-new-link-color, var(--f7-bars-link-color, var(--f7-theme-color)));
|
|
44
|
-
display: none;
|
|
45
|
-
height: var(--f7-searchbar-new-height);
|
|
46
|
-
padding: 0 12px;
|
|
47
|
-
|
|
48
|
-
align-items: center;
|
|
49
|
-
justify-content: center;
|
|
50
|
-
border-radius: 44px;
|
|
51
|
-
background-color: var(--f7-searchbar-new-input-bg-color);
|
|
52
|
-
box-shadow: var(--f7-glass-shadow);
|
|
53
|
-
.ios-glass-backdrop();
|
|
54
|
-
transform: scale(0);
|
|
55
|
-
&.active-state {
|
|
56
|
-
transition-duration: 0ms;
|
|
57
|
-
opacity: 0.3 !important;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
.searchbar-new-enabled {
|
|
61
|
-
.searchbar-new-disable-button {
|
|
62
|
-
pointer-events: auto;
|
|
63
|
-
opacity: 1;
|
|
64
|
-
transform: scale(1);
|
|
65
|
-
.ltr({ margin-left: 16px; });
|
|
66
|
-
.rtl({ margin-right: 16px; });
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
.searchbar-new:not(.searchbar-new-enabled) {
|
|
70
|
-
.searchbar-new-disable-button {
|
|
71
|
-
transition-duration: 300ms !important;
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
.searchbar-new-input-wrap {
|
|
75
|
-
border-radius: var(--f7-searchbar-new-input-border-radius);
|
|
76
|
-
}
|
|
77
|
-
.searchbar-new-expandable {
|
|
78
|
-
.ltr({ left: 0; });
|
|
79
|
-
.rtl({ right: 0; });
|
|
80
|
-
bottom: 0;
|
|
81
|
-
width: 100%;
|
|
82
|
-
height: var(--f7-searchbar-new-expandable-size);
|
|
83
|
-
transform: translate3d(0, 0, 0);
|
|
84
|
-
pointer-events: none;
|
|
85
|
-
.searchbar-new-disable-button {
|
|
86
|
-
.ltr({ margin-left: 16px; });
|
|
87
|
-
.rtl({ margin-right: 16px; });
|
|
88
|
-
opacity: 1;
|
|
89
|
-
display: flex;
|
|
90
|
-
}
|
|
91
|
-
.searchbar-new-inner {
|
|
92
|
-
left: 16px;
|
|
93
|
-
right: 16px;
|
|
94
|
-
width: auto;
|
|
95
|
-
height: var(--f7-searchbar-new-expandable-size);
|
|
96
|
-
}
|
|
97
|
-
.searchbar-new-input-wrap {
|
|
98
|
-
transform: scale(0);
|
|
99
|
-
transition-duration: 300ms;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
.navbar-new.with-searchbar-new-expandable-enabled,
|
|
103
|
-
.navbar-new.with-searchbar-new-expandable-closing {
|
|
104
|
-
.navbar-new-bg {
|
|
105
|
-
transition-property: transform, opacity;
|
|
106
|
-
}
|
|
107
|
-
.navbar-new-bg,
|
|
108
|
-
.left,
|
|
109
|
-
.title,
|
|
110
|
-
.right {
|
|
111
|
-
transition-duration: 300ms;
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
.navbar-new.with-searchbar-new-expandable-enabled,
|
|
115
|
-
.navbar-new.with-searchbar-new-expandable-enabled-no-transition {
|
|
116
|
-
.left,
|
|
117
|
-
.title,
|
|
118
|
-
.right {
|
|
119
|
-
transform: translateY(calc(-1 * var(--f7-navbar-new-height)));
|
|
120
|
-
opacity: 0 !important;
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.searchbar-new-expandable.searchbar-new-enabled {
|
|
125
|
-
height: var(--f7-searchbar-new-expandable-size);
|
|
126
|
-
pointer-events: auto;
|
|
127
|
-
.searchbar-new-input-wrap {
|
|
128
|
-
transform: scale(1);
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
}
|
|
1
|
+
.ios {
|
|
2
|
+
.searchbar-new {
|
|
3
|
+
input[type='search'],
|
|
4
|
+
input[type='text'] {
|
|
5
|
+
z-index: 30;
|
|
6
|
+
.ios-glass-backdrop();
|
|
7
|
+
box-shadow: var(--f7-glass-shadow);
|
|
8
|
+
}
|
|
9
|
+
.input-clear-button {
|
|
10
|
+
z-index: 40;
|
|
11
|
+
.ltr({
|
|
12
|
+
right: 16px;
|
|
13
|
+
});
|
|
14
|
+
.rtl({
|
|
15
|
+
left: 16px;
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
.searchbar-new-icon {
|
|
20
|
+
width: 13px;
|
|
21
|
+
height: 13px;
|
|
22
|
+
position: absolute;
|
|
23
|
+
top: 50%;
|
|
24
|
+
margin-top: -6px;
|
|
25
|
+
z-index: 40;
|
|
26
|
+
&:after {
|
|
27
|
+
content: 'search_ios';
|
|
28
|
+
line-height: 13px;
|
|
29
|
+
}
|
|
30
|
+
.ltr({
|
|
31
|
+
left: 16px;
|
|
32
|
+
});
|
|
33
|
+
.rtl({
|
|
34
|
+
right: 16px;
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.searchbar-new-disable-button {
|
|
39
|
+
font-size: 17px;
|
|
40
|
+
flex-shrink: 0;
|
|
41
|
+
transform: translate3d(0, 0, 0);
|
|
42
|
+
transition-duration: 300ms;
|
|
43
|
+
color: var(--f7-searchbar-new-link-color, var(--f7-bars-link-color, var(--f7-theme-color)));
|
|
44
|
+
display: none;
|
|
45
|
+
height: var(--f7-searchbar-new-height);
|
|
46
|
+
padding: 0 12px;
|
|
47
|
+
|
|
48
|
+
align-items: center;
|
|
49
|
+
justify-content: center;
|
|
50
|
+
border-radius: 44px;
|
|
51
|
+
background-color: var(--f7-searchbar-new-input-bg-color);
|
|
52
|
+
box-shadow: var(--f7-glass-shadow);
|
|
53
|
+
.ios-glass-backdrop();
|
|
54
|
+
transform: scale(0);
|
|
55
|
+
&.active-state {
|
|
56
|
+
transition-duration: 0ms;
|
|
57
|
+
opacity: 0.3 !important;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
.searchbar-new-enabled {
|
|
61
|
+
.searchbar-new-disable-button {
|
|
62
|
+
pointer-events: auto;
|
|
63
|
+
opacity: 1;
|
|
64
|
+
transform: scale(1);
|
|
65
|
+
.ltr({ margin-left: 16px; });
|
|
66
|
+
.rtl({ margin-right: 16px; });
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
.searchbar-new:not(.searchbar-new-enabled) {
|
|
70
|
+
.searchbar-new-disable-button {
|
|
71
|
+
transition-duration: 300ms !important;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
.searchbar-new-input-wrap {
|
|
75
|
+
border-radius: var(--f7-searchbar-new-input-border-radius);
|
|
76
|
+
}
|
|
77
|
+
.searchbar-new-expandable {
|
|
78
|
+
.ltr({ left: 0; });
|
|
79
|
+
.rtl({ right: 0; });
|
|
80
|
+
bottom: 0;
|
|
81
|
+
width: 100%;
|
|
82
|
+
height: var(--f7-searchbar-new-expandable-size);
|
|
83
|
+
transform: translate3d(0, 0, 0);
|
|
84
|
+
pointer-events: none;
|
|
85
|
+
.searchbar-new-disable-button {
|
|
86
|
+
.ltr({ margin-left: 16px; });
|
|
87
|
+
.rtl({ margin-right: 16px; });
|
|
88
|
+
opacity: 1;
|
|
89
|
+
display: flex;
|
|
90
|
+
}
|
|
91
|
+
.searchbar-new-inner {
|
|
92
|
+
left: 16px;
|
|
93
|
+
right: 16px;
|
|
94
|
+
width: auto;
|
|
95
|
+
height: var(--f7-searchbar-new-expandable-size);
|
|
96
|
+
}
|
|
97
|
+
.searchbar-new-input-wrap {
|
|
98
|
+
transform: scale(0);
|
|
99
|
+
transition-duration: 300ms;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
.navbar-new.with-searchbar-new-expandable-enabled,
|
|
103
|
+
.navbar-new.with-searchbar-new-expandable-closing {
|
|
104
|
+
.navbar-new-bg {
|
|
105
|
+
transition-property: transform, opacity;
|
|
106
|
+
}
|
|
107
|
+
.navbar-new-bg,
|
|
108
|
+
.left,
|
|
109
|
+
.title,
|
|
110
|
+
.right {
|
|
111
|
+
transition-duration: 300ms;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
.navbar-new.with-searchbar-new-expandable-enabled,
|
|
115
|
+
.navbar-new.with-searchbar-new-expandable-enabled-no-transition {
|
|
116
|
+
.left,
|
|
117
|
+
.title,
|
|
118
|
+
.right {
|
|
119
|
+
transform: translateY(calc(-1 * var(--f7-navbar-new-height)));
|
|
120
|
+
opacity: 0 !important;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.searchbar-new-expandable.searchbar-new-enabled {
|
|
125
|
+
height: var(--f7-searchbar-new-expandable-size);
|
|
126
|
+
pointer-events: auto;
|
|
127
|
+
.searchbar-new-input-wrap {
|
|
128
|
+
transform: scale(1);
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
@@ -1,153 +1,154 @@
|
|
|
1
|
-
.md {
|
|
2
|
-
.searchbar-new-icon,
|
|
3
|
-
.searchbar-new-disable-button {
|
|
4
|
-
position: absolute;
|
|
5
|
-
|
|
6
|
-
top: 50%;
|
|
7
|
-
transition-duration: 300ms;
|
|
8
|
-
}
|
|
9
|
-
.searchbar-new-disable-button {
|
|
10
|
-
.icon-close {
|
|
11
|
-
display: none;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
.searchbar-new-icon {
|
|
15
|
-
width: 48px;
|
|
16
|
-
height: 48px;
|
|
17
|
-
left: 0;
|
|
18
|
-
top: 0;
|
|
19
|
-
display: flex;
|
|
20
|
-
align-items: center;
|
|
21
|
-
justify-content: center;
|
|
22
|
-
&:after {
|
|
23
|
-
width: auto;
|
|
24
|
-
height: auto;
|
|
25
|
-
content: 'search_md';
|
|
26
|
-
line-height: 1.2;
|
|
27
|
-
}
|
|
28
|
-
.ltr({
|
|
29
|
-
left: var(--f7-safe-area-left);
|
|
30
|
-
});
|
|
31
|
-
.rtl({
|
|
32
|
-
right: var(--f7-safe-area-right);
|
|
33
|
-
});
|
|
34
|
-
}
|
|
35
|
-
.searchbar-new-disable-button {
|
|
36
|
-
width: 48px;
|
|
37
|
-
height: 48px;
|
|
38
|
-
transform: rotate(-90deg) scale(0.5);
|
|
39
|
-
font-size: 0 !important;
|
|
40
|
-
display: block;
|
|
41
|
-
margin-top: -24px;
|
|
42
|
-
color: var(--f7-searchbar-new-link-color, var(--f7-bars-link-color, var(--f7-theme-color)));
|
|
43
|
-
.ltr({
|
|
44
|
-
left: calc(var(--f7-searchbar-new-inner-padding-left) + var(--f7-safe-area-left));
|
|
45
|
-
});
|
|
46
|
-
.rtl({
|
|
47
|
-
right: calc(var(--f7-searchbar-new-inner-padding-right) + var(--f7-safe-area-right));
|
|
48
|
-
});
|
|
49
|
-
|
|
50
|
-
&:after {
|
|
51
|
-
.core-icons-font();
|
|
52
|
-
line-height: 48px;
|
|
53
|
-
.ltr({
|
|
54
|
-
content: 'arrow_left_md';
|
|
55
|
-
});
|
|
56
|
-
.rtl({
|
|
57
|
-
content: 'arrow_right_md';
|
|
58
|
-
});
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
.searchbar-new-enabled:not(.searchbar-new-enabled-no-disable-button) {
|
|
62
|
-
.searchbar-new-disable-button {
|
|
63
|
-
transform: rotate(0deg) scale(1);
|
|
64
|
-
pointer-events: auto;
|
|
65
|
-
opacity: 1;
|
|
66
|
-
}
|
|
67
|
-
.searchbar-new-icon {
|
|
68
|
-
opacity: 0;
|
|
69
|
-
transform: rotate(90deg) scale(0.5);
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
.searchbar-new {
|
|
73
|
-
--f7-searchbar-new-input-extra-padding-left: 34px;
|
|
74
|
-
.input-clear-button {
|
|
75
|
-
width: 48px;
|
|
76
|
-
height: 48px;
|
|
77
|
-
margin-top: -24px;
|
|
78
|
-
.ltr({ right: 0; });
|
|
79
|
-
.rtl({ left: 0; });
|
|
80
|
-
|
|
81
|
-
&:after {
|
|
82
|
-
line-height: 48px;
|
|
83
|
-
content: 'delete_round_md';
|
|
84
|
-
opacity: 1;
|
|
85
|
-
}
|
|
86
|
-
&:before {
|
|
87
|
-
display: none;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
.searchbar-new-inline {
|
|
92
|
-
--f7-searchbar-new-input-extra-padding-left: 32px;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
.page > .searchbar-new,
|
|
96
|
-
.subnavbar .searchbar-new,
|
|
97
|
-
.searchbar-new
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
--f7-searchbar-new-inner-padding-
|
|
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
|
-
|
|
1
|
+
.md {
|
|
2
|
+
.searchbar-new-icon,
|
|
3
|
+
.searchbar-new-disable-button {
|
|
4
|
+
position: absolute;
|
|
5
|
+
|
|
6
|
+
top: 50%;
|
|
7
|
+
transition-duration: 300ms;
|
|
8
|
+
}
|
|
9
|
+
.searchbar-new-disable-button {
|
|
10
|
+
.icon-close {
|
|
11
|
+
display: none;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
.searchbar-new-icon {
|
|
15
|
+
width: 48px;
|
|
16
|
+
height: 48px;
|
|
17
|
+
left: 0;
|
|
18
|
+
top: 0;
|
|
19
|
+
display: flex;
|
|
20
|
+
align-items: center;
|
|
21
|
+
justify-content: center;
|
|
22
|
+
&:after {
|
|
23
|
+
width: auto;
|
|
24
|
+
height: auto;
|
|
25
|
+
content: 'search_md';
|
|
26
|
+
line-height: 1.2;
|
|
27
|
+
}
|
|
28
|
+
.ltr({
|
|
29
|
+
left: var(--f7-safe-area-left);
|
|
30
|
+
});
|
|
31
|
+
.rtl({
|
|
32
|
+
right: var(--f7-safe-area-right);
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
.searchbar-new-disable-button {
|
|
36
|
+
width: 48px;
|
|
37
|
+
height: 48px;
|
|
38
|
+
transform: rotate(-90deg) scale(0.5);
|
|
39
|
+
font-size: 0 !important;
|
|
40
|
+
display: block;
|
|
41
|
+
margin-top: -24px;
|
|
42
|
+
color: var(--f7-searchbar-new-link-color, var(--f7-bars-link-color, var(--f7-theme-color)));
|
|
43
|
+
.ltr({
|
|
44
|
+
left: calc(var(--f7-searchbar-new-inner-padding-left) + var(--f7-safe-area-left));
|
|
45
|
+
});
|
|
46
|
+
.rtl({
|
|
47
|
+
right: calc(var(--f7-searchbar-new-inner-padding-right) + var(--f7-safe-area-right));
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
&:after {
|
|
51
|
+
.core-icons-font();
|
|
52
|
+
line-height: 48px;
|
|
53
|
+
.ltr({
|
|
54
|
+
content: 'arrow_left_md';
|
|
55
|
+
});
|
|
56
|
+
.rtl({
|
|
57
|
+
content: 'arrow_right_md';
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
.searchbar-new-enabled:not(.searchbar-new-enabled-no-disable-button) {
|
|
62
|
+
.searchbar-new-disable-button {
|
|
63
|
+
transform: rotate(0deg) scale(1);
|
|
64
|
+
pointer-events: auto;
|
|
65
|
+
opacity: 1;
|
|
66
|
+
}
|
|
67
|
+
.searchbar-new-icon {
|
|
68
|
+
opacity: 0;
|
|
69
|
+
transform: rotate(90deg) scale(0.5);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
.searchbar-new {
|
|
73
|
+
--f7-searchbar-new-input-extra-padding-left: 34px;
|
|
74
|
+
.input-clear-button {
|
|
75
|
+
width: 48px;
|
|
76
|
+
height: 48px;
|
|
77
|
+
margin-top: -24px;
|
|
78
|
+
.ltr({ right: 0; });
|
|
79
|
+
.rtl({ left: 0; });
|
|
80
|
+
|
|
81
|
+
&:after {
|
|
82
|
+
line-height: 48px;
|
|
83
|
+
content: 'delete_round_md';
|
|
84
|
+
opacity: 1;
|
|
85
|
+
}
|
|
86
|
+
&:before {
|
|
87
|
+
display: none;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
.searchbar-new-inline {
|
|
92
|
+
--f7-searchbar-new-input-extra-padding-left: 32px;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.page > .searchbar-new,
|
|
96
|
+
.subnavbar .searchbar-new,
|
|
97
|
+
.subnavbar-new .searchbar-new,
|
|
98
|
+
.searchbar-new-expandable {
|
|
99
|
+
--f7-searchbar-new-input-extra-padding-left: 34px;
|
|
100
|
+
.searchbar-new-disable-button {
|
|
101
|
+
.ltr({
|
|
102
|
+
left: calc(var(--f7-searchbar-new-inner-padding-left) + var(--f7-safe-area-left));
|
|
103
|
+
});
|
|
104
|
+
.rtl({
|
|
105
|
+
right: calc(var(--f7-searchbar-new-inner-padding-right) + var(--f7-safe-area-right));
|
|
106
|
+
});
|
|
107
|
+
}
|
|
108
|
+
.searchbar-new-icon {
|
|
109
|
+
.ltr({
|
|
110
|
+
left: var(--f7-safe-area-left);
|
|
111
|
+
});
|
|
112
|
+
.rtl({
|
|
113
|
+
right: var(--f7-safe-area-right);
|
|
114
|
+
});
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
.searchbar-new-expandable {
|
|
118
|
+
--f7-searchbar-new-inner-padding-left: 4px;
|
|
119
|
+
--f7-searchbar-new-inner-padding-right: 4px;
|
|
120
|
+
height: var(--f7-searchbar-new-expandable-size);
|
|
121
|
+
opacity: 0;
|
|
122
|
+
bottom: 0;
|
|
123
|
+
border-radius: calc(var(--f7-searchbar-new-expandable-size));
|
|
124
|
+
width: calc(var(--f7-searchbar-new-expandable-size));
|
|
125
|
+
margin-top: calc(var(--f7-searchbar-new-expandable-size) * -1 / 2);
|
|
126
|
+
transform: translate3d(0px, 0px, 0px);
|
|
127
|
+
background-color: var(--f7-searchbar-new-input-bg-color);
|
|
128
|
+
.ltr({
|
|
129
|
+
left: 100%;
|
|
130
|
+
margin-left: calc(var(--f7-searchbar-new-expandable-size) * -1);
|
|
131
|
+
});
|
|
132
|
+
.rtl({
|
|
133
|
+
right: 100%;
|
|
134
|
+
margin-right: calc(var(--f7-searchbar-new-expandable-size) * -1);
|
|
135
|
+
});
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.searchbar-new-expandable.searchbar-new-enabled {
|
|
139
|
+
width: 100%;
|
|
140
|
+
border-radius: 0;
|
|
141
|
+
opacity: 1;
|
|
142
|
+
pointer-events: auto;
|
|
143
|
+
margin-top: 0;
|
|
144
|
+
.ltr({
|
|
145
|
+
left: 0;
|
|
146
|
+
margin-left: 0;
|
|
147
|
+
});
|
|
148
|
+
.rtl({
|
|
149
|
+
right: 0;
|
|
150
|
+
margin-right: 0;
|
|
151
|
+
});
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|