hyperbook 0.50.5 → 0.51.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.
File without changes
@@ -0,0 +1,237 @@
1
+ /*
2
+ Copyright 2008-2025
3
+ Matthias Ehmann,
4
+ Michael Gerhaeuser,
5
+ Carsten Miller,
6
+ Bianca Valentin,
7
+ Andreas Walter,
8
+ Alfred Wassermann,
9
+ Peter Wilfahrt
10
+
11
+ This file is part of JSXGraph.
12
+
13
+ JSXGraph is free software dual licensed under the GNU LGPL or MIT License.
14
+
15
+ You can redistribute it and/or modify it under the terms of the
16
+
17
+ * GNU Lesser General Public License as published by
18
+ the Free Software Foundation, either version 3 of the License, or
19
+ (at your option) any later version
20
+ OR
21
+ * MIT License: https://github.com/jsxgraph/jsxgraph/blob/master/LICENSE.MIT
22
+
23
+ JSXGraph is distributed in the hope that it will be useful,
24
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
25
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26
+ GNU Lesser General Public License for more details.
27
+
28
+ You should have received a copy of the GNU Lesser General Public License and
29
+ the MIT License along with JSXGraph. If not, see <https://www.gnu.org/licenses/>
30
+ and <https://opensource.org/licenses/MIT/>.
31
+ */
32
+
33
+ .jxgbox {
34
+ /* for IE 7 */
35
+ position: relative;
36
+ overflow: hidden;
37
+ background-color: #fff;
38
+ border-style: solid;
39
+ border-width: 1px;
40
+ border-color: #356aa0;
41
+ border-radius: 10px;
42
+ -webkit-border-radius: 10px;
43
+ margin: 0;
44
+ -ms-touch-action: none;
45
+ /* "touch-action: none;" is set with JavaScript. */
46
+ }
47
+
48
+ .jxgbox svg text {
49
+ cursor: default;
50
+ -webkit-user-select: none;
51
+ -moz-user-select: none;
52
+ -ms-user-select: none;
53
+ user-select: none;
54
+ }
55
+
56
+ .JXGtext {
57
+ font-family: Courier, monospace;
58
+ /*
59
+ * The default font family is now set in
60
+ * JXG.Options.text.cssdefaultstyle = 'font-family: Arial, Helvetica, Geneva, sans-serif;'
61
+ */
62
+
63
+ /* "background-color: transparent;" may produce artefacts in IE. Solution: setting a color explicitly. */
64
+ background-color: transparent;
65
+ padding: 0;
66
+ margin: 0;
67
+ }
68
+
69
+ .JXGinfobox {
70
+ border-style: none;
71
+ border-width: 0;
72
+ border-color: black;
73
+ }
74
+
75
+ /* CSS attributes will (permantely) overwrite attributes set in JSXGraph */
76
+ .JXGimage {
77
+ /* opacity: 1.0; */
78
+ }
79
+
80
+ .JXGimageHighlight {
81
+ /* opacity: 0.6; */
82
+ }
83
+
84
+ .jxgbox :focus {
85
+ outline-width: 0.5px;
86
+ outline-style: dotted;
87
+ }
88
+
89
+ /* CSS rules for the navigation bar */
90
+
91
+ .JXG_navigation {
92
+ position: absolute;
93
+ right: 5px;
94
+ bottom: 5px;
95
+
96
+ z-index: 100;
97
+
98
+ background-color: transparent;
99
+ padding: 2px;
100
+ font-size: 14px;
101
+ cursor: pointer;
102
+ }
103
+
104
+ .JXG_navigation_button {
105
+ color: #666;
106
+ }
107
+
108
+ .JXG_navigation_button_left {
109
+ }
110
+
111
+ .JXG_navigation_button_right {
112
+ }
113
+
114
+ .JXG_navigation_button_up {
115
+ }
116
+
117
+ .JXG_navigation_button_down {
118
+ }
119
+
120
+ .JXG_navigation_button_out {
121
+ }
122
+
123
+ .JXG_navigation_button_100 {
124
+ }
125
+
126
+ .JXG_navigation_button_in {
127
+ }
128
+
129
+ .JXG_navigation_button_fullscreen {
130
+ }
131
+
132
+ .JXG_navigation_button_reload {
133
+ }
134
+
135
+ .JXG_navigation_button_cleartraces {
136
+ }
137
+
138
+ .JXG_navigation_button_screenshot {
139
+ }
140
+
141
+ .JXG_navigation_button:hover {
142
+ border-radius: 2px;
143
+ background: rgba(184, 184, 184, 0.5);
144
+ }
145
+
146
+ .JXG_navigation_button svg {
147
+ top: 0.2em;
148
+ position: relative;
149
+ padding: 0;
150
+ }
151
+
152
+ /* CSS rules for the wrapping div in fullscreen mode */
153
+
154
+ .JXG_wrap_private:-moz-full-screen {
155
+ background-color: #ccc;
156
+ padding: 0;
157
+ width: 100%;
158
+ height: 100%;
159
+ }
160
+
161
+ .JXG_wrap_private:-webkit-full-screen {
162
+ background-color: #ccc;
163
+ padding: 0;
164
+ width: 100%;
165
+ height: 100%;
166
+ }
167
+
168
+ .JXG_wrap_private:fullscreen {
169
+ background-color: #ccc;
170
+ padding: 0;
171
+ width: 100%;
172
+ height: 100%;
173
+ }
174
+
175
+ .JXG_wrap_private:-ms-fullscreen {
176
+ background-color: #ccc;
177
+ padding: 0;
178
+ width: 100%;
179
+ height: 100%;
180
+ }
181
+
182
+ /* Classes forn smartlabels */
183
+
184
+ .smart-label-solid {
185
+ padding: 1px 7px 1px 7px;
186
+ margin: 0;
187
+ color: white;
188
+ border-radius: 150px;
189
+ text-align: center;
190
+ vertical-align: middle;
191
+ }
192
+
193
+ .smart-label-outline {
194
+ padding: 1px 7px 1px 7px;
195
+ margin: 0;
196
+ border: solid 2px black;
197
+ background-color: white;
198
+ color: black;
199
+ border-radius: 15px;
200
+ text-align: center;
201
+ vertical-align: middle;
202
+ }
203
+
204
+ .smart-label-pure {
205
+ padding: 20px 7px 1px 7px;
206
+ margin: 0;
207
+ border: none;
208
+ background-color: transparent;
209
+ color: black;
210
+ border-radius: 15px;
211
+ text-align: center;
212
+ vertical-align: middle;
213
+ }
214
+
215
+ .smart-label-line,
216
+ .smart-label-point {
217
+ background-color: #0072b2;
218
+ border-color: #0072b2;
219
+ }
220
+
221
+ .smart-label-point {
222
+ margin-top: 12px;
223
+ }
224
+
225
+ .smart-label-angle {
226
+ background-color: #e69f00;
227
+ border-color: #e69f00;
228
+ padding: 1px 7px 1px 7px;
229
+ }
230
+
231
+ .smart-label-polygon,
232
+ .smart-label-circle {
233
+ background-color: #f0e442;
234
+ color: black;
235
+ border-color: #f0e442;
236
+ padding: 1px 7px 1px 7px;
237
+ }