2.0 styling

Started applying new styles starting with removal of tabs. Brought in new breadcrumb format and blended with inventory edit group breadcrumbs. Rather than attempting to override bootstrap styles after the fact, copied boostrap less file and started modifying those to create ansible-boostrap.css, as described in the boostrap documentation.
This commit is contained in:
Chris Houseknecht
2014-06-18 13:42:25 -04:00
parent ef1ca7be0b
commit bc08d8f82a
52 changed files with 7637 additions and 221 deletions

View File

@@ -27,10 +27,12 @@ module.exports = function(grunt) {
less: {
production: {
options: {
cleancss: true
cleancss: true,
compress: true
},
files: {
"awx/ui/static/css/awx.min.css": "awx/ui/static/less/ansible-ui.less"
"awx/ui/static/css/awx.min.css": "awx/ui/static/less/ansible-ui.less",
"awx/ui/static/css/ansible-bootstrap.min.css": "awx/ui/static/ansible-bootstrap/bootstrap.less"
}
}
}