Subversion Repositories wimsdev

Rev

Rev 10963 | Rev 15332 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4897 bpr 1
/*
10963 obado 2
    Copyright 2008-2016
3
        Matthias Ehmann,
4
        Michael Gerhaeuser,
5
        Carsten Miller,
6
        Bianca Valentin,
7
        Alfred Wassermann,
8
        Peter Wilfahrt
9
 
10
    This file is part of JSXGraph.
11
 
12
    JSXGraph is free software dual licensed under the GNU LGPL or MIT License.
13
 
14
    You can redistribute it and/or modify it under the terms of the
15
 
16
      * GNU Lesser General Public License as published by
17
        the Free Software Foundation, either version 3 of the License, or
18
        (at your option) any later version
19
      OR
20
      * MIT License: https://github.com/jsxgraph/jsxgraph/blob/master/LICENSE.MIT
21
 
22
    JSXGraph is distributed in the hope that it will be useful,
23
    but WITHOUT ANY WARRANTY; without even the implied warranty of
24
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25
    GNU Lesser General Public License for more details.
26
 
27
    You should have received a copy of the GNU Lesser General Public License and
28
    the MIT License along with JSXGraph. If not, see <http://www.gnu.org/licenses/>
29
    and <http://opensource.org/licenses/MIT/>.
30
 */
31
 
4897 bpr 32
.jxgbox {
10963 obado 33
    /* for IE 7 */
34
    position: relative;
35
    overflow: hidden;
36
    background-color: #ffffff;
37
    border-style: solid;
38
    border-width: 1px;
39
    border-color: #356AA0;
40
    border-radius: 10px;
41
    -webkit-border-radius: 10px;
42
    -ms-touch-action: none;
14118 obado 43
    /* touch-action: none; */ /* Set with JavaScript */
4897 bpr 44
}
45
 
14118 obado 46
.jxgbox svg text {
47
    cursor: default;
48
    -webkit-user-select: none;
49
    -moz-user-select: none;
50
    -ms-user-select: none;
51
    user-select: none;
52
}
53
 
4897 bpr 54
.JXGtext {
14118 obado 55
    font-family: Courier, monospace;
56
    /**
57
     * The default font family is now set in
58
     * JXG.Options.text.cssdefaultstyle = 'font-family: Arial, Helvetica, Geneva, sans-serif;'
59
     */
60
    /*
61
        font-family: Arial, Helvetica, Geneva, sans-serif;
62
    */
63
 
64
    /* "background-color: transparent;" may produce artefacts in IE. Solution: setting a color explicitly. */
10963 obado 65
    background-color: transparent;
66
    padding: 0;
67
    margin: 0;
4897 bpr 68
}
69
 
10963 obado 70
.JXGinfobox {
71
    border-style: none;
72
    border-width: 1px;
73
    border-color: black;
4897 bpr 74
}
75
 
10963 obado 76
/* CSS attributes will (permantely) overwrite attributes set in JSXGraph */
77
.JXGimage {
78
    /* opacity: 1.0; */
79
}
80
 
81
.JXGimageHighlight {
82
    /* opacity: 0.6; */
83
}
84