File tree Expand file tree Collapse file tree 6 files changed +163
-131
lines changed Expand file tree Collapse file tree 6 files changed +163
-131
lines changed Original file line number Diff line number Diff line change 1212var $ = require ( 'jquery' ) ;
1313
1414function wrapSelects ( selector ) {
15- $ ( selector ) . each ( function ( ) {
15+ $ ( selector ) . each ( function ( ) {
1616 var $this = $ ( this ) ;
17-
18- if ( $this . parent ( '.select' ) . length == 0 ) {
17+ if ( $this . parent ( '.select' ) . length == 0 ) {
1918 $this . wrap ( '<div class="select">' ) ;
20- $ ( '.select' ) . append ( '<div class="select-arrow">' )
19+ $this . parent ( '.select' ) . append ( '<div class="select-arrow">' ) ;
2120 }
2221 } ) ;
2322}
Original file line number Diff line number Diff line change 44 "description" : " Easy to use forms for CastleCSS" ,
55 "main" : " index.js" ,
66 "scripts" : {
7- "test" : " echo \" Error: no test specified\" && exit 1"
7+ "test" : " echo \" Error: no test specified\" && exit 1" ,
8+ "create_js" : " webpack"
89 },
910 "repository" : {
1011 "type" : " git" ,
Original file line number Diff line number Diff line change @@ -67,13 +67,13 @@ input[type=file] {
6767 border : $input-border ;
6868 }
6969
70- /* TODO: When enabling this it breaks normal buttons in Chrome and Firefox
70+ /* TODO: When enabling this it breaks normal buttons in Chrome and Firefox
7171 Need a safe fix
7272 */
7373 /* &::-ms-browse {
7474 @extend .btn;
7575 }*/
76-
76+
7777}
7878
7979// -webkit fix for the label placeholder in input[type=date]
@@ -86,6 +86,7 @@ input[type=date]::-webkit-datetime-edit {
8686}
8787
8888textarea {
89+ padding : 12px ;
8990 min-height : 14rem ;
9091 line-height : 1.4 ;
9192}
@@ -98,7 +99,7 @@ textarea {
9899
99100 > * :last-child:not (:only-child ) {
100101
101- > * {
102+ > * :last-child {
102103 margin-bottom : 0 ;
103104
104105 > * {
Original file line number Diff line number Diff line change 6161/* Radio or checkbox, general styling */
6262.input-indicator {
6363 position : absolute ;
64- top : - 2px ;
64+ top : 2px ;
6565 left : 0 ;
6666 width : 20px ;
6767 height : 20px ;
You can’t perform that action at this time.
0 commit comments