Files
advanced-camera-card/src/scss/editor.scss
T
Dermot Duffy cc376a8be1 feat: Rename the card to advanced-camera-card (#1873)
Whilst the Frigate support in this card is the best among camera
engines, the name incorrectly suggests that Frigate is a requirement.
Instead, to broaden the appeal, change to more camera agnostic name.
This does not suggest any change in priority, role or support for
Frigate.

This change is likely to be bug prone, due to the size of the rename --
the code contains 1500+ references to "Frigate" most of which make sense
to rename, some which do not, all of which needed human assessment.

- Closes #1298


BREAKING CHANGE: References to `frigate-card` in all kinds of
configuration need to be updated to `advanced-camera-card`. An automated
config upgrade should take care of the majority of usecases (click `Edit
-> Upgrade -> Save`), though may not be perfect.
2025-02-06 19:32:32 -08:00

113 lines
2.0 KiB
SCSS

@use './button.scss';
.option {
padding: 4px 4px;
cursor: pointer;
}
.option.option-overrides .title {
color: var(--warning-color);
}
.row {
display: flex;
margin-bottom: -14px;
pointer-events: none;
}
.title {
padding-left: 16px;
margin-top: -6px;
pointer-events: none;
}
.title.warning {
color: var(--warning-color);
}
.secondary {
padding-left: 40px;
color: var(--secondary-text-color);
pointer-events: none;
}
.values {
background: var(--secondary-background-color);
display: grid;
}
// Space submenus from the next top-level options.
.values + .option,
.submenu + .option {
margin-top: 10px;
}
div.upgrade {
width: auto;
border: 1px dotted var(--primary-color);
margin: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
div.upgrade span {
padding: 10px;
}
.submenu-header {
display: flex;
padding: 10px;
cursor: pointer;
}
.submenu.selected > .submenu-header {
background-color: var(--primary-color);
color: var(--primary-text-color);
}
.submenu-header * {
flex-basis: auto;
// Only allow clicks on the header.
pointer-events: none;
}
.submenu-header .new-camera {
font-style: italic;
}
.submenu:not(.selected) > .submenu-header .new-camera {
color: var(--secondary-text-color, 'black');
}
.submenu-header advanced-camera-card-icon {
margin-right: 15px;
}
.submenu.selected {
border: 1px solid var(--primary-color);
}
// Nested menus should shrink width.
.submenu {
width: calc(100% - 10px * 2);
margin-left: auto;
margin-right: auto;
margin-bottom: 10px;
}
// Add a margin above a submenu unless it's another submenu.
.submenu:first-child,
:not(.submenu) + .submenu {
margin-top: 10px;
}
.submenu .controls {
display: inline-block;
margin-left: auto;
margin-right: 0px;
margin-bottom: 5px;
}
.submenu .controls ha-icon-button {
--mdc-icon-button-size: 32px;
--mdc-icon-size: calc(var(--mdc-icon-button-size) / 2);
}
span.info {
padding: 10px;
}
ha-selector {
padding: 10px;
border: 1px solid var(--divider-color);
}