switch us to standard css comments

This commit is contained in:
May 2023-10-19 17:14:51 +00:00
parent d7698100d1
commit 58e1cf0ef0

View file

@ -40,28 +40,28 @@ $FallbackFonts:
*/ */
:root { :root {
// Crust (topbar) /* Crust (topbar) */
--crust: rgb(30, 33, 36); // topbar color --crust: rgb(30, 33, 36); /* topbar color */
--crust-txt: #555555; // buttons --crust-txt: #555555; /* buttons */
--crust-txt-active: slategrey; // hover --crust-txt-active: slategrey; /* hover */
// Background /* Background */
--background: linear-gradient(#333,#252525); // Used for desktop. --background: linear-gradient(#333,#252525); /* Used for desktop. */
--background-readable: linear-gradient(#303030, #252525); // Used for mobile, where the uploader is backed a gradient. --background-readable: linear-gradient(#303030, #252525); /* Used for mobile, where the uploader is backed a gradient. */
// Panel (pulldown, upload panel) /* Panel (pulldown, upload panel) */
--panel-active: #252525; // Color to show on option hover --panel-active: #252525; /* Color to show on option hover */
--panel: #222222; --panel: #222222;
--subpanel: #191919; --subpanel: #191919;
// Panel banners /* Panel banners */
--panel-banner-error: #663333; --panel-banner-error: #663333;
--panel-banner-warning: #554C33; --panel-banner-warning: #554C33;
--panel-banner-success: #335544; --panel-banner-success: #335544;
--panel-banner-info: #334466; --panel-banner-info: #334466;
// Text /* Text */
--text-visible: #FFF; // Use for best possible visibility. Used in button interactives on hover. --text-visible: #FFF; /* Use for best possible visibility. Used in button interactives on hover. */
--text: #DDD; --text: #DDD;
--subtext: #999; --subtext: #999;
} }