File tree Expand file tree Collapse file tree 1 file changed +17
-4
lines changed
lib/matplotlib/backends/web_static Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change 1
1
< html >
2
- < head >
3
- < script src ="/static/mpl.js "> </ script >
2
+ < head >
4
3
< link rel ="stylesheet " href ="/static/css/page.css " type ="text/css ">
5
4
< link rel ="stylesheet " href ="/static/css/boilerplate.css " type ="text/css " />
6
5
< link rel ="stylesheet " href ="/static/css/fbm.css " type ="text/css " />
7
6
< link rel ="stylesheet " href ="/static/jquery/css/themes/base/jquery-ui.min.css " >
8
7
< script src ="/static/jquery/js/jquery-1.7.1.min.js "> </ script >
9
8
< script src ="/static/jquery/js/jquery-ui.min.js "> </ script >
9
+ < script src ="/static/mpl.js "> </ script >
10
+ < script >
11
+ $ ( function ( ) {
12
+ // Hover states on the static widgets
13
+ $ ( ".ui-button" ) . hover (
14
+ function ( ) {
15
+ $ ( this ) . addClass ( "ui-state-hover" ) ;
16
+ } ,
17
+ function ( ) {
18
+ $ ( this ) . removeClass ( "ui-state-hover" ) ;
19
+ }
20
+ ) ;
21
+ } ) ;
22
+ </ script >
10
23
</ head >
11
24
< body
12
25
onkeydown ="key_event(event, 'key_press') "
13
26
onkeyup ="key_event(event, 'key_release') ">
14
- < div style ="margin-left: auto ; margin-right: auto ; width: 800px; ">
27
+ < div id =" mpl-div " style ="margin-left: auto ; margin-right: auto ; width: 800px; ">
15
28
< div id ="mpl-warnings " class ="mpl-warnings ">
16
29
</ div >
17
30
41
54
< button id ="{{ name }} "
42
55
onclick ="toolbar_button_onclick('{{ method }}'); "
43
56
role ="button "
44
- style =" margin-top: 0px; "
57
+ aria-disabled =" false "
45
58
class ="ui-button ui-widget ui-state-default ui-corner-all ui-button-icon-only ">
46
59
< span class ="ui-button-icon-primary ui-icon {{ image }} ui-corner-all "> </ span >
47
60
< span class ="ui-button-text "> {{ tooltip }}</ span >
You can’t perform that action at this time.
0 commit comments