From 5da9511c317648da6beb5fa2752f084166b88adc Mon Sep 17 00:00:00 2001 From: sarven Date: Sun, 18 Jan 2009 19:42:08 +0000 Subject: [PATCH 01/20] 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 b15aea08ed..f0d47f19b2 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 7433a45e46..b5c47e1bb3 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; } From 41e5e7e912fb93bc618a431c6e0d731a76fa87c8 Mon Sep 17 00:00:00 2001 From: sarven Date: Sun, 18 Jan 2009 19:45:21 +0000 Subject: [PATCH 02/20] 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 d0c3b18329..f339f215a9 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')); } /** From 5426c4ec6a8691969fbb704056ea87ad85021b79 Mon Sep 17 00:00:00 2001 From: sarven Date: Sun, 18 Jan 2009 19:58:28 +0000 Subject: [PATCH 03/20] 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 e62a032b60..320814a8a0 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')), From d46c2cc8a70d83f7bf761ea8c778a8cd56d8e692 Mon Sep 17 00:00:00 2001 From: sarven Date: Sun, 18 Jan 2009 20:36:50 +0000 Subject: [PATCH 04/20] 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 8b8a5351ef..7ae62fb55c 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 98951ac304..edbd81b578 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 b5c47e1bb3..2857070f81 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 8328625514..0235c2d7d8 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 { } From 061de33e576ac542459fd48ab61877eece05ea39 Mon Sep 17 00:00:00 2001 From: sarven Date: Sun, 18 Jan 2009 21:14:47 +0000 Subject: [PATCH 05/20] 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 845266d18b..489fd1f587 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 597623c801..0790991232 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 2857070f81..08805c1e0f 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, From 7749228f52d914d4949cb5fa139cdd6ade4ead6e Mon Sep 17 00:00:00 2001 From: sarven Date: Sun, 18 Jan 2009 21:22:31 +0000 Subject: [PATCH 06/20] 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 257aac8d08..126d2c9922 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 08805c1e0f..76e52ffc9c 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; } From 6b23a9ed2f35e487847fe80b588eb3a967aaecb8 Mon Sep 17 00:00:00 2001 From: sarven Date: Sun, 18 Jan 2009 21:34:57 +0000 Subject: [PATCH 07/20] 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 f339f215a9..45a9ddb1d4 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 76e52ffc9c..0041baf448 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; } From 9d384aadb1f27cea85d23c944f787cf300a4389a Mon Sep 17 00:00:00 2001 From: sarven Date: Sun, 18 Jan 2009 22:08:51 +0000 Subject: [PATCH 08/20] @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 f0d47f19b2..08243c1e29 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 320814a8a0..3d61afde28 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 0235c2d7d8..a5b177004a 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%; From c04fade6be03385213b97fff998e1b6c19ae3790 Mon Sep 17 00:00:00 2001 From: sarven Date: Sun, 18 Jan 2009 22:27:20 +0000 Subject: [PATCH 09/20] 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 4a5b5470e964d5b76269b3d69d8626e15933c089..cee36799e165697d2e03f72ffcf87e90abeed51e 100644 GIT binary patch delta 2038 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 Date: Mon, 19 Jan 2009 00:10:42 +0000 Subject: [PATCH 10/20] Minimal cross browser styling (mostly IE7). w00t! --- lib/action.php | 2 +- theme/base/css/display.css | 28 ++++++++++++++++++---------- theme/identica/css/display.css | 20 ++++++++++++++++---- 3 files changed, 35 insertions(+), 15 deletions(-) diff --git a/lib/action.php b/lib/action.php index 3d61afde28..c463c84593 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: [PATCH 11/20] 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 c463c84593..9cd2d5a184 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: [PATCH 12/20] 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 06860e30d9..716f3256f5 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 { From 6fa7ac1305d516c6a50ae1f2008e71539baa4ff2 Mon Sep 17 00:00:00 2001 From: sarven Date: Mon, 19 Jan 2009 02:06:40 +0000 Subject: [PATCH 13/20] Started default stylesheet. Grouped colours for themeing. --- theme/default/css/display.css | 243 ++++++++++++++++++ theme/identica/css/display.css | 96 ++----- .../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 0000000000..877c833fe5 --- /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 eb7b47a127..877c833fe5 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 0000000000000000000000000000000000000000..3946869ae070474df5622c56ba6d0984bb06af5d GIT binary patch literal 88 zcmZ?wbhEHb6krfwSjfQe|NsB^DFQ$e2o!&^FfuSOG3YP=0Z5*KNi(ExCfnQpd~^IR nW#;qjPMx6XakMgtb5Z7{-1x4Q%h>kLs(l!eFlSK!1A{dHn&}~% literal 0 HcmV?d00001 From 0b5f0f4faaf04fdf13dbd5dea1f081b9e1cc6071 Mon Sep 17 00:00:00 2001 From: sarven Date: Mon, 19 Jan 2009 03:09:13 +0000 Subject: [PATCH 14/20] 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 7ae62fb55c..b84acb2141 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 edbd81b578..e0f5ede3a7 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 9fa501a5d9..11cf1f02a6 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 126d2c9922..92469d20f8 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 cbb2c0cb9e..b542233ca7 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 12251b83b3..6dd4775e5a 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 08243c1e29..159daaa737 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 489fd1f587..f89cbe1ab9 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 0790991232..efc8215cdf 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 d6a3aa9c21..f0205f1c1e 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 716f3256f5..d659a4b4c1 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; } From 1a6d120f28d232f3c6684450b197203fe297a605 Mon Sep 17 00:00:00 2001 From: sarven Date: Mon, 19 Jan 2009 03:16:50 +0000 Subject: [PATCH 15/20] 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 d659a4b4c1..22e1e7b9e3 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; From ea2e908bc0bf875b9e3967d0143f116e0c8b0885 Mon Sep 17 00:00:00 2001 From: sarven Date: Mon, 19 Jan 2009 03:20:41 +0000 Subject: [PATCH 16/20] 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 22e1e7b9e3..1d22901fea 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; } From 2fb53cdae446313546b7e65dccfef046fb7150da Mon Sep 17 00:00:00 2001 From: sarven Date: Mon, 19 Jan 2009 03:54:46 +0000 Subject: [PATCH 17/20] 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 1d22901fea..e9799160c5 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,19 +767,16 @@ display:inline; #laconicat .notice p.entry-content { /*margin-left:199px;*/ } -.notice p.entry-content a { - +.notice p.entry-content a:visited { +border-radius:4px; +-moz-border-radius:4px; +-webkit-border-radius:4px; } -.notice p.entry-content a:hover { - +.notice p.entry-content .vcard a { +border-radius:4px; +-moz-border-radius:4px; +-webkit-border-radius:4px; } -.notice p.entry-content .tag a { - -} -.notice p.entry-content .tag a:hover { - -} - .notice div.entry-content { /*border:1px solid blue;*/ diff --git a/theme/default/css/display.css b/theme/default/css/display.css index 877c833fe5..2d3cd9dc99 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 877c833fe5..2d3cd9dc99 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 */ From 6967e3ec86b421066cd3d5be74a103a3b394937c Mon Sep 17 00:00:00 2001 From: sarven Date: Mon, 19 Jan 2009 04:19:14 +0000 Subject: [PATCH 18/20] 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 e9799160c5..e337f1c985 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 2d3cd9dc99..3c579cec75 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 2d3cd9dc99..d5a5ce9564 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; } From 0ea3f0e31be136bc91616aa62e93fc553ee1812a Mon Sep 17 00:00:00 2001 From: sarven Date: Mon, 19 Jan 2009 04:36:25 +0000 Subject: [PATCH 19/20] 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 .../images/icons/twotone/green/against.gif | Bin 0 -> 85 bytes .../images/icons/twotone/green/arrow-down.gif | Bin 0 -> 75 bytes .../icons/twotone/green/arrow-downleft.gif | Bin 0 -> 75 bytes .../icons/twotone/green/arrow-downright.gif | Bin 0 -> 75 bytes .../images/icons/twotone/green/arrow-left.gif | Bin 0 -> 73 bytes .../images/icons/twotone/green/arrow-right.gif | Bin 0 -> 74 bytes .../images/icons/twotone/green/arrow-up.gif | Bin 0 -> 74 bytes .../images/icons/twotone/green/arrow-upleft.gif | Bin 0 -> 75 bytes .../images/icons/twotone/green/arrow-upright.gif | Bin 0 -> 73 bytes .../images/icons/twotone/green/back-forth.gif | Bin 0 -> 79 bytes .../images/icons/twotone/green/bookmark.gif | Bin 0 -> 82 bytes .../default/images/icons/twotone/green/bulb.gif | Bin 0 -> 83 bytes .../images/icons/twotone/green/calendar.gif | Bin 0 -> 83 bytes .../images/icons/twotone/green/calendar2.gif | Bin 0 -> 79 bytes .../images/icons/twotone/green/camera.gif | Bin 0 -> 79 bytes .../default/images/icons/twotone/green/cart.gif | Bin 0 -> 86 bytes .../images/icons/twotone/green/caution.gif | Bin 0 -> 82 bytes .../default/images/icons/twotone/green/chart.gif | Bin 0 -> 81 bytes .../images/icons/twotone/green/checkmark.gif | Bin 0 -> 76 bytes .../images/icons/twotone/green/clipboard.gif | Bin 0 -> 80 bytes .../default/images/icons/twotone/green/clock.gif | Bin 0 -> 81 bytes .../images/icons/twotone/green/closed-folder.gif | Bin 0 -> 78 bytes .../images/icons/twotone/green/database.gif | Bin 0 -> 82 bytes .../images/icons/twotone/green/disfavourite.gif | Bin 0 -> 88 bytes .../images/icons/twotone/green/diskette.gif | Bin 0 -> 85 bytes .../images/icons/twotone/green/document.gif | Bin 0 -> 81 bytes .../images/icons/twotone/green/double-arrow.gif | Bin 0 -> 78 bytes .../default/images/icons/twotone/green/edit.gif | Bin 0 -> 75 bytes .../default/images/icons/twotone/green/eject.gif | Bin 0 -> 73 bytes .../images/icons/twotone/green/exclaim.gif | Bin 0 -> 74 bytes .../images/icons/twotone/green/fastforward.gif | Bin 0 -> 77 bytes .../images/icons/twotone/green/favourite.gif | Bin 0 -> 73 bytes .../default/images/icons/twotone/green/flag.gif | Bin 0 -> 80 bytes .../default/images/icons/twotone/green/graph.gif | Bin 0 -> 82 bytes .../default/images/icons/twotone/green/grow.gif | Bin 0 -> 90 bytes .../images/icons/twotone/green/headphones.gif | Bin 0 -> 78 bytes .../default/images/icons/twotone/green/home.gif | Bin 0 -> 81 bytes .../images/icons/twotone/green/hourglass.gif | Bin 0 -> 85 bytes .../default/images/icons/twotone/green/info.gif | Bin 0 -> 73 bytes theme/default/images/icons/twotone/green/key.gif | Bin 0 -> 76 bytes .../default/images/icons/twotone/green/lock.gif | Bin 0 -> 83 bytes .../default/images/icons/twotone/green/mail.gif | Bin 0 -> 82 bytes .../default/images/icons/twotone/green/move.gif | Bin 0 -> 80 bytes .../default/images/icons/twotone/green/music.gif | Bin 0 -> 80 bytes .../default/images/icons/twotone/green/news.gif | Bin 0 -> 76 bytes .../default/images/icons/twotone/green/note.gif | Bin 0 -> 82 bytes .../images/icons/twotone/green/open-folder.gif | Bin 0 -> 79 bytes .../images/icons/twotone/green/paper-clip.gif | Bin 0 -> 78 bytes .../images/icons/twotone/green/paper-clip2.gif | Bin 0 -> 80 bytes .../default/images/icons/twotone/green/pause.gif | Bin 0 -> 75 bytes .../default/images/icons/twotone/green/phone.gif | Bin 0 -> 79 bytes .../default/images/icons/twotone/green/play.gif | Bin 0 -> 75 bytes .../default/images/icons/twotone/green/plus.gif | Bin 0 -> 74 bytes .../default/images/icons/twotone/green/print.gif | Bin 0 -> 85 bytes .../images/icons/twotone/green/question-mark.gif | Bin 0 -> 74 bytes .../default/images/icons/twotone/green/quote.gif | Bin 0 -> 79 bytes .../images/icons/twotone/green/refresh.gif | Bin 0 -> 82 bytes .../default/images/icons/twotone/green/reply.gif | Bin 0 -> 79 bytes .../images/icons/twotone/green/rewind.gif | Bin 0 -> 77 bytes .../images/icons/twotone/green/search.gif | Bin 0 -> 76 bytes .../images/icons/twotone/green/shield.gif | Bin 0 -> 85 bytes .../images/icons/twotone/green/skip-back.gif | Bin 0 -> 76 bytes .../default/images/icons/twotone/green/skip.gif | Bin 0 -> 78 bytes .../default/images/icons/twotone/green/skull.gif | Bin 0 -> 85 bytes .../images/icons/twotone/green/statusbar.gif | Bin 0 -> 82 bytes .../default/images/icons/twotone/green/stop.gif | Bin 0 -> 72 bytes .../images/icons/twotone/green/template.gif | Bin 0 -> 81 bytes .../images/icons/twotone/green/text-bigger.gif | Bin 0 -> 82 bytes .../images/icons/twotone/green/text-smaller.gif | Bin 0 -> 80 bytes .../default/images/icons/twotone/green/trash.gif | Bin 0 -> 77 bytes .../images/icons/twotone/green/two-docs.gif | Bin 0 -> 83 bytes .../images/icons/twotone/green/twotone.gif | Bin 0 -> 2461 bytes .../default/images/icons/twotone/green/undo.gif | Bin 0 -> 79 bytes .../default/images/icons/twotone/green/user.gif | Bin 0 -> 77 bytes .../images/icons/twotone/green/vegetable.gif | Bin 0 -> 82 bytes theme/default/images/icons/twotone/green/x.gif | Bin 0 -> 79 bytes .../images/icons/twotone/green/zoom-in.gif | Bin 0 -> 86 bytes .../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 3c579cec75..2b71b07196 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 0000000000000000000000000000000000000000..22853edc43ff04778001d28e5e14e64b32693f05 GIT binary patch literal 1117 zcmex=xE0R}-11_1^EW=25anV3L`8Hkvf zSy(w(Sy@>Qk2+yV?tKuefdm_beh zs;mXdF|Y`-3Mm>ovIz$!vMUve7&T5@$f4}C@t|nX#SbdRNkvVZTw>x9l2WQ_>Kd9_ zCZ=ZQ7M51dF0O9w9-dyoA)#U65s^{JDXD4c8JStdC8cHM6_r)ZEv;?s9i3g1CQq3< zZTgIvvlcC0vUJ(<6)RV5+Pr1!w(UE1?mBe%$kAiRPnGGAU*RJ2VdF$b$$4{O< zd;a3(tB;>PfBE|D`;VW$7#Wx$-T{&r{s9I*BNGb?GYdP&Ka5P}K+G)2!m4P(ZXWYowZ;xuvL#)F*7#z7xMlZq~KiK&=8RQ(9@64*z?d8mmjAHh8Y_s{=Z3_Q$? zz+}TL$Y9U#^*!s4{C`4kQ@{F)F8#NE<^7nNX{$BEX7;OWE|d3v8oxYgwT`W+-_*q- z+uzjLw=VzM)weYJobTH^U)E+Hs>*NOQoXkN(6;Tf#Fj2Ov+-`EuiCfmW$ej|9|&k>x-`dJy*iwaIS@snEOaP0Pi8o%z1YZ)MKM zRh|Np+Y=60roJjLZm^p5YSuI*^Cmyt+P{5LF*_nZUCA@@&Al93&$PVvpTfaM*5M!4 zAAY>*^{;80%VnnTYCTgO_i(zRpnz~I%X9Ugp$`rGx_=#0x)>OxdU^ku>!Q7(i@)aR QKG!^Hc0cZ<-tqr80k4%pzW@LL literal 0 HcmV?d00001 diff --git a/theme/default/images/icons/icon_foaf.gif b/theme/default/images/icons/icon_foaf.gif new file mode 100644 index 0000000000000000000000000000000000000000..f8f78442355bf0d0b509536bca7c57b4eedab04a GIT binary patch literal 1144 zcmd^;?N1ta0Dyn!iB*(>T3&i*JrF8R7w1whHElM8C<3ml?j+W9-3dwyO`2L|HqDkn z5%F#4%5=zqhahRU8WmVVw{A%ro6Wr`PE6ceVj2??L*}%}w$5a?_V3v9;raf2cvR|! zleHa30UP`^2O^P(TCHAKSg=~He14Hqsif%uZ8F&hVl+)kq!MMLzPTBX#bWfui_Upx zD&?A({APN6nl_tVpScF^4um#Ch!`OgWH@Z1X>XUc>*oB;p^^I*kHugxqzIz#MkuV+ z27e0fbavY2Z0Yob-EJpWNrkE-kx0z`GV7<3B)Q`M(a*|fwO?ze5|oczl~rJTgzvcP zz!1czQbk)^OUg=ic0LdYc>Kb`Zg=9odT3ob5qn5U- zZT@vXO;3k^3m?hNp^{WgtIf?~Vi*>WTf)DFYicA*OYfDHpIEwZfu=*Xwa2whum5W{ zlO!obgc%u(w8@kv2n>cj-+78r7)Id$weIzL7Z!R>!0^-*v5e!F&8~w3Z(YM%0)Y@I zE{Nm!F$q#$j-}IMH89-M7w}AdKk~&$^8EQ0k%;<%3Q);-{B4CovDekr^qO&h-@R)# zADB!U?U`h6#s5A^?%aeE|u=?euQDt>S{El*K_kZ{mxHA zKZiIhc5pN3^BG3p|I*eU;lW3AS9DcXD27Q~_gwCYuVpe!2=hknj|h-5S$U0@T;=iD z)k0w^HAb$Gi#YE0tpNaNntta0C!(hi1AsYD`8@ym6W|aH&PB`*h_CXP`B1cFukIl$ zs|1(%WPd!$fVg5p|HQsAS^bi1b0#pP6%J=GW{H{G^{kf%TYUG<8ipXeV7Bse-~cv| zbFQln4K0m}iaXIuv5tC2w(J<*7GbcULq^Pkw5D#|;fUDp4ksPTyrZ@I+X3#gFQA-x zk0&Fbfm(V`Kb^8?Lhb_Ijq8^l&o~_g;dlNH1SJ|q-7P$;xu;vu8g;$-KF`Z%EK&)8HeT>g)Y#vUAp}MLgmL1PV~(!a7HD+ zI?Nr*lXC$Eu30nL$d)62zg!{*uVkS>^T@WwmwfEeqXVc$01lsS6Nu{>3~=f{5zlh9 literal 0 HcmV?d00001 diff --git a/theme/default/images/icons/icon_rss.jpg b/theme/default/images/icons/icon_rss.jpg new file mode 100644 index 0000000000000000000000000000000000000000..da23422d0616d0d2925545214c2591b78dd1d6cb GIT binary patch literal 1166 zcmex=Qa5@J#!Vq&6< zKy9o*9jvTeqI^7je4?a+|3?@XF)%Q)GJ*jxbisg;3FsI$b`DN1ZUF`+pe0N!%pj)$ zRn`LK7+3^Zg%k}P*@OcV*_8@Kj2b5{ECr+Nabot8FYu9hwy!G(W<0ns_ zJ%91?)yGetzkL1n{m0K=j10^W?*K^*{{VxZk%@(cnS~wXA4aBfAZ8Y1VO2C_6LJh> zPb?HxGHT=yahkYr<3Ubk6e=l{~ZV&R(P($<#Tc_eT}|Zsr;?yuxz;gdKo>o08iH_ez(7J*Xx$0_w2DP{4nd=rPuyD z`a)(@-l|)kedxsE9m)%3QmU^v_nh7s>82){>G!efn0MO#wHIGL{c+0jtmNgD(xyum zefR%$bCwl<_gg!Wm##8d)9z_*-yNvB?~T)ip1kmw&vVT4op{R=4C8OwoLuR)CoA_` zOx3bo_v7ZyN>|fo)OqB&T-^0={g$N{mw&I*Tx@-;&iYcF!b_?4mOt{Tt77hWuXV3n z?EbBWV{xfmmW=#VXK{s+mvPsWMca>EoX5{A_C9zP*X`J>JyYMgG3%|L9@=ItsMRc(@bU8V@GBo706UV+d;tIe literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..ca796c8a36ff26f41dcb0bacfd1e4e076c9c095f GIT binary patch literal 85 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J7CW`erVB%g;PR lXBVD&QyasQ6;Qb}>xhpNBZD;nc>)<7 literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..afed190841f8b88f930d0dfe7030339f8aea296c GIT binary patch literal 73 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J5b*`erVB%fEOI ZBSY5uGcnueIVwI2eAel8Mn#0d8UQdZ7iIte literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..ee1707ed96a315d287e778dd7650fdad9f5ccc55 GIT binary patch literal 74 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J5b+`erVB%fEOI a2ZPj`+FkFTWlpxJyV1Ff%b1gu!5RQfjTe{z literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..d0f5fbeaa84564e38daa0f772acd229affc82e61 GIT binary patch literal 74 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J5b+`erVB%dgDh ZAm^oetS~(`@?iSJ1s%(jk~vu!tN|tM6`cS8 literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..1e9e6935bd9a3ddfed9b46a5c3f34aeefa2046c6 GIT binary patch literal 75 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J3F5`erVB%b(0V b k^F{6jZZmF8W=)*Y^I&C3XxFSYH=?w5UKI%DW@WGj09=(EL{8Fg%W&6v mLlkSu3C-WUMI9EUAsk73mQhpLRu{hBl$(B@!%dpTp i@LV_liI8i573MP+IhKSiS<#lZt9Qm9IUaQp25SH%`WtTm literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..3946869ae070474df5622c56ba6d0984bb06af5d GIT binary patch literal 88 zcmZ?wbhEHb6krfwSjfQe|NsB^DFQ$e2o!&^FfuSOG3YP=0Z5*KNi(ExCfnQpd~^IR nW#;qjPMx6XakMgtb5Z7{-1x4Q%h>kLs(l!eFlSK!1A{dHn&}~% literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..e970b0a30c1881cf9a40679a435a9edd8a574587 GIT binary patch literal 85 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J7CW`erVB`@dn% lmW$juVL^}2<#JlosU*#FZ|zFGwlY^>_k~_|A3YHUYXF>E9a{hZ literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..9c08f4a3a91cba4925fbfded9759f2d1c5fe52e5 GIT binary patch literal 81 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J4=r`erVB%ilQ1 h;Ec3>snFYHwO-E|{XLq}Di`HO95p(0!ikZ=8UXm`8j%11 literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..2e8648264d54f9a17eb030a5ec2f45c7282df6b1 GIT binary patch literal 78 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J7yn`erVB%fEOI e!yK;FytiK7*Hn0sI43gh_K|IRr+u6l8LR=iv>HGF literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..c746aca601dfce71bec63cc34bd2cea576a608c6 GIT binary patch literal 75 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J3F5`erVB%fFb# bLC#BkUBTx**BG_BS(!^$or-W`WUvMRPNf%3 literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..7e0906cfe983cc8cd86af5fb84cd6faa05e7525b GIT binary patch literal 73 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J5b*`erVB%fEOI ZJ44pmGnPfZzV}6^J-cZzIe>w|8UQMM7X$zR literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..588e28c26122f6eb76a68e44d5fdf796be4737ae GIT binary patch literal 74 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J5b+`erVB%P+`a acvef3ue|(E=)-533p|(cHFL5uSOWkrdlpCl literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..28e49510317e0f0814ed89e227337c2f0b2765ae GIT binary patch literal 77 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J7ym`erVB%fEOI dLyOkxqXGH9E5u)9B)1e^KDAB9n3I*k8UUVN8B72G literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..d93515e3790aa4672656512f416edf2c5c30f2f5 GIT binary patch literal 73 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J5b*`erVB%fEOI Z!yK;F*Ye-L@sv;Xeb%|`jEV?@H2^xX7##or literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..68c8aee2598d4c470b1c60c36232fea6b52dbef6 GIT binary patch literal 80 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J0TB`erVB%g@;0 g#a2CkYK(uMX`+Uoh*MBz%DnK`$BZ6xu`*Z#0Jqf`MF0Q* literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..0c1794b4e7f35194cd5734cfc5de513c6283a4b7 GIT binary patch literal 82 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J4=s`erVB%P-4d ic(!ZZl9}eU4X0eIltb-SW-NSXe$>d#okvZC!5RPzJ{ji# literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..c4118d53bdc16883409cf7276480cffb5d4b3291 GIT binary patch literal 90 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J611`erV>%dohG r(<0@g?ab9LGUKnYF6~@)=SyhLQ!m|bU8{L62k$lYsTUAoV6X-NHqIaP literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..5be6c67ddf1a3d7ced982417295971bcf5da2cd4 GIT binary patch literal 78 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J7yn`erVB%m0{J e#G`w|<;Y(LWEWZl^{!m-^5@pPBNa}J4Aua|3L8WK literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..d2a3421efe8e1f15d2c8f8de2ba5dd90e6f7245a GIT binary patch literal 81 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J4=r`erVB%P+_f h=qL5QHEQ?0T7_#pOCGUap1f|+>#(AuC!81=tN{eA95w&| literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..b62b9480cbb0d8706a7d224020d253166eee5609 GIT binary patch literal 85 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J7CW`erVB%ebf~ l|J*GGx2X4zZ3Q%nQY8B#W~r^66*)!u{L{mC8Uq*@tO0)l9drNy literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..86ef1f8b4a7ba4171b2c27e4a0dbd2374cbbe3b2 GIT binary patch literal 73 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J5b*`erVB%dgDh Zpp;d-=xR}K>U{C6XDQ9DWR2z}AKSEW_cpG{oU9Di0P08@NdN!< literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..64b51d4e100420e2fca737504aaf22bbea0ecffd GIT binary patch literal 80 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J0TB`erVB%m0{p g3sZ)6Sox>9B@eF#Hg-g`-iH4Co$ilfZ5aPvz?l804#xaT`=`5tW%25SJKSQoGW literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..1d45f1d1eef9831bc859c5e643387f3d9d593599 GIT binary patch literal 78 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J7yn`erVB%dgB5 e!q!l5B&N(Z_K{lC`Si?X>9N_n4>&P0SOWl)+8CSw literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..a8c7805bef4ca86c713bfb88a424952eb3fc14f4 GIT binary patch literal 80 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J0TB`erVB%P%_P gBST5zHmiXDF-kXjRV9-`x4Fi%9_L`@W@WGj0MNP^3;+NC literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..ced0b6440c8fe67e6d530103d8ac1aa4b70453ca GIT binary patch literal 75 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J3F5`erVB%fEOI b!yKu?3;xB=BLil1-fvm9>WGgMBZD;nY2_H} literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..69359f7648c04ec6d70f9dea5d3d2cf68c61f1b3 GIT binary patch literal 79 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J0TA`erVB%lW7| f@LW{-0f+q8srRn;CUq=ad2Hr`7Y2(17#OSp`+Xe# literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..794ec85b6ac815e0ca134bbc0e81872ded44cc8e GIT binary patch literal 75 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J3F5`erVB%fFa8 bL@rA8T*2p;t_wRNm$oj;IuPN+$Y2csUhNo3 literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..4407d0b2d5e65816a16edb6989936e37dbfc45d1 GIT binary patch literal 74 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J5b+`erVB%dgDh app?bmx8?iu%1dbzlcz3Sb#wzOgEas@*ce~{ literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..17727d5d7d78a79ac3b4222d642f852d38a90b65 GIT binary patch literal 85 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J7CW`erVB%g;PR lLC#9|+yTPFXZxyDMdl)|PDDpNb+3)&N?q8{z-} literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..1689efcd0293bfd8c25b47f5a1c0ddfc43d1b722 GIT binary patch literal 74 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J5b+`erVB%m0{J a{-@AH?kQ2!UTT#^eskIhQ=KKiN0U}FFSgEasbdmDKG literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..6ff01bb355956903f06ddee4c88ec13185d7cf36 GIT binary patch literal 79 zcmZ?wbhEHb6krfwSjfQe|NsB^DFQ$e2o!&^FfuSOG3YP=0Z5*KNgZOy#&cDmB_R$kzum%90svYG3 literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..adca7aa3ee2c0cc939c8b7a3ee6ea5eafd52e657 GIT binary patch literal 76 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J3F6`erVB%fEOI cLnGJ6qwDkDRYWg|UBc@3>Xg?R6%ht&0E-nFl>h($ literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..ae5417f2f816c60245db5bba38a4a875f047c679 GIT binary patch literal 78 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J7yn`erVB%fEOI eg95kqG5_dy6^u7B*jI*JKeBDzX&)y>25SJI+8Iay literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..033506732767418de878eb41beffb4164c41a1ba GIT binary patch literal 85 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J7CW`erVB%g;PR m`O^Ut$#-2(ib%^N~T@nKF;x(iWHYXF^I8F2sr literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..97e54b964730d112b13e90e99912f13393179ec2 GIT binary patch literal 83 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J2p=`erVB`@exj k;A~dvj4LnCR!V(WjW1sy>ALD=M%Y@Pq-|#(urgQ!0B6D;9RL6T literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..45aad25c4c49c27a500a05daa7b606df4d52f268 GIT binary patch literal 2461 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 b4*0+ee(;1Zyx|Xz_{1xI@r+M=0RR9ydkW?< literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..6869b30501187a85f8bcf2fd105aba5707f9f42e GIT binary patch literal 79 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J0TA`erVB%g^7z f=_9pfTfzIf)P=%DGb$GKr>~3WvgT0}VXy`Owage$ literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..c85460fcd5c48dc10a37be719df04a141b87d29b GIT binary patch literal 77 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J7ym`erVB%P+_f d=oh7bZg-V+q12LIze?MTA6xk!bFwm60|0b<7m5G? literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..4d421c1bbd4d3359c91d724dd3c86fb14513f873 GIT binary patch literal 82 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J4=s`erVB%P;6* i>=z(<@AlIRt_tae5-Icif0-_`*ruUlv>||j!5RPr6&c?E literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..ffb2efea00c78ee8fd74913cce781c2d08c9ed80 GIT binary patch literal 79 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J0TA`erVB%fFbp f)2@MkTk-Q3o{k(mJ$4OTU(?l0#1$&+62)?5co~QeWubG>b!5RQ|VjD*Q literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..c61f999fd009be1c7bcb21d9f1b1d61b6d021977 GIT binary patch literal 85 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J7CW`erVB%a~Nd luJQWA**%e#nVlUILZ8P5vo(dh+&4ibJWbYMYXAd-H2{749CrW! literal 0 HcmV?d00001 From 838502dfd9894e409714c512f83179bab68446d7 Mon Sep 17 00:00:00 2001 From: sarven Date: Mon, 19 Jan 2009 04:46:18 +0000 Subject: [PATCH 20/20] 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 ef64da9537..9baa953b38 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