User:Winkio/common.css: Difference between revisions

From C# Gamedev Wiki
No edit summary
No edit summary
Line 1: Line 1:
/* default vector theme */
:root {
:root {
--theme-body-bg: #f8f9fa;
--theme-body-bg: #f8f9fa;
Line 12: Line 13:
     }
     }
.vector-feature-zebra-design-disabled .vector-dropdown .vector-dropdown-content {
/*.vector-feature-zebra-design-disabled .vector-dropdown .vector-dropdown-content {
background: var(--theme-dropdown-bg);
background: var(--theme-dropdown-bg);
}
}*/
}
 
/* light vector theme */
:root {
--theme-body-bg: #131;
--theme-body-color: #202122;
--theme-dropdown-bg: #151;
}
}

Revision as of 18:33, 10 June 2024

/* default vector theme */
:root {
	--theme-body-bg: #f8f9fa;
	--theme-body-color: #202122;
	
	--theme-dropdown-bg: #151;
}

@media screen {
	.vector-feature-zebra-design-disabled body {
	   background: var(--theme-body-bg);
	   color: var(--theme-body-color);
    }
	
	/*.vector-feature-zebra-design-disabled .vector-dropdown .vector-dropdown-content {
		background: var(--theme-dropdown-bg);
	}*/
}

/* light vector theme */
:root {
	--theme-body-bg: #131;
	--theme-body-color: #202122;
	
	--theme-dropdown-bg: #151;
}