dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
79 lines (58 loc) • 1.36 kB
text/less
@outer-border: 1px solid #CCC;
@inner-border: 1px solid #CCC;
@sub-column-border: 1px solid #DDD;
@transparent-border: 1px solid transparent;
@row-color: #FFF;
@row-color-hover: #E5F2FE;
@row-color-active: #A5D1FB;
@expand-up-color: #73ABFA;
@expand-down-color: #A5D1FB;
@header-label-color: #CCC;
@today-color: #FFF;
@today-label-color: #295bb3;
@week-end-color: #EFEFEF;
@week-end-label-color: #CCC;
@horizontal-color: #9F0000;
@horizontal-hover-color: #CC0000;
@horizontal-selected-bg-color: #660000;
@horizontal-border: 1px solid #260000;
@label-color: #555;
@secondary-label-color: #888;
.border-box(){
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.opacity(@op){
filter: ~"alpha(opacity=@{op})";
opacity:@op/100;
}
.transition-duration(@dur: 0s){
-webkit-transition-duration: @dur;
-moz-transition-duration: @dur;
transition-duration: @dur;
}
.select-none() {
-moz-user-select: none;
-webkit-user-select: none;
khtml-user-select: none;
user-select: none;
}
.glass-view(){
z-index: 2;
background:#00FF00;
.opacity(0);
.select-none
}
.header-background(){
color: @header-label-color;
}
.header-hover-background(){
}
.header-active-background(){
}
.rounded-corners (@radius: 5px) {
border-radius: @radius;
-webkit-border-radius: @radius;
-moz-border-radius: @radius;
}