diff --git a/services/web/public/stylesheets/app/editor.less b/services/web/public/stylesheets/app/editor.less index 9a72122669..c71b6f6d78 100644 --- a/services/web/public/stylesheets/app/editor.less +++ b/services/web/public/stylesheets/app/editor.less @@ -58,10 +58,6 @@ width: 400px; margin-left: -200px; } - .progress { - background-color: white; - border: 1px solid @toolbar-border-color; - } } .loading-panel { diff --git a/services/web/public/stylesheets/components/progress-bars.less b/services/web/public/stylesheets/components/progress-bars.less index 76c87be17c..062ec48df2 100755 --- a/services/web/public/stylesheets/components/progress-bars.less +++ b/services/web/public/stylesheets/components/progress-bars.less @@ -30,6 +30,7 @@ margin-bottom: @line-height-computed; background-color: @progress-bg; border-radius: @border-radius-base; + border: 1px solid @progress-border-color; .box-shadow(inset 0 1px 2px rgba(0,0,0,.1)); } diff --git a/services/web/public/stylesheets/core/variables.less b/services/web/public/stylesheets/core/variables.less index 341d506098..1561a5e4a5 100755 --- a/services/web/public/stylesheets/core/variables.less +++ b/services/web/public/stylesheets/core/variables.less @@ -599,7 +599,8 @@ //## //** Background color of the whole progress component -@progress-bg: #f5f5f5; +@progress-bg: white; +@progress-border-color: @gray-lighter; //** Progress bar text color @progress-bar-color: #fff;