Fix CORS and Mixed-Content issue & Bug Fixes

This fixes the following issues:
- Text selection color was incorrect
- The 'send again' button glitched on page load

This also adds some finishing touches to the proxy code (closes #199)
and that in turn resolves #175 and resolves #2

Finally, this adds the fonts to the application assets allowing
them to be cached by the service worker.
This commit is contained in:
NBTX
2019-10-20 01:57:47 +01:00
parent a73d8053b1
commit f839189121
14 changed files with 159 additions and 84 deletions

View File

@@ -1,7 +1,15 @@
$responsiveWidth: 720px;
// Make theme transition smoother.
body.afterLoad {
&, & * {
transition: background-color 0.2s ease-in-out,
border 0.2s ease-in-out;
}
}
::selection {
background-color: var(--ac-color);
background-color: var(--ac-sel-color);
color: var(--act-color);
}
@@ -577,3 +585,16 @@ input[type="radio"]:checked + label {
input[type="radio"]:checked + label + div.tab {
display: block;
}
.toasted-container .toasted {
justify-content: start !important;
}
.toasted.info {
background-color: var(--ac-color) !important;
color: var(--act-color) !important;
}
.toasted.bubble .action {
color: inherit !important;
}