Skip to content
This repository has been archived by the owner on Jan 14, 2022. It is now read-only.

Commit

Permalink
Foundation build to bower-foundation
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurzurb committed Apr 29, 2015
1 parent e3bc6d0 commit 9fe1fba
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 6 deletions.
14 changes: 14 additions & 0 deletions css/foundation.css

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

2 changes: 1 addition & 1 deletion css/foundation.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/foundation.min.css

Large diffs are not rendered by default.

27 changes: 23 additions & 4 deletions scss/foundation/components/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ $form-label-small-transform: capitalize !default;
$form-label-bottom-margin: 0 !default;
$input-font-family: inherit !default;
$input-font-color: rgba(0,0,0,0.75) !default;
$input-placeholder-font-color: #cccccc !default;
$input-font-size: rem-calc(14) !default;
$input-bg-color: $white !default;
$input-focus-bg-color: scale-color($white, $lightness: -2%) !default;
Expand Down Expand Up @@ -478,10 +479,28 @@ $select-hover-bg-color: scale-color($select-bg-color, $lightness: -3%) !default;
height: auto;
}

/* Not allow resize out of parent */
textarea {
max-width: 100%;
}
/* Not allow resize out of parent */
textarea {
max-width: 100%;
}

// style placeholder text cross browser
::-webkit-input-placeholder {
color: $input-placeholder-font-color;
}

:-moz-placeholder { /* Firefox 18- */
color: $input-placeholder-font-color;
}

::-moz-placeholder { /* Firefox 19+ */
color: $input-placeholder-font-color;
}

:-ms-input-placeholder {
color: $input-placeholder-font-color;
}


/* Add height value for select elements to match text input height */
select {
Expand Down

0 comments on commit 9fe1fba

Please sign in to comment.