Fix delete button styling in hui-edit-view (#4102)

This commit is contained in:
Bram Kragten 2019-10-22 21:17:55 +02:00 committed by GitHub
parent 7b5201599d
commit d4d6b7e2ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -301,9 +301,9 @@ export class HuiEditView extends LitElement {
height: 14px; height: 14px;
margin-right: 20px; margin-right: 20px;
} }
paper-icon-button.delete { .delete {
margin-right: auto; margin-right: auto;
color: var(--secondary-text-color); --mdc-theme-primary: var(--secondary-text-color);
} }
paper-spinner { paper-spinner {
display: none; display: none;
@ -315,8 +315,8 @@ export class HuiEditView extends LitElement {
display: none; display: none;
} }
.error { .error {
color: #ef5350; color: var(--error-color);
border-bottom: 1px solid #ef5350; border-bottom: 1px solid var(--error-color);
} }
</style> </style>
`, `,