-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathprism-th.html
More file actions
42 lines (36 loc) · 1.13 KB
/
prism-th.html
File metadata and controls
42 lines (36 loc) · 1.13 KB
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
<link rel="import" href="../polymer/polymer.html" />
<dom-module id="prism-th">
<template>
<style>
:host {
display: var(--prism-table-cell-display, table-cell);
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
text-align: left;
vertical-align: top;
border-top: 0;
padding: var(--prism-table-cell-padding);
border-bottom: var(--prism-table-cell-border-bottom);
}
</style>
<slot></slot>
</template>
<script>
'use strict';
/**
* Header cell of `<prism-table>`
*
* @memberof Prhythm
* @element prism-th
* @customElement
* @polymer
*/
class PrismTableHeadCell extends Polymer.Element {
static get is() {
return 'prism-th'
}
}
customElements.define(PrismTableHeadCell.is, PrismTableHeadCell);
</script>
</dom-module>