-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathstyle.js
128 lines (98 loc) · 2.06 KB
/
style.js
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
import {css} from "lit";
const style = css`
.info {
padding-bottom: 1em;
}
.flex {
display: flex;
justify-content: space-between;
}
.card-content {
padding-bottom: 0;
}
.overdue {
color: var(--red, red) !important;
}
.due-today {
color: var(--orange, orange) !important;
}
.not-showing {
margin-left: 16px;
padding-bottom: 16px;
}
.primary {
display: block;
color: var(--primary-text-color, #8c96a5);
font-size: var(--paper-font-subhead_-_font-size);
}
.secondary {
display: block;
color: var(--secondary-text-color, #8c96a5);
font-size: var(--paper-font-body1_-_font-size);
}
.add-row {
margin-top: -16px;
padding-bottom: 16px;
display: flex;
flex-direction: row;
align-items: center;
width: 100%;
}
.add-input {
padding-right: 16px;
width: 100%;
}
.hide-button {
padding: 0 0 16px 16px;
}
.grocy-item-container, .grocy-item-container-no-border {
border-bottom: 1px solid var(--entities-divider-color, var(--divider-color, transparent));
padding-top: 12px;
align-items: center;
}
.grocy-item-container-no-border {
border: none;
}
.expand-button {
--mdc-ripple-color: none;
}
.track-button {
--mdc-ripple-color: none;
}
.track-checkbox {
--mdc-ripple-color: none;
}
.more-items-title {
padding: 6px 16px 6px 16px;
width: calc(100% - 32px);
margin-top: -8px;
}
.show-more-button {
width: 100%;
display: flex;
justify-content: space-between;
cursor: pointer;
font-size: var(--paper-font-subhead_-_font-size);
line-height: calc(var(--paper-font-subhead_-_font-size) + 20px);
}
.show-more-button:hover {
color: var(--accent-color)
}
.track-button-icon {
color: var(--primary-text-color);
}
.track-button-icon:hover {
color: var(--green, var(--active-color, green));
}
.card-overflow-content {
}
.hidden-class {
display: none;
}
.show-class {
}
.card-overflow-content {
margin-top: 0;
}
`;
export default style;