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:
authordanielgrippi <danielgrippi@gmail.com>2011-09-28 22:21:14 +0400
committerdanielgrippi <danielgrippi@gmail.com>2011-09-28 22:21:14 +0400
commitd2d205ee084d5fe379737370a7c0b3f0888d66a8 (patch)
tree38d60e414cf4d98679bb1c74129fc63894350546 /public/stylesheets/sass
parent42fcf3e394ccf8d89d1ed44f7a97254a77645a35 (diff)
make autoexpand work
Diffstat (limited to 'public/stylesheets/sass')
-rw-r--r--public/stylesheets/sass/mobile.scss28
1 files changed, 27 insertions, 1 deletions
diff --git a/public/stylesheets/sass/mobile.scss b/public/stylesheets/sass/mobile.scss
index e87db74b8..4b0235ec5 100644
--- a/public/stylesheets/sass/mobile.scss
+++ b/public/stylesheets/sass/mobile.scss
@@ -55,7 +55,9 @@ body {
weight: bold !important; }; }
margin-bottom: 2px;
height: 45px; }
- > .content {
+
+ > .content,
+ .reshare > .content {
padding: 10px {
bottom: 0; }; }
padding: 10px 0;
@@ -107,6 +109,7 @@ body {
@include border-radius(3px);
@include box-shadow(0, 1px, 5px, rgba(0, 0, 0, 1));
padding: 0;
+ padding-bottom: 10px;
background: {
color: #fff;
}
@@ -553,3 +556,26 @@ header {
.new_status_message {
min-height: 300px;
}
+
+.reshare {
+ border-bottom: 1px solid #ccc;
+ padding: {
+ bottom: 10px;
+ }
+ position: relative;
+
+ .reshare_via {
+ width: 100%;
+ position: absolute;
+ bottom: -7px;
+ text-align: center;
+ span {
+ padding: 2px 10px;
+ font-weight: bold;
+ color: #999;
+ background: {
+ color: #fff;
+ }
+ }
+ }
+}