native implementation for interrogator

This commit is contained in:
Vladimir Mandic
2023-11-04 10:53:38 -04:00
parent 426729aa6f
commit 418279ff7b
15 changed files with 294 additions and 59 deletions
-7
View File
@@ -238,13 +238,6 @@ svg.feather.feather-image, .feather .feather-image { display: none }
--radius-md: 0;
--radius-xl: 0;
--radius-xxl: 0;
--text-xxs: 9px;
--text-xs: 10px;
--text-sm: 12px;
--text-md: 14px;
--text-lg: 16px;
--text-xl: 22px;
--text-xxl: 26px;
--font: 'Source Sans Pro', 'ui-sans-serif', 'system-ui', sans-serif;
--font-mono: 'IBM Plex Mono', 'ui-monospace', 'Consolas', monospace;
--body-text-size: var(--text-md);
-7
View File
@@ -38,9 +38,6 @@
--spacing-xxl: 6px;
--line-sm: 1.2em;
--line-md: 1.4em;
--text-sm: 12px;
--text-md: 14px;
--text-lg: 15px;
}
html { font-size: var(--font-size); }
@@ -253,10 +250,6 @@ svg.feather.feather-image, .feather .feather-image { display: none }
--radius-md: 0;
--radius-xl: 0;
--radius-xxl: 0;
--text-xxs: 9px;
--text-xs: 10px;
--text-xl: 22px;
--text-xxl: 26px;
--body-text-size: var(--text-md);
--body-text-weight: 400;
--embed-radius: var(--radius-lg);
-7
View File
@@ -33,9 +33,6 @@
--radius-lg: 4px;
--line-sm: 1.2em;
--line-md: 1.4em;
--text-sm: 12px;
--text-md: 14px;
--text-lg: 15px;
}
html { font-size: var(--font-size); font-family: var(--font); }
@@ -246,10 +243,6 @@ textarea[rows="1"] { height: 33px !important; width: 99% !important; padding: 8p
--radius-md: 0;
--radius-xl: 0;
--radius-xxl: 0;
--text-xxs: 9px;
--text-xs: 10px;
--text-xl: 22px;
--text-xxl: 26px;
--body-text-size: var(--text-md);
--body-text-weight: 400;
--embed-radius: var(--radius-lg);
-7
View File
@@ -234,13 +234,6 @@ button.selected {background: var(--button-primary-background-fill);}
--radius-md: 0;
--radius-xl: 0;
--radius-xxl: 0;
--text-xxs: 9px;
--text-xs: 10px;
--text-sm: 12px;
--text-md: 14px;
--text-lg: 16px;
--text-xl: 22px;
--text-xxl: 26px;
--body-text-size: var(--text-md);
--body-text-weight: 400;
--embed-radius: var(--radius-lg);
-7
View File
@@ -33,9 +33,6 @@
--radius-lg: 4px;
--line-sm: 1.2em;
--line-md: 1.4em;
--text-sm: 12px;
--text-md: 14px;
--text-lg: 15px;
}
html { font-size: var(--font-size); }
@@ -309,8 +306,4 @@ svg.feather.feather-image, .feather .feather-image { display: none }
--table-odd-background-fill: #333333;
--table-radius: var(--radius-lg);
--table-row-focus: var(--color-accent-soft);
--text-lg: 16px;
--text-xs: 10px;
--text-xxl: 26px;
--text-xxs: 9px;
}
-7
View File
@@ -239,13 +239,6 @@ svg.feather.feather-image, .feather .feather-image { display: none }
--radius-md: 0;
--radius-xl: 0;
--radius-xxl: 0;
--text-xxs: 9px;
--text-xs: 10px;
--text-sm: 12px;
--text-md: 14px;
--text-lg: 16px;
--text-xl: 22px;
--text-xxl: 26px;
--body-text-size: var(--text-md);
--body-text-weight: 400;
--embed-radius: var(--radius-lg);
+10
View File
@@ -263,3 +263,13 @@ table.settings-value-table td { padding: 0.4em; border: 1px solid #ccc; max-widt
@keyframes move { from { background-position-x: 0, -40px; } to { background-position-x: 0, 40px; } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes color { from { filter: hue-rotate(0deg) } to { filter: hue-rotate(360deg) } }
:root, .light, .dark {
--text-xxs: 9px;
--text-xs: 10px;
--text-sm: 12px;
--text-md: 14px;
--text-lg: 16px;
--text-xl: 18px;
--text-xxl: 20px;
}