mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
fix(toolbar): Fixes some errors tests after merges brought up (#10371)
This commit is contained in:
parent
9e1ef6f0c9
commit
01497f2bc2
7 changed files with 24 additions and 17 deletions
|
@ -123,11 +123,11 @@ export default {
|
|||
async function lint() {
|
||||
// Clear the previous audits
|
||||
if (audits.length > 0) {
|
||||
audits = [];
|
||||
audits.forEach((audit) => {
|
||||
audit.highlight?.remove();
|
||||
audit.card?.remove();
|
||||
});
|
||||
audits = [];
|
||||
hasCreatedUI = false;
|
||||
}
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ import { getAuditCategory, rulesCategories } from '../rules/index.js';
|
|||
export function createRoundedBadge(icon: Icon) {
|
||||
const badge = document.createElement('astro-dev-toolbar-badge');
|
||||
|
||||
badge.shadowRoot.innerHTML = `
|
||||
badge.shadowRoot.innerHTML += `
|
||||
<style>
|
||||
:host>div {
|
||||
padding: 12px 8px;
|
||||
|
@ -283,6 +283,7 @@ export class DevToolbarAuditListWindow extends HTMLElement {
|
|||
}
|
||||
|
||||
.no-audit-container astro-dev-toolbar-icon {
|
||||
width: auto;
|
||||
height: auto;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
|
|
@ -106,14 +106,15 @@ export class DevToolbarBadge extends HTMLElement {
|
|||
}
|
||||
|
||||
updateStyle() {
|
||||
const style = this.shadowRoot.getElementById('selected-style') as HTMLStyleElement;
|
||||
const style = this.shadowRoot.querySelector<HTMLStyleElement>('#selected-style');
|
||||
|
||||
style.innerHTML = `
|
||||
if (style) {
|
||||
style.innerHTML = `
|
||||
.badge {
|
||||
--text-color: var(--${this.badgeStyle}-text);
|
||||
--border-color: var(--${this.badgeStyle}-border);
|
||||
--size: var(--${this.size});
|
||||
}
|
||||
`;
|
||||
}`;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -129,17 +129,18 @@ export class DevToolbarButton extends HTMLElement {
|
|||
}
|
||||
|
||||
updateStyle() {
|
||||
const style = this.shadowRoot.getElementById('selected-style') as HTMLStyleElement;
|
||||
const style = this.shadowRoot.querySelector<HTMLStyleElement>('#selected-style');
|
||||
|
||||
style.innerHTML = `
|
||||
if (style) {
|
||||
style.innerHTML = `
|
||||
button {
|
||||
--background: var(--${this.buttonStyle}-background);
|
||||
--border: var(--${this.buttonStyle}-border);
|
||||
--font-size: var(--${this.size}-font-size);
|
||||
--padding: var(--${this.size}-padding);
|
||||
--text-color: var(--${this.buttonStyle}-text);
|
||||
}
|
||||
`;
|
||||
}`;
|
||||
}
|
||||
}
|
||||
|
||||
attributeChangedCallback() {
|
||||
|
|
|
@ -43,7 +43,7 @@ export class DevToolbarCard extends HTMLElement {
|
|||
}
|
||||
|
||||
updateStyle() {
|
||||
const style = this.shadowRoot.getElementById('selected-style');
|
||||
const style = this.shadowRoot.querySelector<HTMLStyleElement>('#selected-style');
|
||||
|
||||
if (style) {
|
||||
style.innerHTML = `
|
||||
|
|
|
@ -86,13 +86,15 @@ export class DevToolbarHighlight extends HTMLElement {
|
|||
}
|
||||
|
||||
updateStyle() {
|
||||
const style = this.shadowRoot.getElementById('selected-style') as HTMLStyleElement;
|
||||
style.innerHTML = `
|
||||
const style = this.shadowRoot.querySelector<HTMLStyleElement>('#selected-style');
|
||||
|
||||
if (style) {
|
||||
style.innerHTML = `
|
||||
:host {
|
||||
--background: var(--${this.highlightStyle}-background);
|
||||
--border: var(--${this.highlightStyle}-border);
|
||||
}
|
||||
`;
|
||||
}`;
|
||||
}
|
||||
}
|
||||
|
||||
attributeChangedCallback() {
|
||||
|
|
|
@ -108,14 +108,16 @@ export class DevToolbarToggle extends HTMLElement {
|
|||
}
|
||||
|
||||
updateStyle() {
|
||||
const style = this.shadowRoot.getElementById('selected-style') as HTMLStyleElement;
|
||||
style.innerHTML = `
|
||||
const style = this.shadowRoot.querySelector<HTMLStyleElement>('#selected-style');
|
||||
if (style) {
|
||||
style.innerHTML = `
|
||||
:host {
|
||||
--bg-on: var(--${this.toggleStyle}-bg-on);
|
||||
--border-off: var(--${this.toggleStyle}-border-off);
|
||||
--border-on: var(--${this.toggleStyle}-border-on);
|
||||
}
|
||||
`;
|
||||
}
|
||||
}
|
||||
|
||||
connectedCallback() {
|
||||
|
|
Loading…
Add table
Reference in a new issue