Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMrZYX <pr0fkill@gmail.com>2011-05-16 17:16:01 +0400
committerMrZYX <pr0fkill@gmail.com>2011-05-16 17:16:01 +0400
commite33888691087932e52fa8d5ddec127f32defbec4 (patch)
tree0dd7bf78b51f805ddc27dd3d74c8422a0169d92e /public/stylesheets
parent20231891d2a3717d10d479b66231f69a00f718b9 (diff)
fixes to login page: removed not needed login.sass; removed fixed string length assumption; fixed login button not showing up in Chrome when the form is pre-filled
Diffstat (limited to 'public/stylesheets')
-rw-r--r--public/stylesheets/sass/login.sass89
-rw-r--r--public/stylesheets/sass/login.scss12
2 files changed, 0 insertions, 101 deletions
diff --git a/public/stylesheets/sass/login.sass b/public/stylesheets/sass/login.sass
deleted file mode 100644
index 1a0532bcc..000000000
--- a/public/stylesheets/sass/login.sass
+++ /dev/null
@@ -1,89 +0,0 @@
-// Copyright (c) 2010, Diaspora Inc. This file is
-// licensed under the Affero General Public License version 3 or later. See
-// the COPYRIGHT file.
-
-@import 'mixins'
-
-$blue: #3F8FBA
-$red: #FF0000
-$background: rgb(252,252,252)
-
-body
- :background-color $background
-
-.hidden
- :display none
-
-#login
- :width 600px
- :padding
- :top 10%
- :bottom 20%
- :text
- :align center
- :display inline-block
-
- form
- input,
- label
- :font
- :size 14px
- :display inline
-
- label
- :top 10px
- :left 12px
- :text-shadow none
-
- input[type='text'],
- input[type='password']
- :-webkit-box-shadow 0 1px 0px #fff, 0 -1px 0px #888
- :-moz-box-shadow 0 1px 0px #fff, 0 -1px 0px #888
- :box-shadow 0 1px 0px #fff, 0 -1px 0px #888
- :width 180px
- :max-width 180px
-
- p
- :display inline-block
- :position relative
- :width 200px
-
- span
- :display inline-block
-
- &.submit
- :width auto
- :bottom 15px
-
- input
- :width auto
- :position relative
- :height 40px
- :top 0px
- :color #666
- :margin
- :bottom 10px
- &:hover
- :color #444
-
- #forgot_password_link
- :text-align left
- :position absolute
- :left 205px
- :top 12px
- :width 150px
- :color #999
-
- .controls.hidden
- :display none
-
- #remember_me
- :position absolute
- :top 0
- :left 4px
-
- #user_submit
- :position absolute
- :top -6px
- :right 5px
-
diff --git a/public/stylesheets/sass/login.scss b/public/stylesheets/sass/login.scss
index 7deb19a6b..d787c855c 100644
--- a/public/stylesheets/sass/login.scss
+++ b/public/stylesheets/sass/login.scss
@@ -84,18 +84,6 @@
@include opacity(0);
}
}
-
- #remember_me {
- position: absolute;
- top: 0;
- left: 4px;
- }
-
- #user_submit {
- position: absolute;
- top: -6px;
- right: 5px;
- }
}
}