Arty
Well-known member
I have the following property in style:
When viewed in admin control panel, it shows border-color in extra block instead of assigning color values to border block.
That wouldn't be a big issue, except that in other templates I use shortcut for that border:
Parser changes it to
where border-color is missing.
Code:
@property "primaryContent";
background-color: @contentBackground;
padding: 9px;
border: 1px solid @primaryLightest;
border-radius: 0;
border-color: rgba(255, 255, 255, .8) rgba(192, 192, 192, .3) rgba(192, 192, 192, .3) rgba(255, 255, 255, .8);
box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.2);
@property "/primaryContent";
That wouldn't be a big issue, except that in other templates I use shortcut for that border:
Code:
{xen:property primaryContent.border}
Code:
@property "primaryContent.border";
border: 1px solid @primaryLightest;
border-radius: 0;
@property "/primaryContent.border";