Skip to content

Commit

Permalink
more dark styling, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
mart2070 committed May 2, 2024
1 parent e59b166 commit 52c00aa
Showing 1 changed file with 55 additions and 2 deletions.
57 changes: 55 additions & 2 deletions tdx-enhanced.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name tdx-enhanced
// @namespace ecn
// @version 2024-05-01-05
// @version 2024-05-02-01
// @description enhanced tdx coloring & formatting. follows system color scheme.
// @author Purdue IT - it@purdue.edu
// @match https://service.purdue.edu/TDNext/*
Expand Down Expand Up @@ -628,7 +628,7 @@
color: var(--dark-txt-2);
}
.popover {
.popover, .list-group-item {
background-color: var(--dark-bg-2);
}
Expand All @@ -651,6 +651,39 @@
color: var(--dark-txt-2);
}
.ui-widget-content, .ui-widget.ui-widget-content {
background: var(--dark-bg-1);
color: var(--dark-txt-2);
}
.ui-widget-header, .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
background: var(--dark-bg-2);
color: var(--dark-txt-2);
}
.ui-datepicker-calendar {
color: var(--dark-txt-2);
}
.input-group-addon {
background: var(--dark-bg-2);
color: var(--dark-txt-2);
}
.lu_tdac-auto, .lu_tdac-auto ul {
background-color: var(--dark-bg-2) !important;
color: var(--dark-txt-2);
}
.lu_tdac-auto ul li div.talu_subcaption {
color: var(--dark-txt-2);
}
.lu_tdac-auto ul .auto-focus {
background-color: var(--dark-bg-3) !important;
color: var(--dark-txt-2);
}
/* Replies */
#ttDescription, .feed-item-text {
color: #000;
Expand Down Expand Up @@ -905,6 +938,26 @@
border: 1px solid var(--dark-border-0);
}
.list-group-item {
border: 1px solid var(--dark-border-0);
}
.ui-widget-content, .ui-widget.ui-widget-content {
border: 1px solid var(--dark-border-0);
}
.ui-widget-header, .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
border: 1px solid var(--dark-border-0);
}
.input-group-addon {
border: 1px solid var(--dark-border-0);
}
.lu_tdac-auto, .lu_tdac-auto ul {
border: 1px solid var(--dark-border-0);
}
}
`)
})();

0 comments on commit 52c00aa

Please sign in to comment.