i'm using dotless css. This is my code
.jqmWindowBig
{
width: 800px;
height: 500px;
margin-left: -400px;
margin-top: -250px;
.jqmWindowCommon;
}
.jqmWindowCommon {
background-color: #EEE;
color: #333;
border: 1px solid black;
display: none;
position: absolute;
left: 50%;
top: 50%;
padding: 12px;
overflow: auto;
}
When i'm on my own machine, in debug mode, all css files (also this main.less file) are referenced separately.
In that case, the jqmWindowBig
class is the combination of jqmWindowBig
and jqmWindowCommon
, and all works fine.
Now on production, combress creates one big file of all of my CSS files, and then, the CSS contains literaly the code as i entered it in the .LESS file, so the .jqmWindowCommon
section is not replaced by the 'jqmWindowCommon'
section so the jqmWindowBig
is incomplete.
This is my combress config:
<resourceSets url="~/combres.axd"
defaultDuration="30"
defaultVersion="auto"
defaultDebugEnabled="auto"
defaultIgnorePipelineWhenDebug="true"
localChangeMonitorInterval="30"
remoteChangeMonitorInterval="60"
>
<resourceSet name="siteCss" type="css" >
<resource path="~/Content/StyleSheet/start.css" />
<resource path="~/Content/StyleSheet/Site.css" />
<resource path="~/Content/StyleSheet/reset.css" />
<resource path="~/Content/StyleSheet/screen.css" />
<resource path="~/Content/StyleSheet/razortemplates.css" />
<resource path="~/Content/StyleSheet/logonsmall.css" />
<resource path="~/Content/StyleSheet/ui-lightness/jquery-ui-1.8.23.custom.css" />
<resource path="~/Content/StyleSheet/MainLess.LESS" />
</resourceSet>
So in short: the reference .jqmWindowCommon;
is not replaced, when running in release mode.
EDIT it's not only this which is not working, i can see that these kind of rules
width: @planningEventItemWidth;
are not working either, so basicly no .LESS functionality is working when combined with Combress>
Your combres config is missing a filter for LESS: