Category:Calendar: Difference between revisions

Jump to navigation Jump to search
No edit summary
No edit summary
Line 95: Line 95:
*Turn off all rows which you are not using via the "Show" selector"
*Turn off all rows which you are not using via the "Show" selector"
*Avoid opening all properties. Instead open individual properties or create property groups
*Avoid opening all properties. Instead open individual properties or create property groups


== Further Customisation using CSS ==
== Further Customisation using CSS ==
If you are comfortable working with CSS you can use custom CSS to customise the control panel further. Use Firebug or a similar tool to detect the classes you want to change.
If you are comfortable working with CSS you can use custom [[CSS|CSS]] to customise the control panel further.
 
Example: Give the inventory cell a different color if the inventory is 0.
 
.caltable .inv0{
background-color: #d43f3a;
}
.inv0 .dashgrid_inventory {
color: #fff;
}
.inv0 .lightgrey {
color: #fff;
}
 
Example: display roomname and icons in one line.
 
.dashgrid_rowroomname {
display: inline;
}
 
.editroomlink{
padding-left: 2px;
}
 
Example: Show past dates in a different color.
 
.pastdate {
background-color: #d9edf7;
}
 
Example: Show weekends in a different color.
 
.weekend2{
background-color: #cccccc;
}