Merge pull request #2044 from PaulAdamDavis/move-styles

This commit is contained in:
Hannah Wolfe 2014-01-27 21:50:50 +00:00
commit ffc5655705
9 changed files with 14 additions and 14 deletions

View File

@ -55,7 +55,7 @@
1. Login
============================================================================= */
#login {
.login-form {
@include box-sizing(border-box);
max-width: 530px;
color: lighten($midgrey, 15%);
@ -182,7 +182,7 @@
2. Signup and Reset
============================================================================= */
#signup, #reset {
.signup-form, .reset-form {
@include box-sizing(border-box);
max-width: 280px;
color: lighten($midgrey, 15%);
@ -270,7 +270,7 @@
3. Forgotten
============================================================================= */
#forgotten {
.forgotten-form {
@include box-sizing(border-box);
max-width: 280px;
color: lighten($midgrey, 15%);

View File

@ -18,7 +18,7 @@
.editor {
#notifications {
.notifications {
@include breakpoint($biggerthan-mobile) {
bottom: 40px;
}
@ -376,7 +376,7 @@
body.zen {
background: lighten($lightbrown, 3%);
#usermenu {display: none;}
.usermenu {display: none;}
#global-header, #publish-bar {
opacity: 0;
height: 0;

View File

@ -540,7 +540,7 @@ nav {
}//.navbar
// The user menu in the top right corner of the screen
#usermenu {
.usermenu.subnav {
position:absolute;
top:0;
right:0;
@ -636,7 +636,7 @@ nav {
}
#usermenu {
.usermenu {
position:fixed;
top:0;
right:auto;
@ -928,7 +928,7 @@ nav {
Notifications
========================================================================== */
#notifications {
.notifications {
@include breakpoint($biggerthan-mobile) {
position: absolute;
bottom: 0;

View File

@ -1,4 +1,4 @@
<form id="forgotten" method="post" novalidate="novalidate">
<form id="forgotten" class="forgotten-form" method="post" novalidate="novalidate">
<div class="email-wrap">
<input class="email" type="email" placeholder="Email Address" name="email" autocapitalize="off" autocorrect="off">
</div>

View File

@ -1,4 +1,4 @@
<form id="login" method="post" novalidate="novalidate">
<form id="login" class="login-form" method="post" novalidate="novalidate">
<div class="email-wrap">
<input class="email" type="email" placeholder="Email Address" name="email" autocapitalize="off" autocorrect="off">
</div>

View File

@ -1,4 +1,4 @@
<form id="reset" method="post" novalidate="novalidate">
<form id="reset" class="reset-form" method="post" novalidate="novalidate">
<div class="password-wrap">
<input class="password" type="password" placeholder="Password" name="newpassword" />
</div>

View File

@ -1,4 +1,4 @@
<form id="signup" method="post" novalidate="novalidate">
<form id="signup" class="signup-form" method="post" novalidate="novalidate">
<div class="name-wrap">
<input class="name" type="text" placeholder="Full Name" name="name" autocorrect="off" />
</div>

View File

@ -39,7 +39,7 @@
<main role="main" id="main">
{{updateNotification}}
<aside id="notifications">
<aside id="notifications" class="notifications">
{{> notifications}}
</aside>

View File

@ -8,7 +8,7 @@
<li class="{{navClass}}{{#if selected}} active{{/if}}"><a href="{{adminUrl}}{{path}}">{{name}}</a></li>
{{/each}}
<li id="usermenu" class="subnav">
<li id="usermenu" class="usermenu subnav">
<a href="#" data-toggle="ul" class="dropdown">
<img class="avatar" src="{{#if currentUser.image}}{{currentUser.image}}{{else}}{{asset "shared/img/user-image.png"}}{{/if}}" alt="Avatar" />
<span class="name">{{#if currentUser.name}}{{currentUser.name}}{{else}}{{currentUser.email}}{{/if}}</span>