mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-21 08:16:36 +00:00
Revert "Automation/Script editor border-radius fix (#23267)"
This reverts commit e9b2a8341142543941b0f5c366a8ab354c7d79d4.
This commit is contained in:
parent
f3705a7e1d
commit
8b17286fb6
@ -614,9 +614,6 @@ export default class HaAutomationActionRow extends LitElement {
|
|||||||
ha-icon-button {
|
ha-icon-button {
|
||||||
--mdc-theme-text-primary-on-background: var(--primary-text-color);
|
--mdc-theme-text-primary-on-background: var(--primary-text-color);
|
||||||
}
|
}
|
||||||
ha-card {
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.disabled {
|
.disabled {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
@ -649,6 +646,8 @@ export default class HaAutomationActionRow extends LitElement {
|
|||||||
.disabled-bar {
|
.disabled-bar {
|
||||||
background: var(--divider-color, #e0e0e0);
|
background: var(--divider-color, #e0e0e0);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
border-top-right-radius: var(--ha-card-border-radius);
|
||||||
|
border-top-left-radius: var(--ha-card-border-radius);
|
||||||
}
|
}
|
||||||
|
|
||||||
mwc-list-item[disabled] {
|
mwc-list-item[disabled] {
|
||||||
|
@ -504,9 +504,6 @@ export default class HaAutomationConditionRow extends LitElement {
|
|||||||
ha-button-menu {
|
ha-button-menu {
|
||||||
--mdc-theme-text-primary-on-background: var(--primary-text-color);
|
--mdc-theme-text-primary-on-background: var(--primary-text-color);
|
||||||
}
|
}
|
||||||
ha-card {
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.disabled {
|
.disabled {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
@ -539,6 +536,8 @@ export default class HaAutomationConditionRow extends LitElement {
|
|||||||
.disabled-bar {
|
.disabled-bar {
|
||||||
background: var(--divider-color, #e0e0e0);
|
background: var(--divider-color, #e0e0e0);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
border-top-right-radius: var(--ha-card-border-radius);
|
||||||
|
border-top-left-radius: var(--ha-card-border-radius);
|
||||||
}
|
}
|
||||||
ha-list-item[disabled] {
|
ha-list-item[disabled] {
|
||||||
--mdc-theme-text-primary-on-background: var(--disabled-text-color);
|
--mdc-theme-text-primary-on-background: var(--disabled-text-color);
|
||||||
@ -560,6 +559,8 @@ export default class HaAutomationConditionRow extends LitElement {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
transition: max-height 0.3s;
|
transition: max-height 0.3s;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
border-top-right-radius: var(--ha-card-border-radius, 12px);
|
||||||
|
border-top-left-radius: var(--ha-card-border-radius, 12px);
|
||||||
}
|
}
|
||||||
.testing.active {
|
.testing.active {
|
||||||
max-height: 100px;
|
max-height: 100px;
|
||||||
|
@ -651,9 +651,6 @@ export default class HaAutomationTriggerRow extends LitElement {
|
|||||||
ha-button-menu {
|
ha-button-menu {
|
||||||
--mdc-theme-text-primary-on-background: var(--primary-text-color);
|
--mdc-theme-text-primary-on-background: var(--primary-text-color);
|
||||||
}
|
}
|
||||||
ha-card {
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.disabled {
|
.disabled {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
@ -686,6 +683,8 @@ export default class HaAutomationTriggerRow extends LitElement {
|
|||||||
.disabled-bar {
|
.disabled-bar {
|
||||||
background: var(--divider-color, #e0e0e0);
|
background: var(--divider-color, #e0e0e0);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
border-top-right-radius: var(--ha-card-border-radius);
|
||||||
|
border-top-left-radius: var(--ha-card-border-radius);
|
||||||
}
|
}
|
||||||
.triggered {
|
.triggered {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@ -702,6 +701,8 @@ export default class HaAutomationTriggerRow extends LitElement {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
transition: max-height 0.3s;
|
transition: max-height 0.3s;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
border-top-right-radius: var(--ha-card-border-radius, 12px);
|
||||||
|
border-top-left-radius: var(--ha-card-border-radius, 12px);
|
||||||
}
|
}
|
||||||
.triggered.active {
|
.triggered.active {
|
||||||
max-height: 100px;
|
max-height: 100px;
|
||||||
|
@ -295,9 +295,6 @@ export default class HaScriptFieldRow extends LitElement {
|
|||||||
ha-icon-button {
|
ha-icon-button {
|
||||||
--mdc-theme-text-primary-on-background: var(--primary-text-color);
|
--mdc-theme-text-primary-on-background: var(--primary-text-color);
|
||||||
}
|
}
|
||||||
ha-card {
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.disabled {
|
.disabled {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
@ -330,6 +327,8 @@ export default class HaScriptFieldRow extends LitElement {
|
|||||||
.disabled-bar {
|
.disabled-bar {
|
||||||
background: var(--divider-color, #e0e0e0);
|
background: var(--divider-color, #e0e0e0);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
border-top-right-radius: var(--ha-card-border-radius);
|
||||||
|
border-top-left-radius: var(--ha-card-border-radius);
|
||||||
}
|
}
|
||||||
|
|
||||||
ha-list-item[disabled] {
|
ha-list-item[disabled] {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user