fix: iframe theming

This commit is contained in:
SethBurkart123
2024-01-26 14:24:03 +11:00
parent 5e01611d7c
commit c11444a66f
5 changed files with 101 additions and 98 deletions
+86 -76
View File
@@ -15,89 +15,99 @@
* along with EvenBetterSEQTA. If not, see <https://www.gnu.org/licenses/>.
*/
html, p, div, span {
color: white !important;
text-shadow: 1px 1px 2px #161616, 0 0 1em #161616;
body {
background: transparent;
}
body {
background-color: transparent !important;
}
.dark {
p,
div,
span {
color: white !important;
text-shadow: 1px 1px 2px #161616, 0 0 1em #161616;
}
blockquote.forward > .preamble {
color: rgba(255, 255, 255, 0.7) !important;
> .date > .value, blockquote.forward > .preamble > .sender > .value {
body {
background-color: transparent !important;
}
blockquote.forward > .preamble {
color: rgba(255, 255, 255, 0.7) !important;
> p,
div,
span {
background: transparent !important;
}
> .date > .value,
blockquote.forward > .preamble > .sender > .value {
color: rgba(255, 255, 255, 0.7) !important;
}
> .date > .label,
blockquote.forward > .preamble > .sender > .label {
color: rgba(255, 255, 255, 0.7) !important;
}
}
[bgcolor="#ffffff"] > * {
color: black !important;
text-shadow: none !important;
}
table th {
background-color: #161616;
}
::-webkit-scrollbar {
width: 10px;
height: 10px;
transition: 1s;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
border-radius: 10rem !important;
}
::-webkit-scrollbar-corner {
background: none;
}
.forward {
border-radius: 1rem;
}
.preamble {
border-top-left-radius: 1rem;
border-top-right-radius: 1rem;
}
blockquote.forward > .preamble {
color: rgba(255, 255, 255, 0.7) !important;
}
> .date > .label, blockquote.forward > .preamble > .sender > .label {
blockquote.forward > .preamble > .date > .value,
blockquote.forward > .preamble > .sender > .value {
color: rgba(255, 255, 255, 0.7) !important;
}
blockquote.forward > .preamble > .date > .label,
blockquote.forward > .preamble > .sender > .label {
color: rgba(255, 255, 255, 0.7) !important;
}
}
[bgcolor="#ffffff"] {
color: black;
}
#backgroundTable > * {
background-color: #161616;
border: none;
}
table th {
background-color: #161616;
}
::-webkit-scrollbar {
width: 10px;
height: 10px;
transition: 1s;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
border-radius: 10rem !important;
}
::-webkit-scrollbar-corner {
background: none;
}
.forward {
border-radius: 1rem;
}
.preamble {
border-top-left-radius: 1rem;
border-top-right-radius: 1rem;
}
html, p, div, span {
color: white !important;
background-color: #232323
}
body {
background-color: #232323;
}
blockquote.forward > .preamble {
color: rgba(255, 255, 255, 0.7) !important;
}
blockquote.forward > .preamble > .date > .value,
blockquote.forward > .preamble > .sender > .value {
color: rgba(255, 255, 255, 0.7) !important;
}
blockquote.forward > .preamble > .date > .label,
blockquote.forward > .preamble > .sender > .label {
color: rgba(255, 255, 255, 0.7) !important;
}
#backgroundTable > * {
background-color: #161616;
border: none;
}
.userHTML>div>a:not(.resource) {
color: #06b4fc;
text-decoration: underline;
transition: text-shadow 0.5s;
.userHTML > div > a:not(.resource) {
color: #06b4fc;
text-decoration: underline;
transition: text-shadow 0.5s;
}
}