mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-17 23:44:39 -05:00
Fix #744
This commit is contained in:
parent
c800ce262e
commit
6a84f55763
2 changed files with 8 additions and 7 deletions
|
@ -74,7 +74,7 @@
|
||||||
clear:both;
|
clear:both;
|
||||||
margin:0;
|
margin:0;
|
||||||
padding: 8px 0 8px 8px;
|
padding: 8px 0 8px 8px;
|
||||||
width: 188px;
|
width: 216px;
|
||||||
position: relative;
|
position: relative;
|
||||||
border: none;
|
border: none;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
@ -85,7 +85,7 @@
|
||||||
@include transition(background ease 0.25s);
|
@include transition(background ease 0.25s);
|
||||||
|
|
||||||
@include breakpoint(630px) {
|
@include breakpoint(630px) {
|
||||||
width:236px;
|
width:264px;
|
||||||
@include transition(none);
|
@include transition(none);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -184,7 +184,7 @@
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
|
||||||
@include breakpoint(630px) {
|
@include breakpoint(630px) {
|
||||||
max-width: 264px;
|
width: 264px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div { // Yes. Really.
|
div { // Yes. Really.
|
||||||
|
@ -197,6 +197,7 @@
|
||||||
|
|
||||||
input {
|
input {
|
||||||
margin:0;
|
margin:0;
|
||||||
|
width: 280px;
|
||||||
padding: 8px 10px;
|
padding: 8px 10px;
|
||||||
position: relative;
|
position: relative;
|
||||||
border: none;
|
border: none;
|
||||||
|
@ -209,7 +210,7 @@
|
||||||
|
|
||||||
@include breakpoint(630px) {
|
@include breakpoint(630px) {
|
||||||
@include transition(none);
|
@include transition(none);
|
||||||
max-width: 244px;
|
width: 264px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
|
|
|
@ -65,7 +65,8 @@ form {
|
||||||
}
|
}
|
||||||
|
|
||||||
input, textarea, select {
|
input, textarea, select {
|
||||||
width: 260px;
|
@include box-sizing(border-box);
|
||||||
|
width: 276px;
|
||||||
padding: 5px 7px;
|
padding: 5px 7px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
|
@ -78,7 +79,6 @@ form {
|
||||||
|
|
||||||
@include breakpoint(550px) {
|
@include breakpoint(550px) {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@include box-sizing(border-box);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -115,13 +115,13 @@ form {
|
||||||
}
|
}
|
||||||
|
|
||||||
select {
|
select {
|
||||||
|
@include box-sizing(border-box);
|
||||||
width:270px;
|
width:270px;
|
||||||
height:30px;
|
height:30px;
|
||||||
line-height:30px;
|
line-height:30px;
|
||||||
|
|
||||||
@include breakpoint(550px) {
|
@include breakpoint(550px) {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@include box-sizing(border-box);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue