Skip to content

Commit

Permalink
Make button border color a customizable SCSS variable
Browse files Browse the repository at this point in the history
Related to #1641
  • Loading branch information
radar committed Jun 7, 2012
1 parent ae0e1a9 commit 5216877
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion core/app/assets/stylesheets/store/screen.css.scss
Expand Up @@ -145,7 +145,7 @@ mark {background-color: $link_text_color; color: $layout_background_color; font-
font-weight: bold;
font-size: $button_font_size;
font-family: $ff_base;
border: 1px solid rgba(0, 138, 189, .75);
border: 1px solid $button_border_color;
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
-khtml-box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
Expand Down
1 change: 1 addition & 0 deletions core/app/assets/stylesheets/store/variables.css.scss
Expand Up @@ -55,3 +55,4 @@ $ff_base: 'Ubuntu', sans-serif;
$button_font_size: 12px;
$input_box_font_size: 13px;
$base_font_size: 12px;
$button_border_color: rgba(0, 138, 189, .75);

0 comments on commit 5216877

Please sign in to comment.