Skip to content
This repository has been archived by the owner on Dec 26, 2023. It is now read-only.

Commit

Permalink
Removed outline from form fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Chaplinsky committed Apr 21, 2014
1 parent a13b015 commit f9a151b
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 5 deletions.
3 changes: 3 additions & 0 deletions dist/css/applepie.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/css/applepie.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/sass/components/buttons.sass
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
display: inline-block
padding: 6px 12px
line-height: 1.3125rem
-webkit-font-smoothing: antialiased
border: none
cursor: pointer
+border-radius(3px)
Expand Down
3 changes: 2 additions & 1 deletion dist/sass/components/inputs.sass
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
border: 1px solid #e0e0e0
background: #fff
color: #555
outline: none
+box-sizing
+border-radius(3px)
+transition(border-color .5s ease)
+placeholder-color(#ccc)
line-height: 1.3125rem
&:focus
border-color: #3699d2
border-color: #3699d2
3 changes: 2 additions & 1 deletion dist/sass/components/textarea.sass
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
border: 1px solid #e0e0e0
background: #fff
color: #555
outline: none
+box-sizing
+border-radius(3px)
+transition(border-color .5s ease)
&:focus
border-color: #3699d2
border-color: #3699d2
1 change: 1 addition & 0 deletions src/stylesheets/components/buttons.sass
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
display: inline-block
padding: 6px 12px
line-height: 1.3125rem
-webkit-font-smoothing: antialiased
border: none
cursor: pointer
+border-radius(3px)
Expand Down
3 changes: 2 additions & 1 deletion src/stylesheets/components/inputs.sass
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
border: 1px solid #e0e0e0
background: #fff
color: #555
outline: none
+box-sizing
+border-radius(3px)
+transition(border-color .5s ease)
+placeholder-color(#ccc)
line-height: 1.3125rem
&:focus
border-color: #3699d2
border-color: #3699d2
3 changes: 2 additions & 1 deletion src/stylesheets/components/textarea.sass
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
border: 1px solid #e0e0e0
background: #fff
color: #555
outline: none
+box-sizing
+border-radius(3px)
+transition(border-color .5s ease)
&:focus
border-color: #3699d2
border-color: #3699d2

0 comments on commit f9a151b

Please sign in to comment.