-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
56 lines (48 loc) · 1.37 KB
/
demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!--
@license
Copyright (c) 2014 Lenses Project Authors. All rights reserved.
This code may only be used under the MIT license found at http://lenses.github.io/LICENSE.txt
The complete set of authors may be found at http://lenses.github.io//AUTHORS.txt
The complete set of contributors may be found at http://lenses.github.io/CONTRIBUTORS.txt
-->
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>Lens Composer Demo</title>
<script src="../webcomponentsjs/webcomponents.js"></script>
<link rel="import" href="lens-composer.html">
<link rel="import" href="../lens-node/lens-node.html">
</head>
<style type="text/css">
body {
font-family: 'proxima-nova', sans-serif;
color: #5E5E5E;
margin: 0;
}
/*** Overriding Handsontable default styles ***/
.htContextMenu { /* entire menu */
position: fixed;
top: -20px;
left:50px;
height: auto;
}
.htBorders { /* these are not displaying correctly */
display: none;
}
.wtSpreader { /* area of menu options */
background-color: rgba(252,252,252,0.9);
padding: 3px;
}
.wtSpreader tr { /* menu item */
cursor: pointer;
position: relative;
}
.wtSpreader tr:hover {
background-color: #eee;
}
</style>
<body>
<lens-composer></lens-composer>
</body>
</html>