Thread Prefixes, Issue with saving CSS changes.

Cryptaline

Active member
Is it normal that when I'm changing CSS for thread prefixes in (thread_prefixes.css) e.g:

Code:
.prefix
{
@property "titlePrefix";
background: transparent url('@imagePath/xenforo/gradients/form-button-white-25px.png') repeat-x top;
padding: 0px 6px;
margin: -1px 0;
border: 1px solid transparent;
border-radius: 3px;
display: inline-block;
@property "/titlePrefix";
}

And when I'm saving it, they are still shown as I ve posted below in a browser but in css file they are shown with changes I ve aplied

Code:
.prefix
{
@property "titlePrefix";
background: transparent url('@imagePath/xenforo/gradients/form-button-white-25px.png') repeat-x top;
padding: 0px 6px;
margin: -1px 0;
border: 1px solid transparent;
border-radius: 4px;<-----------------------------------------------------------
display: inline-block;
@property "/titlePrefix";
}
 
I get funny stuff like this once in a while. It seems like a CSS edit just gets ignored. I do all my CSS changes in EXTRA, and sometimes a change will only "take" if I move the element's section of code to a different location in EXTRA. I used to think I was messing up on specificity, but this doesn't make sense. It just acts like a refresh fails. Simple edits should be picked up right away.
 
Top Bottom