-
22 May 2012 8:59 AM #1
Sass bug in _frame.scss when $radius === 10
Sass bug in _frame.scss when $radius === 10
When the $radius is === 10 the css "explodes" and miscalculates the values. in the following code line 115-124
Line 118 is currentlyCode:@function pad($radius) { $radius: boxmax($radius); $radius: parseint($radius); @if $radius > 10 { @return $radius; } @else { @return "0" + $radius; } }which causes it to evaluate as 010 instead of 10Code:@if $radius > 10 {
Line 118 should be
Code:@if $radius >= 10 {
-
23 May 2012 12:38 PM #2
Thank you for the report!
Regards,
Scott.
Success! Looks like we've fixed this one. According to our records the fix was applied for
EXTJSIV-6282
in
4.1.


Reply With Quote