├── purchase_buttons ├── purchases.json ├── pricelist.json └── MSC_purchase_buttons.html ├── README.md ├── christmas_buttons.css ├── image_slider ├── pkg_description_example └── footer_template.html ├── general_CSS_changes.html └── conditional_banner_display.html /purchase_buttons/purchases.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "appName": "Adium" 4 | } 5 | ] 6 | -------------------------------------------------------------------------------- /purchase_buttons/pricelist.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "appName": "Adium", 4 | "price": "1.99" 5 | }, 6 | { 7 | "appName": "MacPorts", 8 | "price": "0.99" 9 | }, 10 | { 11 | "appName": "GoToMeeting", 12 | "price": "299.00" 13 | } 14 | ] 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # munki_client_resources 2 | 3 | Customisations to client resources 4 | 5 | These include CSS hacks to overide the default MSC look and feel from changing the colour of buttons, background to changing the default behaviour of the buttons. 6 | 7 | copy and paste into one of the standard templates (like footer_template.html) and include in your client customisations zip. 8 | 9 | Everything comes with no warranty or support etc. 10 | 11 | -------------------------------------------------------------------------------- /christmas_buttons.css: -------------------------------------------------------------------------------- 1 | block 4 | to one of the template.html files (I personally use footer_template.html) and include it in your 5 | client resources zip bundle. 6 | 7 | Examples here are: 8 | - adding a background gradient 9 | - changing the INSTALL buttons from grey to green 10 | 11 | --> 12 | 13 | 41 | -------------------------------------------------------------------------------- /image_slider/footer_template.html: -------------------------------------------------------------------------------- 1 | 6 |