Update stylesheet
This commit is contained in:
parent
8b586bbd56
commit
38dbe4592c
2 changed files with 22 additions and 1 deletions
|
@ -1721,9 +1721,12 @@ a.comment-user.owner {
|
||||||
.header p {
|
.header p {
|
||||||
color: #645240 !important
|
color: #645240 !important
|
||||||
}
|
}
|
||||||
.main, .header, .navbar-gitlab {
|
.main, .header, .navbar-gitlab, .file-holder .file-content, .md {
|
||||||
background-color: inherit !important;
|
background-color: inherit !important;
|
||||||
}
|
}
|
||||||
|
.md p {
|
||||||
|
color: inherit !important;
|
||||||
|
}
|
||||||
|
|
||||||
/* youtube */
|
/* youtube */
|
||||||
ytd-masthead, #container.ytd-searchbox, #search-icon-legacy.ytd-searchbox, #guide-content.ytd-app, ytd-mini-guide-renderer, ytd-mini-guide-entry-renderer {
|
ytd-masthead, #container.ytd-searchbox, #search-icon-legacy.ytd-searchbox, #guide-content.ytd-app, ytd-mini-guide-renderer, ytd-mini-guide-entry-renderer {
|
||||||
|
@ -1776,6 +1779,22 @@ body {
|
||||||
color: inherit !important;
|
color: inherit !important;
|
||||||
box-shadow: 0px 1px 0px inherit;
|
box-shadow: 0px 1px 0px inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* digitalocean */
|
||||||
|
.tutorial-single .tutorial-content {
|
||||||
|
color: inherit !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* archlinux wiki */
|
||||||
|
#content a:not(.new) {
|
||||||
|
color: inherit !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* mpv.io */
|
||||||
|
.main-content {
|
||||||
|
background-color: inherit !important;
|
||||||
|
}
|
||||||
|
|
||||||
/* todoist */
|
/* todoist */
|
||||||
.theme_dark .task_list_item, .task_list_item,
|
.theme_dark .task_list_item, .task_list_item,
|
||||||
.theme_dark .view_header, .view_header,
|
.theme_dark .view_header, .view_header,
|
||||||
|
|
|
@ -43,8 +43,10 @@ theme() {
|
||||||
# we need to close panels that are in a mode and get them out to send keys to vim
|
# we need to close panels that are in a mode and get them out to send keys to vim
|
||||||
if [ "${l: -1}" = 1 ]; then
|
if [ "${l: -1}" = 1 ]; then
|
||||||
tmux send-keys -t "${l/:*/}" -X cancel && tmux send-keys -t "${l/:*/}" ":source $tfile" "Enter"
|
tmux send-keys -t "${l/:*/}" -X cancel && tmux send-keys -t "${l/:*/}" ":source $tfile" "Enter"
|
||||||
|
tmux send-keys -t "${l/:*/}" ":AirlineTheme base16" "Enter"
|
||||||
else
|
else
|
||||||
tmux send-keys -t "${l/:*/}" ":source $tfile" "Enter"
|
tmux send-keys -t "${l/:*/}" ":source $tfile" "Enter"
|
||||||
|
tmux send-keys -t "${l/:*/}" ":AirlineTheme base16" "Enter"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# find all panes which currently have nvim/vim running
|
# find all panes which currently have nvim/vim running
|
||||||
|
|
Loading…
Reference in a new issue