-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathvizceral-component.html
74 lines (61 loc) · 1.63 KB
/
vizceral-component.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!--
@license
Copyright (c) 2015 Netflix
-->
<link rel="import" href="../polymer/polymer.html">
<!--
An element providing a solution to no problem in particular.
Example:
<vizcercal-component foo="bar"></vizcercal-component>
@group Reboot
@element vizcercal-component
@demo index.html
-->
<dom-module id="vizceral-component">
<template>
<style>
:host {
display: block;
box-sizing: border-box;
width: 100%;
height: 100%;
}
.vizceral-notice-container {
position: absolute;
width:100%;
height: 100%;
pointer-events: none;
}
.vizceral-notice {
display: block;
position: absolute;
padding: 0 3px;
width: 200px;
background-color: black;
border-left: 2px solid grey;
font-size: 11px;
color: grey;
pointer-events: all;
}
.vizceral-notice ul {
list-style: none;
padding: 0;
margin: 0;
}
.vizceral-notice > ul > li {
line-height: 12px;
padding-top: 3px;
padding-bottom: 3px;
}
.vizceral-notice .subtitle {
font-weight: 900;
}
</style>
<div class="vizceral-notice-container">
<div class="vizceral-notice"></div>
</div>
</template>
</dom-module>
<!-- javascript for module -->
<script type="text/javascript" src="vizceral-component.js"></script>
<script type="text/javascript" class="rbt-version">window.RBT_VERSIONS = window.RBT_VERSIONS||{}; window.RBT_VERSIONS['vizceral-component']='2.0.0';</script>