From 5da9511c317648da6beb5fa2752f084166b88adc Mon Sep 17 00:00:00 2001 From: sarven Date: Sun, 18 Jan 2009 19:42:08 +0000 Subject: Markup and styles for the Register page --- actions/register.php | 31 +++++++++++++++++++++++++++---- theme/base/css/display.css | 6 ++++-- 2 files changed, 31 insertions(+), 6 deletions(-) diff --git a/actions/register.php b/actions/register.php index b15aea08e..f0d47f19b 100644 --- a/actions/register.php +++ b/actions/register.php @@ -332,22 +332,32 @@ class RegisterAction extends Action } $this->elementStart('form', array('method' => 'post', - 'id' => 'login', + 'id' => 'form_register', + 'class' => 'form_settings', 'action' => common_local_url('register'))); - + $this->elementStart('fieldset'); + $this->element('legend', null, 'Account settings'); $this->hidden('token', common_session_token()); if ($code) { $this->hidden('code', $code); } + $this->elementStart('ul', 'form_datas'); + $this->elementStart('li'); $this->input('nickname', _('Nickname'), $this->trimmed('nickname'), _('1-64 lowercase letters or numbers, '. 'no punctuation or spaces. Required.')); + $this->elementEnd('li'); + $this->elementStart('li'); $this->password('password', _('Password'), _('6 or more characters. Required.')); + $this->elementEnd('li'); + $this->elementStart('li'); $this->password('confirm', _('Confirm'), _('Same as password above. Required.')); + $this->elementEnd('li'); + $this->elementStart('li'); if ($invite && $invite->address_type == 'email') { $this->input('email', _('Email'), $invite->address, _('Used only for updates, announcements, '. @@ -357,26 +367,36 @@ class RegisterAction extends Action _('Used only for updates, announcements, '. 'and password recovery')); } + $this->elementEnd('li'); + $this->elementStart('li'); $this->input('fullname', _('Full name'), $this->trimmed('fullname'), _('Longer name, preferably your "real" name')); + $this->elementEnd('li'); + $this->elementStart('li'); $this->input('homepage', _('Homepage'), $this->trimmed('homepage'), _('URL of your homepage, blog, '. 'or profile on another site')); + $this->elementEnd('li'); + $this->elementStart('li'); $this->textarea('bio', _('Bio'), $this->trimmed('bio'), _('Describe yourself and your '. 'interests in 140 chars')); + $this->elementEnd('li'); + $this->elementStart('li'); $this->input('location', _('Location'), $this->trimmed('location'), _('Where you are, like "City, '. 'State (or Region), Country"')); + $this->elementEnd('li'); + $this->elementStart('li', array('id' => 'settings_rememberme')); $this->checkbox('rememberme', _('Remember me'), $this->boolean('rememberme'), _('Automatically login in the future; '. 'not for shared computers!')); - $this->elementStart('p'); + $this->elementEnd('li'); $attrs = array('type' => 'checkbox', 'id' => 'license', 'name' => 'license', @@ -384,14 +404,17 @@ class RegisterAction extends Action if ($this->boolean('license')) { $attrs['checked'] = 'checked'; } + $this->elementStart('li'); $this->element('input', $attrs); $this->text(_('My text and files are available under ')); $this->element('a', array('href' => common_config('license', 'url')), $config['license']['title']); $this->text(_(' except this private data: password, '. 'email address, IM address, phone number.')); - $this->elementEnd('p'); + $this->elementEnd('li'); + $this->elementEnd('ul'); $this->submit('submit', _('Register')); + $this->elementEnd('fieldset'); $this->elementEnd('form'); } diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 7433a45e4..b5c47e1bb 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -136,7 +136,8 @@ font-weight:bold; } #form_settings_profile legend, -#form_login legend { +#form_login legend, +#form_register legend { display:none; } @@ -159,7 +160,8 @@ width:auto; margin-top:0; } -#form_login p.form_guide { +#form_login p.form_guide, +#form_register #settings_rememberme p.form_guide { margin-left:0; } -- cgit v1.2.3-54-g00ecf From 41e5e7e912fb93bc618a431c6e0d731a76fa87c8 Mon Sep 17 00:00:00 2001 From: sarven Date: Sun, 18 Jan 2009 19:45:21 +0000 Subject: Added @title for input submit --- lib/disfavorform.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/disfavorform.php b/lib/disfavorform.php index d0c3b1832..f339f215a 100644 --- a/lib/disfavorform.php +++ b/lib/disfavorform.php @@ -125,7 +125,7 @@ class DisfavorForm extends Form function formActions() { $this->out->submit('disfavor-submit-' . $this->notice->id, - _('Disfavor favorite')); + _('Disfavor favorite'), 'submit', null, _('Disfavor this notice')); } /** -- cgit v1.2.3-54-g00ecf From 5426c4ec6a8691969fbb704056ea87ad85021b79 Mon Sep 17 00:00:00 2001 From: sarven Date: Sun, 18 Jan 2009 19:58:28 +0000 Subject: Using config site name for creative commons bit. Fix i18n. --- lib/action.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/action.php b/lib/action.php index e62a032b6..320814a8a 100644 --- a/lib/action.php +++ b/lib/action.php @@ -439,7 +439,8 @@ class Action extends HTMLOutputter // lawsuit $this->element('img', array('id' => 'license_cc', 'src' => common_config('license', 'image'), 'alt' => common_config('license', 'title'))); - $this->text(_('All criti.ca content and data are available under the ')); + //TODO: This is dirty: i18n + $this->text(_('All '.common_config('site', 'name').' content and data are available under the ')); $this->element('a', array('class' => 'license', 'rel' => 'external license', 'href' => common_config('license', 'url')), -- cgit v1.2.3-54-g00ecf From d46c2cc8a70d83f7bf761ea8c778a8cd56d8e692 Mon Sep 17 00:00:00 2001 From: sarven Date: Sun, 18 Jan 2009 20:36:50 +0000 Subject: IM settings markup and style. Added confirmed/unconfirmed styles --- actions/emailsettings.php | 4 ++-- actions/imsettings.php | 42 +++++++++++++++++++++++++++--------------- theme/base/css/display.css | 9 +++------ theme/identica/css/display.css | 11 +++++++++++ 4 files changed, 43 insertions(+), 23 deletions(-) diff --git a/actions/emailsettings.php b/actions/emailsettings.php index 8b8a5351e..7ae62fb55 100644 --- a/actions/emailsettings.php +++ b/actions/emailsettings.php @@ -95,14 +95,14 @@ class EmailsettingsAction extends AccountSettingsAction $this->hidden('token', common_session_token()); if ($user->email) { - $this->element('p', array('id' => 'email_confirmed'), $user->email); + $this->element('p', array('id' => 'form_confirmed'), $user->email); $this->element('p', array('class' => 'form_note'), _('Current confirmed email address.')); $this->hidden('email', $user->email); $this->submit('remove', _('Remove')); } else { $confirm = $this->getConfirmation(); if ($confirm) { - $this->element('p', array('id' => 'email_unconfirmed'), $confirm->address); + $this->element('p', array('id' => 'form_unconfirmed'), $confirm->address); $this->element('p', array('class' => 'form_note'), _('Awaiting confirmation on this address. '. 'Check your inbox (and spam box!) for a message '. diff --git a/actions/imsettings.php b/actions/imsettings.php index 98951ac30..edbd81b57 100644 --- a/actions/imsettings.php +++ b/actions/imsettings.php @@ -86,36 +86,35 @@ class ImsettingsAction extends ConnectSettingsAction { $user = common_current_user(); $this->elementStart('form', array('method' => 'post', - 'id' => 'imsettings', + 'id' => 'form_settings_im', + 'class' => 'form_settings', 'action' => common_local_url('imsettings'))); + $this->elementStart('fieldset', array('id' => 'settings_im_address')); + $this->element('legend', null, _('Address')); $this->hidden('token', common_session_token()); - $this->element('h2', null, _('Address')); - if ($user->jabber) { - $this->elementStart('p'); - $this->element('span', 'address confirmed', $user->jabber); - $this->element('span', 'input_instructions', + $this->element('p', 'form_confirmed', $user->jabber); + $this->element('p', 'form_note', _('Current confirmed Jabber/GTalk address.')); $this->hidden('jabber', $user->jabber); - $this->elementEnd('p'); $this->submit('remove', _('Remove')); } else { $confirm = $this->getConfirmation(); if ($confirm) { - $this->elementStart('p'); - $this->element('span', 'address unconfirmed', $confirm->address); - $this->element('span', 'input_instructions', + $this->element('p', 'form_unconfirmed', $confirm->address); + $this->element('p', 'form_note', sprintf(_('Awaiting confirmation on this address. '. 'Check your Jabber/GTalk account for a '. 'message with further instructions. '. '(Did you add %s to your buddy list?)'), jabber_daemon_address())); $this->hidden('jabber', $confirm->address); - $this->elementEnd('p'); $this->submit('cancel', _('Cancel')); } else { + $this->elementStart('ul', 'form_datas'); + $this->elementStart('li'); $this->input('jabber', _('IM Address'), ($this->arg('jabber')) ? $this->arg('jabber') : null, sprintf(_('Jabber or GTalk address, '. @@ -123,27 +122,40 @@ class ImsettingsAction extends ConnectSettingsAction 'First, make sure to add %s to your '. 'buddy list in your IM client or on GTalk.'), jabber_daemon_address())); + $this->elementEnd('li'); + $this->elementEnd('ul'); $this->submit('add', _('Add')); } } - - $this->element('h2', null, _('Preferences')); - + $this->elementEnd('fieldset'); + + $this->elementStart('fieldset', array('id' => 'settings_im_preferences')); + $this->element('legend', null, _('Preferences')); + $this->elementStart('ul', 'form_datas'); + $this->elementStart('li'); $this->checkbox('jabbernotify', _('Send me notices through Jabber/GTalk.'), $user->jabbernotify); + $this->elementEnd('li'); + $this->elementStart('li'); $this->checkbox('updatefrompresence', _('Post a notice when my Jabber/GTalk status changes.'), $user->updatefrompresence); + $this->elementEnd('li'); + $this->elementStart('li'); $this->checkbox('jabberreplies', _('Send me replies through Jabber/GTalk '. 'from people I\'m not subscribed to.'), $user->jabberreplies); + $this->elementEnd('li'); + $this->elementStart('li'); $this->checkbox('jabbermicroid', _('Publish a MicroID for my Jabber/GTalk address.'), $user->jabbermicroid); + $this->elementEnd('li'); + $this->elementEnd('ul'); $this->submit('save', _('Save')); - + $this->elementEnd('fieldset'); $this->elementEnd('form'); } diff --git a/theme/base/css/display.css b/theme/base/css/display.css index b5c47e1bb..2857070f8 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -79,11 +79,12 @@ top:2px; left:0; } -#page_notice .error { -background-color:#F7E8E8; +#page_notice .error, +#page_notice .success { padding:4px 7px; -moz-border-radius:4px; } + form label.submit { display:none; } @@ -666,10 +667,6 @@ border-top:1px dashed #D1D9E4; list-style-type:none; /*margin-bottom:11px;*/ } -.notices li.over { -background-color:#fcfcfc; -} - /* NOTICES */ #notices_primary { diff --git a/theme/identica/css/display.css b/theme/identica/css/display.css index 832862551..0235c2d7d 100644 --- a/theme/identica/css/display.css +++ b/theme/identica/css/display.css @@ -71,6 +71,12 @@ background-color:rgba(255, 255, 255, 0.7); background-color:#fff; } +#page_notice .error { +background-color:#F7E8E8; +} +#page_notice .success { +background-color:#EFF3DC; +} @@ -135,6 +141,11 @@ color:#555; /* NOTICES */ +.notices li.over { +background-color:#fcfcfc; +} + + .notice div.entry-content a { } -- cgit v1.2.3-54-g00ecf From 061de33e576ac542459fd48ab61877eece05ea39 Mon Sep 17 00:00:00 2001 From: sarven Date: Sun, 18 Jan 2009 21:14:47 +0000 Subject: SMS settings markup and styles. Minor check with twitter settings form_datas --- actions/smssettings.php | 33 +++++++++++++++++++-------------- actions/twittersettings.php | 2 +- theme/base/css/display.css | 18 +++++++++++++----- 3 files changed, 33 insertions(+), 20 deletions(-) diff --git a/actions/smssettings.php b/actions/smssettings.php index 845266d18..489fd1f58 100644 --- a/actions/smssettings.php +++ b/actions/smssettings.php @@ -93,37 +93,42 @@ class SmssettingsAction extends ConnectSettingsAction $this->hidden('token', common_session_token()); if ($user->sms) { - $this->elementStart('p'); $carrier = $user->getCarrier(); - $this->element('span', 'address confirmed', + $this->element('p', 'form_confirmed', $user->sms . ' (' . $carrier->name . ')'); - $this->element('span', 'input_instructions', + $this->element('p', 'form_guide', _('Current confirmed SMS-enabled phone number.')); $this->hidden('sms', $user->sms); $this->hidden('carrier', $user->carrier); - $this->elementEnd('p'); $this->submit('remove', _('Remove')); } else { $confirm = $this->getConfirmation(); if ($confirm) { $carrier = Sms_carrier::staticGet($confirm->address_extra); - $this->elementStart('p'); - $this->element('span', 'address unconfirmed', + $this->element('p', 'form_unconfirmed', $confirm->address . ' (' . $carrier->name . ')'); - $this->element('span', 'input_instructions', + $this->element('p', 'form_guide', _('Awaiting confirmation on this phone number.')); $this->hidden('sms', $confirm->address); $this->hidden('carrier', $confirm->address_extra); - $this->elementEnd('p'); $this->submit('cancel', _('Cancel')); + + $this->elementStart('ul', 'form_datas'); + $this->elementStart('li'); $this->input('code', _('Confirmation code'), null, _('Enter the code you received on your phone.')); + $this->elementEnd('li'); + $this->elementEnd('ul'); $this->submit('confirm', _('Confirm')); } else { + $this->elementStart('ul', 'form_datas'); + $this->elementStart('li'); $this->input('sms', _('SMS Phone number'), ($this->arg('sms')) ? $this->arg('sms') : null, _('Phone number, no punctuation or spaces, '. 'with area code')); + $this->elementEnd('li'); + $this->elementEnd('ul'); $this->carrierSelect(); $this->submit('add', _('Add')); } @@ -131,14 +136,13 @@ class SmssettingsAction extends ConnectSettingsAction $this->elementEnd('fieldset'); if ($user->sms) { - $this->element('h2', null, _('Incoming email')); + $this->elementStart('fieldset', array('id' => 'settings_sms_incoming_email')); + $this->element('legend', null, _('Incoming email')); if ($user->incomingemail) { - $this->elementStart('p'); - $this->element('span', 'address', $user->incomingemail); - $this->element('span', 'input_instructions', + $this->element('p', 'form_unconfirmed', $user->incomingemail); + $this->element('p', 'form_note', _('Send email to this address to post new notices.')); - $this->elementEnd('p'); $this->submit('removeincoming', _('Remove')); } @@ -146,6 +150,7 @@ class SmssettingsAction extends ConnectSettingsAction _('Make a new email address for posting to; '. 'cancels the old one.')); $this->submit('newincoming', _('New')); + $this->elementEnd('fieldset'); } $this->elementStart('fieldset', array('id' => 'settings_sms_preferences')); @@ -443,7 +448,7 @@ class SmssettingsAction extends ConnectSettingsAction $cnt = $carrier->find(); - $this->elementStart('ul'); + $this->elementStart('ul', 'form_datas'); $this->elementStart('li'); $this->element('label', array('for' => 'carrier'), _('Mobile carrier')); $this->elementStart('select', array('name' => 'carrier', diff --git a/actions/twittersettings.php b/actions/twittersettings.php index 597623c80..079099123 100644 --- a/actions/twittersettings.php +++ b/actions/twittersettings.php @@ -133,7 +133,7 @@ class TwittersettingsAction extends ConnectSettingsAction array('id' => 'settings_twitter_preferences')); $this->element('legend', null, _('Preferences')); - $this->elementStart('ul'); + $this->elementStart('ul', 'form_datas'); $this->elementStart('li'); $this->checkbox('noticesync', _('Automatically send my notices to Twitter.'), diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 2857070f8..08805c1e0 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -116,15 +116,19 @@ width:100%; float:left; } -.form_settings .form_datas label, +.form_settings .form_datas label { +float:left; +} +.form_settings .form_datas textarea, +.form_settings .form_datas select, .form_settings .form_datas input { -margin-right:11px; +margin-left:11px; float:left; } .form_settings label { margin-top:7px; -width:123px; +width:152px; } .form_actions label { @@ -144,7 +148,7 @@ display:none; .form_settings .form_datas p.form_guide { clear:both; -margin-left:134px; +margin-left:163px; margin-bottom:0; } @@ -154,11 +158,15 @@ margin-bottom:11px; .form_settings input.checkbox { margin-top:3px; +margin-left:0; } .form_settings label.checkbox { font-weight:normal; -width:auto; margin-top:0; +margin-right:0; +margin-left:11px; +float:left; +width:90%; } #form_login p.form_guide, -- cgit v1.2.3-54-g00ecf From 7749228f52d914d4949cb5fa139cdd6ade4ead6e Mon Sep 17 00:00:00 2001 From: sarven Date: Sun, 18 Jan 2009 21:22:31 +0000 Subject: OpenID settings remove style --- actions/openidsettings.php | 4 ++-- theme/base/css/display.css | 11 ++--------- 2 files changed, 4 insertions(+), 11 deletions(-) diff --git a/actions/openidsettings.php b/actions/openidsettings.php index 257aac8d0..126d2c992 100644 --- a/actions/openidsettings.php +++ b/actions/openidsettings.php @@ -124,7 +124,7 @@ class OpenidsettingsAction extends AccountSettingsAction if ($cnt == 1 && !$user->password) { - $this->element('p', null, + $this->element('p', 'form_guide', _('Removing your only OpenID '. 'would make it impossible to log in! ' . 'If you need to remove it, '. @@ -162,7 +162,7 @@ class OpenidsettingsAction extends AccountSettingsAction $this->element('input', array('type' => 'submit', 'id' => 'remove'.$idx, 'name' => 'remove', - 'class' => 'submit', + 'class' => 'submit remove', 'value' => _('Remove'))); $this->elementEnd('fieldset'); $this->elementEnd('form'); diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 08805c1e0..76e52ffc9 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -84,18 +84,11 @@ left:0; padding:4px 7px; -moz-border-radius:4px; } - form label.submit { display:none; } -form .error_message { -display:block; -} -.form_response { -margin-bottom:18px; -} - -form input.submit { +.form_settings input.remove { +margin-left:11px; } -- cgit v1.2.3-54-g00ecf From 6b23a9ed2f35e487847fe80b588eb3a967aaecb8 Mon Sep 17 00:00:00 2001 From: sarven Date: Sun, 18 Jan 2009 21:34:57 +0000 Subject: Disfavor markup/style --- lib/disfavorform.php | 12 ++++++++++++ theme/base/css/display.css | 9 ++++++--- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/lib/disfavorform.php b/lib/disfavorform.php index f339f215a..45a9ddb1d 100644 --- a/lib/disfavorform.php +++ b/lib/disfavorform.php @@ -103,6 +103,18 @@ class DisfavorForm extends Form common_session_token()); } + + /** + * Legend of the Form + * + * @return void + */ + function formLegend() + { + $this->out->element('legend', null, _('Disfavor this notice')); + } + + /** * Data elements * diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 76e52ffc9..0041baf44 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -860,15 +860,18 @@ padding-left:16px; .notice-options form input.submit { cursor:pointer; -padding:2px 0 2px 10px; +width:16px; +padding:2px 0; } .notice-options .notice_delete dt, -.notice-options .form_favor legend { +.notice-options .form_favor legend, +.notice-options .form_disfavor legend { display:none; } .notice-options .notice_delete fieldset, -.notice-options .form_favor fieldset { +.notice-options .form_favor fieldset, +.notice-options .form_disfavor fieldset { border:0; padding:0; } -- cgit v1.2.3-54-g00ecf From 9d384aadb1f27cea85d23c944f787cf300a4389a Mon Sep 17 00:00:00 2001 From: sarven Date: Sun, 18 Jan 2009 22:08:51 +0000 Subject: @id for site_nav_global_primary items in order to target for styling --- actions/register.php | 1 + lib/action.php | 22 +++++++++++++--------- theme/identica/css/display.css | 19 ++++++++++++++++--- 3 files changed, 30 insertions(+), 12 deletions(-) diff --git a/actions/register.php b/actions/register.php index f0d47f19b..08243c1e2 100644 --- a/actions/register.php +++ b/actions/register.php @@ -399,6 +399,7 @@ class RegisterAction extends Action $this->elementEnd('li'); $attrs = array('type' => 'checkbox', 'id' => 'license', + 'class' => 'checkbox', 'name' => 'license', 'value' => 'true'); if ($this->boolean('license')) { diff --git a/lib/action.php b/lib/action.php index 320814a8a..3d61afde2 100644 --- a/lib/action.php +++ b/lib/action.php @@ -242,25 +242,29 @@ class Action extends HTMLOutputter // lawsuit $this->elementStart('ul', array('class' => 'nav')); if ($user) { $this->menuItem(common_local_url('all', array('nickname' => $user->nickname)), - _('Home')); + _('Home'), _('Personal timeline'), false, 'nav_home'); } - $this->menuItem(common_local_url('peoplesearch'), _('Search')); + $this->menuItem(common_local_url('peoplesearch'), + _('Search'), _('Search the site for people and text'), false, 'nav_search'); if ($user) { $this->menuItem(common_local_url('profilesettings'), - _('Account')); + _('Account'), _('Account settings'), false, 'nav_account'); $this->menuItem(common_local_url('imsettings'), - _('Connect')); + _('Connect'), _('Connect settings'), false, 'nav_connect'); $this->menuItem(common_local_url('logout'), - _('Logout')); + _('Logout'), _('Logout from the site'), false, 'nav_logout'); } else { - $this->menuItem(common_local_url('login'), _('Login')); + $this->menuItem(common_local_url('login'), + _('Login'), _('Login to the site'), false, 'nav_login'); if (!common_config('site', 'closed')) { - $this->menuItem(common_local_url('register'), _('Register')); + $this->menuItem(common_local_url('register'), + _('Register'), _('Create an account'), false, 'nav_register'); } - $this->menuItem(common_local_url('openidlogin'), _('OpenID')); + $this->menuItem(common_local_url('openidlogin'), + _('OpenID'), _('Login with OpenID'), false, 'nav_openid'); } $this->menuItem(common_local_url('doc', array('title' => 'help')), - _('Help')); + _('Help'), _('Help me!'), false, 'nav_help'); $this->elementEnd('ul'); $this->elementEnd('dd'); $this->elementEnd('dl'); diff --git a/theme/identica/css/display.css b/theme/identica/css/display.css index 0235c2d7d..a5b177004 100644 --- a/theme/identica/css/display.css +++ b/theme/identica/css/display.css @@ -57,6 +57,21 @@ background-color:transparent; } +#site_nav_global_primary a { +} + +#nav_register a { +background-color:#A9BF4F; +color:#fff; +text-decoration:none; +font-weight:bold; +padding:2px 4px; + +} +#nav_login a { +} + + #site_nav_local_views a { border-color:#fff; background-color:rgba(255, 255, 255, 0.2); @@ -71,6 +86,7 @@ background-color:rgba(255, 255, 255, 0.7); background-color:#fff; } + #page_notice .error { background-color:#F7E8E8; } @@ -78,9 +94,6 @@ background-color:#F7E8E8; background-color:#EFF3DC; } - - - #export_data li a { background-repeat:no-repeat; background-position:0 45%; -- cgit v1.2.3-54-g00ecf From c04fade6be03385213b97fff998e1b6c19ae3790 Mon Sep 17 00:00:00 2001 From: sarven Date: Sun, 18 Jan 2009 22:27:20 +0000 Subject: Using #ddd for anti-aliasing --- theme/identica/logo.png | Bin 2059 -> 2215 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/theme/identica/logo.png b/theme/identica/logo.png index 4a5b5470e..cee36799e 100644 Binary files a/theme/identica/logo.png and b/theme/identica/logo.png differ -- cgit v1.2.3-54-g00ecf From 910bd332430b0af233ae78b330994520d4b59c97 Mon Sep 17 00:00:00 2001 From: sarven Date: Mon, 19 Jan 2009 00:10:42 +0000 Subject: Minimal cross browser styling (mostly IE7). w00t! --- lib/action.php | 2 +- theme/base/css/display.css | 28 ++++++++++++++++++---------- theme/identica/css/display.css | 18 +++++++++++++++--- 3 files changed, 34 insertions(+), 14 deletions(-) diff --git a/lib/action.php b/lib/action.php index 3d61afde2..c463c8459 100644 --- a/lib/action.php +++ b/lib/action.php @@ -138,7 +138,7 @@ class Action extends HTMLOutputter // lawsuit if (file_exists(theme_file('ie'.$ver.'.css'))) { // Yes, IE people should be put in jail. $this->comment('[if lte IE '.$ver.']> Date: Mon, 19 Jan 2009 00:48:12 +0000 Subject: Cross-browser stuff --- lib/action.php | 2 ++ theme/base/css/display.css | 35 ++++++++++++++++++++++++++++++----- theme/base/css/ie.css | 26 ++++++++++++++++++++++++++ theme/base/css/ie7.css | 5 +++++ theme/identica/css/display.css | 4 ++++ 5 files changed, 67 insertions(+), 5 deletions(-) create mode 100644 theme/base/css/ie.css create mode 100644 theme/base/css/ie7.css diff --git a/lib/action.php b/lib/action.php index c463c8459..9cd2d5a18 100644 --- a/lib/action.php +++ b/lib/action.php @@ -134,6 +134,8 @@ class Action extends HTMLOutputter // lawsuit 'type' => 'text/css', 'href' => theme_path('css/display.css', null) . '?version=' . LACONICA_VERSION, 'media' => 'screen, projection, tv')); + $this->comment('[if IE]> Date: Mon, 19 Jan 2009 01:04:22 +0000 Subject: text-shadow for local a --- theme/base/css/display.css | 1 + 1 file changed, 1 insertion(+) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 06860e30d..716f3256f 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -272,6 +272,7 @@ padding:4px 11px; border-width:1px; border-style:solid; border-bottom:0; +text-shadow: 4px 4px 4px #ddd; font-weight:bold; } #site_nav_local_views .nav { -- cgit v1.2.3-54-g00ecf From 6fa7ac1305d516c6a50ae1f2008e71539baa4ff2 Mon Sep 17 00:00:00 2001 From: sarven Date: Mon, 19 Jan 2009 02:06:40 +0000 Subject: Started default stylesheet. Grouped colours for themeing. --- theme/default/css/display.css | 243 +++++++++++++++++++++ theme/identica/css/display.css | 96 +++----- .../images/icons/twotone/green/disfavourite.gif | Bin 0 -> 88 bytes 3 files changed, 270 insertions(+), 69 deletions(-) create mode 100644 theme/default/css/display.css create mode 100644 theme/identica/images/icons/twotone/green/disfavourite.gif diff --git a/theme/default/css/display.css b/theme/default/css/display.css new file mode 100644 index 000000000..877c833fe --- /dev/null +++ b/theme/default/css/display.css @@ -0,0 +1,243 @@ +/* theme: identica */ +html, +body, +a:active { +background-color:#ddd; +} +body { +font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; +font-size:1em; +} +input, textarea, select, option { +font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; +} +input, textarea, select { +border-color:#aaa; +} + +input.submit, +#form_notice.warning #notice_text-count, +#nav_register a, +.form_settings .form_note { +background-color:#A9BF4F; +} + +input:focus, textarea:focus, select:focus, +#form_notice.warning #notice_data-text { +border-color:#A9BF4F; +} +input.submit, +#nav_register a { +color:#fff; +} + +a, +div.notice-options input { +color:#002E6E; +} + +.notice p.entry-content a:visited { +background-color:#fcfcfc; +border-radius:4px; +-moz-border-radius:4px; +-webkit-border-radius:4px; +} +.notice p.entry-content .vcard a { +background-color:#fcfffc; +border-radius:4px; +-moz-border-radius:4px; +-webkit-border-radius:4px; +} + +#aside_primary, +#user_subscribe a, +#TB_window input.submit, +.form_user_subscribe input.submit { +background-color:#CEE1E9; +} + + +#notice_text-count { +color:#333; +} +#form_notice.warning #notice_text-count, +#user_actions a { +color:#000; +} + +#form_notice #notice_data-attach_view { +background-image:url(../images/icons/twotone/green/paper-clip.gif); +background-repeat:no-repeat; +background-position:0 45%; +background-color:transparent; +} + +#nav_register a { +text-decoration:none; +font-weight:bold; +padding:2px 4px; +} + +#site_nav_local_views a { +border-color:#fff; +background-color:rgba(255, 255, 255, 0.2); +} +#site_nav_local_views a:hover { +background-color:rgba(255, 255, 255, 0.7); +} + + +#content, +#site_nav_local_views .current a { +background-color:#fff; +} + + +#page_notice .error { +background-color:#F7E8E8; +} +#page_notice .success { +background-color:#EFF3DC; +} + +#export_data li a { +background-repeat:no-repeat; +background-position:0 45%; +} +#export_data li a.rss { +background-image:url(../../base/images/icons/icon_rss.jpg); +} +#export_data li a.atom { +background-image:url(../../base/images/icons/icon_atom.jpg); +} +#export_data li a.foaf { +background-image:url(../../base/images/icons/icon_foaf.gif); +} +#export_data li a.export_vcard { +background-image:url(../../base/images/icons/icon_vcard.gif); +} + + +/*user_actions*/ +#user_actions li { +border-top-color:#eee; +} +#user_subscribe a, +#TB_window input.submit, +.form_user_subscribe input.submit { +background-image: url(../images/icons/twotone/green/shield.gif); +background-position: 0 45%; +background-repeat: no-repeat; +} +.form_user_unsubscribe input.submit { +background-color:#647819; +color:#fff; +} +#user_send-a-message a { +background:url(../images/icons/twotone/green/quote.gif) 0 45% no-repeat; +} +.form_user_nudge input.submit { +background:url(../images/icons/twotone/green/mail.gif) 0 45% no-repeat; +} +.form_user_block input.submit { +background:url(../images/icons/twotone/green/against.gif) 0 45% no-repeat; +} + + +/* NOTICES */ +.notices li.over { +background-color:#fcfcfc; +} + +.notice-data a span { +background-color:transparent; +background-repeat:no-repeat; +background-position:0 45%; +} +.notice_video .notice-data a span { +background-image:url(../images/icons/twotone/green/camera.gif); +} +.notice_audio .notice-data a span { +background-image:url(../images/icons/twotone/green/music.gif); +} +.notice_image .notice-data a span { +background-image:url(../images/icons/twotone/green/search.gif); +} +.notice_event .notice-data a span { +background-image:url(../images/icons/twotone/green/calendar.gif); +} +.notice_location .notice-data a span { +background-image:url(../images/icons/twotone/green/flag.gif); +} +.notice_document .notice-data a span { +background-image:url(../images/icons/twotone/green/document.gif); +} + +.notice-options .notice_reply a, +.notice-options form input.submit { +background-color:transparent; +} +.notice-options .notice_reply a { +background:transparent url(../images/icons/twotone/green/reply.gif) no-repeat 0 45%; +} +.notice-options form.form_favor input.submit { +background:transparent url(../images/icons/twotone/green/favourite.gif) no-repeat 0 45%; +} +.notice-options form.form_disfavor input.submit { +background:transparent url(../images/icons/twotone/green/disfavourite.gif) no-repeat 0 45%; +} +.notice-options .notice_delete a { +background:transparent url(../images/icons/twotone/green/trash.gif) no-repeat 0 45%; +} + +div.notice-options { +opacity:0.3; +} + +div.entry-content { +color:#333; +} +div.notice-options a, +div.notice-options input { +font-family:sans-serif; +} +.notices li.hover { +background-color:#fcfcfc; +} +.notices li.hover div.entry-content, +.notices li.hover div.notice-options { +opacity:1; +} + +/*END: NOTICES */ + + + +.pagination .nav_prev a, +.pagination .nav_next a { +background-repeat:no-repeat; +} +.pagination .nav_prev a { +background-image:url(../images/icons/twotone/green/arrow-left.gif); +background-position:0 45%; +} +.pagination .nav_next a { +background-image:url(../images/icons/twotone/green/arrow-right.gif); +background-position:100% 45%; +} + + + +#home #intro #guide_steps li a { +border-color:#ccc; +color:#fff; +} +#home #intro #step_join-now a { +background-color:#f00; +} +#home #intro #step_start-a-group a { +background-color:#0f0; +} +#home #intro #step_create-a-community a { +background-color:#00f; +} \ No newline at end of file diff --git a/theme/identica/css/display.css b/theme/identica/css/display.css index eb7b47a12..877c833fe 100644 --- a/theme/identica/css/display.css +++ b/theme/identica/css/display.css @@ -1,11 +1,12 @@ /* theme: identica */ -html { +html, +body, +a:active { background-color:#ddd; } body { font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; font-size:1em; -background-color:#ddd; } input, textarea, select, option { font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; @@ -14,20 +15,27 @@ input, textarea, select { border-color:#aaa; } -input:focus, textarea:focus, select:focus { +input.submit, +#form_notice.warning #notice_text-count, +#nav_register a, +.form_settings .form_note { +background-color:#A9BF4F; +} + +input:focus, textarea:focus, select:focus, +#form_notice.warning #notice_data-text { border-color:#A9BF4F; } -input.submit { -background-color:#A9BF4F; +input.submit, +#nav_register a { color:#fff; } -a { +a, +div.notice-options input { color:#002E6E; } -a:active { -background-color:#ddd; -} + .notice p.entry-content a:visited { background-color:#fcfcfc; border-radius:4px; @@ -41,27 +49,20 @@ border-radius:4px; -webkit-border-radius:4px; } - - -#aside_primary { +#aside_primary, +#user_subscribe a, +#TB_window input.submit, +.form_user_subscribe input.submit { background-color:#CEE1E9; } -#form_notice textarea { -} -#form_notice label { -color:#88171A; -} #notice_text-count { color:#333; } -#form_notice.warning #notice_text-count { +#form_notice.warning #notice_text-count, +#user_actions a { color:#000; -background-color:#A9BF4F; -} -#form_notice.warning #notice_data-text { -border-color:#A9BF4F; } #form_notice #notice_data-attach_view { @@ -71,22 +72,11 @@ background-position:0 45%; background-color:transparent; } - -#site_nav_global_primary a { -} -#form_notice .form_actions input.submit { -} #nav_register a { -background-color:#A9BF4F; -color:#fff; text-decoration:none; font-weight:bold; padding:2px 4px; - } -#nav_login a { -} - #site_nav_local_views a { border-color:#fff; @@ -132,13 +122,12 @@ background-image:url(../../base/images/icons/icon_vcard.gif); #user_actions li { border-top-color:#eee; } -#user_actions a { -color:#000; -} #user_subscribe a, #TB_window input.submit, .form_user_subscribe input.submit { -background:#CEE1E9 url(../images/icons/twotone/green/shield.gif) 0 45% no-repeat; +background-image: url(../images/icons/twotone/green/shield.gif); +background-position: 0 45%; +background-repeat: no-repeat; } .form_user_unsubscribe input.submit { background-color:#647819; @@ -155,33 +144,11 @@ background:url(../images/icons/twotone/green/against.gif) 0 45% no-repeat; } -.user_tags .mark_hash { -color:#555; -} - - - -.vcard .fn { -} -.vcard .fn:hover { -} - - - - /* NOTICES */ .notices li.over { background-color:#fcfcfc; } - -.notice div.entry-content a { - -} -.notice div.entry-content a:hover { -} - - .notice-data a span { background-color:transparent; background-repeat:no-repeat; @@ -233,10 +200,6 @@ color:#333; div.notice-options a, div.notice-options input { font-family:sans-serif; -} -div.notice-options input { -color:#002E6E; - } .notices li.hover { background-color:#fcfcfc; @@ -246,10 +209,6 @@ background-color:#fcfcfc; opacity:1; } -.form_settings .form_note { -background-color:#A9BF4F; -} - /*END: NOTICES */ @@ -281,5 +240,4 @@ background-color:#0f0; } #home #intro #step_create-a-community a { background-color:#00f; -} - +} \ No newline at end of file diff --git a/theme/identica/images/icons/twotone/green/disfavourite.gif b/theme/identica/images/icons/twotone/green/disfavourite.gif new file mode 100644 index 000000000..3946869ae Binary files /dev/null and b/theme/identica/images/icons/twotone/green/disfavourite.gif differ -- cgit v1.2.3-54-g00ecf From 0b5f0f4faaf04fdf13dbd5dea1f081b9e1cc6071 Mon Sep 17 00:00:00 2001 From: sarven Date: Mon, 19 Jan 2009 03:09:13 +0000 Subject: Renamed form_datas to form_data --- actions/emailsettings.php | 4 ++-- actions/imsettings.php | 4 ++-- actions/login.php | 2 +- actions/openidsettings.php | 2 +- actions/othersettings.php | 2 +- actions/profilesettings.php | 2 +- actions/register.php | 2 +- actions/smssettings.php | 8 ++++---- actions/twittersettings.php | 4 ++-- lib/noticeform.php | 2 +- theme/base/css/display.css | 22 +++++++++++----------- 11 files changed, 27 insertions(+), 27 deletions(-) diff --git a/actions/emailsettings.php b/actions/emailsettings.php index 7ae62fb55..b84acb214 100644 --- a/actions/emailsettings.php +++ b/actions/emailsettings.php @@ -110,7 +110,7 @@ class EmailsettingsAction extends AccountSettingsAction $this->hidden('email', $confirm->address); $this->submit('cancel', _('Cancel')); } else { - $this->elementStart('ul', 'form_datas'); + $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->input('email', _('Email Address'), ($this->arg('email')) ? $this->arg('email') : null, @@ -146,7 +146,7 @@ class EmailsettingsAction extends AccountSettingsAction $this->elementStart('fieldset', array('id' => 'settings_email_preferences')); $this->element('legend', null, _('Preferences')); - $this->elementStart('ul', 'form_datas'); + $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->checkbox('emailnotifysub', _('Send me notices of new subscriptions through email.'), diff --git a/actions/imsettings.php b/actions/imsettings.php index edbd81b57..e0f5ede3a 100644 --- a/actions/imsettings.php +++ b/actions/imsettings.php @@ -113,7 +113,7 @@ class ImsettingsAction extends ConnectSettingsAction $this->hidden('jabber', $confirm->address); $this->submit('cancel', _('Cancel')); } else { - $this->elementStart('ul', 'form_datas'); + $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->input('jabber', _('IM Address'), ($this->arg('jabber')) ? $this->arg('jabber') : null, @@ -131,7 +131,7 @@ class ImsettingsAction extends ConnectSettingsAction $this->elementStart('fieldset', array('id' => 'settings_im_preferences')); $this->element('legend', null, _('Preferences')); - $this->elementStart('ul', 'form_datas'); + $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->checkbox('jabbernotify', _('Send me notices through Jabber/GTalk.'), diff --git a/actions/login.php b/actions/login.php index 9fa501a5d..11cf1f02a 100644 --- a/actions/login.php +++ b/actions/login.php @@ -223,7 +223,7 @@ class LoginAction extends Action 'action' => common_local_url('login'))); $this->elementStart('fieldset'); $this->element('legend', null, _('Login to site')); - $this->elementStart('ul', 'form_datas'); + $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->input('nickname', _('Nickname')); $this->elementEnd('li'); diff --git a/actions/openidsettings.php b/actions/openidsettings.php index 126d2c992..92469d20f 100644 --- a/actions/openidsettings.php +++ b/actions/openidsettings.php @@ -95,7 +95,7 @@ class OpenidsettingsAction extends AccountSettingsAction $this->element('p', 'form_guide', _('If you want to add an OpenID to your account, ' . 'enter it in the box below and click "Add".')); - $this->elementStart('ul', 'form_datas'); + $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->element('label', array('for' => 'openid_url'), _('OpenID URL')); diff --git a/actions/othersettings.php b/actions/othersettings.php index cbb2c0cb9..b542233ca 100644 --- a/actions/othersettings.php +++ b/actions/othersettings.php @@ -107,7 +107,7 @@ class OthersettingsAction extends AccountSettingsAction 'metamark.net' => 'metamark.net' ); - $this->elementStart('ul', 'form_datas'); + $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->dropdown('urlshorteningservice', _('Service'), $services, _('Automatic shortening service to use.'), diff --git a/actions/profilesettings.php b/actions/profilesettings.php index 12251b83b..6dd4775e5 100644 --- a/actions/profilesettings.php +++ b/actions/profilesettings.php @@ -93,7 +93,7 @@ class ProfilesettingsAction extends AccountSettingsAction # too much common patterns here... abstractable? - $this->elementStart('ul', 'form_datas'); + $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->input('nickname', _('Nickname'), ($this->arg('nickname')) ? $this->arg('nickname') : $profile->nickname, diff --git a/actions/register.php b/actions/register.php index 08243c1e2..159daaa73 100644 --- a/actions/register.php +++ b/actions/register.php @@ -343,7 +343,7 @@ class RegisterAction extends Action $this->hidden('code', $code); } - $this->elementStart('ul', 'form_datas'); + $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->input('nickname', _('Nickname'), $this->trimmed('nickname'), _('1-64 lowercase letters or numbers, '. diff --git a/actions/smssettings.php b/actions/smssettings.php index 489fd1f58..f89cbe1ab 100644 --- a/actions/smssettings.php +++ b/actions/smssettings.php @@ -113,7 +113,7 @@ class SmssettingsAction extends ConnectSettingsAction $this->hidden('carrier', $confirm->address_extra); $this->submit('cancel', _('Cancel')); - $this->elementStart('ul', 'form_datas'); + $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->input('code', _('Confirmation code'), null, _('Enter the code you received on your phone.')); @@ -121,7 +121,7 @@ class SmssettingsAction extends ConnectSettingsAction $this->elementEnd('ul'); $this->submit('confirm', _('Confirm')); } else { - $this->elementStart('ul', 'form_datas'); + $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->input('sms', _('SMS Phone number'), ($this->arg('sms')) ? $this->arg('sms') : null, @@ -156,7 +156,7 @@ class SmssettingsAction extends ConnectSettingsAction $this->elementStart('fieldset', array('id' => 'settings_sms_preferences')); $this->element('legend', null, _('Preferences')); - $this->elementStart('ul', 'form_datas'); + $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->checkbox('smsnotify', _('Send me notices through SMS; '. @@ -448,7 +448,7 @@ class SmssettingsAction extends ConnectSettingsAction $cnt = $carrier->find(); - $this->elementStart('ul', 'form_datas'); + $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->element('label', array('for' => 'carrier'), _('Mobile carrier')); $this->elementStart('select', array('name' => 'carrier', diff --git a/actions/twittersettings.php b/actions/twittersettings.php index 079099123..efc8215cd 100644 --- a/actions/twittersettings.php +++ b/actions/twittersettings.php @@ -104,7 +104,7 @@ class TwittersettingsAction extends ConnectSettingsAction $this->elementStart('fieldset', array('id' => 'settings_twitter_account')); $this->element('legend', null, _('Twitter Account')); $this->hidden('token', common_session_token()); - $this->elementStart('ul', 'form_datas'); + $this->elementStart('ul', 'form_data'); if ($fuser) { $this->elementStart('li'); $this->element('span', 'twitter_user', $fuser->nickname); @@ -133,7 +133,7 @@ class TwittersettingsAction extends ConnectSettingsAction array('id' => 'settings_twitter_preferences')); $this->element('legend', null, _('Preferences')); - $this->elementStart('ul', 'form_datas'); + $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->checkbox('noticesync', _('Automatically send my notices to Twitter.'), diff --git a/lib/noticeform.php b/lib/noticeform.php index d6a3aa9c2..f0205f1c1 100644 --- a/lib/noticeform.php +++ b/lib/noticeform.php @@ -123,7 +123,7 @@ class NoticeForm extends Form { $user = common_current_user(); - $this->out->elementStart('ul', 'form_datas'); + $this->out->elementStart('ul', 'form_data'); $this->out->elementStart('li', array('id' => 'notice_text')); $this->out->element('label', array('for' => 'notice_data-text'), sprintf(_('What\'s up, %s?'), $user->nickname)); diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 716f3256f..d659a4b4c 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -114,17 +114,17 @@ font-style:italic; } -.form_settings .form_datas li { +.form_settings .form_data li { width:100%; float:left; } -.form_settings .form_datas label { +.form_settings .form_data label { float:left; } -.form_settings .form_datas textarea, -.form_settings .form_datas select, -.form_settings .form_datas input { +.form_settings .form_data textarea, +.form_settings .form_data select, +.form_settings .form_data input { margin-left:11px; float:left; } @@ -149,7 +149,7 @@ font-weight:bold; display:none; } -.form_settings .form_datas p.form_guide { +.form_settings .form_data p.form_guide { clear:both; margin-left:163px; margin-bottom:0; @@ -424,7 +424,7 @@ display:block; font-size:1.3em; margin-bottom:7px; } -#form_notice .form_datas li { +#form_notice .form_data li { float:left; } @@ -979,12 +979,12 @@ background-color:#D1D9E4; #user_actions #user_subscribe .form_note, -#user_actions #user_subscribe .form_datas, +#user_actions #user_subscribe .form_data, #user_actions #user_subscribe .form_actions label { display:none; } #form_user-relationship .form_note, -#form_user-relationship .form_datas, +#form_user-relationship .form_data, #form_user-relationship .form_actions label { display:block; } @@ -992,7 +992,7 @@ display:block; #user_actions #user-relationship_submit { margin-bottom:0; } -#form_user-relationship .form_datas li label { +#form_user-relationship .form_data li label { margin-right:11px; } @@ -1070,7 +1070,7 @@ font-size:2.2em; -#form_settings_photo .form_datas { +#form_settings_photo .form_data { clear:both; } -- cgit v1.2.3-54-g00ecf From 1a6d120f28d232f3c6684450b197203fe297a605 Mon Sep 17 00:00:00 2001 From: sarven Date: Mon, 19 Jan 2009 03:16:50 +0000 Subject: margin-bottom for global nav for more space --- theme/base/css/display.css | 1 + 1 file changed, 1 insertion(+) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index d659a4b4c..22e1e7b9e 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -213,6 +213,7 @@ margin-bottom:29px; #site_nav_global_primary { float:right; margin-right:18px; +margin-bottom:11px; } #site_nav_global_primary ul li { display:inline; -- cgit v1.2.3-54-g00ecf From ea2e908bc0bf875b9e3967d0143f116e0c8b0885 Mon Sep 17 00:00:00 2001 From: sarven Date: Mon, 19 Jan 2009 03:20:41 +0000 Subject: More space for the counter --- theme/base/css/display.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 22e1e7b9e..1d22901fe 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -418,7 +418,7 @@ width:377px; width:370px; height:86px; line-height:1.5; -padding:7px 7px 14px 7px; +padding:7px 7px 16px 7px; } #form_notice label { display:block; @@ -441,7 +441,7 @@ margin-left:4px; #form_notice .form_note { position:absolute; -top:116px; +top:120px; right:98px; z-index:9; } -- cgit v1.2.3-54-g00ecf From 2fb53cdae446313546b7e65dccfef046fb7150da Mon Sep 17 00:00:00 2001 From: sarven Date: Mon, 19 Jan 2009 03:54:46 +0000 Subject: Cleaning styles --- theme/base/css/display.css | 25 ++++++++++++++----------- theme/default/css/display.css | 27 +++++++++++---------------- theme/identica/css/display.css | 27 +++++++++++---------------- 3 files changed, 36 insertions(+), 43 deletions(-) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 1d22901fe..e9799160c 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -696,6 +696,12 @@ border-top:1px dashed #D1D9E4; list-style-type:none; /*margin-bottom:11px;*/ } +.notices li.hover { +border-radius:4px; +-moz-border-radius:4px; +-webkit-border-radius:4px; +} + /* NOTICES */ #notices_primary { @@ -761,20 +767,17 @@ display:inline; #laconicat .notice p.entry-content { /*margin-left:199px;*/ } -.notice p.entry-content a { - -} -.notice p.entry-content a:hover { - -} -.notice p.entry-content .tag a { - +.notice p.entry-content a:visited { +border-radius:4px; +-moz-border-radius:4px; +-webkit-border-radius:4px; } -.notice p.entry-content .tag a:hover { - +.notice p.entry-content .vcard a { +border-radius:4px; +-moz-border-radius:4px; +-webkit-border-radius:4px; } - .notice div.entry-content { /*border:1px solid blue;*/ clear:left; diff --git a/theme/default/css/display.css b/theme/default/css/display.css index 877c833fe..2d3cd9dc9 100644 --- a/theme/default/css/display.css +++ b/theme/default/css/display.css @@ -38,15 +38,9 @@ color:#002E6E; .notice p.entry-content a:visited { background-color:#fcfcfc; -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; } .notice p.entry-content .vcard a { background-color:#fcfffc; -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; } #aside_primary, @@ -78,8 +72,16 @@ font-weight:bold; padding:2px 4px; } +#content, #site_nav_local_views a { border-color:#fff; +} +#content, +#site_nav_local_views .current a { +background-color:#fff; +} + +#site_nav_local_views a { background-color:rgba(255, 255, 255, 0.2); } #site_nav_local_views a:hover { @@ -87,10 +89,6 @@ background-color:rgba(255, 255, 255, 0.7); } -#content, -#site_nav_local_views .current a { -background-color:#fff; -} #page_notice .error { @@ -193,7 +191,9 @@ background:transparent url(../images/icons/twotone/green/trash.gif) no-repeat 0 div.notice-options { opacity:0.3; } - +.notices li.hover div.notice-options { +opacity:1; +} div.entry-content { color:#333; } @@ -204,11 +204,6 @@ font-family:sans-serif; .notices li.hover { background-color:#fcfcfc; } -.notices li.hover div.entry-content, -.notices li.hover div.notice-options { -opacity:1; -} - /*END: NOTICES */ diff --git a/theme/identica/css/display.css b/theme/identica/css/display.css index 877c833fe..2d3cd9dc9 100644 --- a/theme/identica/css/display.css +++ b/theme/identica/css/display.css @@ -38,15 +38,9 @@ color:#002E6E; .notice p.entry-content a:visited { background-color:#fcfcfc; -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; } .notice p.entry-content .vcard a { background-color:#fcfffc; -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; } #aside_primary, @@ -78,8 +72,16 @@ font-weight:bold; padding:2px 4px; } +#content, #site_nav_local_views a { border-color:#fff; +} +#content, +#site_nav_local_views .current a { +background-color:#fff; +} + +#site_nav_local_views a { background-color:rgba(255, 255, 255, 0.2); } #site_nav_local_views a:hover { @@ -87,10 +89,6 @@ background-color:rgba(255, 255, 255, 0.7); } -#content, -#site_nav_local_views .current a { -background-color:#fff; -} #page_notice .error { @@ -193,7 +191,9 @@ background:transparent url(../images/icons/twotone/green/trash.gif) no-repeat 0 div.notice-options { opacity:0.3; } - +.notices li.hover div.notice-options { +opacity:1; +} div.entry-content { color:#333; } @@ -204,11 +204,6 @@ font-family:sans-serif; .notices li.hover { background-color:#fcfcfc; } -.notices li.hover div.entry-content, -.notices li.hover div.notice-options { -opacity:1; -} - /*END: NOTICES */ -- cgit v1.2.3-54-g00ecf From 6967e3ec86b421066cd3d5be74a103a3b394937c Mon Sep 17 00:00:00 2001 From: sarven Date: Mon, 19 Jan 2009 04:19:14 +0000 Subject: Setting up a way to deal with different logo sizes. --- theme/base/css/display.css | 7 ++----- theme/default/css/display.css | 9 ++++++++- theme/identica/css/display.css | 7 +++++++ 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index e9799160c..e337f1c98 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -195,13 +195,11 @@ float:left; margin-bottom:18px; margin-left:18px; } -address .fn, -address .email { -display:none; +address.vcard img.logo { +margin-right:0; } - #header { width:100%; position:relative; @@ -399,7 +397,6 @@ border-radius:7px; width:384px; width:458px; float:left; -margin-left:68px; position:relative; line-height:1; } diff --git a/theme/default/css/display.css b/theme/default/css/display.css index 2d3cd9dc9..3c579cec7 100644 --- a/theme/default/css/display.css +++ b/theme/default/css/display.css @@ -2,12 +2,19 @@ html, body, a:active { -background-color:#ddd; +background-color:#777; } body { font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; font-size:1em; } +address { +margin-right:71px; +} +address .fn { +display:none; +} + input, textarea, select, option { font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; } diff --git a/theme/identica/css/display.css b/theme/identica/css/display.css index 2d3cd9dc9..d5a5ce956 100644 --- a/theme/identica/css/display.css +++ b/theme/identica/css/display.css @@ -8,6 +8,13 @@ body { font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; font-size:1em; } +address { +margin-right:71px; +} +address .fn { +display:none; +} + input, textarea, select, option { font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; } -- cgit v1.2.3-54-g00ecf From 0ea3f0e31be136bc91616aa62e93fc553ee1812a Mon Sep 17 00:00:00 2001 From: sarven Date: Mon, 19 Jan 2009 04:36:25 +0000 Subject: Default theme: first draft --- theme/default/css/display.css | 14 +++++++------- theme/default/images/icons/icon_atom.jpg | Bin 0 -> 1117 bytes theme/default/images/icons/icon_foaf.gif | Bin 0 -> 1144 bytes theme/default/images/icons/icon_rss.jpg | Bin 0 -> 1166 bytes theme/default/images/icons/icon_vcard.gif | Bin 0 -> 331 bytes theme/default/images/icons/twotone/green/against.gif | Bin 0 -> 85 bytes theme/default/images/icons/twotone/green/arrow-down.gif | Bin 0 -> 75 bytes .../images/icons/twotone/green/arrow-downleft.gif | Bin 0 -> 75 bytes .../images/icons/twotone/green/arrow-downright.gif | Bin 0 -> 75 bytes theme/default/images/icons/twotone/green/arrow-left.gif | Bin 0 -> 73 bytes theme/default/images/icons/twotone/green/arrow-right.gif | Bin 0 -> 74 bytes theme/default/images/icons/twotone/green/arrow-up.gif | Bin 0 -> 74 bytes .../default/images/icons/twotone/green/arrow-upleft.gif | Bin 0 -> 75 bytes .../default/images/icons/twotone/green/arrow-upright.gif | Bin 0 -> 73 bytes theme/default/images/icons/twotone/green/back-forth.gif | Bin 0 -> 79 bytes theme/default/images/icons/twotone/green/bookmark.gif | Bin 0 -> 82 bytes theme/default/images/icons/twotone/green/bulb.gif | Bin 0 -> 83 bytes theme/default/images/icons/twotone/green/calendar.gif | Bin 0 -> 83 bytes theme/default/images/icons/twotone/green/calendar2.gif | Bin 0 -> 79 bytes theme/default/images/icons/twotone/green/camera.gif | Bin 0 -> 79 bytes theme/default/images/icons/twotone/green/cart.gif | Bin 0 -> 86 bytes theme/default/images/icons/twotone/green/caution.gif | Bin 0 -> 82 bytes theme/default/images/icons/twotone/green/chart.gif | Bin 0 -> 81 bytes theme/default/images/icons/twotone/green/checkmark.gif | Bin 0 -> 76 bytes theme/default/images/icons/twotone/green/clipboard.gif | Bin 0 -> 80 bytes theme/default/images/icons/twotone/green/clock.gif | Bin 0 -> 81 bytes .../default/images/icons/twotone/green/closed-folder.gif | Bin 0 -> 78 bytes theme/default/images/icons/twotone/green/database.gif | Bin 0 -> 82 bytes .../default/images/icons/twotone/green/disfavourite.gif | Bin 0 -> 88 bytes theme/default/images/icons/twotone/green/diskette.gif | Bin 0 -> 85 bytes theme/default/images/icons/twotone/green/document.gif | Bin 0 -> 81 bytes .../default/images/icons/twotone/green/double-arrow.gif | Bin 0 -> 78 bytes theme/default/images/icons/twotone/green/edit.gif | Bin 0 -> 75 bytes theme/default/images/icons/twotone/green/eject.gif | Bin 0 -> 73 bytes theme/default/images/icons/twotone/green/exclaim.gif | Bin 0 -> 74 bytes theme/default/images/icons/twotone/green/fastforward.gif | Bin 0 -> 77 bytes theme/default/images/icons/twotone/green/favourite.gif | Bin 0 -> 73 bytes theme/default/images/icons/twotone/green/flag.gif | Bin 0 -> 80 bytes theme/default/images/icons/twotone/green/graph.gif | Bin 0 -> 82 bytes theme/default/images/icons/twotone/green/grow.gif | Bin 0 -> 90 bytes theme/default/images/icons/twotone/green/headphones.gif | Bin 0 -> 78 bytes theme/default/images/icons/twotone/green/home.gif | Bin 0 -> 81 bytes theme/default/images/icons/twotone/green/hourglass.gif | Bin 0 -> 85 bytes theme/default/images/icons/twotone/green/info.gif | Bin 0 -> 73 bytes theme/default/images/icons/twotone/green/key.gif | Bin 0 -> 76 bytes theme/default/images/icons/twotone/green/lock.gif | Bin 0 -> 83 bytes theme/default/images/icons/twotone/green/mail.gif | Bin 0 -> 82 bytes theme/default/images/icons/twotone/green/move.gif | Bin 0 -> 80 bytes theme/default/images/icons/twotone/green/music.gif | Bin 0 -> 80 bytes theme/default/images/icons/twotone/green/news.gif | Bin 0 -> 76 bytes theme/default/images/icons/twotone/green/note.gif | Bin 0 -> 82 bytes theme/default/images/icons/twotone/green/open-folder.gif | Bin 0 -> 79 bytes theme/default/images/icons/twotone/green/paper-clip.gif | Bin 0 -> 78 bytes theme/default/images/icons/twotone/green/paper-clip2.gif | Bin 0 -> 80 bytes theme/default/images/icons/twotone/green/pause.gif | Bin 0 -> 75 bytes theme/default/images/icons/twotone/green/phone.gif | Bin 0 -> 79 bytes theme/default/images/icons/twotone/green/play.gif | Bin 0 -> 75 bytes theme/default/images/icons/twotone/green/plus.gif | Bin 0 -> 74 bytes theme/default/images/icons/twotone/green/print.gif | Bin 0 -> 85 bytes .../default/images/icons/twotone/green/question-mark.gif | Bin 0 -> 74 bytes theme/default/images/icons/twotone/green/quote.gif | Bin 0 -> 79 bytes theme/default/images/icons/twotone/green/refresh.gif | Bin 0 -> 82 bytes theme/default/images/icons/twotone/green/reply.gif | Bin 0 -> 79 bytes theme/default/images/icons/twotone/green/rewind.gif | Bin 0 -> 77 bytes theme/default/images/icons/twotone/green/search.gif | Bin 0 -> 76 bytes theme/default/images/icons/twotone/green/shield.gif | Bin 0 -> 85 bytes theme/default/images/icons/twotone/green/skip-back.gif | Bin 0 -> 76 bytes theme/default/images/icons/twotone/green/skip.gif | Bin 0 -> 78 bytes theme/default/images/icons/twotone/green/skull.gif | Bin 0 -> 85 bytes theme/default/images/icons/twotone/green/statusbar.gif | Bin 0 -> 82 bytes theme/default/images/icons/twotone/green/stop.gif | Bin 0 -> 72 bytes theme/default/images/icons/twotone/green/template.gif | Bin 0 -> 81 bytes theme/default/images/icons/twotone/green/text-bigger.gif | Bin 0 -> 82 bytes .../default/images/icons/twotone/green/text-smaller.gif | Bin 0 -> 80 bytes theme/default/images/icons/twotone/green/trash.gif | Bin 0 -> 77 bytes theme/default/images/icons/twotone/green/two-docs.gif | Bin 0 -> 83 bytes theme/default/images/icons/twotone/green/twotone.gif | Bin 0 -> 2461 bytes theme/default/images/icons/twotone/green/undo.gif | Bin 0 -> 79 bytes theme/default/images/icons/twotone/green/user.gif | Bin 0 -> 77 bytes theme/default/images/icons/twotone/green/vegetable.gif | Bin 0 -> 82 bytes theme/default/images/icons/twotone/green/x.gif | Bin 0 -> 79 bytes theme/default/images/icons/twotone/green/zoom-in.gif | Bin 0 -> 86 bytes theme/default/images/icons/twotone/green/zoom-out.gif | Bin 0 -> 85 bytes 83 files changed, 7 insertions(+), 7 deletions(-) create mode 100644 theme/default/images/icons/icon_atom.jpg create mode 100644 theme/default/images/icons/icon_foaf.gif create mode 100644 theme/default/images/icons/icon_rss.jpg create mode 100644 theme/default/images/icons/icon_vcard.gif create mode 100644 theme/default/images/icons/twotone/green/against.gif create mode 100644 theme/default/images/icons/twotone/green/arrow-down.gif create mode 100644 theme/default/images/icons/twotone/green/arrow-downleft.gif create mode 100644 theme/default/images/icons/twotone/green/arrow-downright.gif create mode 100644 theme/default/images/icons/twotone/green/arrow-left.gif create mode 100644 theme/default/images/icons/twotone/green/arrow-right.gif create mode 100644 theme/default/images/icons/twotone/green/arrow-up.gif create mode 100644 theme/default/images/icons/twotone/green/arrow-upleft.gif create mode 100644 theme/default/images/icons/twotone/green/arrow-upright.gif create mode 100644 theme/default/images/icons/twotone/green/back-forth.gif create mode 100644 theme/default/images/icons/twotone/green/bookmark.gif create mode 100644 theme/default/images/icons/twotone/green/bulb.gif create mode 100644 theme/default/images/icons/twotone/green/calendar.gif create mode 100644 theme/default/images/icons/twotone/green/calendar2.gif create mode 100644 theme/default/images/icons/twotone/green/camera.gif create mode 100644 theme/default/images/icons/twotone/green/cart.gif create mode 100644 theme/default/images/icons/twotone/green/caution.gif create mode 100644 theme/default/images/icons/twotone/green/chart.gif create mode 100644 theme/default/images/icons/twotone/green/checkmark.gif create mode 100644 theme/default/images/icons/twotone/green/clipboard.gif create mode 100644 theme/default/images/icons/twotone/green/clock.gif create mode 100644 theme/default/images/icons/twotone/green/closed-folder.gif create mode 100644 theme/default/images/icons/twotone/green/database.gif create mode 100644 theme/default/images/icons/twotone/green/disfavourite.gif create mode 100644 theme/default/images/icons/twotone/green/diskette.gif create mode 100644 theme/default/images/icons/twotone/green/document.gif create mode 100644 theme/default/images/icons/twotone/green/double-arrow.gif create mode 100644 theme/default/images/icons/twotone/green/edit.gif create mode 100644 theme/default/images/icons/twotone/green/eject.gif create mode 100644 theme/default/images/icons/twotone/green/exclaim.gif create mode 100644 theme/default/images/icons/twotone/green/fastforward.gif create mode 100644 theme/default/images/icons/twotone/green/favourite.gif create mode 100644 theme/default/images/icons/twotone/green/flag.gif create mode 100644 theme/default/images/icons/twotone/green/graph.gif create mode 100644 theme/default/images/icons/twotone/green/grow.gif create mode 100644 theme/default/images/icons/twotone/green/headphones.gif create mode 100644 theme/default/images/icons/twotone/green/home.gif create mode 100644 theme/default/images/icons/twotone/green/hourglass.gif create mode 100644 theme/default/images/icons/twotone/green/info.gif create mode 100644 theme/default/images/icons/twotone/green/key.gif create mode 100644 theme/default/images/icons/twotone/green/lock.gif create mode 100644 theme/default/images/icons/twotone/green/mail.gif create mode 100644 theme/default/images/icons/twotone/green/move.gif create mode 100644 theme/default/images/icons/twotone/green/music.gif create mode 100644 theme/default/images/icons/twotone/green/news.gif create mode 100644 theme/default/images/icons/twotone/green/note.gif create mode 100644 theme/default/images/icons/twotone/green/open-folder.gif create mode 100644 theme/default/images/icons/twotone/green/paper-clip.gif create mode 100644 theme/default/images/icons/twotone/green/paper-clip2.gif create mode 100644 theme/default/images/icons/twotone/green/pause.gif create mode 100644 theme/default/images/icons/twotone/green/phone.gif create mode 100644 theme/default/images/icons/twotone/green/play.gif create mode 100644 theme/default/images/icons/twotone/green/plus.gif create mode 100644 theme/default/images/icons/twotone/green/print.gif create mode 100644 theme/default/images/icons/twotone/green/question-mark.gif create mode 100644 theme/default/images/icons/twotone/green/quote.gif create mode 100644 theme/default/images/icons/twotone/green/refresh.gif create mode 100644 theme/default/images/icons/twotone/green/reply.gif create mode 100644 theme/default/images/icons/twotone/green/rewind.gif create mode 100644 theme/default/images/icons/twotone/green/search.gif create mode 100644 theme/default/images/icons/twotone/green/shield.gif create mode 100644 theme/default/images/icons/twotone/green/skip-back.gif create mode 100644 theme/default/images/icons/twotone/green/skip.gif create mode 100644 theme/default/images/icons/twotone/green/skull.gif create mode 100644 theme/default/images/icons/twotone/green/statusbar.gif create mode 100644 theme/default/images/icons/twotone/green/stop.gif create mode 100644 theme/default/images/icons/twotone/green/template.gif create mode 100644 theme/default/images/icons/twotone/green/text-bigger.gif create mode 100644 theme/default/images/icons/twotone/green/text-smaller.gif create mode 100644 theme/default/images/icons/twotone/green/trash.gif create mode 100644 theme/default/images/icons/twotone/green/two-docs.gif create mode 100644 theme/default/images/icons/twotone/green/twotone.gif create mode 100644 theme/default/images/icons/twotone/green/undo.gif create mode 100644 theme/default/images/icons/twotone/green/user.gif create mode 100644 theme/default/images/icons/twotone/green/vegetable.gif create mode 100644 theme/default/images/icons/twotone/green/x.gif create mode 100644 theme/default/images/icons/twotone/green/zoom-in.gif create mode 100644 theme/default/images/icons/twotone/green/zoom-out.gif diff --git a/theme/default/css/display.css b/theme/default/css/display.css index 3c579cec7..2b71b0719 100644 --- a/theme/default/css/display.css +++ b/theme/default/css/display.css @@ -2,7 +2,7 @@ html, body, a:active { -background-color:#777; +background-color:#CEE1E9; } body { font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; @@ -35,7 +35,7 @@ border-color:#A9BF4F; } input.submit, #nav_register a { -color:#fff; +color:#F5FDFD; } a, @@ -54,7 +54,7 @@ background-color:#fcfffc; #user_subscribe a, #TB_window input.submit, .form_user_subscribe input.submit { -background-color:#CEE1E9; +background-color:#fff; } @@ -81,11 +81,11 @@ padding:2px 4px; #content, #site_nav_local_views a { -border-color:#fff; +border-color:#F5FDFD; } #content, #site_nav_local_views .current a { -background-color:#fff; +background-color:#F5FDFD; } #site_nav_local_views a { @@ -136,7 +136,7 @@ background-repeat: no-repeat; } .form_user_unsubscribe input.submit { background-color:#647819; -color:#fff; +color:#F5FDFD; } #user_send-a-message a { background:url(../images/icons/twotone/green/quote.gif) 0 45% no-repeat; @@ -232,7 +232,7 @@ background-position:100% 45%; #home #intro #guide_steps li a { border-color:#ccc; -color:#fff; +color:#F5FDFD; } #home #intro #step_join-now a { background-color:#f00; diff --git a/theme/default/images/icons/icon_atom.jpg b/theme/default/images/icons/icon_atom.jpg new file mode 100644 index 000000000..22853edc4 Binary files /dev/null and b/theme/default/images/icons/icon_atom.jpg differ diff --git a/theme/default/images/icons/icon_foaf.gif b/theme/default/images/icons/icon_foaf.gif new file mode 100644 index 000000000..f8f784423 Binary files /dev/null and b/theme/default/images/icons/icon_foaf.gif differ diff --git a/theme/default/images/icons/icon_rss.jpg b/theme/default/images/icons/icon_rss.jpg new file mode 100644 index 000000000..da23422d0 Binary files /dev/null and b/theme/default/images/icons/icon_rss.jpg differ diff --git a/theme/default/images/icons/icon_vcard.gif b/theme/default/images/icons/icon_vcard.gif new file mode 100644 index 000000000..6d52947f3 Binary files /dev/null and b/theme/default/images/icons/icon_vcard.gif differ diff --git a/theme/default/images/icons/twotone/green/against.gif b/theme/default/images/icons/twotone/green/against.gif new file mode 100644 index 000000000..ca796c8a3 Binary files /dev/null and b/theme/default/images/icons/twotone/green/against.gif differ diff --git a/theme/default/images/icons/twotone/green/arrow-down.gif b/theme/default/images/icons/twotone/green/arrow-down.gif new file mode 100644 index 000000000..c709e5877 Binary files /dev/null and b/theme/default/images/icons/twotone/green/arrow-down.gif differ diff --git a/theme/default/images/icons/twotone/green/arrow-downleft.gif b/theme/default/images/icons/twotone/green/arrow-downleft.gif new file mode 100644 index 000000000..a4a98035d Binary files /dev/null and b/theme/default/images/icons/twotone/green/arrow-downleft.gif differ diff --git a/theme/default/images/icons/twotone/green/arrow-downright.gif b/theme/default/images/icons/twotone/green/arrow-downright.gif new file mode 100644 index 000000000..3e6001a61 Binary files /dev/null and b/theme/default/images/icons/twotone/green/arrow-downright.gif differ diff --git a/theme/default/images/icons/twotone/green/arrow-left.gif b/theme/default/images/icons/twotone/green/arrow-left.gif new file mode 100644 index 000000000..afed19084 Binary files /dev/null and b/theme/default/images/icons/twotone/green/arrow-left.gif differ diff --git a/theme/default/images/icons/twotone/green/arrow-right.gif b/theme/default/images/icons/twotone/green/arrow-right.gif new file mode 100644 index 000000000..ee1707ed9 Binary files /dev/null and b/theme/default/images/icons/twotone/green/arrow-right.gif differ diff --git a/theme/default/images/icons/twotone/green/arrow-up.gif b/theme/default/images/icons/twotone/green/arrow-up.gif new file mode 100644 index 000000000..d0f5fbeaa Binary files /dev/null and b/theme/default/images/icons/twotone/green/arrow-up.gif differ diff --git a/theme/default/images/icons/twotone/green/arrow-upleft.gif b/theme/default/images/icons/twotone/green/arrow-upleft.gif new file mode 100644 index 000000000..1e9e6935b Binary files /dev/null and b/theme/default/images/icons/twotone/green/arrow-upleft.gif differ diff --git a/theme/default/images/icons/twotone/green/arrow-upright.gif b/theme/default/images/icons/twotone/green/arrow-upright.gif new file mode 100644 index 000000000..c7fecc8a0 Binary files /dev/null and b/theme/default/images/icons/twotone/green/arrow-upright.gif differ diff --git a/theme/default/images/icons/twotone/green/back-forth.gif b/theme/default/images/icons/twotone/green/back-forth.gif new file mode 100644 index 000000000..33a9540c8 Binary files /dev/null and b/theme/default/images/icons/twotone/green/back-forth.gif differ diff --git a/theme/default/images/icons/twotone/green/bookmark.gif b/theme/default/images/icons/twotone/green/bookmark.gif new file mode 100644 index 000000000..23f318ecc Binary files /dev/null and b/theme/default/images/icons/twotone/green/bookmark.gif differ diff --git a/theme/default/images/icons/twotone/green/bulb.gif b/theme/default/images/icons/twotone/green/bulb.gif new file mode 100644 index 000000000..f70652c03 Binary files /dev/null and b/theme/default/images/icons/twotone/green/bulb.gif differ diff --git a/theme/default/images/icons/twotone/green/calendar.gif b/theme/default/images/icons/twotone/green/calendar.gif new file mode 100644 index 000000000..a09b65aca Binary files /dev/null and b/theme/default/images/icons/twotone/green/calendar.gif differ diff --git a/theme/default/images/icons/twotone/green/calendar2.gif b/theme/default/images/icons/twotone/green/calendar2.gif new file mode 100644 index 000000000..7884b02dd Binary files /dev/null and b/theme/default/images/icons/twotone/green/calendar2.gif differ diff --git a/theme/default/images/icons/twotone/green/camera.gif b/theme/default/images/icons/twotone/green/camera.gif new file mode 100644 index 000000000..1a85fbad0 Binary files /dev/null and b/theme/default/images/icons/twotone/green/camera.gif differ diff --git a/theme/default/images/icons/twotone/green/cart.gif b/theme/default/images/icons/twotone/green/cart.gif new file mode 100644 index 000000000..47eaa0a2e Binary files /dev/null and b/theme/default/images/icons/twotone/green/cart.gif differ diff --git a/theme/default/images/icons/twotone/green/caution.gif b/theme/default/images/icons/twotone/green/caution.gif new file mode 100644 index 000000000..3ad2c322b Binary files /dev/null and b/theme/default/images/icons/twotone/green/caution.gif differ diff --git a/theme/default/images/icons/twotone/green/chart.gif b/theme/default/images/icons/twotone/green/chart.gif new file mode 100644 index 000000000..136d74517 Binary files /dev/null and b/theme/default/images/icons/twotone/green/chart.gif differ diff --git a/theme/default/images/icons/twotone/green/checkmark.gif b/theme/default/images/icons/twotone/green/checkmark.gif new file mode 100644 index 000000000..892429d48 Binary files /dev/null and b/theme/default/images/icons/twotone/green/checkmark.gif differ diff --git a/theme/default/images/icons/twotone/green/clipboard.gif b/theme/default/images/icons/twotone/green/clipboard.gif new file mode 100644 index 000000000..9317bdcd0 Binary files /dev/null and b/theme/default/images/icons/twotone/green/clipboard.gif differ diff --git a/theme/default/images/icons/twotone/green/clock.gif b/theme/default/images/icons/twotone/green/clock.gif new file mode 100644 index 000000000..d1410f925 Binary files /dev/null and b/theme/default/images/icons/twotone/green/clock.gif differ diff --git a/theme/default/images/icons/twotone/green/closed-folder.gif b/theme/default/images/icons/twotone/green/closed-folder.gif new file mode 100644 index 000000000..0410fc6e8 Binary files /dev/null and b/theme/default/images/icons/twotone/green/closed-folder.gif differ diff --git a/theme/default/images/icons/twotone/green/database.gif b/theme/default/images/icons/twotone/green/database.gif new file mode 100644 index 000000000..29ce02492 Binary files /dev/null and b/theme/default/images/icons/twotone/green/database.gif differ diff --git a/theme/default/images/icons/twotone/green/disfavourite.gif b/theme/default/images/icons/twotone/green/disfavourite.gif new file mode 100644 index 000000000..3946869ae Binary files /dev/null and b/theme/default/images/icons/twotone/green/disfavourite.gif differ diff --git a/theme/default/images/icons/twotone/green/diskette.gif b/theme/default/images/icons/twotone/green/diskette.gif new file mode 100644 index 000000000..e970b0a30 Binary files /dev/null and b/theme/default/images/icons/twotone/green/diskette.gif differ diff --git a/theme/default/images/icons/twotone/green/document.gif b/theme/default/images/icons/twotone/green/document.gif new file mode 100644 index 000000000..9c08f4a3a Binary files /dev/null and b/theme/default/images/icons/twotone/green/document.gif differ diff --git a/theme/default/images/icons/twotone/green/double-arrow.gif b/theme/default/images/icons/twotone/green/double-arrow.gif new file mode 100644 index 000000000..2e8648264 Binary files /dev/null and b/theme/default/images/icons/twotone/green/double-arrow.gif differ diff --git a/theme/default/images/icons/twotone/green/edit.gif b/theme/default/images/icons/twotone/green/edit.gif new file mode 100644 index 000000000..c746aca60 Binary files /dev/null and b/theme/default/images/icons/twotone/green/edit.gif differ diff --git a/theme/default/images/icons/twotone/green/eject.gif b/theme/default/images/icons/twotone/green/eject.gif new file mode 100644 index 000000000..7e0906cfe Binary files /dev/null and b/theme/default/images/icons/twotone/green/eject.gif differ diff --git a/theme/default/images/icons/twotone/green/exclaim.gif b/theme/default/images/icons/twotone/green/exclaim.gif new file mode 100644 index 000000000..588e28c26 Binary files /dev/null and b/theme/default/images/icons/twotone/green/exclaim.gif differ diff --git a/theme/default/images/icons/twotone/green/fastforward.gif b/theme/default/images/icons/twotone/green/fastforward.gif new file mode 100644 index 000000000..28e495103 Binary files /dev/null and b/theme/default/images/icons/twotone/green/fastforward.gif differ diff --git a/theme/default/images/icons/twotone/green/favourite.gif b/theme/default/images/icons/twotone/green/favourite.gif new file mode 100644 index 000000000..d93515e37 Binary files /dev/null and b/theme/default/images/icons/twotone/green/favourite.gif differ diff --git a/theme/default/images/icons/twotone/green/flag.gif b/theme/default/images/icons/twotone/green/flag.gif new file mode 100644 index 000000000..68c8aee25 Binary files /dev/null and b/theme/default/images/icons/twotone/green/flag.gif differ diff --git a/theme/default/images/icons/twotone/green/graph.gif b/theme/default/images/icons/twotone/green/graph.gif new file mode 100644 index 000000000..0c1794b4e Binary files /dev/null and b/theme/default/images/icons/twotone/green/graph.gif differ diff --git a/theme/default/images/icons/twotone/green/grow.gif b/theme/default/images/icons/twotone/green/grow.gif new file mode 100644 index 000000000..c4118d53b Binary files /dev/null and b/theme/default/images/icons/twotone/green/grow.gif differ diff --git a/theme/default/images/icons/twotone/green/headphones.gif b/theme/default/images/icons/twotone/green/headphones.gif new file mode 100644 index 000000000..5be6c67dd Binary files /dev/null and b/theme/default/images/icons/twotone/green/headphones.gif differ diff --git a/theme/default/images/icons/twotone/green/home.gif b/theme/default/images/icons/twotone/green/home.gif new file mode 100644 index 000000000..d2a3421ef Binary files /dev/null and b/theme/default/images/icons/twotone/green/home.gif differ diff --git a/theme/default/images/icons/twotone/green/hourglass.gif b/theme/default/images/icons/twotone/green/hourglass.gif new file mode 100644 index 000000000..b62b9480c Binary files /dev/null and b/theme/default/images/icons/twotone/green/hourglass.gif differ diff --git a/theme/default/images/icons/twotone/green/info.gif b/theme/default/images/icons/twotone/green/info.gif new file mode 100644 index 000000000..86ef1f8b4 Binary files /dev/null and b/theme/default/images/icons/twotone/green/info.gif differ diff --git a/theme/default/images/icons/twotone/green/key.gif b/theme/default/images/icons/twotone/green/key.gif new file mode 100644 index 000000000..ccf357ab2 Binary files /dev/null and b/theme/default/images/icons/twotone/green/key.gif differ diff --git a/theme/default/images/icons/twotone/green/lock.gif b/theme/default/images/icons/twotone/green/lock.gif new file mode 100644 index 000000000..db00706b5 Binary files /dev/null and b/theme/default/images/icons/twotone/green/lock.gif differ diff --git a/theme/default/images/icons/twotone/green/mail.gif b/theme/default/images/icons/twotone/green/mail.gif new file mode 100644 index 000000000..1084c862f Binary files /dev/null and b/theme/default/images/icons/twotone/green/mail.gif differ diff --git a/theme/default/images/icons/twotone/green/move.gif b/theme/default/images/icons/twotone/green/move.gif new file mode 100644 index 000000000..d2c30b1d2 Binary files /dev/null and b/theme/default/images/icons/twotone/green/move.gif differ diff --git a/theme/default/images/icons/twotone/green/music.gif b/theme/default/images/icons/twotone/green/music.gif new file mode 100644 index 000000000..64b51d4e1 Binary files /dev/null and b/theme/default/images/icons/twotone/green/music.gif differ diff --git a/theme/default/images/icons/twotone/green/news.gif b/theme/default/images/icons/twotone/green/news.gif new file mode 100644 index 000000000..712c685dc Binary files /dev/null and b/theme/default/images/icons/twotone/green/news.gif differ diff --git a/theme/default/images/icons/twotone/green/note.gif b/theme/default/images/icons/twotone/green/note.gif new file mode 100644 index 000000000..bcc0b149b Binary files /dev/null and b/theme/default/images/icons/twotone/green/note.gif differ diff --git a/theme/default/images/icons/twotone/green/open-folder.gif b/theme/default/images/icons/twotone/green/open-folder.gif new file mode 100644 index 000000000..d41300a08 Binary files /dev/null and b/theme/default/images/icons/twotone/green/open-folder.gif differ diff --git a/theme/default/images/icons/twotone/green/paper-clip.gif b/theme/default/images/icons/twotone/green/paper-clip.gif new file mode 100644 index 000000000..1d45f1d1e Binary files /dev/null and b/theme/default/images/icons/twotone/green/paper-clip.gif differ diff --git a/theme/default/images/icons/twotone/green/paper-clip2.gif b/theme/default/images/icons/twotone/green/paper-clip2.gif new file mode 100644 index 000000000..a8c7805be Binary files /dev/null and b/theme/default/images/icons/twotone/green/paper-clip2.gif differ diff --git a/theme/default/images/icons/twotone/green/pause.gif b/theme/default/images/icons/twotone/green/pause.gif new file mode 100644 index 000000000..ced0b6440 Binary files /dev/null and b/theme/default/images/icons/twotone/green/pause.gif differ diff --git a/theme/default/images/icons/twotone/green/phone.gif b/theme/default/images/icons/twotone/green/phone.gif new file mode 100644 index 000000000..69359f764 Binary files /dev/null and b/theme/default/images/icons/twotone/green/phone.gif differ diff --git a/theme/default/images/icons/twotone/green/play.gif b/theme/default/images/icons/twotone/green/play.gif new file mode 100644 index 000000000..794ec85b6 Binary files /dev/null and b/theme/default/images/icons/twotone/green/play.gif differ diff --git a/theme/default/images/icons/twotone/green/plus.gif b/theme/default/images/icons/twotone/green/plus.gif new file mode 100644 index 000000000..4407d0b2d Binary files /dev/null and b/theme/default/images/icons/twotone/green/plus.gif differ diff --git a/theme/default/images/icons/twotone/green/print.gif b/theme/default/images/icons/twotone/green/print.gif new file mode 100644 index 000000000..17727d5d7 Binary files /dev/null and b/theme/default/images/icons/twotone/green/print.gif differ diff --git a/theme/default/images/icons/twotone/green/question-mark.gif b/theme/default/images/icons/twotone/green/question-mark.gif new file mode 100644 index 000000000..1689efcd0 Binary files /dev/null and b/theme/default/images/icons/twotone/green/question-mark.gif differ diff --git a/theme/default/images/icons/twotone/green/quote.gif b/theme/default/images/icons/twotone/green/quote.gif new file mode 100644 index 000000000..4ba1f0c03 Binary files /dev/null and b/theme/default/images/icons/twotone/green/quote.gif differ diff --git a/theme/default/images/icons/twotone/green/refresh.gif b/theme/default/images/icons/twotone/green/refresh.gif new file mode 100644 index 000000000..8a8b8144f Binary files /dev/null and b/theme/default/images/icons/twotone/green/refresh.gif differ diff --git a/theme/default/images/icons/twotone/green/reply.gif b/theme/default/images/icons/twotone/green/reply.gif new file mode 100644 index 000000000..6ff01bb35 Binary files /dev/null and b/theme/default/images/icons/twotone/green/reply.gif differ diff --git a/theme/default/images/icons/twotone/green/rewind.gif b/theme/default/images/icons/twotone/green/rewind.gif new file mode 100644 index 000000000..aca3ee35b Binary files /dev/null and b/theme/default/images/icons/twotone/green/rewind.gif differ diff --git a/theme/default/images/icons/twotone/green/search.gif b/theme/default/images/icons/twotone/green/search.gif new file mode 100644 index 000000000..c36463d0d Binary files /dev/null and b/theme/default/images/icons/twotone/green/search.gif differ diff --git a/theme/default/images/icons/twotone/green/shield.gif b/theme/default/images/icons/twotone/green/shield.gif new file mode 100644 index 000000000..419d5ee4b Binary files /dev/null and b/theme/default/images/icons/twotone/green/shield.gif differ diff --git a/theme/default/images/icons/twotone/green/skip-back.gif b/theme/default/images/icons/twotone/green/skip-back.gif new file mode 100644 index 000000000..adca7aa3e Binary files /dev/null and b/theme/default/images/icons/twotone/green/skip-back.gif differ diff --git a/theme/default/images/icons/twotone/green/skip.gif b/theme/default/images/icons/twotone/green/skip.gif new file mode 100644 index 000000000..ae5417f2f Binary files /dev/null and b/theme/default/images/icons/twotone/green/skip.gif differ diff --git a/theme/default/images/icons/twotone/green/skull.gif b/theme/default/images/icons/twotone/green/skull.gif new file mode 100644 index 000000000..033506732 Binary files /dev/null and b/theme/default/images/icons/twotone/green/skull.gif differ diff --git a/theme/default/images/icons/twotone/green/statusbar.gif b/theme/default/images/icons/twotone/green/statusbar.gif new file mode 100644 index 000000000..47d61b106 Binary files /dev/null and b/theme/default/images/icons/twotone/green/statusbar.gif differ diff --git a/theme/default/images/icons/twotone/green/stop.gif b/theme/default/images/icons/twotone/green/stop.gif new file mode 100644 index 000000000..e0b108d35 Binary files /dev/null and b/theme/default/images/icons/twotone/green/stop.gif differ diff --git a/theme/default/images/icons/twotone/green/template.gif b/theme/default/images/icons/twotone/green/template.gif new file mode 100644 index 000000000..65c0c4a0a Binary files /dev/null and b/theme/default/images/icons/twotone/green/template.gif differ diff --git a/theme/default/images/icons/twotone/green/text-bigger.gif b/theme/default/images/icons/twotone/green/text-bigger.gif new file mode 100644 index 000000000..45e143b7a Binary files /dev/null and b/theme/default/images/icons/twotone/green/text-bigger.gif differ diff --git a/theme/default/images/icons/twotone/green/text-smaller.gif b/theme/default/images/icons/twotone/green/text-smaller.gif new file mode 100644 index 000000000..a54d0c1d3 Binary files /dev/null and b/theme/default/images/icons/twotone/green/text-smaller.gif differ diff --git a/theme/default/images/icons/twotone/green/trash.gif b/theme/default/images/icons/twotone/green/trash.gif new file mode 100644 index 000000000..78dd64a3d Binary files /dev/null and b/theme/default/images/icons/twotone/green/trash.gif differ diff --git a/theme/default/images/icons/twotone/green/two-docs.gif b/theme/default/images/icons/twotone/green/two-docs.gif new file mode 100644 index 000000000..97e54b964 Binary files /dev/null and b/theme/default/images/icons/twotone/green/two-docs.gif differ diff --git a/theme/default/images/icons/twotone/green/twotone.gif b/theme/default/images/icons/twotone/green/twotone.gif new file mode 100644 index 000000000..45aad25c4 Binary files /dev/null and b/theme/default/images/icons/twotone/green/twotone.gif differ diff --git a/theme/default/images/icons/twotone/green/undo.gif b/theme/default/images/icons/twotone/green/undo.gif new file mode 100644 index 000000000..6869b3050 Binary files /dev/null and b/theme/default/images/icons/twotone/green/undo.gif differ diff --git a/theme/default/images/icons/twotone/green/user.gif b/theme/default/images/icons/twotone/green/user.gif new file mode 100644 index 000000000..c85460fcd Binary files /dev/null and b/theme/default/images/icons/twotone/green/user.gif differ diff --git a/theme/default/images/icons/twotone/green/vegetable.gif b/theme/default/images/icons/twotone/green/vegetable.gif new file mode 100644 index 000000000..4d421c1bb Binary files /dev/null and b/theme/default/images/icons/twotone/green/vegetable.gif differ diff --git a/theme/default/images/icons/twotone/green/x.gif b/theme/default/images/icons/twotone/green/x.gif new file mode 100644 index 000000000..ffb2efea0 Binary files /dev/null and b/theme/default/images/icons/twotone/green/x.gif differ diff --git a/theme/default/images/icons/twotone/green/zoom-in.gif b/theme/default/images/icons/twotone/green/zoom-in.gif new file mode 100644 index 000000000..a59a5bb50 Binary files /dev/null and b/theme/default/images/icons/twotone/green/zoom-in.gif differ diff --git a/theme/default/images/icons/twotone/green/zoom-out.gif b/theme/default/images/icons/twotone/green/zoom-out.gif new file mode 100644 index 000000000..c61f999fd Binary files /dev/null and b/theme/default/images/icons/twotone/green/zoom-out.gif differ -- cgit v1.2.3-54-g00ecf From 838502dfd9894e409714c512f83179bab68446d7 Mon Sep 17 00:00:00 2001 From: sarven Date: Mon, 19 Jan 2009 04:46:18 +0000 Subject: timestamp anchor spacing for IE --- theme/base/css/ie.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme/base/css/ie.css b/theme/base/css/ie.css index ef64da953..9baa953b3 100644 --- a/theme/base/css/ie.css +++ b/theme/base/css/ie.css @@ -22,5 +22,5 @@ margin-left:-7px; } .notice div.entry-content .timestamp a { -display:inline; +margin-right:4px; } \ No newline at end of file -- cgit v1.2.3-54-g00ecf