forked from Clooos/Home-Assistant-Mobile-First
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lovelace.yaml
6407 lines (6290 loc) · 213 KB
/
lovelace.yaml
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
title: ''
views:
- theme: noctis
icon: ''
path: default_view
title: HOME
visible:
- user: a27a825440914ad7a919367c2e53793e
- user: e2a141ef12bd46559fda002013e88714
- user: aadd52d881af46bca495e279bee867bf
- user: 10a78a75e63f4c5ba22a81742f59b925
type: sidebar
badges: []
cards:
- type: custom:mini-graph-card
entities:
- entity: sensor.temperature_interieure
color: var(--accent-color)
hours_to_show: 24
hour24: true
animate: true
update_interval: 30
aggregate_func: avg
line_width: 1
bar_spacing: 10
height: 70
group: true
show:
labels: false
fill: false
state: false
name: false
icon: false
style: |
ha-card {
box-shadow: none;
background: none;
border-radius: 0;
margin-bottom: -90px;
opacity: 0.3;
margin-left: -0.6em;
margin-right: -0.6em;
}
- type: custom:paper-buttons-row
styles:
justify-content: space-between
background: none
margin: 34px 20px 8px
buttons:
- name: '{{ now().strftime(''%H'') }}:{{ now().strftime(''%M'')}}'
styles:
name:
font-weight: 300
font-size: 40px
letter-spacing: '-1px'
margin-left: 2px
position: relative
left: '-10px'
button:
pointer-events: none
- layout: name_state
name: '{{ states(''sensor.jour_fr'') }}'
state: '{{ states(''sensor.date_fr'') }}'
styles:
button:
width: 200px
height: 32px
pointer-events: none
position: relative
name:
position: absolute
left: '-10px'
top: 0
font-weight: 400
white-space: nowrap
state:
position: absolute
left: '-10px'
bottom: 0
font-weight: 600
white-space: nowrap
- name: '{{ state_attr(''weather.openweathermap'',''temperature'') }}°C'
icon: mdi:thermometer
layout: icon|name
styles:
name:
font-size: 18px
margin-left: '-2px'
button:
pointer-events: none
- name: '{{ states(''sensor.temperature_interieure'') }}°C'
icon: mdi:home-thermometer
layout: icon|name
styles:
name:
font-size: 18px
margin-left: 2px
button:
pointer-events: none
margin-right: '-6px'
- type: entities
entities:
- type: custom:paper-buttons-row
buttons:
- entity: input_boolean.mode_silencieux
layout: icon
name: Silence
style:
button:
width: 42px
height: 42px
background-color: >-
var( --ha-card-background, var(--card-background-color,
white) );
border-radius: 100%
icon:
margin-top: 0
name:
margin-top: 20px
- layout: icon
icon: mdi:window-shutter
name: Volets
tap_action:
action: navigate
navigation_path: /lovelace/volets
style:
button:
width: 42px
height: 42px
background-color: >-
var( --ha-card-background, var(--card-background-color,
white) );
border-radius: 100%
icon:
margin-top: 0
name:
margin-top: 20px
- layout: icon
icon: mdi:cart-outline
name: Liste
tap_action:
action: navigate
navigation_path: /lovelace/liste
style:
button:
width: 42px
height: 42px
icon:
margin-top: 0
name:
margin-top: 20px
- icon: mdi:video
layout: icon
name: Sécurité
tap_action:
action: navigate
navigation_path: /lovelace/securite
style:
button:
width: 42px
height: 42px
icon:
margin-top: 0
name:
margin-top: 20px
- layout: icon
icon: mdi:cog
name: Réglages
tap_action:
action: navigate
navigation_path: /lovelace/reglages
style:
button:
width: 42px
height: 42px
icon:
margin-top: 0
name:
margin-top: 20px
style: |
div.flex-box {
display: flex;
justify-content: space-between;
align-items: center;
margin: -16px !important;
}
style: |
ha-card {
background: none !important;
margin: 15px 20px;
border-radius: 26px;
}
ha-card:before {
content: '';
display: block;
background: var( --ha-card-background, var(--card-background-color, white) );
position: absolute;
right: 0;
width: 76%;
height: 54px;
border-radius: 26px;
}
- type: conditional
conditions:
- entity: binary_sensor.sonnette_motion
state: 'on'
card:
type: custom:vertical-stack-in-card
cards:
- type: custom:frigate-card
cameras:
- camera_entity: camera.sonnette_pir
live_provider: frigate-jsmpeg
title: Entrée
menu:
buttons:
frigate:
enabled: false
style: none
style: |
ha-card {
margin: 15px 20px;
overflow: hidden !important;
border-radius: 24px !important;
}
- type: custom:vertical-stack-in-card
cards:
- type: horizontal-stack
cards:
- type: grid
square: true
columns: 2
cards:
- type: custom:vertical-stack-in-card
cards:
- type: custom:weather-card
entity: weather.maison_2
icons: /local/icons/weather_icons/animated/
number_of_forecasts: '3'
current: false
details: false
style: |
ha-card {
#margin: 12% 0 2% !important;
background: rgba(0,0,0,0);
box-shadow: none;
padding: 0 !important;
font-size: 12px;
}
div.precipitation {
display: none;
}
div.precipitation_probability {
display: none;
}
i.icon {
transform: scale(0.17);
transform-origin: 0 19.5%;
margin-left: -1.4em !important;
position: absolute;
top: -18px;
#right: 0;
padding: 0;
#background-size: 75% !important;
height: 240% !important;
width: 240% !important;
}
.dayname:after {
content:'';
height: 3.4em;
width: 3.5em;
display: block;
margin-top: -20px;
}
.dayname {
margin-top: -6px
}
div.day {
border-right: 0.06em solid rgb(26,137,245,0.3);
}
div.lowTemp {
margin-top: -10px;
}
forecast: true
hourly_forecast: false
- type: custom:atomic-calendar-revive
entities:
- entity: calendar.calendrier_google
name: My Calendar
color: white
max_results: 12
icon: mdi:calendar
- entity: calendar.personnel
name: Personnel
color: white
icon: mdi:calendar
- entity: calendar.jours_feries_en_belgique
name: Jours fériés en belgique
color: white
icon: mdi:party-popper
- entity: calendar.geraldine_et_quentin
name: Géraldine et quentin
color: white
icon: mdi:calendar
firstDayOfWeek: 1
refreshInterval: 60
style: |
ha-card {
width: 100%;
padding: 10px 14% 0 0 !important;
position: absolute;
bottom: 6%;
background: none !important;
}
ha-card > div > table > tbody > tr.daywrap {
border-top: none;
}
ha-card > div > table > tbody {
padding: 0px !important;
}
ha-card > div > table {
margin-top: -10px !important;
animation: scroll 15s ease infinite;
}
ha-card > div > table > tbody > tr > td {
padding-bottom: 20px !important;
padding-top: 2px !important;
}
ha-card > div {
padding-top: 0.3em !important;
margin: 0 !important;
}
div.event-main {
width: 100% !important;
#white-space: nowrap !important;
#overflow: visible !important;
text-overflow: ellipsis !important;
height: 3em !important;
}
ha-card > div > table > tbody {
font-size: 13px;
line-height: 18px;
}
div.relativeTime {
display: none;
}
@keyframes scroll {
0% { opacity: 0; transform: translateY(0); }
3% { opacity: 1; transform: translateY(0); }
20% { opacity: 1; transform: translateY(0); }
23% { opacity: 0; transform: translateY(0); }
26% { transform: translateY(calc(-25%)); opacity: 0;}
29% { transform: translateY(calc(-25%)); opacity: 1;}
46% { transform: translateY(calc(-25%)); opacity: 1;}
49% { transform: translateY(calc(-25%)); opacity: 0;}
52% { transform: translateY(calc(-50%)); opacity: 0;}
55% { transform: translateY(calc(-50%)); opacity: 1;}
72% { transform: translateY(calc(-50%)); opacity: 1;}
75% { transform: translateY(calc(-50%)); opacity: 0;}
78% { transform: translateY(calc(-75%)); opacity: 0;}
81% { transform: translateY(calc(-75%)); opacity: 1;}
97% { transform: translateY(calc(-75%)); opacity: 1;}
100% { transform: translateY(calc(-75%)); opacity: 0;}
}
showDate: false
hideDuplicates: false
hideFinishedEvents: true
showCurrentEventLine: false
showProgressBar: false
showMonth: true
showWeekDay: false
showDescription: false
disableEventLink: true
showFullDayProgress: false
showEventIcon: false
showHiddenText: false
showCalendarName: false
showWeekNumber: false
calShowDescription: false
showLastCalendarWeek: false
dimFinishedEvents: true
disableCalLink: true
disableCalLocationLink: true
disableCalEventLink: truemaxEventCount
noEventsForNextDaysText: Aucun événement dans les prochains jours
showLoader: false
maxEventCount: 4
cardHeight: 70px
maxDaysToShow: 90
style: |
ha-card {
box-shadow: none;
height: 100% !important;
padding: 12% 7%;
}
- type: custom:vertical-stack-in-card
cards:
- type: conditional
conditions:
- entity: media_player.musique
state: 'off'
card:
type: custom:paper-buttons-row
buttons:
- entity: switch.deezer
icon: mdi:music
layout: icon_name
name: Flow Deezer
state_styles:
'off':
button:
position: absolute;
top: 50%;
border-radius: 100%;
width: 42px
height: 42px
margin-top: '-46px'
filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.2))
background: >-
var( --ha-card-background,
var(--card-background-color, white) );
background-size: 140% 70%
background-repeat: no-repeat
background-position: 50% 100%
background-color: '#3e4c69'
icon:
margin-top: 44px
name:
margin-top: 20px
width: 100px
'on':
button:
display: none;
- type: conditional
conditions:
- entity: media_player.musique
state_not: 'off'
card:
type: custom:mini-media-player
volume_stateless: true
name: Salon
group: false
volume_step: '3'
entity: media_player.musique
sound_mode: full
artwork: full-cover
toggle_power: false
source: icon
hide:
name: true
source: true
style: >
ha-card {
height: 100% !important;
width: 100% !important;
position: absolute !important;
}
.flex {
display: block;
{% if not is_state('media_player.musique','off') %}
filter: drop-shadow(0px 2px 2px rgba(0,0,0,1));
{% else %}
{% endif %}
}
ha-card.--has-artwork .cover{
opacity: 0.9;
}
.entity__info__media {
opacity: 1 !important;
padding-right: 16px;
overflow: hidden;
height: 4.4em;
height: 100%;
}
ha-card > div.mmp-player > div.mmp-player__core.flex
> div.entity__icon {
{% if not is_state('media_player.musique','off') %}
display: none;
{% endif %}
} ha-card > div.mmp-player >
div.mmp-player__core.flex { }
mmp-media-controls {
{% if not is_state('media_player.musique','off') %}
filter: drop-shadow(0px 2px 2px rgba(0,0,0,1));
flex-wrap: wrap-reverse !important;
{% endif %}
} mmp-powerstrip {
} ha-card > div.mmp-player {
padding: 12px !important;
{% if not is_state('media_player.musique','off') %}
{% else %}
#display: none !important;
{% endif %}
} ha-card > div.mmp-player {
{% if is_state_attr('media_player.salon','media_content_id', 'Bluetooth') %}
position: relative;
height: 20vh;
{% else %}
position: absolute;
align-self: flex-start;
height: 100%;
{% endif %}
background: radial-gradient(circle, rgba(255,255,255,0) 10%, rgba(0,0,0,0.6) 100%) !important;
font-size: 0.9em !important;
} ha-card > div.mmp-player > div.mmp-player__adds {
position: absolute;
bottom: 14px;
padding: 0 16px 0 0;
} div.flex.mmp-media-controls__media {
margin-bottom: -5px !important;
}
style: |
ha-card {
height: 100% !important;
width: 100% !important;
}
style: |
ha-card {
margin: 14px 20px !important;
background: none;
}
.type-custom-vertical-stack-in-card {
overflow: visible !important;
}
- type: custom:vertical-stack-in-card
cards:
- type: custom:slider-button-card
entity: light.piece_principale
slider:
direction: left-right
background: gradient
use_state_color: true
use_percentage_bg_opacity: true
show_track: false
toggle_on_click: false
force_square: false
show_name: true
show_state: false
compact: true
icon:
show: true
use_state_color: false
tap_action:
action: more-info
icon: mdi:home-lightbulb
action_button:
show: false
style: |
:host {
font-weight: 600;
}
div.icon {
margin: 4px;
font-size: 10px;
}
- type: custom:paper-buttons-row
styles:
position: absolute;
top: 0;
right: 0;
buttons:
- icon: mdi:plus
tap_action:
action: navigate
navigation_path: /lovelace/piece_principale
styles:
icon:
'--mdc-icon-size': 34px
margin: 1px
style: |
ha-card {
margin: 14px 20px !important;
background: none;
border-radius: 26px;
}
- type: custom:vertical-stack-in-card
cards:
- type: custom:slider-button-card
entity: light.cuisine
slider:
direction: left-right
background: gradient
use_state_color: true
use_percentage_bg_opacity: true
show_track: false
toggle_on_click: false
force_square: false
show_name: true
show_state: false
compact: true
icon:
show: true
use_state_color: false
tap_action:
action: more-info
icon: mdi:fridge
action_button:
mode: toggle
icon: mdi:power
show: false
show_spinner: true
tap_action:
action: toggle
style: |
:host {
font-weight: 600;
}
div.icon {
margin: 4px;
font-size: 10px;
}
- type: custom:paper-buttons-row
styles:
position: absolute;
top: 0;
right: 0;
buttons:
- icon: mdi:plus
tap_action:
action: navigate
navigation_path: /lovelace/cuisine
styles:
icon:
'--mdc-icon-size': 34px
margin: 1px
style: |
ha-card {
margin: 14px 20px !important;
background: none;
box-shadow: none;
border-radius: 26px;
}
ha-card:before {
content: '';
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
outline-right: 10px solid blue !important;
box-shadow: inset -1px 0px 0px 0px var(--ha-card-background) !important;
z-index: 1;
pointer-events: none;
border-radius: 26px;
}
- type: custom:vertical-stack-in-card
cards:
- type: custom:slider-button-card
entity: light.salon
slider:
direction: left-right
background: gradient
use_state_color: true
use_percentage_bg_opacity: true
show_track: false
toggle_on_click: false
force_square: false
show_name: true
show_state: false
compact: true
icon:
show: true
use_state_color: false
tap_action:
action: more-info
icon: mdi:sofa
action_button:
mode: toggle
icon: mdi:power
show: false
show_spinner: true
tap_action:
action: toggle
style: |
:host {
font-weight: 600;
}
div.icon {
margin: 4px;
font-size: 10px;
}
- type: custom:paper-buttons-row
styles:
position: absolute;
top: 0;
right: 0;
buttons:
- icon: mdi:plus
tap_action:
action: navigate
navigation_path: /lovelace/salon
styles:
icon:
'--mdc-icon-size': 34px
margin: 1px
style: |
ha-card {
margin: 14px 20px !important;
background: none;
box-shadow: none;
border-radius: 26px;
}
ha-card:before {
content: '';
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
outline-right: 10px solid blue !important;
box-shadow: inset -1px 0px 0px 0px var(--ha-card-background) !important;
z-index: 1;
pointer-events: none;
border-radius: 26px;
}
- type: custom:vertical-stack-in-card
cards:
- type: custom:slider-button-card
entity: light.salle_a_manger
slider:
direction: left-right
background: gradient
use_state_color: true
use_percentage_bg_opacity: true
show_track: false
toggle_on_click: false
force_square: false
show_name: true
show_state: false
compact: true
icon:
show: true
use_state_color: false
tap_action:
action: more-info
icon: mdi:silverware-fork-knife
action_button:
mode: toggle
icon: mdi:power
show: false
show_spinner: true
tap_action:
action: toggle
style: |
:host {
font-weight: 600;
}
div.icon {
margin: 4px;
font-size: 10px;
}
- type: custom:paper-buttons-row
styles:
position: absolute;
top: 0;
right: 0;
buttons:
- icon: mdi:plus
tap_action:
action: navigate
navigation_path: /lovelace/salle_a_manger
styles:
icon:
'--mdc-icon-size': 34px
margin: 1px
style: |
ha-card {
margin: 14px 20px !important;
background: none;
box-shadow: none;
border-radius: 26px;
}
ha-card:before {
content: '';
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
outline-right: 10px solid blue !important;
box-shadow: inset -1px 0px 0px 0px var(--ha-card-background) !important;
z-index: 1;
pointer-events: none;
border-radius: 26px;
}
- type: custom:vertical-stack-in-card
cards:
- type: custom:slider-button-card
entity: light.chambre
slider:
direction: left-right
background: gradient
use_state_color: true
use_percentage_bg_opacity: true
show_track: false
toggle_on_click: false
force_square: false
show_name: true
show_state: false
compact: true
icon:
show: true
use_state_color: false
tap_action:
action: more-info
icon: mdi:bed
action_button:
mode: toggle
icon: mdi:power
show: false
show_spinner: true
tap_action:
action: toggle
style: |
:host {
font-weight: 600;
}
div.icon {
margin: 4px;
font-size: 10px;
}
- type: custom:paper-buttons-row
styles:
position: absolute;
top: 0;
right: 0;
buttons:
- icon: mdi:plus
tap_action:
action: navigate
navigation_path: /lovelace/chambre
styles:
icon:
'--mdc-icon-size': 34px
margin: 1px
style: |
ha-card {
margin: 14px 20px !important;
background: none;
box-shadow: none;
border-radius: 26px;
}
ha-card:before {
content: '';
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
outline-right: 10px solid blue !important;
box-shadow: inset -1px 0px 0px 0px var(--ha-card-background) !important;
z-index: 1;
pointer-events: none;
border-radius: 26px;
}
- type: custom:vertical-stack-in-card
cards:
- type: horizontal-stack
cards:
- type: grid
square: true
columns: 2
cards:
- type: entities
show_header_toggle: false
style: |
* {
padding: 0px;
}
h1.card-header {
padding: 10px;
margin-top: -4px
}
#states {
padding: 10px;
}
ha-card {
{% if is_state('vacuum.aspirateur_rez_de_chaussee','cleaning') %}
background: radial-gradient(at bottom, rgba(255,255,255, 0.26) 0%, rgba(43,55,78,0) 70%);
background-size: 140% 70%;
background-repeat: no-repeat;
background-position: 50% 100%;
background-color: #3e4c69;
transition: background 1.5s, background-position 2s, background-color 1.5s;
transition-delay: 0.6s;
{% else %}
transition: background 1.5s;
transition-delay: 0.2s;
background-color: var( --ha-card-background, var(--card-background-color, white) );
background-size: 140% 70%;
background-position: 50% 360%;
{% endif %}
}
entities:
- entity: vacuum.aspirateur_rez_de_chaussee
state_color: false
name:
style: |
hui-generic-entity-row {
margin-bottom: 14px;
margin-top: -2px;
padding-right: 0.6em;
}
hui-generic-entity-row > div {
width: max-content !important;
}
- type: section
label: Aspirateur
style: |
div.divider {
display: none;
}
div.label {
margin-top: -12px;
margin-bottom: 10px;
font-size: 17px;
font-weight: 600
}
- type: section
label: Rez-de-chaussée
style: |
div.divider {
display: none;
}
div.label {
margin-top: -8px;
margin-bottom: 10px;
font-size: 17px;
font-weight: 300
}
- entity: vacuum.aspirateur_rez_de_chaussee
type: custom:multiple-entity-row
icon: mdi:battery
attribute: battery_level
name: Battery
unit: '%'
style:
hui-generic-entity-row$: |
div {
display: none !important;
}
.: |
hui-generic-entity-row {
position: absolute !important;
top: -14px !important;
margin-left: -7px !important;
transform: scale(0.9, 0.9);
}
footer:
type: custom:paper-buttons-row
styles:
justify-content: space-between;
padding: 8px;
width: auto;
margin-top: '-6px;'
margin-bottom: 0px;
filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.5));
buttons:
- name: false
icon: mdi:play
tap_action:
action: call-service
service: vacuum.start
target: