Neil E.
Active member
Poor template editing functionality. Let's look at this example from node_list.css
I want to figure out what this controls so I paste the code into EXTRA.css and change the largest margin value to 100. This should be a very visible change when doing a screen refresh.
I go back to check node_list.css and the template code has been molested! The point of EXTRA.css is that the original code stays intact, and EXTRA makes the change when the page is served out. What good is EXTRA if the template gets buggered? Might as well edit the template itself. This seems to be true of any code with the @ symbol present. The original template tab never gets highlighted to indicate that a change was made.
What is going on and how do you work around it?
.node .nodeText
{
@property "nodeText";
margin: 10px 270px 10px 56px;
@property "/nodeText";
}
I want to figure out what this controls so I paste the code into EXTRA.css and change the largest margin value to 100. This should be a very visible change when doing a screen refresh.
.node .nodeText
{
@property "nodeText";
margin: 10px 100px 10px 56px;
@property "/nodeText";
}
I go back to check node_list.css and the template code has been molested! The point of EXTRA.css is that the original code stays intact, and EXTRA makes the change when the page is served out. What good is EXTRA if the template gets buggered? Might as well edit the template itself. This seems to be true of any code with the @ symbol present. The original template tab never gets highlighted to indicate that a change was made.
What is going on and how do you work around it?