-
Notifications
You must be signed in to change notification settings - Fork 65
/
default-styles.html
56 lines (48 loc) · 1.19 KB
/
default-styles.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
<style is="custom-style">
:root {
--iron-data-table: {
font: 400 100%/1.5 Roboto, sans-serif;
font-size: 13px;
font-weight: 400;
line-height: 1.1;
color: rgba(0, 0, 0, 0.87);
};
--iron-data-table-header: {
background-color: #fafafa;
color: rgba(0, 0, 0, 0.54);
font-size: 12px;
font-weight: 600;
height: 56px;
};
--iron-data-table-row: {
border-bottom: 1px solid #e3e3e3;
};
--iron-data-table-row-hover: {
background-color: #eee;
};
--iron-data-table-row-selected: {
color: var(--default-primary-color, #03A9FA);
};
--iron-data-table-row-after: {
background-color: var(--default-primary-color, #03A9F4);
bottom: 0;
content: "";
height: 2px;
left: 0;
pointer-events: none;
position: absolute;
right: 0;
transition: all 0.16s ease-in-out;
-webkit-transform: scaleX(0.0);
transform: scaleX(0.0);
z-index: 1;
};
--iron-data-table-row-focused: {
background-color: #eee;
};
--iron-data-table-row-focused-after: {
-webkit-transform: scaleX(1.0);
transform: scaleX(1.0);
};
}
</style>