Skip to content

Commit

Permalink
Fixed issue #11027: better styling of progress bar in 2.5 templates
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Apr 25, 2016
1 parent 54543b1 commit 74e25b0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions templates/default/css/flat_and_modern.css
Expand Up @@ -5127,7 +5127,8 @@ a.thumbnail.active {
background-color: #ecf0f1;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

This comment has been minimized.

Copy link
@legoadk

legoadk Apr 26, 2016

Noticed that -webkit-box-shadow was not updated to match the changes to box-shadow

This comment has been minimized.

Copy link
@olleharstedt

olleharstedt Apr 26, 2016

Author Contributor

Correct, will fix.

box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
/*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
}
.progress-bar {
float: left;
Expand Down Expand Up @@ -6968,8 +6969,6 @@ input:focus {
}
.progress {
height: 10px;
-webkit-box-shadow: none;
box-shadow: none;
}
.progress .progress-bar {
font-size: 10px;
Expand Down

0 comments on commit 74e25b0

Please sign in to comment.