@docsector/docsector-reader 0.1.2 → 0.2.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/README.md +175 -47
- package/bin/docsector.js +408 -17
- package/package.json +18 -10
- package/quasar.config.js +4 -111
- package/src/components/DH1.vue +1 -1
- package/src/components/DH2.vue +1 -1
- package/src/components/DH3.vue +1 -1
- package/src/components/DH4.vue +1 -1
- package/src/components/DH5.vue +1 -1
- package/src/components/DH6.vue +1 -1
- package/src/components/DMenu.vue +4 -4
- package/src/components/DPage.vue +3 -3
- package/src/components/DPageAnchor.vue +1 -1
- package/src/components/QZoom.js +1 -1
- package/src/components/QZoom.sass +43 -0
- package/src/i18n/helpers.js +160 -0
- package/src/i18n/index.js +4 -117
- package/src/layouts/DefaultLayout.vue +1 -1
- package/src/quasar.factory.js +249 -0
- package/src/components/QZoom.styl +0 -43
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
$box-shadow ?= 1px 1px 7px 1px rgba(0,0,0,.2)
|
|
2
|
-
|
|
3
|
-
.q-zoom
|
|
4
|
-
position relative
|
|
5
|
-
padding 0
|
|
6
|
-
margin 0
|
|
7
|
-
|
|
8
|
-
&__zoom-in
|
|
9
|
-
cursor zoom-in
|
|
10
|
-
|
|
11
|
-
&__zoom-out
|
|
12
|
-
cursor zoom-out
|
|
13
|
-
|
|
14
|
-
&__overlay
|
|
15
|
-
position fixed
|
|
16
|
-
transition all .5s linear
|
|
17
|
-
left 0
|
|
18
|
-
top 0
|
|
19
|
-
width 100%
|
|
20
|
-
height 100%
|
|
21
|
-
background-color transparent
|
|
22
|
-
padding 0
|
|
23
|
-
margin 0
|
|
24
|
-
z-index 6000
|
|
25
|
-
|
|
26
|
-
&__content
|
|
27
|
-
position relative
|
|
28
|
-
display block
|
|
29
|
-
transition all .5s cubic-bezier(.2,0,.2,1)
|
|
30
|
-
text-align center
|
|
31
|
-
vertical-align middle
|
|
32
|
-
width 100%
|
|
33
|
-
height 0
|
|
34
|
-
max-width 100%
|
|
35
|
-
max-height 100%
|
|
36
|
-
overflow hidden
|
|
37
|
-
|
|
38
|
-
&__no-center
|
|
39
|
-
text-align unset
|
|
40
|
-
vertical-align unset
|
|
41
|
-
|
|
42
|
-
&__no-scroll
|
|
43
|
-
overflow: hidden;
|