progressbar style fixed

This commit is contained in:
Mario Colque 2014-02-10 19:04:26 -03:00
parent a43b309664
commit 95b874b273
2 changed files with 29 additions and 7 deletions

View File

@ -68,7 +68,7 @@ module.exports = function(grunt) {
return '// Source: ' + filepath + '\n' + return '// Source: ' + filepath + '\n' +
src.replace(/(^|\n)[ \t]*('use strict'|"use strict");?\s*/g, '$1'); src.replace(/(^|\n)[ \t]*('use strict'|"use strict");?\s*/g, '$1');
} else { } else {
return src; return src;
} }
} }
}, },
@ -85,7 +85,7 @@ module.exports = function(grunt) {
dest: 'public/js/main.js' dest: 'public/js/main.js'
}, },
css: { css: {
src: ['public/lib/ngprogress/ngProgress.css', 'public/src/css/**/*.css'], src: ['public/src/css/**/*.css'],
dest: 'public/css/main.css' dest: 'public/css/main.css'
} }
}, },
@ -164,10 +164,10 @@ module.exports = function(grunt) {
//Default task(s). //Default task(s).
grunt.registerTask('default', ['jshint', 'compile', 'concurrent']); grunt.registerTask('default', ['jshint', 'compile', 'concurrent']);
//Compile task (concat + minify) //Compile task (concat + minify)
grunt.registerTask('compile', ['concat', 'uglify', 'cssmin']); grunt.registerTask('compile', ['concat', 'uglify', 'cssmin']);
//Test task. //Test task.
grunt.registerTask('test', ['env:test', 'mochaTest']); grunt.registerTask('test', ['env:test', 'mochaTest']);
}; };

View File

@ -13,11 +13,33 @@ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
font-family: 'Ubuntu', sans-serif; font-family: 'Ubuntu', sans-serif;
} }
/* Styling for the ngProgress itself */
#ngProgress { #ngProgress {
background-color: #373D42 !important;
box-shadow: none !important; box-shadow: none !important;
height: 4px !important;
color: #373D42 !important; color: #373D42 !important;
background: #373D42 !important; height: 4px !important;
margin: 0;
opacity: 0;
padding: 0;
z-index: 99998;
/* Add CSS3 styles for transition smoothing */
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
/* Styling for the ngProgress-container */
#ngProgress-container {
position: fixed;
margin: 0;
padding: 0;
top: 50px;
left: 0;
right: 0;
z-index: 99999;
} }
/* Wrapper for page content to push down footer */ /* Wrapper for page content to push down footer */
@ -460,7 +482,7 @@ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
@media (max-width: 991px) { @media (max-width: 991px) {
.btn-copy { .btn-copy {
display: none; display: none;
} }
} }