Compare commits

..

No commits in common. "5caf9180d1674a355230a63b76d4099a68dff080" and "769b43ce07ea7328360ec8ddcb39bf631499737f" have entirely different histories.

View File

@ -141,6 +141,26 @@ div#mastodon p{
color: var(--background-dark-color) !important; color: var(--background-dark-color) !important;
} }
/* Dark Mode Adjustments (Background and Text Colors) */
@media (prefers-color-scheme: dark) {
h1, h2 {
color: #ffffff !important;
text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.3);
}
body {
background-color: var(--background-dark-color) !important;
color: var(--text-color) !important;
}
input, textarea, select {
color: var(--button-text-color) !important;
background-color: var(--background-dark-color) !important;
}
div#mastodon p{
color: var(--button-text-color) !important;
}
}
/* Dropdown Menu and Submenu (Background, Text, and Shadow) */ /* Dropdown Menu and Submenu (Background, Text, and Shadow) */
.navbar .dropdown-menu, .navbar .dropdown-menu,
.nav-item .dropdown-menu { .nav-item .dropdown-menu {
@ -165,25 +185,6 @@ button.icon-button {
color: var(--button-text-color) !important; color: var(--button-text-color) !important;
} }
/* Dark Mode Adjustments (Background and Text Colors) */
@media (prefers-color-scheme: dark) {
h1, h2 {
color: #ffffff !important;
text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.3);
}
body {
background-color: var(--background-dark-color) !important;
color: var(--text-color) !important;
}
input, textarea, select {
color: var(--button-text-color) !important;
background-color: var(--background-dark-color) !important;
}
div#mastodon p{
color: var(--button-text-color) !important;
}
}
/** Nextcloud specific **/ /** Nextcloud specific **/
button.files-list__row-name-link, button.button-vue{ button.files-list__row-name-link, button.button-vue{
background-color: transparent !important; background-color: transparent !important;
@ -192,19 +193,4 @@ button.files-list__row-name-link, button.button-vue{
/* Peertube specific configuration */ /* Peertube specific configuration */
.peertube-container button { .peertube-container button {
background-color: transparent !important; background-color: transparent !important;
} }
/** Taiga specific configuration **/
section.main.kanban{
background-color: transparent !important;
}
div.master, div.kanban-header, div.kanban-table-inner, section.kanban button,a.dropdown-project-list-projects{
background-color: var(--info-color) !important;
color: var(--background-dark-color) !important;
}
section.kanban h1, section.kanban h2{
color: var(--background-dark-color) !important;
}