Skip to content

Commit

Permalink
various changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mart2070 committed May 31, 2025
1 parent c9c1664 commit 9a234b2
Showing 1 changed file with 22 additions and 5 deletions.
27 changes: 22 additions & 5 deletions tdx-enhanced.js
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,7 @@
}

//search whole document, frames may reset when reopened
let frames = document.querySelectorAll("iframe")
let frames = document.querySelectorAll("iframe:not(.customEmbed)")
if (frames) {
[...frames].forEach(frame=>{
injectOtherStyles(frame)
Expand Down Expand Up @@ -2107,10 +2107,14 @@ body {
color: var(--txt-3);
}
p.row {
gap: 8px;
}
/* Headers */
h1, h2, h3, h4, h5 {
color: var(--txt-1)
color: var(--txt-1) !important;
}
.tdx-header-container {
Expand Down Expand Up @@ -2873,6 +2877,18 @@ div.input-group .input-group-btn .btn-file:last-child:hover, div.input-group .in
color: var(--col-100) !important;
}
a.btn.btn-primary {
background-color: var(--col-600) !important;
color: var(--txt-5) !important;
border-color: var(--col-600) !important;
}
a.btn.btn-primary:hover {
background-color: var(--col-400) !important;
color: var(--txt-5) !important;
border-color: var(--col-400) !important;
}
.btn-primary {
background-color: var(--col-600);
color: var(--txt-5);
Expand Down Expand Up @@ -3675,9 +3691,10 @@ div.select2-container.select2-allowclear .select2-choice abbr {
background-color: var(--col-200) !important;
}
.tdx-user-icon, .tdx-multiuser-icon {
background-color: var(--col-0) !important;
color: var(--txt-5) !important;
.tdx-user-icon, .tdx-multiuser-icon,
div.profile-image.red-bg, div.profile-image.green-bg, div.profile-image.red-bg, div.profile-image.blue-bg, div.profile-image.yellow-bg, div.profile-image.gray-bg, div.profile-image.initials.red-bg, div.profile-image.initials.green-bg, div.profile-image.initials.red-bg, div.profile-image.initials.blue-bg, div.profile-image.initials.yellow-bg, div.profile-image.initials.gray-bg {
background-color: var(--col-400) !important;
color: var(--col-100) !important;
}
.tdx-widget-indicator-icon {
Expand Down

0 comments on commit 9a234b2

Please sign in to comment.