Skip to content

Commit

Permalink
Fixed '.actionbar' CSS style to have a flat top and rounded bottom.
Browse files Browse the repository at this point in the history
  • Loading branch information
igal committed Jul 27, 2010
1 parent fe45ac2 commit ae65cb4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions public/stylesheets/application.css
Expand Up @@ -224,9 +224,9 @@ body {
body #content #sidebar ul {
list-style: none; }
body .actionbar {
-webkit-border-radius: 0.35em 0.35em 0.35em 0.35em;
-moz-border-radius: 0.35em 0.35em 0.35em 0.35em;
border-radius: 0.35em 0.35em 0.35em 0.35em;
-webkit-border-radius: 0 0 0.35em 0.35em;
-moz-border-radius: 0 0 0.35em 0.35em;
border-radius: 0 0 0.35em 0.35em;
background: #DDD;
padding: 1px; }
body .actionbar form {
Expand Down
2 changes: 1 addition & 1 deletion public/stylesheets/sass/application.scss
Expand Up @@ -370,7 +370,7 @@ body {
/* ACTIONBAR */

.actionbar {
@include rounded;
@include rounded_bottom;
background: #DDD;
padding: 1px;

Expand Down

0 comments on commit ae65cb4

Please sign in to comment.