User:Winkio/common.css: Difference between revisions

From C# Gamedev Wiki
No edit summary
No edit summary
Line 21: Line 21:
background: var(--theme-dropdown-bg);
background: var(--theme-dropdown-bg);
}
}
}
.cdx-button:enabled, .cdx-button.cdx-button--fake-button--enabled {
color: var(--theme-body-color);
}
}



Revision as of 18:45, 10 June 2024

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

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

.cdx-button:enabled, .cdx-button.cdx-button--fake-button--enabled {
	color: var(--theme-body-color);
}

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