From 1947b74e5bd92f11a3e8af2223826e649233a883 Mon Sep 17 00:00:00 2001 From: Friendika Date: Mon, 27 Jun 2011 16:18:06 -0700 Subject: some basic margins for friend suggestion screen --- view/theme/loozah/style.css | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'view/theme/loozah') diff --git a/view/theme/loozah/style.css b/view/theme/loozah/style.css index 98ab96d2b..c68e38b68 100644 --- a/view/theme/loozah/style.css +++ b/view/theme/loozah/style.css @@ -997,6 +997,13 @@ input#dfrn-url { clear: both; } + +#fsuggest-desc, #fsuggest-submit-wrapper { + margin-top: 15px; + margin-bottom: 15px; +} + + .wall-item-content-wrapper { margin-top: 10px; border: 1px solid #CCC; -- cgit v1.2.3 From 779292077c99c7693da78be4a53e25f039bedd8b Mon Sep 17 00:00:00 2001 From: Fabio Comuni Date: Thu, 30 Jun 2011 16:43:04 +0200 Subject: style template field outside admin pages --- view/theme/loozah/style.css | 51 ++++++++++++++++++++++++--------------------- 1 file changed, 27 insertions(+), 24 deletions(-) (limited to 'view/theme/loozah') diff --git a/view/theme/loozah/style.css b/view/theme/loozah/style.css index c68e38b68..7802d176d 100644 --- a/view/theme/loozah/style.css +++ b/view/theme/loozah/style.css @@ -2559,6 +2559,33 @@ a.mail-list-link { left: 0px; top: 0px; } +/** + * Form fields + */ +.field { + clear: left; + margin-bottom: 5px; + padding-bottom: 5px; +} + +.field label { + float: left; + width: 200px; + font-weight: bold; +} + +.field input, +.field textarea { + width: 400px; +} +.field textarea { height: 100px; } +.field_help { + display: block; + margin-left: 200px; + color: #666666; + +} + /** * ADMIN @@ -2586,30 +2613,6 @@ a.mail-list-link { margin-left: 200px; } -#adminpage .field { - clear: left; - margin-bottom: 5px; - padding-bottom: 5px; -} - -#adminpage .field label { - float: left; - width: 200px; - font-weight: bold; -} - -#adminpage .field input, -#adminpage .field textarea { - width: 400px; -} -#adminpage .field textarea { height: 100px; } -#adminpage .field_help { - display: block; - margin-left: 200px; - color: #666666; - -} - #adminpage h3 { border-bottom: 1px solid #cccccc; } -- cgit v1.2.3 From 24836f2966842b413ae29f325fbb61b30186a5f7 Mon Sep 17 00:00:00 2001 From: Friendika Date: Sat, 2 Jul 2011 02:47:01 -0700 Subject: improvied group highlighting, move new group link down --- view/theme/loozah/style.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'view/theme/loozah') diff --git a/view/theme/loozah/style.css b/view/theme/loozah/style.css index 7802d176d..d2b6441ac 100644 --- a/view/theme/loozah/style.css +++ b/view/theme/loozah/style.css @@ -137,6 +137,18 @@ blockquote:before { cursor: pointer; } + +#group-sidebar { + margin-bottom: 10px; +} + +.group-selected { + padding: 3px; + border: 1px solid #CCCCCC; + background: #F8F8F8; + font-weight: bold; +} + .fakelink:hover { color: #0CBEFE; text-decoration: none; -- cgit v1.2.3 From ab7f209fe3986ad751bd3a8ec2e155fcf1f9f130 Mon Sep 17 00:00:00 2001 From: Friendika Date: Sat, 2 Jul 2011 20:51:27 -0700 Subject: add starred, unstarred icons to duepuntozero, loozah --- view/theme/loozah/style.css | 2 ++ 1 file changed, 2 insertions(+) (limited to 'view/theme/loozah') diff --git a/view/theme/loozah/style.css b/view/theme/loozah/style.css index d2b6441ac..8f64e4cf8 100644 --- a/view/theme/loozah/style.css +++ b/view/theme/loozah/style.css @@ -2696,6 +2696,8 @@ a.mail-list-link { .on { background-position: -144px -32px; } .off { background-position: 0px -48px; } +.starred { background-position: -16px -48px; } +.unstarred { background-position: -32px -48px; } .icon.dim { opacity: 0.3;filter:alpha(opacity=30); } -- cgit v1.2.3 From 5ceeb6752d645036b832077d88b71a8825952322 Mon Sep 17 00:00:00 2001 From: Friendika Date: Sun, 3 Jul 2011 19:41:04 -0700 Subject: starred items --- view/theme/loozah/style.css | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'view/theme/loozah') diff --git a/view/theme/loozah/style.css b/view/theme/loozah/style.css index 8f64e4cf8..04a680017 100644 --- a/view/theme/loozah/style.css +++ b/view/theme/loozah/style.css @@ -1096,8 +1096,23 @@ input#dfrn-url { } .editpost { - margin-left: 15px; + margin-left: 10px; + float: left; } +.star-item { + margin-left: 10px; + float: left; +} + + +#network-star-link{ + margin-top: 10px; +} +.network-star { + float: left; + margin-right: 5px; +} + .wall-item-info.wallwall { width: 285px; -- cgit v1.2.3 From 9871cc8c0e07c112446b292548292301dbfd159f Mon Sep 17 00:00:00 2001 From: Friendika Date: Sun, 3 Jul 2011 22:53:11 -0700 Subject: profile match layout issues --- view/theme/loozah/style.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'view/theme/loozah') diff --git a/view/theme/loozah/style.css b/view/theme/loozah/style.css index 04a680017..df14a29db 100644 --- a/view/theme/loozah/style.css +++ b/view/theme/loozah/style.css @@ -2341,6 +2341,10 @@ a.mail-list-link { .profile-match-wrapper { float: left; padding: 10px; + width: 120px; + height: 120px; + scroll: auto; + } #profile-match-wrapper-end { clear: both; -- cgit v1.2.3