client/css: tweak help button appearance
This commit is contained in:
parent
c2aa497d91
commit
0ddbc64320
4 changed files with 17 additions and 9 deletions
|
@ -17,10 +17,6 @@ form
|
||||||
margin-bottom: 1em
|
margin-bottom: 1em
|
||||||
.buttons
|
.buttons
|
||||||
margin-top: 1em
|
margin-top: 1em
|
||||||
a
|
|
||||||
margin-left: 1em
|
|
||||||
.fa-question-circle-o
|
|
||||||
font-size: 120%
|
|
||||||
.input li:first-child label:not(.radio):not(.checkbox):not(.file-dropper),
|
.input li:first-child label:not(.radio):not(.checkbox):not(.file-dropper),
|
||||||
.input li:first-child
|
.input li:first-child
|
||||||
padding-top: 0
|
padding-top: 0
|
||||||
|
@ -49,8 +45,11 @@ form.horizontal
|
||||||
margin-bottom: 1em
|
margin-bottom: 1em
|
||||||
.input, .buttons, ul
|
.input, .buttons, ul
|
||||||
display: inline-block
|
display: inline-block
|
||||||
|
vertical-align: middle
|
||||||
margin: 0
|
margin: 0
|
||||||
padding: 0
|
padding: 0
|
||||||
|
input
|
||||||
|
vertical-align: middle
|
||||||
.buttons
|
.buttons
|
||||||
margin-right: 0.5em
|
margin-right: 0.5em
|
||||||
|
|
||||||
|
@ -162,7 +161,7 @@ input[type=password]
|
||||||
border: 2px solid $input-enabled-border-color
|
border: 2px solid $input-enabled-border-color
|
||||||
background: $input-enabled-background-color
|
background: $input-enabled-background-color
|
||||||
color: $input-enabled-text-color
|
color: $input-enabled-text-color
|
||||||
box-shadow: none; /* :-moz-submit-invalid on FF */
|
box-shadow: none /* :-moz-submit-invalid on FF */
|
||||||
transition: border-color 0.1s linear, background-color 0.1s linear
|
transition: border-color 0.1s linear, background-color 0.1s linear
|
||||||
|
|
||||||
&:disabled
|
&:disabled
|
||||||
|
|
|
@ -19,6 +19,15 @@ a
|
||||||
color: $main-color
|
color: $main-color
|
||||||
text-decoration: none
|
text-decoration: none
|
||||||
transition: color 0.1s linear
|
transition: color 0.1s linear
|
||||||
|
&.icon
|
||||||
|
color: $inactive-link-color
|
||||||
|
opacity: .5
|
||||||
|
|
||||||
|
a.append
|
||||||
|
margin-left: 1em
|
||||||
|
form .fa-question-circle-o
|
||||||
|
font-size: 110%
|
||||||
|
vertical-align: middle
|
||||||
|
|
||||||
#content-holder
|
#content-holder
|
||||||
margin: 2em
|
margin: 2em
|
||||||
|
@ -52,7 +61,7 @@ nav ul
|
||||||
display: inline-block
|
display: inline-block
|
||||||
img
|
img
|
||||||
margin: 0
|
margin: 0
|
||||||
vertical-align: top; /* fix ghost margin under the image */
|
vertical-align: top /* fix ghost margin under the image */
|
||||||
|
|
||||||
nav.plain-nav ul li
|
nav.plain-nav ul li
|
||||||
display: block
|
display: block
|
||||||
|
@ -122,7 +131,7 @@ nav.text-nav
|
||||||
background: $message-success-background-color
|
background: $message-success-background-color
|
||||||
|
|
||||||
.thumbnail
|
.thumbnail
|
||||||
/*background-image: attr(data-src url);*/ /* not available yet */
|
/*background-image: attr(data-src url)*/ /* not available yet */
|
||||||
background-repeat: no-repeat
|
background-repeat: no-repeat
|
||||||
background-size: cover
|
background-size: cover
|
||||||
background-position: center
|
background-position: center
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
<div class='buttons'>
|
<div class='buttons'>
|
||||||
<input type='submit' value='Log in'/>
|
<input type='submit' value='Log in'/>
|
||||||
{{#if this.canSendMails}}
|
{{#if this.canSendMails}}
|
||||||
<a href='/password-reset'>Forgot the password?</a>
|
<a class='append' href='/password-reset'>Forgot the password?</a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class='buttons'>
|
<div class='buttons'>
|
||||||
<input type='submit' value='Search'/>
|
<input type='submit' value='Search'/>
|
||||||
<a href='/help/search#user-search-help'><i class='fa fa-question-circle-o'></i></a>
|
<a class='append icon' href='/help/search#user-search-help'><i class='fa fa-question-circle-o'></i></a>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue