This repository has been archived by the owner on Feb 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 230
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(styling): Change the way to styling is done
Disable all <input /> border/shadow/padding styling, we want to fix the page styles. Add a new `style: boolean` option to control whether the input and dropdown menu should be styled or not. Fix #91
- Loading branch information
Showing
13 changed files
with
43 additions
and
117 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,22 @@ | ||
.billing-form { | ||
position: relative; | ||
|
||
.form-group { | ||
margin-bottom: 1em; | ||
|
||
label { | ||
display: block; | ||
float: left; | ||
width: 28%; | ||
margin-right: 2%; | ||
line-height: 40px; | ||
text-align: right; | ||
} | ||
|
||
.form-control { | ||
width: 50%; | ||
box-sizing: border-box; | ||
padding-left: 16px; | ||
line-height: 40px; | ||
height: 40px; | ||
border: 1px solid #cccccc; | ||
border-radius: 3px; | ||
outline: none; | ||
} | ||
|
||
.algolia-places { | ||
width: 50% !important; | ||
|
||
.form-control { | ||
width: 100%; | ||
} | ||
} | ||
.form-control { | ||
width: 100%; | ||
box-sizing: border-box; | ||
padding-left: 16px; | ||
line-height: 40px; | ||
height: 40px; | ||
border: 1px solid #cccccc; | ||
border-radius: 3px; | ||
outline: none; | ||
} | ||
|
||
} | ||
.form-group { | ||
margin-bottom: 1em; | ||
clear: both; | ||
|
||
button.btn { | ||
float: right; | ||
margin-right: 50%; | ||
margin-bottom: 2em; | ||
label { | ||
display: block; | ||
font-weight: bold; | ||
font-size: .8em; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters