|
1 | 1 | .sepiaFW-cards-flexSize-container { |
2 | | - background: rgba(0, 0, 0, 0.10); |
| 2 | + background: #e5e5e5; /*rgba(0, 0, 0, 0.10);*/ |
3 | 3 | position: relative; |
4 | 4 | margin: 5px 0px; |
5 | 5 | border-radius: 3px; |
|
59 | 59 |
|
60 | 60 | /* ------ Lists ------ */ |
61 | 61 |
|
| 62 | +/* commons */ |
| 63 | +.sepiaFW-list-drag-dummy { |
| 64 | + position: fixed; |
| 65 | + pointer-events: none; |
| 66 | + background: rgba(125, 125, 125, 0.5); |
| 67 | + margin: 0; |
| 68 | + padding: 0; |
| 69 | + z-index: 999; |
| 70 | +} |
| 71 | +.sepiaFW-list-hover-over { |
| 72 | + opacity: 0.5; |
| 73 | +} |
| 74 | + |
62 | 75 | /* header */ |
63 | 76 | .sepiaFW-cards-list-title { |
64 | 77 | display: flex; |
| 78 | + flex-wrap: wrap; |
65 | 79 | justify-content: space-between; |
66 | 80 | position: relative; |
67 | 81 | /*background: rgba(205, 235, 205, 0.90);*/ |
68 | 82 | background: rgba(235, 235, 255, 0.95); |
69 | 83 | /*color: #fff;*/ |
70 | 84 | /*border-radius: 3px 3px 0 0;*/ |
| 85 | + border-radius: 3px; |
71 | 86 | margin: 0px 5px 0px 5px; |
72 | 87 | width: calc(100% - 10px); |
73 | 88 | min-height: 38px; |
74 | | - padding: 1px; |
| 89 | + padding-top: 1px; |
75 | 90 | text-align: center; |
76 | 91 | font-weight: bold; |
77 | 92 | line-height: 27px; |
78 | 93 | } |
79 | | -.sepiaFW-cards-list-title span { |
| 94 | +.sepiaFW-cards-list-title > span { |
80 | 95 | /*position: absolute; |
81 | 96 | left: 50%; |
82 | 97 | top: 50%; |
83 | 98 | transform: translate(-50%, -50%);*/ |
84 | | - display: inline-block; |
| 99 | + display: flex; |
| 100 | + align-items: center; |
85 | 101 | flex: 0 1 auto; |
| 102 | + height: 37px; |
86 | 103 | order: 2; |
87 | | - padding-top: 3px; |
| 104 | + padding-top: 0px; |
88 | 105 | } |
89 | 106 | .sepiaFW-cards-list-title button { |
90 | 107 | flex: 0 1 auto; |
|
93 | 110 | padding: 4px 12px !important; |
94 | 111 | } |
95 | 112 | .sepiaFW-cards-list-contextMenu { |
96 | | - position: absolute; |
97 | | - top: 39px; |
98 | | - right: 0px; |
| 113 | + /*position: absolute; |
| 114 | + top: 38px; |
| 115 | + right: 0px;*/ |
99 | 116 | line-height: 17px; |
100 | 117 | font-size: 13px; |
101 | 118 | display: none; |
| 119 | + width: 100%; |
| 120 | + order: 4; |
| 121 | +} |
| 122 | +.sepiaFW-cards-list-contextMenu > ul { |
| 123 | + display: flex; |
| 124 | + flex-wrap: wrap; |
| 125 | + justify-content: space-between; |
102 | 126 | } |
103 | | -.sepiaFW-cards-list-contextMenu li:first-of-type{ |
| 127 | +.sepiaFW-cards-list-contextMenu li { |
| 128 | + padding: 2px 6px; |
| 129 | + display: flex; |
| 130 | + justify-content: center; |
| 131 | + align-items: center; |
| 132 | +} |
| 133 | +/*.sepiaFW-cards-list-contextMenu li:first-of-type{ |
104 | 134 | margin-top: 0px; |
105 | 135 | } |
106 | 136 | .sepiaFW-cards-list-contextMenu li:last-of-type{ |
107 | 137 | margin-bottom: 0px; |
108 | | -} |
| 138 | +}*/ |
109 | 139 | .sepiaFW-cards-list-saveBtn { |
110 | 140 | /*float: left;*/ |
111 | 141 | opacity: 0.10; |
|
134 | 164 | .sepiaFW-cards-list-body { |
135 | 165 | margin: 0px; |
136 | 166 | padding: 0px; |
137 | | - min-height: 5px; |
| 167 | + min-height: 25px; |
138 | 168 | padding-bottom: 5px; |
139 | 169 | } |
140 | 170 | .sepiaFW-cards-list-body .listElement { |
141 | 171 | display: flex; |
142 | | - min-height: 33px; |
| 172 | + min-height: 34px; |
| 173 | + padding-top: 3px; |
| 174 | +} |
| 175 | +.sepiaFW-cards-list-body .listElement:first-child { |
| 176 | + margin-top: 2px; |
| 177 | +} |
| 178 | +.sepiaFW-cards-list-body .listElement.draggable-toggle { |
| 179 | + opacity: 0.6; |
| 180 | +} |
| 181 | +.sepiaFW-cards-list-body .listElement.dragging { |
| 182 | + opacity: 0.2; |
| 183 | +} |
| 184 | +.sepiaFW-cards-list-body .listElement.new-position { |
| 185 | + animation: list-pulse .500s 1; |
| 186 | +} |
| 187 | +@keyframes list-pulse { |
| 188 | + 0% { opacity: 0.2; } |
| 189 | + 33% { opacity: 0.05; } |
| 190 | + 100% { opacity: 1.0; } |
143 | 191 | } |
144 | 192 | .sepiaFW-cards-list-body .listElement div { |
145 | 193 | background: rgba(255, 255, 255, 0.90); |
|
149 | 197 | min-height: 20px; |
150 | 198 | } |
151 | 199 | .sepiaFW-cards-list-body .listElement .listLeft { |
152 | | - width: 50px; |
153 | | - margin: 5px 0px 0px 5px; |
| 200 | + display: flex; |
| 201 | + align-items: center; |
| 202 | + justify-content: center; |
| 203 | + width: 44px; |
| 204 | + /*border-right: 3px solid #e5e5e5;*/ |
| 205 | + margin: 0px 3px 0px 5px; |
154 | 206 | user-select: none; |
| 207 | + cursor: pointer; |
155 | 208 | } |
156 | 209 | .sepiaFW-cards-list-body .listElement .listCenter { |
157 | | - width: calc(100% - 120px); |
158 | | - margin: 5px 5px 0px 5px; |
159 | | - padding: 5px; |
| 210 | + display: flex; |
| 211 | + align-items: center; |
| 212 | + justify-content: left; |
| 213 | + width: calc(100% - 101px); |
| 214 | + margin: 0px 0px 0px 0px; |
| 215 | + padding: 5px 8px; |
160 | 216 | } |
161 | 217 | .sepiaFW-cards-list-body .listElement .listRight { |
162 | | - width: 50px; |
163 | | - margin: 5px 5px 0px 0px; |
| 218 | + display: flex; |
| 219 | + align-items: center; |
| 220 | + justify-content: center; |
| 221 | + width: 44px; |
| 222 | + /*border-left: 2px solid #545454;*/ |
| 223 | + /*background: #bcbebe;*/ |
| 224 | + border-left: 0px solid #fff; |
| 225 | + background: #d2d2dd; |
| 226 | + color: #fff; |
| 227 | + margin: 0px 5px 0px 3px; |
164 | 228 | user-select: none; |
165 | 229 | } |
166 | | -.sepiaFW-notouch-device .sepiaFW-cards-list-body .listElement .listRight:hover { background: rgba(255, 0, 0, 0.50); } |
| 230 | +.sepiaFW-notouch-device .sepiaFW-cards-list-body .listElement .listRight:hover { |
| 231 | + background: rgba(255, 0, 0, 0.50); |
| 232 | +} |
167 | 233 |
|
168 | 234 | .sepiaFW-cards-list-body .listElement .checked { |
169 | | - background: rgba(0, 255, 0, 0.50); |
| 235 | + background: rgba(0, 255, 0, 0.50); /*#72f272 - rgba(114, 242, 114, 0.75)*/ |
170 | 236 | } |
171 | | -.sepiaFW-notouch-device .sepiaFW-cards-list-body .listElement .checked:hover { background: rgba(0, 255, 255, 0.50); } |
172 | | - |
173 | | -.sepiaFW-cards-list-body .listElement .unchecked { |
| 237 | +.sepiaFW-cards-list-body .listElement .inProgress { |
| 238 | + background: rgba(242, 242, 114, 0.75); /*#f2f272*/ |
| 239 | +} |
| 240 | +/*.sepiaFW-cards-list-body .listElement .unchecked { |
174 | 241 | background: rgba(255, 255, 255, 0.90); |
| 242 | +}*/ |
| 243 | +/*.sepiaFW-notouch-device .sepiaFW-cards-list-body .listElement .unchecked:hover { |
| 244 | + background: rgba(0, 255, 0, 0.50); |
175 | 245 | } |
176 | | -.sepiaFW-notouch-device .sepiaFW-cards-list-body .listElement .unchecked:hover { background: rgba(0, 255, 0, 0.50); } |
| 246 | +.sepiaFW-notouch-device .sepiaFW-cards-list-body .listElement .checked:hover { |
| 247 | + background: rgba(0, 255, 255, 0.50); |
| 248 | +}*/ |
177 | 249 |
|
178 | 250 | /* hidden and visible */ |
179 | 251 | .sepiaFW-cards-list-body .itemHidden { |
|
188 | 260 | .sepiaFW-cards-list-footer { |
189 | 261 | display: inline-block; |
190 | 262 | /*background: rgba(235, 235, 255, 0.33);*/ |
191 | | - background: rgba(170, 170, 180, 0.33); |
| 263 | + /*background: rgba(170, 170, 180, 0.33);*/ |
| 264 | + /*background: #d2d2dd;*/ |
| 265 | + background: #eff1ff; |
| 266 | + border-radius: 3px; |
192 | 267 | margin: 0px 5px 5px 5px; |
193 | 268 | text-align: center; |
194 | 269 | padding: 5px; |
|
226 | 301 | align-items: center; |
227 | 302 | justify-content: center; |
228 | 303 | width: calc(100% - 120px); |
| 304 | + min-height: 38px; |
229 | 305 | margin: 5px 5px 0px 5px; |
230 | 306 | padding: 5px; |
| 307 | + font-weight: bold; |
231 | 308 | } |
232 | 309 | .sepiaFW-cards-list-body .radioStation .radioRight { |
233 | 310 | display: flex; |
|
304 | 381 | cursor: pointer; |
305 | 382 | padding: 5px; |
306 | 383 | } |
307 | | -.sepiaFW-notouch-device .sepiaFW-cards-list-body .timeEvent .timeEventRight:hover { background: rgba(255, 0, 0, 0.50); } |
| 384 | +.sepiaFW-notouch-device .sepiaFW-cards-list-body .timeEvent .timeEventRight:hover { background: rgba(255, 0, 0, 0.50); } |
308 | 385 |
|
309 | 386 | /* ---- News ---- */ |
310 | 387 |
|
311 | 388 | .sepiaFW-cards-list-title.newsHeader { |
312 | | - background: rgba(255, 255, 255, 0.95); |
313 | | - color: #000; |
| 389 | + background: rgba(255, 255, 255, 0.90); |
| 390 | + border-radius: 0; |
| 391 | + font-weight: normal; |
314 | 392 | } |
315 | 393 | .sepiaFW-cards-list-title.newsHeader span { |
316 | 394 | padding-left: 0px; |
|
345 | 423 | padding: 0px; |
346 | 424 | font-size: 12px; |
347 | 425 | } |
| 426 | +.sepiaFW-cards-list-footer.newsFooter { |
| 427 | + border-radius: 0; |
| 428 | +} |
348 | 429 |
|
349 | 430 | /* ---- Weather ---- */ |
350 | 431 |
|
|
0 commit comments