Use hardcoded color for LESS mixin function

Bug: T359944
Bug: T357740
Change-Id: I4847fe4013760a6159d9c51241acf8eca1cda95e
This commit is contained in:
Jon Robson 2024-03-14 08:50:11 -07:00 committed by Jdlrobson
parent 6655137149
commit 40b705600c

View file

@ -44,10 +44,12 @@
min-width: 10px;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-left: 1px solid mix( #000, @color-progressive, 20% );
// equivalent to @color-progressive. Hardcoded until T357740 is fixed.
border-left: 1px solid mix( #000, #36c, 20% );
&:hover {
border-bottom: 1px solid mix( #000, @color-progressive, 20% );
// equivalent to @color-progressive. Hardcoded until T357740 is fixed.
border-bottom: 1px solid mix( #000, #36c, 20% );
}
}