@afeefa/vue-app 0.0.279 → 0.0.281
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.
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.281
|
package/package.json
CHANGED
@@ -6,13 +6,11 @@
|
|
6
6
|
@click="closeFloatingSidebars"
|
7
7
|
/>
|
8
8
|
|
9
|
-
<div
|
10
|
-
v-if="showDevSkin"
|
11
|
-
class="showDevSkin"
|
12
|
-
/>
|
13
|
-
|
14
9
|
<div class="main-layout">
|
15
|
-
<navigation-bar
|
10
|
+
<navigation-bar
|
11
|
+
:has="$has"
|
12
|
+
:class="{showDevSkin}"
|
13
|
+
/>
|
16
14
|
|
17
15
|
<div
|
18
16
|
id="v-main"
|
@@ -32,7 +30,7 @@
|
|
32
30
|
<sticky-footer-container />
|
33
31
|
</div>
|
34
32
|
|
35
|
-
<information-bar />
|
33
|
+
<information-bar :class="{showDevSkin}" />
|
36
34
|
</div>
|
37
35
|
|
38
36
|
<a-dialog id="app" />
|
@@ -169,11 +167,6 @@ export default class App extends Vue {
|
|
169
167
|
|
170
168
|
|
171
169
|
<style lang="scss" scoped>
|
172
|
-
.showDevSkin {
|
173
|
-
background: orange;
|
174
|
-
height: 1px;
|
175
|
-
}
|
176
|
-
|
177
170
|
.isLoading {
|
178
171
|
opacity: .6;
|
179
172
|
}
|
@@ -198,4 +191,13 @@ export default class App extends Vue {
|
|
198
191
|
left: 0;
|
199
192
|
z-index: 400;
|
200
193
|
}
|
194
|
+
|
195
|
+
.showDevSkin {
|
196
|
+
background: #EEEEEE !important;
|
197
|
+
|
198
|
+
::v-deep(.v-text-field) {
|
199
|
+
background: white;
|
200
|
+
}
|
201
|
+
}
|
202
|
+
|
201
203
|
</style>
|
@@ -18,7 +18,7 @@
|
|
18
18
|
>
|
19
19
|
<div
|
20
20
|
v-if="show_dev_skin"
|
21
|
-
class="
|
21
|
+
class="dev"
|
22
22
|
>
|
23
23
|
DEV
|
24
24
|
</div>
|
@@ -202,4 +202,24 @@ export default class NavigationBar extends Vue {
|
|
202
202
|
max-height: 80px;
|
203
203
|
max-width: 90%;
|
204
204
|
}
|
205
|
+
|
206
|
+
.dev {
|
207
|
+
color: red;
|
208
|
+
font-family: monospace;
|
209
|
+
font-weight: bold;
|
210
|
+
line-height: 1;
|
211
|
+
font-size: 1.5rem;
|
212
|
+
letter-spacing: 2px;
|
213
|
+
margin-top: -1.5rem;
|
214
|
+
margin-bottom: .3rem;
|
215
|
+
background: yellow;
|
216
|
+
padding: .1rem .2rem;
|
217
|
+
animation: blink 2s steps(2, start) infinite;
|
218
|
+
}
|
219
|
+
|
220
|
+
@keyframes blink {
|
221
|
+
to {
|
222
|
+
visibility: hidden;
|
223
|
+
}
|
224
|
+
}
|
205
225
|
</style>
|