Merge pull request #227 from colkito/bug/progressbar-style-fixed

progressbar style fixed
This commit is contained in:
Gustavo Maximiliano Cortez 2014-02-10 20:07:08 -02:00
commit 506bd4b32b
2 changed files with 29 additions and 7 deletions

View File

@ -85,7 +85,7 @@ module.exports = function(grunt) {
dest: 'public/js/main.js'
},
css: {
src: ['public/lib/ngprogress/ngProgress.css', 'public/src/css/**/*.css'],
src: ['public/src/css/**/*.css'],
dest: 'public/css/main.css'
}
},

View File

@ -13,11 +13,33 @@ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
font-family: 'Ubuntu', sans-serif;
}
/* Styling for the ngProgress itself */
#ngProgress {
background-color: #373D42 !important;
box-shadow: none !important;
height: 4px !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 */