Skip to content

Commit b86e583

Browse files
authored
Merge pull request #1606 from UI-Lovelace-Minimalist/release
Sync release with main
2 parents 7a22e0c + 66fdbdc commit b86e583

File tree

4 files changed

+13
-17
lines changed

4 files changed

+13
-17
lines changed

custom_components/ui_lovelace_minimalist/lovelace/themefiles/minimalist-ios-tapbar/minimalist-ios-tapbar.yaml

+5-7
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,6 @@ minimalist-ios-tapbar:
3939
a.menu-link[target="_blank"], ha-button-menu, ha-menu-button, [main-title] {
4040
display: none !important;
4141
}
42-
div#view{
43-
transform: initial;
44-
padding: 0 !important;
45-
margin: 0 !important;
46-
width: 100%;
47-
padding-bottom: var(--header-height) !important;
48-
}
4942
.header {
5043
top: auto !important;
5144
bottom: 0px !important;
@@ -58,7 +51,12 @@ minimalist-ios-tapbar:
5851
background: var( --ha-card-background, var(--card-background-color) );
5952
}
6053
#view {
54+
transform: initial;
55+
padding: 0 !important;
56+
margin: 0 !important;
57+
width: 100%;
6158
padding-top: calc(-1 * var(--header-height)) !important;
59+
padding-bottom: var(--header-height) !important;
6260
}
6361
ha-tabs {
6462
--paper-tabs-selection-bar-color: var(--header-tab-indicator-color) !important;

custom_components/ui_lovelace_minimalist/lovelace/themefiles/minimalist-mobile-tapbar/minimalist-mobile-tapbar.yaml

+5-7
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,6 @@ minimalist-mobile-tapbar:
3333
width: 97%;
3434
}
3535
.: |
36-
div#view{
37-
transform: initial;
38-
padding: 0 !important;
39-
margin: 0 !important;
40-
width: 100%;
41-
padding-bottom: var(--header-height) !important;
42-
}
4336
.header {
4437
top: auto !important;
4538
bottom: 0px !important;
@@ -51,7 +44,12 @@ minimalist-mobile-tapbar:
5144
padding-bottom: env(safe-area-inset-bottom) !important;
5245
}
5346
#view {
47+
transform: initial;
48+
padding: 0 !important;
49+
margin: 0 !important;
50+
width: 100%;
5451
padding-top: calc(-1 * var(--header-height)) !important;
52+
padding-bottom: var(--header-height) !important;
5553
}
5654
ha-tabs {
5755
--paper-tabs-selection-bar-color: var(--header-tab-indicator-color);

custom_components/ui_lovelace_minimalist/lovelace/ulm_templates/actions/actions_card.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ ulm_actions_card:
5959
]]]
6060
data: >
6161
[[[
62-
if (variables.ulm_card_tap_action == 'adaptive'){
62+
if (variables.ulm_card_tap_action == 'adaptive')
6363
return {'option': variables.ulm_input_select_option };
6464
else if (variables.ulm_card_tap_service_data !== undefined)
6565
return variables.ulm_card_tap_service_data;

custom_components/ui_lovelace_minimalist/lovelace/ulm_templates/card_templates/cards/card_room.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -209,14 +209,14 @@ widget_icon_room:
209209
navigation_path: "[[[ return variables.tap_action.navigation_path; ]]]"
210210
url_path: "[[[ return variables.tap_action.url_path; ]]]"
211211
perform_action: "[[[ return variables.tap_action.service; ]]]"
212-
target: "[[[ return variables.tap_action.service_data; ]]]"
212+
data: "[[[ return variables.tap_action.service_data; ]]]"
213213
hold_action:
214214
action: "[[[ return variables?.hold_action?.action ? variables.hold_action.action : 'none'; ]]]"
215215
entity: "[[[ return variables.hold_action.entity; ]]]"
216216
navigation_path: "[[[ return variables.hold_action.navigation_path; ]]]"
217217
url_path: "[[[ return variables.hold_action.url_path; ]]]"
218218
perform_action: "[[[ return variables.hold_action.service; ]]]"
219-
target: "[[[ return variables.hold_action.service_data; ]]]"
219+
data: "[[[ return variables.hold_action.service_data; ]]]"
220220
size: "15px"
221221
color: "var(--google-grey)"
222222
show_icon: true

0 commit comments

Comments
 (0)