Skip to content

Commit

Permalink
- Got grunt auto 'watch' working
Browse files Browse the repository at this point in the history
- Changed #mainSidebar in sidebar to have top and bottom margin
  • Loading branch information
Dax Borges committed Mar 25, 2014
1 parent 31c2695 commit 746cd7e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 13 deletions.
14 changes: 1 addition & 13 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,23 +170,11 @@ module.exports = function(grunt) {
}
});

/*
grunt.loadNpmTasks("grunt-contrib-clean");
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-requirejs');
grunt.loadNpmTasks("grunt-contrib-handlebars");
grunt.loadNpmTasks("grunt-contrib-concat");
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks("grunt-karma");
grunt.loadNpmTasks("grunt-karma-coveralls");
*/

grunt.registerTask('default', [
'clean',
'jshint',
'handlebars',
'requirejs',
//'requirejs',
'concat',
'less'
]);
Expand Down
3 changes: 3 additions & 0 deletions assets/css/directus.css
Original file line number Diff line number Diff line change
Expand Up @@ -1678,6 +1678,9 @@ input[type="radio"].custom-check:checked + label:before {
top: 101px;
width: 100%;
}
#sidebar #mainSidebar ul {
margin: 10px 0px;
}
#sidebar #mainSidebar li {
font-size: 12px;
line-height: 13px;
Expand Down
3 changes: 3 additions & 0 deletions assets/less/directus/sidebar.less
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@
position: absolute;
top: 101px;
width: 100%;
ul {
margin: @smallPad 0px;
}
li {
font-size: 12px;
line-height: 13px;
Expand Down

0 comments on commit 746cd7e

Please sign in to comment.