@d-i-t-a/reader 2.0.0-alpha.7 → 2.0.0-beta.12
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/dist/esm/index.js +52088 -39870
- package/dist/esm/index.js.map +3 -3
- package/dist/injectables/style/linefocus.css +55 -0
- package/dist/injectables/style/popup.css +121 -0
- package/dist/injectables/style/style.css +64 -1
- package/dist/reader.css +1 -4
- package/dist/reader.js +72 -515
- package/dist/reader.js.map +3 -3
- package/dist/reader.map.css +1 -1
- package/dist/types/index.d.ts +3 -1
- package/dist/types/model/Link.d.ts +1 -1
- package/dist/types/model/Locator.d.ts +3 -18
- package/dist/types/model/Publication.d.ts +12 -12
- package/dist/types/model/user-settings/UserProperties.d.ts +3 -2
- package/dist/types/model/user-settings/UserSettings.d.ts +6 -6
- package/dist/types/modules/AnnotationModule.d.ts +30 -18
- package/dist/types/modules/BookmarkModule.d.ts +24 -13
- package/dist/types/modules/ReaderModule.d.ts +1 -2
- package/dist/types/modules/TTS/TTSModule.d.ts +10 -35
- package/dist/types/modules/TTS/TTSModule2.d.ts +73 -0
- package/dist/types/modules/TTS/TTSSettings.d.ts +41 -17
- package/dist/types/modules/highlight/LayerSettings.d.ts +19 -0
- package/dist/types/modules/highlight/TextHighlighter.d.ts +57 -57
- package/dist/types/modules/highlight/common/highlight.d.ts +54 -2
- package/dist/types/modules/highlight/common/rect-utils.d.ts +2 -2
- package/dist/types/modules/highlight/common/selection.d.ts +8 -3
- package/dist/types/modules/highlight/renderer/iframe/selection.d.ts +2 -2
- package/dist/types/modules/highlight/renderer/iframe/state.d.ts +0 -3
- package/dist/types/modules/linefocus/LineFocusModule.d.ts +45 -0
- package/dist/types/modules/mediaoverlays/MediaOverlayModule.d.ts +20 -15
- package/dist/types/modules/mediaoverlays/MediaOverlaySettings.d.ts +21 -17
- package/dist/types/modules/pagebreak/PageBreakModule.d.ts +30 -0
- package/dist/types/modules/positions/TimelineModule.d.ts +4 -4
- package/dist/types/modules/protection/ContentProtectionModule.d.ts +7 -7
- package/dist/types/modules/sampleread/SampleReadEventHandler.d.ts +1 -1
- package/dist/types/modules/search/DefinitionsModule.d.ts +52 -0
- package/dist/types/modules/search/Popup.d.ts +8 -0
- package/dist/types/modules/search/SearchModule.d.ts +17 -13
- package/dist/types/modules/search/searchWithDomSeek.d.ts +1 -1
- package/dist/types/navigator/IFrameNavigator.d.ts +72 -52
- package/dist/types/reader.d.ts +104 -49
- package/dist/types/store/Annotator.d.ts +16 -16
- package/dist/types/store/LocalAnnotator.d.ts +16 -16
- package/dist/types/store/LocalStorageStore.d.ts +3 -3
- package/dist/types/store/MemoryStore.d.ts +3 -3
- package/dist/types/store/Store.d.ts +3 -3
- package/dist/types/utils/EventHandler.d.ts +12 -0
- package/dist/types/utils/HTMLUtilities.d.ts +3 -3
- package/dist/types/utils/IconLib.d.ts +1 -0
- package/dist/types/utils/KeyboardEventHandler.d.ts +2 -2
- package/dist/types/utils/TouchEventHandler.d.ts +1 -1
- package/dist/types/views/BookView.d.ts +9 -7
- package/dist/types/views/FixedBookView.d.ts +7 -4
- package/dist/types/views/ReflowableBookView.d.ts +4 -4
- package/package.json +16 -7
- package/dist/injectables/footnotes/footnotes.css +0 -53
- package/dist/injectables/footnotes/footnotes.js +0 -1828
- package/dist/injectables/footnotes/footnotes.js.map +0 -7
- package/dist/injectables/glossary/glossary.css +0 -27
- package/dist/injectables/glossary/glossary.js +0 -2814
- package/dist/injectables/glossary/glossary.js.map +0 -7
- package/dist/injectables/pagebreak/pagebreak.css +0 -59
- package/dist/types/modules/highlight/common/styles.d.ts +0 -35
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2018-2021 DITA (AM Consulting LLC)
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*
|
|
16
|
+
* Developed on behalf of: DITA
|
|
17
|
+
* Licensed to: CAST under one or more contributor license agreements.
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
.d2-line-focus-container {
|
|
21
|
+
position: fixed;
|
|
22
|
+
height: 100vh;
|
|
23
|
+
width: 100%;
|
|
24
|
+
pointer-events: none;
|
|
25
|
+
z-index: 100;
|
|
26
|
+
top:0;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.d2-line-focus-bottom, .d2-line-focus-top {
|
|
30
|
+
position: absolute;
|
|
31
|
+
height: 0;
|
|
32
|
+
min-height: 0;
|
|
33
|
+
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjMxOTlCOUNGQTU2QzExRTc5QUZBQTQ3NkYwNjBCNUJBIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjMxOTlCOUQwQTU2QzExRTc5QUZBQTQ3NkYwNjBCNUJBIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MzE5OUI5Q0RBNTZDMTFFNzlBRkFBNDc2RjA2MEI1QkEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MzE5OUI5Q0VBNTZDMTFFNzlBRkFBNDc2RjA2MEI1QkEiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7FS0eIAAAAD0lEQVR42mJgYGC4CRBgAADeANokcoX4AAAAAElFTkSuQmCC");
|
|
34
|
+
background-repeat: repeat;
|
|
35
|
+
transition-property: height;
|
|
36
|
+
z-index: 25;
|
|
37
|
+
pointer-events: all;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.d2-line-focus-top {
|
|
41
|
+
left: 0;
|
|
42
|
+
top: 0;
|
|
43
|
+
right: 0;
|
|
44
|
+
height: 0;
|
|
45
|
+
box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .4)
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.d2-line-focus-bottom {
|
|
49
|
+
left: 0;
|
|
50
|
+
bottom: 0;
|
|
51
|
+
right: 0;
|
|
52
|
+
height: 0;
|
|
53
|
+
box-shadow: 2px 0 7px 0 rgba(0, 0, 0, .4)
|
|
54
|
+
}
|
|
55
|
+
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2018-2020 DITA (AM Consulting LLC)
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*
|
|
16
|
+
* Developed on behalf of: DITA
|
|
17
|
+
* Licensed to: CAST under one or more contributor license agreements.
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
.d2-popup {
|
|
21
|
+
position: fixed;
|
|
22
|
+
z-index: 10;
|
|
23
|
+
top: 0;
|
|
24
|
+
display: inline-block;
|
|
25
|
+
box-sizing: border-box;
|
|
26
|
+
max-width: 90%;
|
|
27
|
+
background: #fafafa;
|
|
28
|
+
opacity: 0;
|
|
29
|
+
border-radius: 0.5em;
|
|
30
|
+
border: 1px solid #c3c3c3;
|
|
31
|
+
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
|
|
32
|
+
line-height: 0;
|
|
33
|
+
-webkit-transition-property: opacity, -webkit-transform;
|
|
34
|
+
transition-property: opacity, transform;
|
|
35
|
+
-webkit-transition-duration: 0.25s;
|
|
36
|
+
transition-duration: 0.25s;
|
|
37
|
+
-webkit-transition-timing-function: ease;
|
|
38
|
+
transition-timing-function: ease;
|
|
39
|
+
left: 50%;
|
|
40
|
+
transform: translateX(-50%) !important;
|
|
41
|
+
}
|
|
42
|
+
.d2-popup.is-active {
|
|
43
|
+
-webkit-transform: scale(1) translateZ(0);
|
|
44
|
+
transform: scale(1) translateZ(0);
|
|
45
|
+
opacity: 0.97;
|
|
46
|
+
}
|
|
47
|
+
.d2-popup.is-scrollable:after {
|
|
48
|
+
content: '';
|
|
49
|
+
position: absolute;
|
|
50
|
+
bottom: 0.3375em;
|
|
51
|
+
left: 0.3375em;
|
|
52
|
+
z-index: 14;
|
|
53
|
+
display: block;
|
|
54
|
+
height: 0.78125em;
|
|
55
|
+
width: 0.625em;
|
|
56
|
+
background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTJweCIgaGVpZ2h0PSIxNXB4IiB2aWV3Qm94PSIwIDAgMTIgMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgcHJlc2VydmVBc3BlY3RSYXRpbz0ieE1pbllNaW4iPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IkFycm93IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxLjAwMDAwMCwgMS4wMDAwMDApIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJzcXVhcmUiPgogICAgICAgICAgICA8cGF0aCBkPSJNNSwwIEw1LDExLjUiIGlkPSJMaW5lIj48L3BhdGg+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0wLjUsNy41IEw1LjAyNzY5Mjc5LDEyLjAyNzY5MjgiIGlkPSJMaW5lIj48L3BhdGg+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik00LjUsNy41IEw5LjAyNzY5Mjc5LDEyLjAyNzY5MjgiIGlkPSJMaW5lLTIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDcuMDAwMDAwLCAxMC4wMDAwMDApIHNjYWxlKC0xLCAxKSB0cmFuc2xhdGUoLTcuMDAwMDAwLCAtMTAuMDAwMDAwKSAiPjwvcGF0aD4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPgo=");
|
|
57
|
+
background-size: cover;
|
|
58
|
+
opacity: 0.1;
|
|
59
|
+
transition-properties: opacity;
|
|
60
|
+
-webkit-transition-duration: 0.25s;
|
|
61
|
+
transition-duration: 0.25s;
|
|
62
|
+
-webkit-transition-timing-function: ease;
|
|
63
|
+
transition-timing-function: ease;
|
|
64
|
+
}
|
|
65
|
+
.d2-popup.is-scrollable .d2-popup__wrapper:before, .d2-popup.is-scrollable .d2-popup__wrapper:after {
|
|
66
|
+
content: '';
|
|
67
|
+
position: absolute;
|
|
68
|
+
width: 100%;
|
|
69
|
+
z-index: 12;
|
|
70
|
+
left: 0;
|
|
71
|
+
}
|
|
72
|
+
.d2-popup.is-scrollable .d2-popup__wrapper:before {
|
|
73
|
+
top: -1px;
|
|
74
|
+
height: 1.1em;
|
|
75
|
+
border-radius: 0.5em 0.5em 0 0;
|
|
76
|
+
background-image: -webkit-linear-gradient(top, #fafafa 50%, rgba(250, 250, 250, 0) 100%);
|
|
77
|
+
background-image: linear-gradient(to bottom, #fafafa 50%, rgba(250, 250, 250, 0) 100%);
|
|
78
|
+
}
|
|
79
|
+
.d2-popup.is-scrollable .d2-popup__wrapper:after {
|
|
80
|
+
bottom: -1px;
|
|
81
|
+
height: 1.2em;
|
|
82
|
+
border-radius: 0 0 0.5em 0.5em;
|
|
83
|
+
background-image: -webkit-linear-gradient(bottom, #fafafa 50%, rgba(250, 250, 250, 0) 100%);
|
|
84
|
+
background-image: linear-gradient(to top, #fafafa 50%, rgba(250, 250, 250, 0) 100%);
|
|
85
|
+
}
|
|
86
|
+
.d2-popup.is-scrollable ::-webkit-scrollbar {
|
|
87
|
+
display: none;
|
|
88
|
+
}
|
|
89
|
+
.d2-popup.is-fully-scrolled:after, .d2-popup.is-fully-scrolled:before {
|
|
90
|
+
opacity: 0;
|
|
91
|
+
-webkit-transition-delay: 0;
|
|
92
|
+
transition-delay: 0;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.d2-popup-wrapper {
|
|
96
|
+
position: relative;
|
|
97
|
+
z-index: 14;
|
|
98
|
+
width: 22em;
|
|
99
|
+
display: inline-block;
|
|
100
|
+
box-sizing: inherit;
|
|
101
|
+
overflow: hidden;
|
|
102
|
+
margin: 0;
|
|
103
|
+
background-color: #fafafa;
|
|
104
|
+
border-radius: 0.5em;
|
|
105
|
+
line-height: 0;
|
|
106
|
+
max-width: 353px;
|
|
107
|
+
}
|
|
108
|
+
.d2-popup-content {
|
|
109
|
+
position: relative;
|
|
110
|
+
z-index: 8;
|
|
111
|
+
display: inline-block;
|
|
112
|
+
max-height: 15em;
|
|
113
|
+
padding: 1.1em 1.3em 1.2em;
|
|
114
|
+
box-sizing: inherit;
|
|
115
|
+
overflow: auto;
|
|
116
|
+
-webkit-overflow-scrolling: touch;
|
|
117
|
+
background: #fafafa;
|
|
118
|
+
border-radius: 0.5em;
|
|
119
|
+
-webkit-font-smoothing: subpixel-antialiased;
|
|
120
|
+
line-height: normal;
|
|
121
|
+
}
|
|
@@ -23,6 +23,12 @@
|
|
|
23
23
|
--RS__highlightHoverColor: rgba(255, 255, 0, 0.75);
|
|
24
24
|
--RS__underlineBorderColor: rgba(255, 255, 0, 1);
|
|
25
25
|
--RS__underlineHoverColor: rgba(255, 255, 0, 0.1);
|
|
26
|
+
|
|
27
|
+
--RS__definitionsColor: rgba(255, 111, 111, 0.5);
|
|
28
|
+
--RS__definitionsMixBlendMode: multiply;
|
|
29
|
+
--RS__definitionsHoverColor: rgba(255, 111, 111, 0.75);
|
|
30
|
+
--RS__definitionsUnderlineBorderColor: rgba(255, 111, 111, 1);
|
|
31
|
+
--RS__definitionsUnderlineHoverColor: rgba(255, 111, 111, 0.1);
|
|
26
32
|
}
|
|
27
33
|
|
|
28
34
|
.R2_CLASS_HIGHLIGHT_AREA[data-marker="0"] {
|
|
@@ -34,7 +40,6 @@
|
|
|
34
40
|
.R2_CLASS_HIGHLIGHT_AREA[data-marker="0"].hover {
|
|
35
41
|
background-color: var(--RS__highlightHoverColor) !important;
|
|
36
42
|
}
|
|
37
|
-
|
|
38
43
|
.R2_CLASS_HIGHLIGHT_AREA[data-marker="1"] {
|
|
39
44
|
border-bottom: 2px solid var(--RS__underlineBorderColor);
|
|
40
45
|
mix-blend-mode: var(--RS__highlightMixBlendMode) !important;
|
|
@@ -45,6 +50,25 @@
|
|
|
45
50
|
background-color: var(--RS__underlineHoverColor) !important;
|
|
46
51
|
}
|
|
47
52
|
|
|
53
|
+
#R2_ID_DEFINITIONS_CONTAINER .R2_CLASS_HIGHLIGHT_AREA[data-marker="0"] {
|
|
54
|
+
background-color: var(--RS__definitionsColor) !important;
|
|
55
|
+
mix-blend-mode: var(--RS__definitionsMixBlendMode) !important;
|
|
56
|
+
z-index: 1;
|
|
57
|
+
}
|
|
58
|
+
#R2_ID_DEFINITIONS_CONTAINER .R2_CLASS_HIGHLIGHT_AREA[data-marker="0"]:hover,
|
|
59
|
+
#R2_ID_DEFINITIONS_CONTAINER .R2_CLASS_HIGHLIGHT_AREA[data-marker="0"].hover {
|
|
60
|
+
background-color: var(--RS__definitionsHoverColor) !important;
|
|
61
|
+
}
|
|
62
|
+
#R2_ID_DEFINITIONS_CONTAINER .R2_CLASS_HIGHLIGHT_AREA[data-marker="1"] {
|
|
63
|
+
border-bottom: 2px solid var(--RS__definitionsUnderlineBorderColor);
|
|
64
|
+
mix-blend-mode: var(--RS__definitionsMixBlendMode) !important;
|
|
65
|
+
z-index: 1;
|
|
66
|
+
}
|
|
67
|
+
#R2_ID_DEFINITIONS_CONTAINER .R2_CLASS_HIGHLIGHT_AREA[data-marker="1"]:hover,
|
|
68
|
+
#R2_ID_DEFINITIONS_CONTAINER .R2_CLASS_HIGHLIGHT_AREA[data-marker="1"].hover {
|
|
69
|
+
background-color: var(--RS__definitionsUnderlineHoverColor) !important;
|
|
70
|
+
}
|
|
71
|
+
|
|
48
72
|
:root[style] .r2-mo-active,
|
|
49
73
|
:root .r2-mo-active {
|
|
50
74
|
background-color: yellow !important;
|
|
@@ -185,3 +209,42 @@
|
|
|
185
209
|
z-index: 2;
|
|
186
210
|
position: relative;
|
|
187
211
|
}
|
|
212
|
+
|
|
213
|
+
.icon:hover .icon-tooltip {
|
|
214
|
+
display: block;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.icon-tooltip {
|
|
218
|
+
display: none;
|
|
219
|
+
position: absolute;
|
|
220
|
+
left: 50%;
|
|
221
|
+
/*top: 50%;*/
|
|
222
|
+
transform: translate(-50%, -105%);
|
|
223
|
+
background: #DADADA;
|
|
224
|
+
padding: 0.25rem 0.5rem;
|
|
225
|
+
text-overflow: ellipsis;
|
|
226
|
+
max-width: 22rem;
|
|
227
|
+
min-width: 100px;
|
|
228
|
+
font-size: small;
|
|
229
|
+
z-index: 1000;
|
|
230
|
+
border: 1px dotted #5b5852;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.icon-tooltip:before, .icon-tooltip:after {
|
|
234
|
+
content: '';
|
|
235
|
+
display: block;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.icon-tooltip:before {
|
|
239
|
+
content: " ";
|
|
240
|
+
display: block;
|
|
241
|
+
position: absolute;
|
|
242
|
+
top: 100%;
|
|
243
|
+
left: 50%;
|
|
244
|
+
width: 0;
|
|
245
|
+
height: 0;
|
|
246
|
+
border-left: 10px solid transparent;
|
|
247
|
+
border-right: 10px solid transparent;
|
|
248
|
+
border-top: 5px solid #5b5852;
|
|
249
|
+
margin-left: -10px;
|
|
250
|
+
}
|
package/dist/reader.css
CHANGED
|
@@ -144,7 +144,7 @@ a {
|
|
|
144
144
|
|
|
145
145
|
#iframe-wrapper iframe {
|
|
146
146
|
border: none;
|
|
147
|
-
overflow:
|
|
147
|
+
overflow: auto;
|
|
148
148
|
opacity: 0; }
|
|
149
149
|
|
|
150
150
|
[data-viewer-theme="day"] {
|
|
@@ -847,9 +847,6 @@ a {
|
|
|
847
847
|
.highlight-toolbox > div > button {
|
|
848
848
|
display: inline-block; }
|
|
849
849
|
|
|
850
|
-
.color-option {
|
|
851
|
-
background-color: gainsboro; }
|
|
852
|
-
|
|
853
850
|
.color-option span {
|
|
854
851
|
display: inline-block;
|
|
855
852
|
border-radius: 50%;
|