Category:Calendar: Difference between revisions
Jump to navigation
Jump to search
m →Customise Display: Added this sentence about the 'Set PreferenceTo change the look of your Calendar and set your preferences, go to Settings > Account > Preferences |
No edit summary |
||
| Line 74: | Line 74: | ||
*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 == | |||
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. | |||
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; | |||
} | |||