User:Crashaholic/vector.css: Difference between revisions

From Baldur's Gate 3 Wiki
Jump to navigation Jump to search
(hmm)
(hmm yes)
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
/*=== GENERAL CHANGES ===*/
html body {
html body {
max-width: none;
max-width: none;
}
}
/*
 
body.theme-dark-grey .bg3wiki-tooltip-box {
/*=== LIGHT MODE SPECIFIC ===*/
background: rgb(243, 235, 205);
 
body.theme-dark-grey.theme-bg3-light .bg3wiki-tooltip-box.theme-bg3-light {
background: var(--bg-main2);
}
}


body.theme-dark-grey .bg3wiki-tooltip-gradient-common {
body.theme-dark-grey.theme-bg3-light .theme-bg3-light.bg3wiki-tooltip-gradient-common {
background: linear-gradient(to bottom,#F0E4D599,#E6DDD599,#D5C0B899,#c0b2df99);
background: linear-gradient(to bottom,#F0E4D599,#E6DDD599,#D5C0B899,#c0b2df99);
}
}


body.theme-dark-grey {
body.theme-dark-grey.theme-bg3-light{
   background: linear-gradient(rgba(223, 217, 204, 0.9) 80%,transparent);
   background: linear-gradient(var(--bg-main3) 80%, transparent);
}
}


#bg3wiki-legacy-content-notice {
body.theme-dark-grey.theme-bg3-light #bg3wiki-legacy-content-notice.theme-bg3-light {
   color: var(--bg-main3);
   color: var(--bg-main3);
} back to dark mode i go*/
}
 
body.theme-dark-grey.theme-bg3-light .bg3wiki-blockquote-text.theme-bg3-light{
  color: var(--fg-light) !important;
}
 
#mw-head .vector-menu-tabs li.selected.theme-bg3-light{
background: linear-gradient(var(--bg-main3),30%,var(--bg-main));
}
 
/*=== CODEMIRROR ===*/


form .wikiEditor-ui .CodeMirror-line {
form .wikiEditor-ui .CodeMirror-line {
Line 35: Line 48:
color: #458588 !important;
color: #458588 !important;
}
}
/*
 
form .wikiEditor-ui .cm-mw-parserfunction-bracket, form .wikiEditor-ui .cm-mw-parserfunction-name {
color: #cc241d !important;
color: #cc241d !important;
}
}
form .wikiEditor-ui .cm-mw-parserfunction-delimiter, form .wikiEditor-ui .cm-mw-table-delimiter{
color: #d5c4a1 !important;
color: #d5c4a1 !important;
}
}
*/
 
.cm-mw-link-bracket .cm-mw-link-pagename .cm-mw-section-header{
form .wikiEditor-ui .cm-mw-link-bracket, form .wikiEditor-ui .cm-mw-link-pagename, form .wikiEditor-ui .cm-mw-section-header{
color: #83a598 !important;
color: #83a598 !important;
}
}


.cm-mw-table-bracket .cm-mw-table-name {
form .wikiEditor-ui .cm-mw-table-bracket, form .wikiEditor-ui .cm-mw-table-name {
color: #d3869b !important;
color: #d3869b !important;
}
}
Line 53: Line 69:
}
}


.cm-mw-list {
form .wikiEditor-ui .cm-mw-list {
color: #98971a !important;
color: #98971a !important;
}
}


.cm-error {
form .wikiEditor-ui .cm-error {
color: #fb4934 !important;
color: #fb4934 !important;
}
}

Latest revision as of 07:07, 10 September 2023

/*=== GENERAL CHANGES ===*/
html body {
	max-width: none;
}

/*=== LIGHT MODE SPECIFIC ===*/

body.theme-dark-grey.theme-bg3-light .bg3wiki-tooltip-box.theme-bg3-light {
	background: var(--bg-main2);
}

body.theme-dark-grey.theme-bg3-light .theme-bg3-light.bg3wiki-tooltip-gradient-common {
	background: linear-gradient(to bottom,#F0E4D599,#E6DDD599,#D5C0B899,#c0b2df99);
}

body.theme-dark-grey.theme-bg3-light{
  background: linear-gradient(var(--bg-main3) 80%, transparent);
}

body.theme-dark-grey.theme-bg3-light #bg3wiki-legacy-content-notice.theme-bg3-light {
  color: var(--bg-main3);
}

body.theme-dark-grey.theme-bg3-light .bg3wiki-blockquote-text.theme-bg3-light{
  color: var(--fg-light) !important;
}

#mw-head .vector-menu-tabs li.selected.theme-bg3-light{
	background: linear-gradient(var(--bg-main3),30%,var(--bg-main));
}

/*=== CODEMIRROR ===*/

form .wikiEditor-ui .CodeMirror-line {
	color: #ebdbb2 !important;
	background-color: #282828 !important;
}

form .wikiEditor-ui .cm-mw-template-bracket, form .wikiEditor-ui .cm-mw-template-name {
	color: #fabd2f !important;
}

form .wikiEditor-ui .cm-mw-templatevariable-bracket, form .wikiEditor-ui .cm-mw-templatevariable-name {
	color: #d79921 !important;
}

form .wikiEditor-ui .cm-mw-htmltag-bracket, form .wikiEditor-ui .cm-mw-htmltag-name{
	color: #458588 !important;
}

form .wikiEditor-ui .cm-mw-parserfunction-bracket, form .wikiEditor-ui .cm-mw-parserfunction-name {
	color: #cc241d !important;
}

form .wikiEditor-ui .cm-mw-parserfunction-delimiter, form .wikiEditor-ui .cm-mw-table-delimiter{
	color: #d5c4a1 !important;
}

form .wikiEditor-ui .cm-mw-link-bracket, form .wikiEditor-ui .cm-mw-link-pagename, form .wikiEditor-ui .cm-mw-section-header{
	color: #83a598 !important;
}

form .wikiEditor-ui .cm-mw-table-bracket, form .wikiEditor-ui .cm-mw-table-name {
	color: #d3869b !important;
}

form .wikiEditor-ui .cm-mw-comment{
 	color: #d5c4a1 !important;
}

form .wikiEditor-ui .cm-mw-list {
	color: #98971a !important;
}

form .wikiEditor-ui .cm-error {
	color: #fb4934 !important;
}