forked from fin-hypergrid/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fin-hypergrid-constants.html
47 lines (38 loc) · 1.21 KB
/
fin-hypergrid-constants.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
<!--
The `fin-hypergrid-constants` element is a custom Polymer web component used to support the openfin [fin-hypergrid](http://github.com/openfin/fin-hypergrid) component.
@group OpenFin hypergrid
@element fin-hypergrid-constants
@homepage http://github.com/openfin/fin-hypergrid
-->
<polymer-element name="fin-hypergrid-constants">
<template></template>
<script>
'use strict';
(function() {
var values = {
defaultFont: '13px Tahoma, Geneva, sans-serif',
foregroundColor: '#010126',
backgroundColor: '#FFFFFF',
foregroundSelColor: '#010126',
backgroundSelColor: '#B7DBFF',
fixedColBGColor: '#DFE3E8',
fixedRowBGColor: '#DFE3E8',
fixedColFGSelColor: '#010126',
fixedRowFGSelColor: '#010126',
fixedColBGSelColor: '#FFDC61',
fixedRowBGSelColor: '#FFDC61',
lineColor: '#C7C7C7',
fixedRowAlign: 'center',
fixedColAlign: 'center',
cellPadding: 5,
rowHeight: 20,
colWidth: 100,
topLeftHeaderBGColor: '#DFE3E8',
repaintIntervalRate: 15
};
Polymer({ /* jshint ignore:line */
values: values
});
})(); /* jshint ignore:line */
</script>
</polymer-element>