diff --git a/actions/conversation.php b/actions/conversation.php index 8d11df37bc..cfe4e47fe6 100644 --- a/actions/conversation.php +++ b/actions/conversation.php @@ -47,8 +47,11 @@ require_once INSTALLDIR.'/lib/noticelist.php'; */ class ConversationAction extends Action { - var $id = null; - var $page = null; + var $id = null; + var $page = null; + var $notices = null; + + const MAX_NOTICES = 500; /** * Initialization. @@ -69,6 +72,19 @@ class ConversationAction extends Action if (empty($this->page)) { $this->page = 1; } + + $cur = common_current_user(); + + if (empty($cur)) { + $profile = null; + } else { + $profile = $cur->getProfile(); + } + + $stream = new ConversationNoticeStream($this->id, $profile); + + $this->notices = $stream->getNotices(0, self::MAX_NOTICES, null, null); + return true; } @@ -106,11 +122,9 @@ class ConversationAction extends Action */ function showContent() { - $notices = Notice::conversationStream($this->id, null, null); + $tnl = new ThreadedNoticeList($this->notices, $this); - $ct = new ConversationTree($notices, $this); - - $cnt = $ct->show(); + $cnt = $tnl->show(); } function isReadOnly() @@ -118,173 +132,3 @@ class ConversationAction extends Action return true; } } - -/** - * Conversation tree - * - * The widget class for displaying a hierarchical list of notices. - * - * @category Widget - * @package StatusNet - * @author Evan Prodromou - * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 - * @link http://status.net/ - */ -class ConversationTree extends NoticeList -{ - var $tree = null; - var $table = null; - - /** - * Show the tree of notices - * - * @return void - */ - function show() - { - $cnt = $this->_buildTree(); - - $this->out->elementStart('div', array('id' =>'notices_primary')); - // TRANS: Header on conversation page. Hidden by default (h2). - $this->out->element('h2', null, _('Notices')); - $this->out->elementStart('ol', array('class' => 'notices xoxo')); - - if (array_key_exists('root', $this->tree)) { - $rootid = $this->tree['root'][0]; - $this->showNoticePlus($rootid); - } - - $this->out->elementEnd('ol'); - $this->out->elementEnd('div'); - - return $cnt; - } - - function _buildTree() - { - $cnt = 0; - - $this->tree = array(); - $this->table = array(); - - while ($this->notice->fetch()) { - - $cnt++; - - $id = $this->notice->id; - $notice = clone($this->notice); - - $this->table[$id] = $notice; - - if (is_null($notice->reply_to)) { - $this->tree['root'] = array($notice->id); - } else if (array_key_exists($notice->reply_to, $this->tree)) { - $this->tree[$notice->reply_to][] = $notice->id; - } else { - $this->tree[$notice->reply_to] = array($notice->id); - } - } - - return $cnt; - } - - /** - * Shows a notice plus its list of children. - * - * @param integer $id ID of the notice to show - * - * @return void - */ - function showNoticePlus($id) - { - $notice = $this->table[$id]; - - // We take responsibility for doing the li - - $this->out->elementStart('li', array('class' => 'hentry notice', - 'id' => 'notice-' . $id)); - - $item = $this->newListItem($notice); - $item->show(); - - if (array_key_exists($id, $this->tree)) { - $children = $this->tree[$id]; - - $this->out->elementStart('ol', array('class' => 'notices')); - - sort($children); - - foreach ($children as $child) { - $this->showNoticePlus($child); - } - - $this->out->elementEnd('ol'); - } - - $this->out->elementEnd('li'); - } - - /** - * Override parent class to return our preferred item. - * - * @param Notice $notice Notice to display - * - * @return NoticeListItem a list item to show - */ - function newListItem($notice) - { - return new ConversationTreeItem($notice, $this->out); - } -} - -/** - * Conversation tree list item - * - * Special class of NoticeListItem for use inside conversation trees. - * - * @category Widget - * @package StatusNet - * @author Evan Prodromou - * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 - * @link http://status.net/ - */ -class ConversationTreeItem extends NoticeListItem -{ - /** - * start a single notice. - * - * The default creates the
  • ; we skip, since the ConversationTree - * takes care of that. - * - * @return void - */ - function showStart() - { - return; - } - - /** - * finish the notice - * - * The default closes the
  • ; we skip, since the ConversationTree - * takes care of that. - * - * @return void - */ - function showEnd() - { - return; - } - - /** - * show link to notice conversation page - * - * Since we're only used on the conversation page, we skip this - * - * @return void - */ - function showContext() - { - return; - } -} diff --git a/actions/conversationreplies.php b/actions/conversationreplies.php index 21780fdf1d..51bc97f1fc 100644 --- a/actions/conversationreplies.php +++ b/actions/conversationreplies.php @@ -66,9 +66,7 @@ class ConversationRepliesAction extends ConversationAction */ function showContent() { - $notices = Notice::conversationStream($this->id, null, null); - - $ct = new FullThreadedNoticeList($notices, $this); + $ct = new FullThreadedNoticeList($this->notices, $this); $cnt = $ct->show(); } diff --git a/classes/Notice.php b/classes/Notice.php index c80e57dc97..1688443301 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -96,17 +96,21 @@ class Notice extends Memcached_DataObject const GROUP_SCOPE = 4; const FOLLOWER_SCOPE = 8; + protected $_profile = -1; + function getProfile() { - $profile = Profile::staticGet('id', $this->profile_id); + if ($this->_profile == -1) { + $this->_profile = Profile::staticGet('id', $this->profile_id); - if (empty($profile)) { - // TRANS: Server exception thrown when a user profile for a notice cannot be found. - // TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number). - throw new ServerException(sprintf(_('No such profile (%1$d) for notice (%2$d).'), $this->profile_id, $this->id)); + if (empty($this->_profile)) { + // TRANS: Server exception thrown when a user profile for a notice cannot be found. + // TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number). + throw new ServerException(sprintf(_('No such profile (%1$d) for notice (%2$d).'), $this->profile_id, $this->id)); + } } - return $profile; + return $this->_profile; } function delete() diff --git a/classes/Profile.php b/classes/Profile.php index d87ace42c5..2c15826282 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -52,9 +52,15 @@ class Profile extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + protected $_user = -1; // Uninitialized value distinct from null + function getUser() { - return User::staticGet('id', $this->id); + if ($this->_user == -1) { + $this->_user = User::staticGet('id', $this->id); + } + + return $this->_user; } function getAvatar($width, $height=null) @@ -465,34 +471,6 @@ class Profile extends Memcached_DataObject function hasFave($notice) { - $cache = Cache::instance(); - - // XXX: Kind of a hack. - - if (!empty($cache)) { - // This is the stream of favorite notices, in rev chron - // order. This forces it into cache. - - $ids = Fave::idStream($this->id, 0, CachingNoticeStream::CACHE_WINDOW); - - // If it's in the list, then it's a fave - - if (in_array($notice->id, $ids)) { - return true; - } - - // If we're not past the end of the cache window, - // then the cache has all available faves, so this one - // is not a fave. - - if (count($ids) < CachingNoticeStream::CACHE_WINDOW) { - return false; - } - - // Otherwise, cache doesn't have all faves; - // fall through to the default - } - $fave = Fave::pkeyGet(array('user_id' => $this->id, 'notice_id' => $notice->id)); return ((is_null($fave)) ? false : true); diff --git a/classes/User.php b/classes/User.php index f2b5b08371..48b0f49f3d 100644 --- a/classes/User.php +++ b/classes/User.php @@ -73,16 +73,21 @@ class User extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + protected $_profile = -1; + /** * @return Profile */ function getProfile() { - $profile = Profile::staticGet('id', $this->id); - if (empty($profile)) { - throw new UserNoProfileException($this); + if ($this->_profile == -1) { // invalid but distinct from null + $this->_profile = Profile::staticGet('id', $this->id); + if (empty($this->_profile)) { + throw new UserNoProfileException($this); + } } - return $profile; + + return $this->_profile; } function isSubscribed($other) diff --git a/lib/conversationnoticestream.php b/lib/conversationnoticestream.php index 78ba3a372d..56850fe982 100644 --- a/lib/conversationnoticestream.php +++ b/lib/conversationnoticestream.php @@ -46,10 +46,11 @@ if (!defined('STATUSNET')) { */ class ConversationNoticeStream extends ScopingNoticeStream { - function __construct($id) + function __construct($id, $profile = null) { parent::__construct(new CachingNoticeStream(new RawConversationNoticeStream($id), - 'notice:conversation_ids:'.$id)); + 'notice:conversation_ids:'.$id), + $profile); } } @@ -98,9 +99,6 @@ class RawConversationNoticeStream extends NoticeStream } } - $notice->free(); - $notice = NULL; - return $ids; } } \ No newline at end of file diff --git a/lib/default.php b/lib/default.php index 84eaf3bf2a..be0e4a74e6 100644 --- a/lib/default.php +++ b/lib/default.php @@ -312,7 +312,9 @@ $default = 'QnA' => null, 'SearchSub' => null, 'TagSub' => null, - 'OpenID' => null), + 'OpenID' => null, + 'Directory' => null, + 'ExtendedProfile' => null), 'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories 'server' => null, 'sslserver' => null, diff --git a/plugins/Event/EventPlugin.php b/plugins/Event/EventPlugin.php index 63d92e63c7..aca2922f17 100644 --- a/plugins/Event/EventPlugin.php +++ b/plugins/Event/EventPlugin.php @@ -329,6 +329,11 @@ class EventPlugin extends MicroappPlugin { $rsvp = RSVP::fromNotice($notice); + if (empty($rsvp)) { + $out->element('p', null, _('Deleted.')); + return; + } + $out->elementStart('div', 'rsvp'); $out->raw($rsvp->asHTML()); $out->elementEnd('div'); @@ -340,8 +345,10 @@ class EventPlugin extends MicroappPlugin $profile = $notice->getProfile(); $event = Happening::fromNotice($notice); - assert(!empty($event)); - assert(!empty($profile)); + if (empty($event)) { + $out->element('p', null, _('Deleted.')); + return; + } $out->elementStart('div', 'vevent event'); // VEVENT IN diff --git a/theme/biz/css/base.css b/theme/biz/css/base.css deleted file mode 100644 index 3a20871de9..0000000000 --- a/theme/biz/css/base.css +++ /dev/null @@ -1,1504 +0,0 @@ -/** theme: biz base - * - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2009 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ - -@media screen, projection, tv { -* { margin:0; padding:0; } -img { display:block; border:0; } -a abbr { cursor: pointer; border-bottom:0; } -table { border-collapse:collapse; } -ol { list-style-position:inside; } -html { font-size: 87.5%; background-color:#fff; height:100%; } -body { -background-color:#fff; -color:#000; -font-family:sans-serif; -font-size:1em; -line-height:1.65; -position:relative; -} -h1,h2,h3,h4,h5,h6 { -margin-bottom:7px; -overflow:hidden; -} -h1 { -font-size:1.4em; -margin-bottom:18px; -} -#showstream h1 { display:none; } -h2 { font-size:1.3em; } -h3 { font-size:1.2em; } -h4 { font-size:1.1em; } -h5 { font-size:1em; } -h6 { font-size:0.9em; } - -caption { -font-weight:bold; -} -legend { -font-weight:bold; -font-size:1.3em; -} -input, textarea, select, option { -padding:4px; -font-family:sans-serif; -font-size:1em; -} -input, textarea, select { -border-width:2px; -border-style: solid; -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} - -input.submit { -font-weight:bold; -cursor:pointer; -} -textarea { -overflow:auto; -} -option { -padding-bottom:0; -} -fieldset { -padding:0; -border:0; -} -form ul li { -list-style-type:none; -margin:0 0 18px 0; -} -form label { -font-weight:bold; -} -input.checkbox { -position:relative; -top:2px; -left:0; -border:0; -} - -.error, -.success { -padding:4px 1.55%; -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -margin-bottom:18px; -} -form label.submit { -display:none; -} - -.form_settings { -clear:both; -} - -.form_settings fieldset { -margin-bottom:29px; -} -.form_settings input.remove { -margin-left:11px; -} -.form_settings .form_data li { -width:100%; -float:left; -} -.form_settings .form_data label { -float:left; -} -.form_settings .form_data textarea, -.form_settings .form_data select, -.form_settings .form_data input { -margin-left:11px; -float:left; -} -.form_settings .form_data input.submit { -margin-left:0; -} - -.form_settings label { -margin-top:2px; -width:113px; -} - -.form_actions label { -display:none; -} -.form_guide { -font-style:italic; -} - -.form_settings #settings_autosubscribe label { -display:inline; -font-weight:bold; -} - -#form_settings_profile legend, -#form_login legend, -#form_register legend, -#form_password legend, -#form_settings_avatar legend, -#newgroup legend, -#editgroup legend, -#form_tag_user legend, -#form_remote_subscribe legend, -#form_openid_login legend, -#form_search legend, -#form_invite legend, -#form_notice_delete legend, -#form_password_recover legend, -#form_password_change legend { -display:none; -} - -.form_settings .form_data p.form_guide { -clear:both; -margin-left:124px; -margin-bottom:0; -} - -.form_settings p { -margin-bottom:11px; -} - -.form_settings input.checkbox { -margin-top:3px; -margin-left:0; -} -.form_settings label.checkbox { -font-weight:normal; -margin-top:0; -margin-right:0; -margin-left:11px; -float:left; -width:90%; -} - - -#form_login p.form_guide, -#form_register #settings_rememberme p.form_guide, -#form_openid_login #settings_rememberme p.form_guide, -#settings_twitter_remove p.form_guide, -#form_search ul.form_data #q { -margin-left:0; -} - -.form_settings .form_note { -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -padding:0 7px; -} - - -.form_settings input.form_action-primary { -padding:0; -} -.form_settings input.form_action-secondary { -margin-left:29px; -} - - -#form_search .submit { -margin-left:11px; -} - -address { -float:left; -margin-bottom:18px; -margin-left:18px; -} -address.vcard img.logo { -margin-right:0; -} -address .fn { -font-weight:bold; -} -address img + .fn { -display:none; -} -address .poweredby { -float:left; -clear:left; -display:block; -position:relative; -top:7px; -margin-right:-47px; -} - - -#header { -width:100%; -position:relative; -float:left; -padding-top:18px; -margin-bottom:18px; -} - -#site_nav_global_primary { -float:left; -margin-right:18px; -margin-bottom:11px; -width:50%; -} -#site_nav_global_primary ul li { -display:inline; -margin-right:11px; -} - -.system_notice dt { -font-weight:bold; -text-transform:uppercase; -display:none; -} - -#site_notice { -float:right; -clear:right; -margin-top:7px; -margin-right:18px; -width:24%; -} -#page_notice { -clear:both; -margin-bottom:18px; -} - - -#anon_notice { -float:left; -width:45.4%; -/* -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -border-width:2px; -border-style:solid; -*/ -line-height:1.5; -font-size:1.1em; -font-weight:bold; -} - - -#footer { -float:left; -width:64%; -padding:18px; -} - -#site_nav_local_views { -width:14.5%; -float:left; -} -#site_nav_local_views dt { -display:none; -} -#site_nav_local_views li { -list-style-type:none; -} -#site_nav_local_views a { -display:block; -text-decoration:none; -padding:4px 11px; --moz-border-radius-topleft:4px; --moz-border-radius-bottomleft:4px; --webkit-border-top-left-radius:4px; --webkit-border-bottom-left-radius:4px; -border-width:1px; -border-style:solid; -border-right:0; -text-shadow: 2px 2px 2px #ddd; -font-weight:bold; -} -#site_nav_local_views .nav { -float:left; -width:100%; -} - -#site_nav_global_primary dt, -#site_nav_global_secondary dt { -display:none; -} - -#site_nav_global_secondary { -margin-bottom:11px; -} - -#site_nav_global_secondary ul li { -display:inline; -margin-right:11px; -} -#export_data li a { -padding-left:20px; -} -#export_data li a.foaf { -padding-left:30px; -} -#export_data li a.export_vcard { -padding-left:28px; -} - -#export_data ul { -display:inline; -} -#export_data li { -list-style-type:none; -display:inline; -margin-left:11px; -} -#export_data li:first-child { -margin-left:0; -} - -#licenses { -font-size:0.9em; -} - -#licenses dt { -font-weight:bold; -display:none; -} -#licenses dd { -margin-bottom:11px; -line-height:1.5; -} - -#site_content_license_cc { -margin-bottom:0; -} -#site_content_license_cc img { -display:inline; -vertical-align:top; -margin-right:4px; -} - -#wrap { -margin:0 auto; -width:100%; -min-width:760px; -max-width:1003px; -overflow:hidden; -} - -#core { -position:relative; -width:100%; -float:left; -margin-bottom:1em; -} - -#content { -width:50%; -min-height:259px; -padding:1.795%; -float:left; -border-radius:7px; --moz-border-radius:7px; --moz-border-radius-topleft:0; --webkit-border-radius:7px; --webkit-border-top-left-radius:0; -border-style:solid; -border-width:1px; -} -#shownotice #content { -min-height:0; -} - -#content_inner { -position:relative; -width:100%; -float:left; -} - -#aside_primary { -width:29.917%; -min-height:259px; -float:left; -margin-left:1%; -} - -#form_notice { -width:45.664%; -float:left; -position:relative; -line-height:1; -} -#form_notice fieldset { -border:0; -padding:0; -position:relative; -} -#form_notice legend { -display:none; -} -#form_notice textarea { -float:left; -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -width:80.789%; -height:67px; -line-height:1.5; -padding:7px 7px 16px 7px; -} -#form_notice label { -display:block; -float:left; -font-size:1.3em; -margin-bottom:7px; -} -#form_notice label { -display:block; -float:left; -font-size:1.3em; -margin-bottom:7px; -} -#form_notice label.notice_data-attach { -text-indent:-9999px; -} -#form_notice label.notice_data-attach, -#form_notice input.notice_data-attach { -position:absolute; -top:25px; -right:49px; -width:16px; -height:16px; -cursor:pointer; -} -#form_notice input.notice_data-attach { -text-indent:-279px; -} -#form_notice #notice_submit label { -display:none; -} -.form_notice .count { -position:absolute; -top:99px; -right:98px; -z-index:9; -} -.form_notice .count dt { -font-weight:bold; -display:none; -} -.form_notice .count { -font-weight:bold; -line-height:1.15; -padding:1px 2px; -} -#form_notice .submit { -width:14%; -height:47px; -padding:0; -position:absolute; -bottom:0; -right:0; -} -#form_notice label[for=to] { -margin-top:7px; -} -#form_notice select[id=to] { -margin-bottom:7px; -margin-left:18px; -float:left; -} -#form_notice .error { -float:left; -clear:both; -width:96.9%; -margin-bottom:0; -line-height:1.618; -} - -.form_notice .attach-status button.close { -float:right; -font-size:0.8em; -} - -.form_notice .notice_data-geo_wrap label, -.form_notice .notice_data-geo_wrap input { -position:absolute; -top:25px; -right:4px; -left:auto; -cursor:pointer; -width:16px; -height:16px; -display:block; -} -.form_notice .notice_data-geo_wrap input { -visibility:hidden; -} -.form_notice .notice_data-geo_wrap label { -font-weight:normal; -font-size:1em; -margin-bottom:0; -text-indent:-9999px; -} - -button.close, -button.minimize { -width:16px; -height:16px; -text-indent:-9999px; -padding:0; -border:0; -text-align:center; -font-weight:bold; -cursor:pointer; -} - -/* entity_profile */ -.entity_profile { -position:relative; -width:67.702%; -min-height:123px; -float:left; -margin-bottom:18px; -margin-left:0; -overflow:hidden; -} -.entity_profile dt, -#entity_statistics dt { -font-weight:bold; -} -.entity_profile dd { -display:inline; -} - -.entity_profile .entity_depiction { -float:left; -width:96px; -margin-right:18px; -margin-bottom:18px; -} - -.entity_profile .entity_fn, -.entity_profile .entity_nickname, -.entity_profile .entity_location, -.entity_profile .entity_url, -.entity_profile .entity_note, -.entity_profile .entity_tags { -margin-left:113px; -margin-bottom:4px; -} - -.entity_profile .entity_fn, -.entity_profile .entity_nickname { -margin-left:11px; -display:inline; -font-weight:bold; -} -.entity_profile .entity_nickname { -margin-left:0; -} - -.entity_profile .entity_fn dd:before { -content: "("; -font-weight:normal; -} -.entity_profile .entity_fn dd:after { -content: ")"; -font-weight:normal; -} - -.entity_profile dt { -display:none; -} -.entity_profile h2 { -display:none; -} -/* entity_profile */ - - -/*entity_actions*/ -.entity_actions { -float:right; -margin-left:2%; -margin-bottom:18px; -min-width:21%; -} -.entity_actions h2 { -display:none; -} -.entity_actions ul { -list-style-type:none; -} -.entity_actions li { -margin-bottom:7px; -} -.entity_actions li:first-child { -border-top:0; -} -.entity_actions fieldset { -border:0; -padding:0; -} -.entity_actions legend { -display:none; -} - -.entity_actions input.submit { -display:block; -text-align:left; -width:100%; -} -.entity_actions a { -text-decoration:none; -font-weight:bold; -display:block; -} -.entity_actions a, -.entity_actions input { -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} - -.entity_actions a, -.entity_actions input, -.entity_actions p { -border-width:2px; -border-style:solid; -padding-left:23px; -} - -.entity_actions a, -.entity_actions p { -padding:2px 4px 1px 26px; -} - -.entity_actions .accept { -margin-bottom:18px; -} - -.entity_send-a-message button { -position:absolute; -top:3px; -right:3px; -} - -.entity_send-a-message .form_notice { -position:absolute; -top:34px; -right:-1px; -padding:1.795%; -width:65%; -z-index:2; - border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -border-width:1px; -border-style:solid; -} -.entity_send-a-message .form_notice legend { -display:block; -margin-bottom:11px; -} - -.entity_send-a-message .form_notice label, -.entity_send-a-message .form_notice select { -display:none; -} -.entity_send-a-message .form_notice input.submit { -text-align:center; -} - -.entity_moderation { -position:relative; -} -.entity_moderation p { -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -font-weight:bold; -padding-bottom:2px; -margin-bottom:7px; -} -.entity_moderation ul { -display:none; -} -.entity_moderation:hover ul { -display:block; -min-width:21%; -width:100%; -padding:11px; -position:absolute; -top:-1px; -right:-1px; -z-index:1; -border-width:1px; -border-style:solid; -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -} - -.entity_tags ul { -list-style-type:none; -display:inline; -} -.entity_tags li { -display:inline; -margin-right:4px; -} - -.aside .section { -margin-bottom:18px; -clear:both; -float:left; -width:87.985%; -padding:6%; -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -border-width:1px; -border-style:solid; -} -.aside .section h2 { -text-transform:uppercase; -font-size:1em; -} - -#entity_statistics dt, -#entity_statistics dd { -display:inline; -} -#entity_statistics dt:after { -content: ":"; -} - -.section ul.entities { -float:left; -width:100%; -} -.section .entities li { -list-style-type:none; -float:left; -margin-right:7px; -margin-bottom:7px; -} -.section .entities li .photo { -margin-right:0; -margin-bottom:0; -} -.section .entities li .fn { -display:none; -} - -.aside .section p, -.aside .section .more { -clear:both; -} - -.profile .entity_profile { -margin-bottom:0; -min-height:60px; -} - - -.profile .form_group_join legend, -.profile .form_group_leave legend, -.profile .form_user_subscribe legend, -.profile .form_user_unsubscribe legend { -display:none; -} - -.profiles { -list-style-type:none; -} -.profile .entity_profile .entity_location { -width:auto; -clear:none; -margin-left:11px; -} -.profile .entity_profile dl, -.profile .entity_profile dd { -display:inline; -float:none; -} -.profile .entity_profile .entity_note, -.profile .entity_profile .entity_url, -.profile .entity_profile .entity_tags, -.profile .entity_profile .form_subscription_edit { -margin-left:59px; -clear:none; -display:block; -width:auto; -} -.profile .entity_profile .entity_tags dt { -display:inline; -margin-right:11px; -} - - -.profile .entity_profile .form_subscription_edit label { -font-weight:normal; -margin-right:11px; -} - - -/* NOTICE */ -.notice, -.profile, -.application { -position:relative; -padding-top:11px; -padding-bottom:11px; -clear:both; -float:left; -width:100%; -border-top-width:1px; -border-top-style:dotted; -} -.notices li { -list-style-type:none; -} -.notices .notices { -margin-top:7px; -margin-left:2%; -width:98%; -float:left; -} -.mark-top { -border-top-width:1px; -border-top-style:solid; -} - -/* NOTICES */ -#notices_primary { -float:left; -width:100%; -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -} -#notices_primary h2 { -display:none; -} -.notice-data a span { -display:block; -padding-left:28px; -} - -.notice .author { -margin-right:11px; -} - -.fn { -overflow:hidden; -} - -.notice .author .fn { -font-weight:bold; -} - -.vcard .photo { -display:inline; -margin-right:11px; -float:left; -} -#shownotice .vcard .photo { -margin-bottom:4px; -} -#content .notice .author .photo { -position:absolute; -top:11px; -left:0; -float:none; -} -#content .notice .entry-title { -margin-left:59px; -} - -.vcard .url { -text-decoration:none; -} -.vcard .url:hover { -text-decoration:underline; -} - -.notice .entry-title { -overflow:hidden; -} -.notice .entry-title.ov { -overflow:visible; -} -#showstream .notice .entry-title, -#showstream .notice div.entry-content { -margin-left:0; -} -#shownotice .notice .entry-title { -margin-left:110px; -font-size:2.2em; -min-height:123px; -} -#shownotice .notice div.entry-content { -margin-left:0; -} - -.notice p.entry-content { -display:inline; -} - -#content .notice p.entry-content a:visited { -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} -.notice p.entry-content .vcard a { -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} - -.notice div.entry-content { -clear:left; -float:left; -font-size:0.95em; -margin-left:59px; -width:64%; -} -#showstream .notice div.entry-content, -#shownotice .notice div.entry-content { -margin-left:0; -} - -.notice .notice-options a, -.notice .notice-options input { -float:left; -font-size:1.025em; -} - -.notice div.entry-content .timestamp { -display:inline-block; -} - -.notice div.entry-content dl, -.notice div.entry-content dt, -.notice div.entry-content dd { -display:inline; -} - -.notice div.entry-content .timestamp dt, -.notice div.entry-content .response dt { -display:none; -} -.notice div.entry-content .timestamp a { -display:inline-block; -} -.notice div.entry-content .device dt { -text-transform:lowercase; -} - -.dialogbox { -position:absolute; -top:-1px; -right:-1px; -z-index:9; -float:none; -padding:11px; -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -border-style:solid; -border-width:1px; -} - -.dialogbox legend { -display:block !important; -margin-right:18px; -margin-bottom:18px; -} - -.dialogbox button.close { -position:absolute; -right:3px; -top:3px; -} - -.dialogbox .form_guide { -font-weight:normal; -padding:0; -} - -.dialogbox .submit_dialogbox { -font-weight:bold; -text-indent:0; -min-width:46px; -} -.dialogbox input { -padding-left:4px; -} -.dialogbox fieldset { -margin-bottom:0; -} - -#wrap form.processing input.submit, -.entity_actions a.processing, -.dialogbox.processing .submit_dialogbox { -cursor:wait; -outline:none; -text-indent:-9999px; -} - -.notice-options { -position:relative; -font-size:0.95em; -width:113px; -float:right; -margin-top:3px; -margin-right:4px; -} - -.notice-options a { -float:left; -} -.notice-options .notice_reply, -.notice-options .form_repeat, -.notice-options .form_favor, -.notice-options .form_disfavor, -.notice-options .repeated { -float:left; -margin-left:14.2%; -} -.notice-options .form_favor, -.notice-options .form_disfavor { -margin-left:0; -} -.notice-options input, -.notice-options a, -.notice-options .repeated { -text-indent:-9999px; -outline:none; -} -.notice-options input.submit { -display:block; -border:0; -} -.notice-options .notice_reply, -.notice-options .notice_delete { -text-decoration:none; -} -.notice .notice-options .notice_delete { -float:right; -} -.notice-options form input.submit { -width:16px; -height:16px; -padding:0; -border-radius:0; --moz-border-radius:0; --webkit-border-radius:0; -} -.notice-options .form_repeat legend, -.notice-options .form_favor legend, -.notice-options .form_disfavor legend { -display:none; -} -.notice-options .form_repeat fieldset, -.notice-options .form_favor fieldset, -.notice-options .form_disfavor fieldset { -border:0; -padding:0; -} -.notice-options a, -.notice-options .repeated { -width:16px; -height:16px; -} - -.notice .attachment { -position:relative; -padding-left:16px; -} -.notice .attachment.more { -text-indent:-9999px; -width:16px; -height:16px; -display:inline-block; -overflow:hidden; -vertical-align:middle; -margin-left:4px; -} - -#attachments .attachment, -.notice .attachment.more { -padding-left:0; -} -.notice .attachment img { -position:absolute; -top:18px; -left:0; -z-index:99; -} -#shownotice .notice .attachment img { -position:static; -} - -#attachments { -clear:both; -float:left; -width:100%; -margin-top:18px; -} -#attachments dt { -font-weight:bold; -font-size:1.3em; -margin-bottom:4px; -} - -#attachments ol li { -margin-bottom:18px; -list-style-type:decimal; -float:left; -clear:both; -} - -#jOverlayContent, -#jOverlayContent #content, -#jOverlayContent #content_inner { -width: auto !important; -margin-bottom:0; -} -#jOverlayContent #content { -padding:11px; -min-height:auto; -} -#jOverlayContent .entry-title { -display:block; -margin-bottom:11px; -} -#jOverlayContent button { -position:absolute; -top:0; -right:0; -} -#jOverlayContent h1 { -max-width:425px; -} -#jOverlayContent #content { -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -} -#jOverlayLoading { -top:5%; -left:40%; -} -#attachment_view img { -max-width:480px; -max-height:480px; -} -#attachment_view #oembed_info { -margin-top:11px; -} -#attachment_view #oembed_info dt, -#attachment_view #oembed_info dd { -float:left; -} -#attachment_view #oembed_info dt { -clear:left; -margin-right:11px; -font-weight:bold; -} -#attachment_view #oembed_info dt:after { -content: ":"; -} - -#usergroups #new_group { -float: left; -margin-right: 2em; -} -#new_group, #group_search { -margin-bottom:18px; -} -#new_group a { -padding-left:20px; -} - - -#filter_tags { -margin-bottom:11px; -float:left; -} -#filter_tags dt { -display:none; -} -#filter_tags ul { -list-style-type:none; -} -#filter_tags ul li { -float:left; -margin-left:7px; -padding-left:7px; -border-left-width:1px; -border-left-style:solid; -} -#filter_tags ul li.child_1 { -margin-left:0; -border-left:0; -padding-left:0; -} -#filter_tags ul li#filter_tags_all a { -font-weight:bold; -margin-top:7px; -float:left; -} - -#filter_tags ul li#filter_tags_item label { -margin-right:7px; -} -#filter_tags ul li#filter_tags_item label, -#filter_tags ul li#filter_tags_item select { -display:inline; -} -#filter_tags ul li#filter_tags_item p { -float:left; -margin-left:38px; -} -#filter_tags ul li#filter_tags_item input { -position:relative; -top:3px; -left:3px; -} - - - -.pagination { -float:left; -clear:both; -width:100%; -margin-top:18px; -} - -.pagination dt { -font-weight:bold; -display:none; -} - -.pagination .nav { -float:left; -width:100%; -list-style-type:none; -} - -.pagination .nav_prev { -float:left; -} -.pagination .nav_next { -float:right; -} - -.pagination a { -display:block; -text-decoration:none; -font-weight:bold; -padding:7px; -border-width:1px; -border-style:solid; --moz-border-radius:7px; --webkit-border-radius:7px; -border-radius:7px; -} - -.pagination .nav_prev a { -padding-left:30px; -} -.pagination .nav_next a { -padding-right:30px; -} -/* END: NOTICE */ - - -.hentry .entry-content p { -margin-bottom:18px; -} -.system_notice ul, -.instructions ul, -.hentry entry-content ol, -.hentry .entry-content ul { -list-style-position:inside; -} -.hentry .entry-content li { -margin-bottom:18px; -} -.hentry .entry-content li li { -margin-left:18px; -} - - - - -/* TOP_POSTERS */ -.section tbody td { -padding-right:11px; -padding-bottom:11px; -} -.section .vcard .photo { -margin-right:7px; -margin-bottom:0; -} - -.section .notice { -padding-top:7px; -padding-bottom:7px; -border-top:0; -} - -.section .notice:first-child { -padding-top:0; -} - -.section .notice .author { -margin-right:0; -} -.section .notice .author .fn { -display:none; -} - - -/* tagcloud */ -.tag-cloud { -list-style-type:none; -text-align:center; -} -.aside .tag-cloud { -font-size:0.8em; -} -.tag-cloud li { -display:inline; -margin-right:7px; -line-height:1.25; -} -.aside .tag-cloud li { -line-height:1.5; -} -.tag-cloud li a { -text-decoration:none; -} -#tagcloud.section dt { -text-transform:uppercase; -font-weight:bold; -} -.tag-cloud-1 { -font-size:1em; -} -.tag-cloud-2 { -font-size:1.25em; -} -.tag-cloud-3 { -font-size:1.75em; -} -.tag-cloud-4 { -font-size:2em; -} -.tag-cloud-5 { -font-size:2.25em; -} -.tag-cloud-6 { -font-size:2.75em; -} -.tag-cloud-7 { -font-size:3.25em; -} - -#publictagcloud #tagcloud.section dt { -display:none; -} - -#form_settings_photo .form_data { -clear:both; -} - -#form_settings_avatar li { -width:auto; -} -#form_settings_avatar input { -margin-left:0; -} -#avatar_original, -#avatar_preview { -float:left; -} -#avatar_preview { -margin-left:29px; -} -#avatar_preview_view { -height:96px; -width:96px; -margin-bottom:18px; -overflow:hidden; -} - -#settings_attach, -#form_settings_avatar .form_actions { -clear:both; -} - -#form_settings_avatar .form_actions { -margin-bottom:0; -} - -#form_settings_design #settings_design_color .form_data, -#form_settings_design #color-picker { -float:left; -} -#form_settings_design #settings_design_color .form_data { -width:400px; -margin-right:28px; -} - -.instructions ul { -list-style-position:inside; -} -.instructions p, -.instructions ul { -margin-bottom:18px; -} -.help dt { -display:none; -} -.guide { -clear:both; -} - -}/*end of @media screen, projection, tv*/ - - -@media print { -a:after { background-color:#FFFFFF; } -a:not([href^="#"]):after { content:" <"attr(href)"> "; } -img { border:none; } -p { orphans: 2; widows: 1; } - -#site_nav_global_primary, -#site_nav_local_views, -#form_notice, -.pagination, -#site_nav_global_secondary, -.entity_actions, -.notice-options, -#aside_primary, -.form_subscription_edit .submit { -display:none; -} -.timestamp dt, .timestamp dd, -.device dt, .device dd { -display:inline; -} -.profiles li, -.notices li { -margin-bottom:18px; -} - -}/*end of @media print*/ diff --git a/theme/biz/css/display.css b/theme/biz/css/display.css deleted file mode 100644 index 2e96d99d1a..0000000000 --- a/theme/biz/css/display.css +++ /dev/null @@ -1,489 +0,0 @@ -/** theme: biz - * - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2009 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ - -@import url(base.css); - -@media screen, projection, tv { -html { -background-color:#144A6E; -} -a:active { -background-color:#F4F7E7; -} -body { -font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; -font-size:1em; -background:#144A6E url(../images/illustrations/illu_pattern-01.png) repeat-x; -} - -address { -margin-right:5.7%; -} - -input, textarea, select { -border-width:2px; -border-style: solid; -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} -input, textarea, select, option { -font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; -} -input, textarea, select { -border-color:#AAAAAA; -} - -.form_settings fieldset fieldset { -background:rgba(240, 240, 240, 0.2); -box-shadow:3px 3px 7px rgba(194, 194, 194, 0.3); --moz-box-shadow:3px 3px 7px rgba(194, 194, 194, 0.3); --webkit-box-shadow:3px 3px 7px rgba(194, 194, 194, 0.3); -} - -#filter_tags ul li, -.entity_send-a-message .form_notice, -.pagination .nav_prev a, -.pagination .nav_next a, -.form_settings fieldset fieldset, -.entity_moderation:hover ul { -border-color:#DDDDDD; -} - -.form_settings input.form_action-primary { -background:none; -} - -.form_notice.warning .count, -.form_settings .form_note { -background-color:#9BB43E; -} -input.submit, -.form_notice.warning .count, -.form_settings .form_note, -.entity_actions a, -.entity_actions input, -.entity_moderation p, -button { -box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); -} -.entity_actions a, -.entity_actions input, -.entity_actions p { -border-color:transparent; -background-color:transparent; -} -input:focus, textarea:focus, select:focus, -.form_notice.warning textarea, -.form_notice.warning .count, -.form_settings .form_note { -border-color:#9BB43E; -} - -input.submit { -color:#FFFFFF; -} -.entity_actions input.submit { -border-color:transparent; -text-shadow:none; -} -.dialogbox .submit_dialogbox, -input.submit, -.form_notice input.submit { -background:#AAAAAA url(../../base/images/illustrations/illu_pattern-01.png) 0 0 repeat-x; -text-shadow:0 1px 0 #FFFFFF; -color:#000000; -border-color:#AAAAAA; -border-top-color:#CCCCCC; -border-left-color:#CCCCCC; -} -.dialogbox .submit_dialogbox:hover, -input.submit:hover { -background-position:0 -5px; -} -.dialogbox .submit_dialogbox:focus, -input.submit:focus { -background-position:0 -15px; -box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); --moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); --webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); -text-shadow:none; -} - -.form_notice label.notice_data-geo { -background-position:0 -1780px; -} -.form_notice label.notice_data-geo.checked { -background-position:0 -1846px; -} - -a, -.form_settings input.form_action-primary, -.notice-options input, -.entity_actions a, -.entity_actions input, -.entity_moderation p { -color:#002FA7; -} - -#header a, -#footer a { -color:#87B4C8; -} - - - -.notice, -.profile, -.application, -#content tbody tr { -border-top-color:#C8D1D5; -} -.mark-top { -border-color:#AAAAAA; -} - -#aside_primary { -background-color:#144A6E; -} - -.section .profile { -border-top-color:#87B4C8; -} - -.aside .section { -background-color:#F1F5F8; -background-position:100% 0; -background-image:url(../images/illustrations/illu_pattern-02.png); -background-repeat:no-repeat; -} - -.form_notice .count { -color:#333333; -} -#form_notice.warning .count { -color:#000000; -} -.form_notice label.notice_data-attach { -background-position:0 -328px; -} -.form_notice input.notice_data-attach { -opacity:0; -} - -.form_notice label.notice_data-attach, -#export_data li a.rss, -#export_data li a.atom, -#export_data li a.foaf, -.entity_edit a, -.entity_send-a-message a, -.entity_nudge p, -.form_user_nudge input.submit, -.form_user_block input.submit, -.form_user_unblock input.submit, -.form_group_block input.submit, -.form_group_unblock input.submit, -.form_make_admin input.submit, -.notice .attachment, -.notice-options .notice_reply, -.notice-options form.form_favor input.submit, -.notice-options form.form_disfavor input.submit, -.notice-options .notice_delete, -.notice-options form.form_repeat input.submit, -#new_group a, -.pagination .nav_prev a, -.pagination .nav_next a, -button.close, -.form_group_leave input.submit, -.form_user_unsubscribe input.submit, -.form_group_join input.submit, -.form_user_subscribe input.submit, -.form_remote_authorize input.submit, -.entity_subscribe a, -.entity_moderation p, -.entity_sandbox input.submit, -.entity_silence input.submit, -.entity_delete input.submit, -.entity_role p, -.entity_role_administrator input.submit, -.entity_role_moderator input.submit, -.notice-options .repeated, -.form_notice label.notice_data-geo, -button.minimize, -.form_reset_key input.submit, -.entity_clear input.submit, -.entity_flag input.submit, -.entity_flag p, -.entity_subscribe input.submit, -#realtime_play, -#realtime_pause, -#realtime_popup { -background-image:url(../../base/images/icons/icons-01.gif); -background-repeat:no-repeat; -background-color:transparent; -} - -#wrap form.processing input.submit, -.entity_actions a.processing, -.dialogbox.processing .submit_dialogbox { -background:#FFFFFF url(../../base/images/icons/icon_processing.gif) no-repeat 47% 47%; -} -.notice-options .form_repeat.processing { -background-image:none; -} - -#content { -box-shadow:5px 7px 7px rgba(194, 194, 194, 0.3); --moz-box-shadow:5px 7px 7px rgba(194, 194, 194, 0.3); --webkit-box-shadow:5px 7px 7px rgba(194, 194, 194, 0.3); -} -#content, -#site_nav_local_views a, -.aside .section { -border-color:#FFFFFF; -} -#content, -#site_nav_local_views .current a, -.entity_send-a-message .form_notice, -.entity_moderation:hover ul, -.entity_role:hover ul, -.dialogbox { -background-color:#FFFFFF; -} - -#site_nav_local_views li.current { -box-shadow:3px 7px 5px rgba(194, 194, 194, 0.5); --moz-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.5); --webkit-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.5); -} -#site_nav_local_views a { -background-color:rgba(194, 194, 194, 0.5); -} -#site_nav_local_views a:hover { -background-color:rgba(255, 255, 255, 0.7); -} -#site_nav_local_views .current a { -text-shadow: rgba(194,194,194,0.5) 1px 1px 1px; -} - - -.error { -background-color:#F7E8E8; -} -.success { -background-color:#EFF3DC; -} - -button.close { -background-position:0 -1120px; -} -button.minimize { -background-position:0 -1912px; -} - -#anon_notice { -color:#FFFFFF; -} - -#export_data li a { -background-repeat:no-repeat; -background-position:0 45%; -} -#export_data li a.rss { -background-position:0 -130px; -} -#export_data li a.atom { -background-position:0 -64px; -} -#export_data li a.foaf { -background-position:0 1px; -} - -.form_group_join input.submit, -.form_group_leave input.submit, -.form_user_subscribe input.submit, -.form_user_unsubscribe input.submit, -.entity_subscribe a { -background-color:#AAAAAA; -color:#FFFFFF; -} -.form_group_leave input.submit, -.form_user_unsubscribe input.submit { -background-position:5px -1246px; -} -.form_group_join input.submit, -.form_user_subscribe input.submit, -.entity_subscribe a { -background-position:5px -1181px; -} - -.entity_edit a { -background-position: 5px -718px; -} -.entity_send-a-message a { -background-position: 5px -852px; -} -.entity_send-a-message .form_notice, -.entity_moderation:hover ul { -box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); --moz-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); --webkit-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); -} - -.entity_nudge p, -.form_user_nudge input.submit { -background-position: 5px -785px; -} -.form_user_block input.submit, -.form_user_unblock input.submit, -.form_group_block input.submit, -.form_group_unblock input.submit { -background-position: 5px -918px; -} -.form_make_admin input.submit { -background-position: 5px -983px; -} -.entity_moderation p { -background-position: 5px -1313px; -} -.entity_sandbox input.submit { -background-position: 5px -1380px; -} -.entity_silence input.submit { -background-position: 5px -1445px; -} -.entity_delete input.submit { -background-position: 5px -1511px; -} -.form_reset_key input.submit { -background-position: 5px -1973px; -} -.entity_clear input.submit { -background-position: 5px -2039px; -} -.entity_flag input.submit, -.entity_flag p { -background-position: 5px -2105px; -} -.entity_subscribe input.accept { -background-position: 5px -2171px; -} -.entity_subscribe input.reject { -background-position: 5px -2237px; -} -#realtime_play { -background-position: 0 -2308px; -} -#realtime_pause { -background-position: 0 -2374px; -} -#realtime_popup { -background-position: 0 -1714px; -} - - -/* NOTICES */ -.notice .attachment { -background-position:0 -394px; -} -.notice .attachment.more { -background-position:0 -2770px; -} -#attachments .attachment { -background:none; -} -.notice-options .notice_reply { -background-position:0 -592px; -} -.notice-options form.form_favor input.submit { -background-position:0 -460px; -} -.notice-options form.form_disfavor input.submit { -background-position:0 -526px; -} -.notice-options .notice_delete { -background-position:0 -658px; -} -.notice-options form.form_repeat input.submit { -background-position:0 -1582px; -} -.notice-options .repeated { -background-position:0 -1648px; -} - -.notices .attachment.more, -.notices div.entry-content, -.notices div.notice-options { -opacity:0.4; -} -.notices li:hover .attachment.more, -.notices li:hover div.entry-content, -.notices li:hover div.notice-options { -opacity:1; -} -.opaque { -opacity:1 !important; -} -div.notice-options a, -div.notice-options input { -font-family:sans-serif; -} -#content .notices li:hover { -background-color:rgba(240, 240, 240, 0.2); -} -#conversation .notices li:hover { -background-color:transparent; -} - -.notices .notices { -background-color:rgba(200, 200, 200, 0.050); -} -.notices .notices .notices { -background-color:rgba(200, 200, 200, 0.100); -} -.notices .notices .notices .notices { -background-color:rgba(200, 200, 200, 0.150); -} -.notices .notices .notices .notices .notices { -background-color:rgba(200, 200, 200, 0.300); -} -/*END: NOTICES */ - -#new_group a { -background-position:0 -1054px; -} - -.pagination .nav_prev a, -.pagination .nav_next a { -background-repeat:no-repeat; -box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); -} -.pagination .nav_prev a { -background-position:10% -187px; -} -.pagination .nav_next a { -background-position:105% -252px; -} -.pagination .nav .processing { -background-image:url(../../base/images/icons/icon_processing.gif); -box-shadow:none; --moz-box-shadow:none; --webkit-box-shadow:none; -outline:none; -} -.pagination .nav_next a.processing { -background-position:90% 47%; -} -.pagination .nav_prev a.processing { -background-position:10% 47%; -} diff --git a/theme/biz/css/ie.css b/theme/biz/css/ie.css deleted file mode 100644 index 46d14c2021..0000000000 --- a/theme/biz/css/ie.css +++ /dev/null @@ -1,16 +0,0 @@ -/** - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2009-2010 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ -/* IE specific styles */ - -.notice-options input.submit { -color:#fff; -} - -#site_nav_local_views a { -background-color:#D0DFE7; -} diff --git a/theme/biz/default-avatar-mini.png b/theme/biz/default-avatar-mini.png deleted file mode 100644 index 38b8692b4a..0000000000 Binary files a/theme/biz/default-avatar-mini.png and /dev/null differ diff --git a/theme/biz/default-avatar-profile.png b/theme/biz/default-avatar-profile.png deleted file mode 100644 index f8357d4fc2..0000000000 Binary files a/theme/biz/default-avatar-profile.png and /dev/null differ diff --git a/theme/biz/default-avatar-stream.png b/theme/biz/default-avatar-stream.png deleted file mode 100644 index 6b63baa70f..0000000000 Binary files a/theme/biz/default-avatar-stream.png and /dev/null differ diff --git a/theme/biz/images/illustrations/illu_pattern-01.png b/theme/biz/images/illustrations/illu_pattern-01.png deleted file mode 100644 index 79bb46b60e..0000000000 Binary files a/theme/biz/images/illustrations/illu_pattern-01.png and /dev/null differ diff --git a/theme/biz/images/illustrations/illu_pattern-02.png b/theme/biz/images/illustrations/illu_pattern-02.png deleted file mode 100644 index 4438b751af..0000000000 Binary files a/theme/biz/images/illustrations/illu_pattern-02.png and /dev/null differ diff --git a/theme/biz/logo.png b/theme/biz/logo.png deleted file mode 100644 index cf1839194a..0000000000 Binary files a/theme/biz/logo.png and /dev/null differ diff --git a/theme/clean/css/display.css b/theme/clean/css/display.css deleted file mode 100644 index ea2d62020e..0000000000 --- a/theme/clean/css/display.css +++ /dev/null @@ -1,256 +0,0 @@ -/** theme: clean - * - * @package StatusNet - * @author Samantha Doherty - * @copyright 2010 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ - - -@media screen, projection, tv { - -body { - background: url(../images/page_bg.png) no-repeat fixed 50% 100%; - background-color: #6e6e8c; - font-family: "Liberation Sans", "Nimbus Sans L", "FreeSans", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 86%; -} - -#wrap { - width: 867px; - margin: 0px auto; - padding: 0px 8px 10px 8px; - background-color: #fff; - box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7); - -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7); -} - -#header { - width: 851px; - padding: 0px; - padding-top: 70px; - margin-left: 8px; -} - -address { - float: left; - margin-right: 20px; - margin-top: 0px; -} - -.poweredby { - background: url(../images/sn-tiny.png) no-repeat top left; - height: 40px; - font-size: 0.8em; - color: #fff; - line-height: 42px; - padding-left: 50px; - position: absolute; - top: 6px; - left: 0; - z-index: 99; - font-style: normal; -} - -.poweredby a { - color: #fff !important; - font-weight: bold; -} - -#site_nav_global_primary { - display: block; - position: absolute; - top: 0; - left: 0; - z-index: 98; - background-color: #829d25; - width: 883px; - margin-left: -16px; - margin-top: 0px; - height: 30px; - line-height: 30px; - text-align: right; - border-top: 10px solid #fff; - border-bottom: 1px solid #fff; -} - -#site_nav_global_primary li:last-child { - margin-right: 16px; -} - -#site_nav_global_primary a { - color: #fff !important; - text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5); -} - -#site_notice { - float: right; - width: 270px; - padding: 10px; - margin-left: 40px; -} - -#anon_notice { - clear: both; - background: none; - padding: 0px; - margin-bottom: 0px; -} - -.form_notice { - float: right; - width: 494px; - margin-top: 0px; -} - -.form_notice fieldset { - width: 100%; -} - -.form_notice textarea { - width: 362px; - height: 54px; -} - -.form_notice label.notice_data-attach, -.form_notice input.notice_data-attach { - top: 27px; -} - -.form_notice .notice_data-geo_wrap label, -.form_notice .notice_data-geo_wrap input { - top: 52px; -} - -.form_notice .submit { - font-size: 0.9em; - top: 80px; - right:0; - height: 2.4em; - width: 96px; - right: 10px; -} - -.form_notice .error, -.form_notice .success { - width: 375px; -} - -.form_notice .error { - width: 375px; - margin-left: 0px; -} - -#core { - clear: both; - margin: 0px; - width: 851px; - margin-left: 8px; - margin-top: 14px; -} - -#content { - padding-top: 10px; - width: 545px; - margin-right: 0px; -} - -#site_nav_local_views { - background-color: #6e6e8c; - height: 2em; - line-height: 2em; - margin-bottom: 0px; - padding-left: 4px; -} - -#site_nav_local_views a { - color: #fff !important; - padding: 2px 6px 2px 6px; -} - -#site_nav_local_views .current a { - background: #fff !important; - color: #000 !important; - text-decoration: none; -} - -#aside_primary { - width: 280px; - padding-left: 10px; -} - -#aside_primary .section { - width: 270px; - margin-left: 0px; - margin-right: 10px; -} - -.section ul.entities { - width: 290px; -} - -.section .entities li { - margin-right: 17px; - margin-bottom: 10px; - width: 24px; -} - -.notice { - line-height: 1.35em; -} - -#content .notice .author .photo { - left: 0px; -} - -#content .notice .entry-title { - min-height: 26px; -} - -#shownotice .notice .entry-title { - min-height:123px; -} - -.notice div.entry-content { - font-size: 0.9em; - line-height: 1.2em; - margin-top: 10px; - opacity: 0.6; -} - -.notice:hover div.entry-content { - opacity: 1; -} - -.user_in .notice div.entry-content { - max-width: 360px; -} - -div.entry-content a.response:before { - content: "("; -} - -div.entry-content a.response:after { - content: ")"; -} - -.notice-options { - margin-top: 8px; -} - -.pagination { - height: 1.2em; -} - -#jOverlayContent button { - top: 20px; - right: 36px; -} - -.entity_profile { - width: 365px; -} - -}/*end of @media screen, projection, tv*/ diff --git a/theme/clean/css/ie.css b/theme/clean/css/ie.css deleted file mode 100644 index 272a5bbcae..0000000000 --- a/theme/clean/css/ie.css +++ /dev/null @@ -1,77 +0,0 @@ -/* Temporary copy of base styles for overriding */ - -input.checkbox, -input.radio { -top:0; -} -.form_notice textarea { - width: 362px; -} -.form_notice .count + label { -position:absolute; -top:25px; -left:83%; -text-indent:-9999px; -height:16px; -width:16px; -display:block; - left: 390px; - top: 27px; -} -.form_notice .submit { - width: 96px; - max-width: 96px; -} -.form_notice .attach-status, -.form_notice #notice_data-geo_selected { -width:78.75%; -} -.form_notice .attach-status button, -.form_notice #notice_data-geo_selected button { -padding:0 4px; -} -.notice-options input.submit { -font-size:0; -text-align:right; -text-indent:0; -} -.notice div.entry-content .timestamp a { -margin-right:4px; -} -.entity_profile { -width:64%; -} -.notice { -z-index:1; -} -.notice:hover { -z-index:9999; -} -.notice .thumbnail img { -z-index:9999; -} - -.form_settings fieldset fieldset legend { -line-height:auto; -} - -/* IE specific styles */ - -.notice-options input.submit { - color:#FFFFFF; -} - -.form_notice input.notice_data-attach { - filter: alpha(opacity=0); -} - -.form_notice .count + label { - background:transparent url(../../rebase/images/icons/icons-01.gif) no-repeat 0 -328px; -} - -.form_notice .notice_data-geo_wrap label { - background:transparent url(../../rebase/images/icons/icons-01.gif) no-repeat 0 -1780px; -} -.form_notice .notice_data-geo_wrap label.checked { - background:transparent url(../../rebase/images/icons/icons-01.gif) no-repeat 0 -1846px; -} diff --git a/theme/clean/css/mp-screen.css b/theme/clean/css/mp-screen.css deleted file mode 100644 index 8d9489b0b1..0000000000 --- a/theme/clean/css/mp-screen.css +++ /dev/null @@ -1,191 +0,0 @@ -/* mobile style */ - -body { - background-image: none; - min-width: 0; -} - -#wrap { - margin: 0; - padding: 0; - min-width:0; - max-width:100%; -} - -#header { - width: 96%; - padding: 0 2%; - padding-top: 20px; -} - -.user_in #header { - padding-top: 40px; -} - -address { -margin:1em 0 0 0; -float:left; -width:100%; -} - -address img + .fn { -display:block; -margin-top:1em; - margin-right: 10px; -clear: left; -float:left; -} - -#site_nav_global_primary { - margin:0; - width: 98%; - padding: 4px 0; - margin-left: -2%; - height: auto; - position:absolute; - top:0; - left:0; - font-size: 1em; - letter-spacing: 0em; -} - -#site_nav_global_primary li { - margin-left:0; - margin-right:10px; - float:left; - font-size:0.9em; - padding: 2px 4px; - line-height: 1em; -} - -.form_notice { - float: left; - margin-left: -10px; - width: 300px; - padding: 4px; -} - -#form_notice-direct.form_notice { - padding-top: 10px; -} - -.form_notice textarea { - width: 210px; - height: 50px; - padding: 4px; -} - -.form_notice .count { -position:absolute; -bottom:2px; - left: 175px; - font-size: 0.8em; -z-index:9; -} - -#form_notice-direct.form_notice .count { - left: 0px; -} - -/*input type=file no good in -iPhone/iPod Touch, Android, Opera Mini Simulator -*/ -.form_notice .count + label, -.form_notice label[for="notice_data-attach"] { -display:none; -} -.form_notice input.notice_data-attach { -position:static; -clear:both; -width:65%; -height:auto; -display:block; -z-index:9; -padding:0; -margin:0; -background:none; -opacity:1; -} - -.form_notice .submit { - text-align: center; - left: 230px; - top: 32px; - width: 70px; - font-size: 0.8em; -} - -#form_notice-direct.form_notice .submit { - top: 62px; -} - -#site_nav_local_views { - height: auto; - font-size: 0.9em; - line-height: 2em; - margin-bottom: 0px; - padding-left: 4px; -} - -#site_nav_local_views li { - margin-right: 6px; -} - - -#core { - width: 100%; - margin: 0; -} - -#content { - width: 96%; - padding: 10px 2%; - margin: 0; - min-height: auto; -} - -#footer { - margin: 0; - padding: 10px 4px 4px 4px; -} - - -.form_settings fieldset { -margin-bottom:7px; -} - -.form_settings label { -width:auto; -display:block; -float:none; - text-align: left; -} - -.form_settings .form_data li { -margin-bottom:7px; -} - -.form_settings .form_data textarea, -.form_settings .form_data select, -.form_settings .form_data input { -margin-left:0; -display:block; -} -.form_settings .form_data textarea { -width:96.41%; -} - -.form_settings .form_data label { -float:none; -} - -.form_settings .form_data p.form_guide { -width:auto; -margin-left:0; -} - - -#settings_design_color .form_data { - width: auto; - margin-right: 0; -} diff --git a/theme/clean/default-avatar-mini.png b/theme/clean/default-avatar-mini.png deleted file mode 100644 index 7c9fc0348b..0000000000 Binary files a/theme/clean/default-avatar-mini.png and /dev/null differ diff --git a/theme/clean/default-avatar-profile.png b/theme/clean/default-avatar-profile.png deleted file mode 100644 index e8f87006a0..0000000000 Binary files a/theme/clean/default-avatar-profile.png and /dev/null differ diff --git a/theme/clean/default-avatar-stream.png b/theme/clean/default-avatar-stream.png deleted file mode 100644 index c8148e42ef..0000000000 Binary files a/theme/clean/default-avatar-stream.png and /dev/null differ diff --git a/theme/clean/images/page_bg.png b/theme/clean/images/page_bg.png deleted file mode 100644 index a9f446812f..0000000000 Binary files a/theme/clean/images/page_bg.png and /dev/null differ diff --git a/theme/clean/images/sn-tiny.png b/theme/clean/images/sn-tiny.png deleted file mode 100644 index e1db3a1605..0000000000 Binary files a/theme/clean/images/sn-tiny.png and /dev/null differ diff --git a/theme/clean/logo.png b/theme/clean/logo.png deleted file mode 100644 index b078601019..0000000000 Binary files a/theme/clean/logo.png and /dev/null differ diff --git a/theme/clean/mobilelogo.png b/theme/clean/mobilelogo.png deleted file mode 100644 index 66bb5f6787..0000000000 Binary files a/theme/clean/mobilelogo.png and /dev/null differ diff --git a/theme/clean/theme.ini b/theme/clean/theme.ini deleted file mode 100644 index 0209008d40..0000000000 --- a/theme/clean/theme.ini +++ /dev/null @@ -1 +0,0 @@ -include=rebase diff --git a/theme/cleaner/css/display.css b/theme/cleaner/css/display.css deleted file mode 100644 index 98d4560d2a..0000000000 --- a/theme/cleaner/css/display.css +++ /dev/null @@ -1,810 +0,0 @@ -/** theme: cleaner - * - * @package StatusNet - * @author Samantha Doherty - * @copyright 2011 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ - - -@media screen, projection, tv { - -body { - background-color: #e2e2e2; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 82%; -} - -a {color: #3e3e8c;} - -h1 {font-size: 1.6em;} -h2 {font-size: 1.6em;} -h3 {font-size: 1.4em;} -h4 {font-size: 1.4em;} -h5 {font-size: 1.2em;} -h6 {font-size: 1em;} - -#wrap { - width: 940px; - margin: 0px auto; - padding: 0px 10px 10px 10px; - background-color: #fff; - box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5); - -moz-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5); - -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5); -} - -#header { - width: 940px; - padding: 0px; - padding-top: 50px; -} - -address { - float: left; - margin-right: 20px; - margin-top: 0px; -} - -.poweredby { - background: url(../images/sn-tiny.png) no-repeat top left; - height: 40px; - font-size: 0.8em; - color: #fff; - line-height: 42px; - padding-left: 50px; - position: absolute; - top: 6px; - left: 0; - z-index: 99; - font-style: normal; -} - -.poweredby a { - color: #fff !important; - font-weight: bold; -} - -#site_nav_global_primary { - display: block; - position: absolute; - top: 0; - left: 0; - z-index: 98; - background-color: #364A84; - width: 960px; - margin-left: -10px; - margin-top: 0px; - height: 24px; - line-height: 20px; - text-align: right; - border-top: 10px solid #fff; - border-bottom: 1px solid #fff; -} - -#site_nav_global_primary ul { - margin-right: -15px; - float: right; -} - -#site_nav_global_primary li { - margin-right: 0px; -} - -#site_nav_global_primary li:last-child { - margin-right: 16px; -} - -#site_nav_global_primary a { - color: #fff !important; - text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5); - padding: 2px 12px 2px 12px; - height: 20px; - display: block; - float: left; -} - -#site_nav_global_primary a:hover { - color: #fff !important; - text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5); - background: #4c619c; - text-decoration: none; -} - -#site_notice { - color: #000; - float: right; - width: 280px; - padding: 10px; - margin-left: 40px; - -webkit-border-radius: 6px; - -moz-border-radius: 6px; - border-radius: 6px; -} - -#site_notice a { - color: #3e3e8c; -} - -#anon_notice { - color: #000; - clear: both; - background: none; - padding: 0px; - margin-bottom: 10px; -} - -#anon_notice a { - color: #3e3e8c; -} - -.form_notice { - float: right; - margin-top: 0px; - width: 460px; - -webkit-border-radius: 6px; - -moz-border-radius: 6px; - border-radius: 6px; - background: #cdd1dd; -} - -.form_notice fieldset { - width: 100%; -} - -.form_notice textarea { - width: 328px; - height: 54px; - -webkit-border-radius: 6px; - -moz-border-radius: 6px; - border-radius: 6px; -} - -.form_notice label.notice_data-attach, -.form_notice input.notice_data-attach { - top: 27px; - right: 86px; -} - -.form_notice .notice_data-geo_wrap label, -.form_notice .notice_data-geo_wrap input { - top: 52px; - right: 86px; -} - -.form_notice .submit { - font-size: 0.9em; - top: 80px; - right: -2px; - height: 2.4em; - width: 106px; -} - -.form_notice .error, -.form_notice .success { - width: 341px; -} - -.form_notice .error { - margin-left: 0px; -} - -#core { - clear: both; - margin: 0px; - width: 940px; - margin-left: 0px; - margin-top: 4px; -} - -#content { - padding-top: 10px; - width: 610px; - margin-right: 0px; - padding-left: 10px; - padding-right: 20px; -} - -#site_nav_local_views { - background-color: #7080aa; - -webkit-border-top-left-radius: 6px; - -webkit-border-top-right-radius: 6px; - -moz-border-radius-topleft: 6px; - -moz-border-radius-topright: 6px; - border-top-left-radius: 6px; - border-top-right-radius: 6px; - height: 24px; - line-height: 20px; - margin-bottom: 0px; - padding-left: 0px; -} - -#site_nav_local_views a { - color: #fff !important; - padding: 2px 12px 2px 12px; - display: block; - float: left; - height: 20px; - width: auto; - text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5); -} - -#site_nav_local_views li:first-child a { - -webkit-border-top-left-radius: 6px; - -moz-border-radius-topleft: 6px; - border-top-left-radius: 6px; -} - -#site_nav_local_views a:hover { - background: #8e98b4 !important; - color: #fff !important; - text-decoration: none; -} - -#site_nav_local_views .current a { - text-decoration: none; - background: #8e98b4 !important; - color: #fff !important; -} - -#aside_primary { - width: 290px; - padding-left: 10px; - padding-top: 14px; -} - -#aside_primary .section { - width: 280px; - margin-left: 0px; - margin-right: 10px; - -} - -#aside_primary h2 { - font-size: 1.4em; - margin-bottom: 8px; - border-bottom: 2px solid #fff; -} - -.section ul.entities { - width: 290px; -} - -.section .entities li { - margin-right: 17px; - margin-bottom: 10px; - width: 24px; -} - -#popular_notices .avatar { - position: relative; - top: 2px; - margin-bottom: 4px; -} - -#aside_primary td { - padding-right: 20px; - padding-bottom: 14px; -} - -#aside_primary td .nickname { - line-height: 1.6em; -} - -.section .avatar { - box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); - -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); - -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); -} - -#content h1 { - margin-bottom: 8px; - border-bottom: 2px solid #f2f2f2; -} - -#notices_primary { - margin-top: -5px; -} - -#content .notice { - padding-bottom: 14px; - border-bottom: 2px dotted #eee; -} - -.notice { - line-height: 1.35em; - margin-bottom: 10px; -} - -#content .notice .author .photo { - left: 0px; - top: 6px; -} - -#content .notice .entry-title { - min-height: 34px; -} - -#showstream .notice .entry-title { - min-height: 1px; -} - -#shownotice .notice .entry-title { - min-height:123px; -} - -.notice div.entry-content { - font-size: 0.9em; - line-height: 1.2em; - margin-top: 6px; - opacity: 0.6; -} - -.notice:hover div.entry-content { - opacity: 1; -} - -.user_in .notice div.entry-content { - max-width: 440px; -} - -div.entry-content a.response:before { - content: "("; -} - -div.entry-content a.response:after { - content: ")"; -} - -.notice-options { - margin-top: 4px; -} - -.pagination { - height: 1.2em; -} - -#jOverlayContent button { - top: 20px; - right: 36px; -} - -.entity_profile { - float: left; - width: 435px; - margin-top: 4px; -} - -.entity_profile .entity_depiction { - margin-top: 4px; -} - -.entity_actions { - width: 140px; - margin-top: 8px; - margin-bottom: 10px; -} - -.entity_actions a, .entity_actions p, .entity_actions .entity_subscribe input, .entity_actions .entity_block input, .entity_actions .entity_moderation input, .entity_actions .entity_role input, .entity_actions .entity_nudge input, .entity_actions .entity_delete input { - text-shadow:0 1px 0 rgba(255,255,255,0.4); - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - background-color: #CDD1DD !important; -} - -.entity_moderation:hover ul, -.entity_role:hover ul { - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; -} - -.entity_send-a-message .form_notice legend { - text-shadow:0 1px 0 rgba(255,255,255,0.4); -} - -.entity_send-a-message .form_notice { - border: 1px solid #7B4E82; -} - -.entity_send-a-message .form_notice .submit { - color: #fff !important; - top: 46px; -} - -#aside_primary #entity_remote_subscribe a:hover { - background-color: #fff !important; -} - -#entity_remote_subscribe .dialogbox { - border: 1px solid #7B4E82; - border-radius: 8px; - -moz-border-radius: 8px; - -webkit-border-radius: 8px; -} - -#entity_remote_subscribe input { - padding-left: 4px; -} - -#entity_remote_subscribe .submit_dialogbox { - margin-top: 10px; - float: right; -} - -#filter_tags_item .submit { - left: 6px; - top: -3px; -} - -.pagination { - height: 1.2em; - padding-bottom: 12px; - -webkit-border-radius: 6px; - -moz-border-radius: 6px; - border-radius: 6px; -} - -#footer { - color: #000; - margin-left: 0px; - margin-right: 0px; - -webkit-border-top-left-radius: 6px; - -webkit-border-top-right-radius: 6px; - -moz-border-radius-topleft: 6px; - -moz-border-radius-topright: 6px; - border-top-left-radius: 6px; - border-top-right-radius: 6px; -} - -#footer a { - color: #3e3e8c; -} - -.error, .success { - background-color: #F7E8E8; - padding: 4px; - -webkit-border-radius: 6px; - -moz-border-radius: 6px; - border-radius: 6px; -} -.success { - background-color: #f2f2f2; -} - -.form_notice input.submit, .form_settings input.submit, .form_settings input.cancel { - border-radius: 3px; - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5); - color:#fff; - font-weight: normal; - font-size: 1em; - height: 2.2em; - padding-left: 1em; - padding-right: 1em; - background: #7080aa; - background: -moz-linear-gradient(top, #7b8dbb , #7080aa); - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7b8dbb), color-stop(100%,#7080aa)); - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7b8dbb', endColorstr='#7080aa',GradientType=0 ); - border-width: 1px; -} - -.form_notice input.submit:hover, .form_settings input.submit:hover, .form_settings input.cancel:hover { - text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.8); - background: #7b8dbb; - background: -moz-linear-gradient(top, #7080aa , #7b8dbb); - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7080aa), color-stop(100%,#7b8dbb)); - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7080aa', endColorstr='#7b8dbb',GradientType=0 ); -} - -.form_settings input#settings_design_reset, .form_settings input.cancel { - background: #e2e2e2; - color: #8e181b; - text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5); -} - -.form_settings input#settings_design_reset:hover, .form_settings input.cancel:hover { - background: #f2f2f2; - color: #8e181b; - text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5); -} - -.form_settings input.checkbox, .form_settings input.radio { - margin-left: 24%; - margin-top: 2px; - position: relative; - left: -14px; -} - -.form_settings label.checkbox, .form_settings label.radio { - width: auto; - max-width: 60%; - position: relative; - left: -30px; -} - -.form_settings li input.radio { - clear: left; -} - -.form_settings label.radio { - margin-left: 10px; - margin-right: 10px; - text-align: left; -} - -#form_login p.form_guide, #form_register #settings_rememberme p.form_guide, #form_openid_login #settings_rememberme p.form_guide, #settings_twitter_remove p.form_guide, #design_background-image_onoff p.form_guide { - margin-left: 26%; -} - -#form_search ul.form_data #q { - margin-left: 10px; -} - -.form_settings fieldset fieldset { - margin-bottom: 30px; - padding-top: 25px; -} - - -#content thead th { -text-align:left; -} -#content tbody th { -vertical-align:top; -text-align:left; -font-weight:normal; -padding-top:11px; -padding-right:18px; -} -#content tbody tr { - border-top: 1px dotted #bbb; -} -#content td { -padding:11px 18px 11px 0; -vertical-align:top; -} -#content td:last-child { -padding-right:0; -} - - -#realtime_actions { - position: relative !important; - float: right; - padding-top: 15px; - margin-bottom: -8px !important; -} - -.realtime-popup #content { - padding-left: 4px !important; - padding-right: 4px !important; - margin-right: 0px; -} - -.realtime-popup .form_notice textarea { - width: 325px !important; -} - -.realtime-popup .form_notice .submit { - top: 59px !important; - right: 6px !important; -} - -.realtime-popup .form_notice label.notice_data-attach, .realtime-popup .form_notice input.notice_data-attach { - right: 74px; - top: 3px !important; -} - -.realtime-popup .form_notice .notice_data-geo_wrap label, .realtime-popup .form_notice .notice_data-geo_wrap input { - right: 8px; - top: 3px !important; -} - - -/* Bookmark specific styles */ - -#content .bookmark .entry-title { - margin-left: 0px; -} - -.bookmark h3 { - margin: 0px 0px 8px 0px; - float: left; - line-height: 1.2em; - max-width: 92%; -} - -.bookmark-notice-count { - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - padding: 1px 6px; - font-size: 1.2em; - line-height: 1.2em; - background: #fff; - border: 1px solid #7b8dbb; - color: #3e3e8c !important; - position: relative; - right: 4px; - margin-left: 10px; -} - -.bookmark-notice-count:hover { - text-decoration: none; - background: #f2f2f2; - border: 1px solid #7b8dbb; - text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5); -} - -.notice .bookmark-description { - clear: both; - margin-left: 0px; - margin-bottom: 0px; -} - -.notice .bookmark-author { - margin-left: 0px; - float: left; -} - -.bookmark-tags { - clear: both; - margin-bottom: 8px; - line-height: 1.6em; -} - -ul.bookmark-tags a { - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - padding: 1px 6px; - background: #f2f2f2; - color: #3e3e8c !important; - text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5); - font-size: 0.9em; -} - -ul.bookmark-tags a:hover { - background-color: #cdd1dd; - text-decoration: none; -} - -.bookmark-avatar { - float: none !important; - position: relative; - top: 2px; -} - -.bookmark div.entry-content { - font-size: 0.9em; - line-height: 1.2em; - margin-top: 6px; - opacity: 0.6; - margin-bottom: 0px; -} - -.bookmark:hover div.entry-content { - opacity: 1; -} - -.bookmark .notice-options { - margin-top: 16px; -} - -#bookmarkpopup { - min-width: 600px; - margin-top: 0px; - height: 100%; - border: 10px solid #364A84; - background: #364A84; -} - -#bookmarkpopup #wrap { - width: auto; - min-width: 560px; - padding: 40px 0px 25px 0px; - margin-right: 2px; - background: #fff url(../mobilelogo.png) no-repeat 6px 6px; -} - -#bookmarkpopup #header { - width: auto; - padding: 0px 10px; -} - -#bookmarkpopup .form_settings label { - margin-top: 2px; - text-align: right; - width: 24%; - font-size: 1.2em; -} - -#bookmarkpopup .form_settings .form_data input { - width: 60%; -} - -#bookmarkpopup .form_guide { - color: #777; -} - -#bookmarkpopup #submit { - float: right; - margin-right: 0px; -} - -#bookmarkpopup fieldset fieldset { - margin-bottom: 10px; -} - -/* Onboard specific styles */ - -.onboard-flash { - border-radius: 6px; - -moz-border-radius: 6px; - -webkit-border-radius: 6px; - font-size: 1.1em; - box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5); - -moz-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5); - -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5); -} - -.onboard-flash p { - margin-bottom: 10px; -} - -.onboard-flash .next:before { - content: '\00BB'; - padding-right: 6px; -} - -.onboard-breadcrumbs { - margin-bottom: 16px !important; -} - -.onboard-breadcrumbs li { - background: none !important; - border-top: none !important; - padding: 6px 12px 2px 0px !important; -} - -.onboard-breadcrumbs li:last-child { - padding-right: 0px !important; -} - -.onboard-breadcrumbs a { - text-decoration: none; -} - -.onboard-breadcrumbs a:hover { - color: #3e3e8c !important; -} - -/* Billing specific styles */ - -#content table.billing_info { - margin-top: 10px; - background:rgba(240, 240, 240, 0.4); -} - -#content table.billing_info th { - text-align: right; - width: 50%; -} - -.invalid { - border: solid 2px red !important; -} - -#payment_history table { - width: 100%; -} - -#billingadminpanel .form_settings input { - margin-right: 0px; -} - -}/*end of @media screen, projection, tv*/ diff --git a/theme/cleaner/css/ie.css b/theme/cleaner/css/ie.css deleted file mode 100644 index 7bd48790bf..0000000000 --- a/theme/cleaner/css/ie.css +++ /dev/null @@ -1,81 +0,0 @@ -/* Temporary copy of base styles for overriding */ - -input.checkbox, -input.radio { -top:0; -} -.form_notice textarea { - width: 328px; -} -.form_notice .count + label { -position:absolute; -top:25px; -left:83%; -text-indent:-9999px; -height:16px; -width:16px; -display:block; - left: 390px; - top: 27px; -} -.form_notice .submit { - width: 106px; - max-width: 106px; -} -.form_notice .attach-status, -.form_notice #notice_data-geo_selected { -width:78.75%; -} -.form_notice .attach-status button, -.form_notice #notice_data-geo_selected button { -padding:0 4px; -} -.notice-options input.submit { -font-size:0; -text-align:right; -text-indent:0; -} -.notice div.entry-content .timestamp a { -margin-right:4px; -} -.entity_profile { -width:64%; -} -.notice { -z-index:1; -} -.notice:hover { -z-index:9999; -} -.notice .thumbnail img { -z-index:9999; -} - -.form_settings fieldset fieldset legend { -line-height:auto; -} - -/* IE specific styles */ - -#site_nav_global_primary ul { - margin-right: 0px; -} - -.notice-options input.submit { - color:#FFFFFF; -} - -.form_notice input.notice_data-attach { - filter: alpha(opacity=0); -} - -.form_notice .count + label { - background:transparent url(../../rebase/images/icons/icons-01.gif) no-repeat 0 -328px; -} - -.form_notice .notice_data-geo_wrap label { - background:transparent url(../../rebase/images/icons/icons-01.gif) no-repeat 0 -1780px; -} -.form_notice .notice_data-geo_wrap label.checked { - background:transparent url(../../rebase/images/icons/icons-01.gif) no-repeat 0 -1846px; -} diff --git a/theme/cleaner/css/mp-screen.css b/theme/cleaner/css/mp-screen.css deleted file mode 100644 index cb3c6d06b6..0000000000 --- a/theme/cleaner/css/mp-screen.css +++ /dev/null @@ -1,204 +0,0 @@ -/* mobile style */ - -body { - background-image: none; - min-width: 0; -} - -#wrap { - margin: 0; - padding: 0; - min-width:0; - max-width:100%; -} - -#header { - width: 96%; - padding: 0 2%; - padding-top: 20px; -} - -.user_in #header { - padding-top: 40px; -} - -address { -margin:1em 0 0 0; -float:left; -width:100%; -} - -address img + .fn { -display:block; -margin-top:1em; - margin-right: 10px; -clear: left; -float:left; -} - -#site_nav_global_primary { - margin:0; - width: 100%; - padding: 4px 0; - height: auto; - position:absolute; - top:0; - left:0; - font-size: 1em; - letter-spacing: 0em; - border-top: none; -} - -#site_nav_global_primary li { - margin-left:0; - margin-right:0px; - float:left; - font-size:0.9em; - padding: 2px 4px; - line-height: 1em; - height: auto; -} - -#site_nav_global_primary li a { - height: auto; -} - -.form_notice { - float: left; - margin-left: 0px; - width: 300px; - padding: 4px; -} - -#form_notice-direct.form_notice { - padding-top: 10px; -} - -.form_notice textarea { - width: 210px; - height: 50px; - padding: 4px; -} - -.form_notice .count { -position:absolute; -bottom:2px; - left: 175px; - font-size: 0.8em; -z-index:9; -} - -#form_notice-direct.form_notice .count { - left: 0px; -} - -/*input type=file no good in -iPhone/iPod Touch, Android, Opera Mini Simulator -*/ -.form_notice .count + label, -.form_notice label[for="notice_data-attach"] { -display:none; -} -.form_notice input.notice_data-attach { -position:static; -clear:both; -width:65%; -height:auto; -display:block; -z-index:9; -padding:0; -margin:0; -background:none; -opacity:1; -} - -.form_notice .submit { - text-align: center; - left: 230px; - top: 32px; - width: 70px; - font-size: 0.8em; -} - -#form_notice-direct.form_notice .submit { - top: 62px; -} - -#site_nav_local_views { - height: auto; - font-size: 0.9em; - line-height: 2em; - margin-bottom: 0px; - padding-left: 4px; - background: none; -} - -#site_nav_local_views li { - margin-right: 6px; -} - -#site_nav_local_views a { - background-color: #7080aa; - -webkit-border-radius: 6px; - -moz-border-radius: 6px; - border-radius: 6px; - margin-right: 2px; - margin-bottom: 2px; -} - -#core { - width: 100%; - margin: 0; -} - -#content { - width: 96%; - padding: 10px 2%; - margin: 0; - min-height: auto; -} - -#footer { - margin: 0; - padding: 10px 4px 4px 4px; -} - - -.form_settings fieldset { -margin-bottom:7px; -} - -.form_settings label { -width:auto; -display:block; -float:none; - text-align: left; -} - -.form_settings .form_data li { -margin-bottom:7px; -} - -.form_settings .form_data textarea, -.form_settings .form_data select, -.form_settings .form_data input { -margin-left:0; -display:block; -} -.form_settings .form_data textarea { -width:96.41%; -} - -.form_settings .form_data label { -float:none; -} - -.form_settings .form_data p.form_guide { -width:auto; -margin-left:0; -} - -#settings_design_color .form_data { - width: auto; - margin-right: 0; -} diff --git a/theme/cleaner/default-avatar-mini.png b/theme/cleaner/default-avatar-mini.png deleted file mode 100644 index a3410e307e..0000000000 Binary files a/theme/cleaner/default-avatar-mini.png and /dev/null differ diff --git a/theme/cleaner/default-avatar-profile.png b/theme/cleaner/default-avatar-profile.png deleted file mode 100644 index 8f635d1aa6..0000000000 Binary files a/theme/cleaner/default-avatar-profile.png and /dev/null differ diff --git a/theme/cleaner/default-avatar-stream.png b/theme/cleaner/default-avatar-stream.png deleted file mode 100644 index a3024639f4..0000000000 Binary files a/theme/cleaner/default-avatar-stream.png and /dev/null differ diff --git a/theme/cleaner/logo.png b/theme/cleaner/logo.png deleted file mode 100644 index 7d6059a5d1..0000000000 Binary files a/theme/cleaner/logo.png and /dev/null differ diff --git a/theme/cleaner/mobilelogo.png b/theme/cleaner/mobilelogo.png deleted file mode 100644 index 781e79578c..0000000000 Binary files a/theme/cleaner/mobilelogo.png and /dev/null differ diff --git a/theme/cleaner/theme.ini b/theme/cleaner/theme.ini deleted file mode 100644 index 0209008d40..0000000000 --- a/theme/cleaner/theme.ini +++ /dev/null @@ -1 +0,0 @@ -include=rebase diff --git a/theme/cloudy/css/display.css b/theme/cloudy/css/display.css deleted file mode 100644 index 5bc8ab0c1e..0000000000 --- a/theme/cloudy/css/display.css +++ /dev/null @@ -1,2139 +0,0 @@ -/** theme: cloudy - * - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2009 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ - -@media screen, projection, tv { -* { margin:0; padding:0; } -img { display:block; border:0; } -a abbr { cursor: pointer; border-bottom:0; } -table { border-collapse:collapse; } -ol { list-style-position:inside; } -html { font-size: 87.5%; } -body { -background-color:#fff; -color:#000; -font-family:sans-serif; -font-size:1em; -line-height:normal; -position:relative; -height:100%; -} -h1,h2,h3,h4,h5,h6 { -margin-bottom:7px; -overflow:hidden; -} -h1 { -font-size:1.4em; -margin-bottom:18px; -} -#showstream h1 { display:none; } -h2 { font-size:1.3em; } -h3 { font-size:1.2em; } -h4 { font-size:1.1em; } -h5 { font-size:1em; } -h6 { font-size:0.9em; } - -caption { -font-weight:bold; -} -legend { -font-weight:bold; -font-size:1.3em; -} -input, textarea, select, option { -padding:4px; -font-family:sans-serif; -font-size:1em; -} -input, textarea, select { -border-width:2px; -border-style: solid; -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} - -input.submit { -font-weight:bold; -cursor:pointer; -} -textarea { -overflow:auto; -} -option { -padding-bottom:0; -} -fieldset { -padding:0; -border:0; -} -form ul li { -list-style-type:none; -margin:0 0 18px 0; -} -form label { -font-weight:bold; -} -input.checkbox { -position:relative; -top:2px; -left:0; -border:0; -} - -.error, -.success { -padding:4px 7px; -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -margin-bottom:18px; -} -form label.submit { -display:none; -} - -.form_settings { -clear:both; -} - -.form_settings fieldset { -margin-bottom:29px; -} -.form_settings input.remove { -margin-left:11px; -} -.form_settings .form_data li { -width:100%; -float:left; -} -.form_settings .form_data label { -float:left; -} -.form_settings .form_data textarea, -.form_settings .form_data select, -.form_settings .form_data input { -margin-left:11px; -float:left; -} -.form_settings .form_data textarea { -width:325px; -} - -.form_settings .form_data input.submit { -margin-left:0; -} - -.form_settings label { -margin-top:2px; -width:143px; -} - -.form_actions label { -display:none; -} -.form_guide { -font-style:italic; -} - -.form_settings #settings_autosubscribe label { -display:inline; -font-weight:bold; -} - -#form_settings_profile legend, -#form_login legend, -#form_register legend, -#form_password legend, -#form_settings_avatar legend, -#newgroup legend, -#editgroup legend, -#form_tag_user legend, -#form_remote_subscribe legend, -#form_openid_login legend, -#form_search legend, -#form_invite legend, -#form_notice_delete legend, -#form_password_recover legend, -#form_password_change legend { -display:none; -} - -.form_settings .form_data p.form_guide { -clear:both; -margin-left:155px; -margin-bottom:0; -} - -.form_settings p { -margin-bottom:11px; -} - -.form_settings input.checkbox { -margin-top:0; -margin-left:0; -} -.form_settings label.checkbox { -font-weight:normal; -margin-top:0; -margin-right:0; -margin-left:11px; -float:left; -width:90%; -} - - -#form_login p.form_guide, -#form_register #settings_rememberme p.form_guide, -#form_openid_login #settings_rememberme p.form_guide, -#settings_twitter_remove p.form_guide, -#form_search ul.form_data #q { -margin-left:0; -} - -.form_settings .form_note { -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -padding:0 7px; -} - - -.form_settings input.form_action-primary { -padding:0; -} -.form_settings input.form_action-secondary { -margin-left:29px; -} - -#form_search .submit { -margin-left:11px; -} - -address { -float:left; -margin-bottom:18px; -margin-left:18px; -} -address.vcard img.logo { -margin-right:0; -} -address .fn { -font-weight:bold; -} -address img + .fn { -display:none; -} -address a { -text-decoration:none; -} -address .poweredby { -float:left; -clear:left; -display:block; -position:relative; -top:7px; -margin-right:-47px; -} - -#header { -width:100%; -height:10.5em; -position:relative; -float:left; -padding-top:18px; -margin-bottom:11px; -z-index:1; -} - -#site_nav_global_primary { -float:right; -margin-right:0; -margin-bottom:11px; -margin-left:18px; -padding-top:7px; -padding-bottom:7px; -padding-right:11px; --moz-border-radius:4px; -border-radius:4px; --webkit-border-radius:4px; -} -#site_nav_global_primary ul li { -display:inline; -margin-left:11px; -} -#site_nav_global_primary a { -text-decoration:none; -} - -.system_notice dt { -font-weight:bold; -text-transform:uppercase; -display:none; -} - -#site_notice { -position:absolute; -top:65px; -right:18px; -width:250px; -width:24%; -} -#page_notice { -clear:both; -margin-bottom:18px; -} - - -#anon_notice { -clear:both; -width:99.8%; -padding-top:36px; -line-height:1.5; -font-size:1.3em; -font-weight:bold; -} -#anon_notice p { -border-style:solid; -border-width:1px; -width:96%; -padding:2%; -} - -#footer { -float:left; -margin-bottom:1em; -padding:7px; --moz-border-radius:4px; -border-radius:4px; --webkit-border-radius:4px; -} -#footer a { -text-decoration:none; -} - -#site_nav_local_views { -width:203px; -float:right; -margin-right:0; --moz-border-radius-topright:4px; -border-radius-topright:4px; --webkit-border-top-right-radius:4px; -} -#site_nav_local_views dt { -display:none; -} -#site_nav_local_views li { -list-style-type:none; -padding:0; -border-width:1px; -border-style:solid; -border-top:0; -border-right:0; -} -#site_nav_local_views a { -text-decoration:none; -padding:13px; -border-width:1px; -border-style:solid; -border-bottom:0; -text-shadow: 2px 2px 2px #ddd; -font-weight:bold; -font-size:1em; -display:block; -} -#site_nav_local_views .nav { -float:left; -width:100%; -} - -#site_nav_global_primary dt, -#site_nav_global_secondary dt { -display:none; -} - -#site_nav_global_secondary { -margin-bottom:11px; -} - -#site_nav_global_secondary ul li { -display:inline; -margin-right:11px; -} -#export_data li a { -padding-left:20px; -} -#export_data li a.foaf { -padding-left:30px; -} -#export_data li a.export_vcard { -padding-left:28px; -} - -#export_data ul { -display:inline; -} -#export_data li { -list-style-type:none; -display:inline; -margin:0 18px 7px 0; -float:left; -} -#export_data li:first-child { -margin-left:0; -} - -#licenses { -font-size:0.9em; -} - -#licenses dt { -font-weight:bold; -display:none; -} -#licenses dd { -margin-bottom:11px; -line-height:1.5; -} - -#site_content_license_cc { -margin-bottom:0; -} -#site_content_license_cc img { -display:inline; -vertical-align:top; -margin-right:4px; -} - -#wrap { -margin:0 auto; -width: 763px; -min-width:760px; -max-width:1003px; -overflow:hidden; -} - -#core { -position:relative; -width:100%; -float:left; -margin-bottom:1em; -padding-top:10px; -} - -#content { -width:518px; -min-height:322px; -padding:20px; -float:left; -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -border-radius-topright:0; --moz-border-radius-topright:0; --webkit-border-top-right-radius:0; -border-style:solid; -border-width:1px; -} - -#content_inner { -position:relative; -width:100%; -float:left; -} - -#aside_primary { -width:182px; -min-height:259px; -float:left; -margin-left:0; -padding:10px; -border-width:1px; -border-style:solid; -border-right:0; -border-top:0; -} - -.form_notice { -width:515px; -line-height:1; -position:absolute; -top:200px; -left:20px; -z-index:9; -} -.form_notice fieldset { -border:0; -padding:0; -position:relative; -} -.form_notice legend { -display:none; -} -.form_notice textarea { -float:left; -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -width:80.789%; -height:67px; -line-height:1.5; -padding:7px 7px 16px 7px; -position:relative; -z-index:2; -} -.form_notice label { -display:block; -float:left; -font-size:1.3em; -margin-bottom:7px; -} -.form_notice label.notice_data-attach, -.form_notice input.notice_data-attach { -position:absolute; -top:25px; -right:10.5%; -cursor:pointer; -} -.form_notice label.notice_data-attach { -text-indent:-9999px; -width:16px; -height:16px; -} -.form_notice input.notice_data-attach { -padding:0; -height:16px; -} -.form_notice .count { -position:absolute; -bottom:2px; -right:21.715%; -z-index:9; -} -.form_notice .count dt { -font-weight:bold; -display:none; -} -.form_notice .count { -font-weight:bold; -line-height:1.15; -padding:1px 2px; -} -.form_notice .submit { -width:14%; -height:47px; -padding:0; -position:absolute; -bottom:0; -right:0; -} -.form_notice label[for=to] { -margin-top:7px; -} -.form_notice select[id=to] { -margin-bottom:7px; -margin-left:18px; -float:left; -max-width:322px; -} -.form_notice .error, -.form_notice .success { -float:left; -clear:both; -width:81.5%; -margin-bottom:0; -line-height:1.618; -} -.form_notice .attach-status code, -.form_notice #notice_data-geo_name { -float:left; -width:80%; -display:block; -overflow:auto; -margin-right:2.5%; -} -.form_notice .attach-status code { -font-size:1.1em; -} -.form_notice .attach-status button.close, -.form_notice #notice_data-geo_selected button.close { -float:right; -font-size:0.8em; -} - -.form_notice #notice_data-geo_selected button.minimize { -float:left; -} - -.form_notice .notice_data-geo_wrap label { -position:absolute; -top:25px; -right:4px; -left:auto; -cursor:pointer; -width:16px; -height:16px; -display:block; -} -.form_notice .notice_data-geo_wrap input { -display:none; -} -.form_notice .notice_data-geo_wrap label { -font-weight:normal; -font-size:1em; -margin-bottom:0; -text-indent:-9999px; -} -.form_notice #notice_data-geo_name { -display:block; -padding-left:21px; -} -button.close, -button.minimize { -width:16px; -height:16px; -text-indent:-9999px; -padding:0; -border:0; -text-align:center; -font-weight:bold; -cursor:pointer; -} - -/* entity_profile */ -.entity_profile { -position:relative; -width:68%; -min-height:123px; -float:left; -margin-bottom:18px; -margin-left:0; -overflow:hidden; -} -.entity_profile dt, -#entity_statistics dt { -font-weight:bold; -} -.entity_profile dd { -display:inline; -} - -.entity_profile .entity_depiction { -float:left; -width:96px; -margin-right:18px; -margin-bottom:18px; -} - -.entity_profile .entity_fn, -.entity_profile .entity_nickname, -.entity_profile .entity_location, -.entity_profile .entity_url, -.entity_profile .entity_note, -.entity_profile .entity_tags, -.entity_profile .entity_aliases { -margin-left:113px; -margin-bottom:4px; -} - -.entity_profile .entity_fn, -.entity_profile .entity_nickname { -margin-left:11px; -display:inline; -} -.entity_profile .entity_nickname { -margin-left:0; -} -.entity_profile .fn, -.entity_profile .nickname { -font-size:1.1em; -font-weight:bold; -} -.entity_profile .fn:before { -content: "("; -font-weight:normal; -} -.entity_profile .fn:after { -content: ")"; -font-weight:normal; -} -.entity_profile .nickname:after, -.entity_profile .nickname:before { -content:""; -} -.entity_profile dt, -.entity_profile h2 { -display:none; -} -.entity_profile .role { -margin-left:11px; -font-style:italic; -} -/* entity_profile */ - - -/*entity_actions*/ -.entity_actions { -float:right; -margin-left:2%; -margin-bottom:18px; -min-width:21%; -} -.entity_actions h2 { -display:none; -} -.entity_actions ul { -list-style-type:none; -} -.entity_actions li { -margin-bottom:7px; -} -.entity_actions li:first-child { -border-top:0; -} -.entity_actions fieldset { -border:0; -padding:0; -} -.entity_actions legend { -display:none; -} - -.entity_actions input.submit { -display:block; -text-align:left; -width:100%; -} -.entity_actions a { -text-decoration:none; -font-weight:bold; -display:block; -} -.entity_actions a, -.entity_actions input { -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} - -.entity_actions a, -.entity_actions input, -.entity_actions p { -border-width:2px; -border-style:solid; -padding-left:23px; -} - -.entity_actions a, -.entity_actions p { -padding:2px 4px 1px 26px; -} - -.entity_actions .accept { -margin-bottom:18px; -} - -.entity_send-a-message button { -position:absolute; -top:3px; -right:3px; -} - -.entity_send-a-message .form_notice { -position:absolute; -top:34px; -right:-1px; -padding:1.795%; -width:92%; -z-index:2; - border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -border-width:1px; -border-style:solid; -} -.entity_send-a-message .form_notice legend { -display:block; -margin-bottom:11px; -} - -.entity_send-a-message .form_notice label, -.entity_send-a-message .form_notice select { -display:none; -} -.entity_send-a-message .form_notice input.submit { -text-align:center; -} - -.entity_moderation { -position:relative; -} -.entity_moderation p { -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -font-weight:bold; -padding-bottom:2px; -margin-bottom:7px; -} -.entity_moderation ul { -display:none; -} -.entity_moderation:hover ul { -display:block; -min-width:21%; -width:100%; -padding:11px; -position:absolute; -top:-1px; -right:-1px; -z-index:1; -border-width:1px; -border-style:solid; -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -} - -.entity_tags ul { -list-style-type:none; -display:inline; -} -.entity_tags li { -display:inline; -margin-right:4px; -} - -.aside .section { -margin-bottom:18px; -clear:both; -float:left; -width:100%; -} -.aside .section h2 { -font-size:110%; -text-transform:none; -} - -#entity_statistics dt, -#entity_statistics dd { -display:inline; -} -#entity_statistics dt:after { -content: ":"; -} - -.section ul.entities { -float:left; -width:100%; -} -.section .entities li { -list-style-type:none; -float:left; -margin-right:7px; -margin-bottom:7px; -} -.section .entities li .photo { -margin-right:0; -margin-bottom:0; -} -.section .entities li .fn { -display:none; -} - -.aside .section p, -.aside .section .more { -clear:both; -} - -.profile .entity_profile { -margin-bottom:0; -min-height:60px; -} - -.profile .form_group_join legend, -.profile .form_group_leave legend, -.profile .form_user_subscribe legend, -.profile .form_user_unsubscribe legend { -display:none; -} - -.profiles { -list-style-type:none; -} -.profile .entity_profile .fn.nickname, -.profile .entity_profile .url[rel~=contact] { -margin-left:0; -display:inline; -} - -.profile .entity_profile .fn, -.profile .entity_profile .label { -margin-left:11px; -margin-bottom:4px; -width:auto; -clear:none; -} - -.profile .entity_profile .note, -.profile .entity_profile .url, -.profile .entity_profile .entity_tags, -.profile .entity_profile .form_subscription_edit { -margin-left:59px; -clear:none; -display:block; -width:auto; -} -.profile .entity_profile .entity_tags dt { -display:inline; -margin-right:11px; -} - -.profile .entity_profile .form_subscription_edit label { -font-weight:normal; -margin-right:11px; -} - -/* NOTICE */ -.notice, -.profile, -.application { -position:relative; -padding-top:11px; -padding-bottom:11px; -clear:both; -float:left; -width:100%; -border-top-width:1px; -border-top-style:dotted; -} -.notices li { -list-style-type:none; -line-height:1.1; -min-height:47px; -} -.notices .notices { -margin-top:7px; -margin-left:2%; -width:98%; -float:left; -} - -/* NOTICES */ -#notices_primary { -float:left; -width:100%; -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -} -#notices_primary h2 { -display:none; -} -.notice-data a span { -display:block; -padding-left:28px; -} - -.notice .author { -margin-right:11px; -} - -.fn { -overflow:hidden; -} - -.notice .author .fn { -font-weight:bold; -} - -.notice .author .photo { -margin-bottom:0; -} - -.vcard .photo { -display:inline; -margin-right:11px; -margin-bottom:11px; -float:left; -} -.vcard .url { -text-decoration:none; -} -.vcard .url:hover { -text-decoration:underline; -} - -.notice .entry-title { -float:left; -width:100%; -overflow:hidden; -} -.notice .entry-title.ov { -overflow:visible; -} -#shownotice .notice .entry-title { -font-size:2.2em; -} - -.notice p.entry-content { -display:inline; -} - -#content .notice p.entry-content a:visited { -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} -.notice p.entry-content .vcard a { -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} - -.notice div.entry-content { -clear:left; -float:left; -font-size:0.95em; -margin-left:59px; -min-width:60%; -max-width:62%; -} -#showstream .notice div.entry-content, -#shownotice .notice div.entry-content { -margin-left:0; -max-width:77%; -} - -.notice .notice-options a, -.notice .notice-options input { -float:left; -font-size:1.025em; -} - -.notice div.entry-content .timestamp { -display:inline-block; -} - -.entry-content .repeat { -display:block; -} -.entry-content .repeat .photo { -float:none; -margin-right:1px; -position:relative; -top:4px; -left:0; -} - -.dialogbox { -position:absolute; -top:-1px; -right:-1px; -z-index:9; -float:none; -padding:11px; -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -border-style:solid; -border-width:1px; -} - -.dialogbox legend { -display:block !important; -margin-right:18px; -margin-bottom:18px; -} - -.dialogbox button.close { -position:absolute; -right:3px; -top:3px; -} - -.dialogbox .form_guide { -font-weight:normal; -padding:0; -} - -.dialogbox .submit_dialogbox { -font-weight:bold; -text-indent:0; -min-width:46px; -} -.dialogbox input { -padding-left:4px; -} -.dialogbox fieldset { -margin-bottom:0; -} - -.notice-options { -position:relative; -font-size:0.95em; -width:113px; -float:right; -margin-right:4px; -} - -.notice-options a { -float:left; -} -.notice-options .notice_reply, -.notice-options .form_repeat, -.notice-options .form_favor, -.notice-options .form_disfavor, -.notice-options .repeated { -float:left; -margin-left:14.2%; -} -.notice-options .form_favor, -.notice-options .form_disfavor { -margin-left:0; -} -.notice-options input, -.notice-options a, -.notice-options .repeated { -text-indent:-9999px; -outline:none; -} -.notice-options input.submit { -display:block; -border:0; -} -.notice-options .notice_reply, -.notice-options .notice_delete { -text-decoration:none; -} -.notice .notice-options .notice_delete { -float:right; -} -.notice-options form input.submit { -width:16px; -height:16px; -padding:0; -border-radius:0; --moz-border-radius:0; --webkit-border-radius:0; -} -.notice-options .form_repeat legend, -.notice-options .form_favor legend, -.notice-options .form_disfavor legend { -display:none; -} -.notice-options .form_repeat fieldset, -.notice-options .form_favor fieldset, -.notice-options .form_disfavor fieldset { -border:0; -padding:0; -} -.notice-options a, -.notice-options .repeated { -width:16px; -height:16px; -} - -.notice .attachment { -position:relative; -padding-left:16px; -} -#attachments .attachment { -padding-left:0; -} -.notice .attachment img { -position:absolute; -top:18px; -left:0; -z-index:99; -} -#shownotice .notice .attachment img { -position:static; -} - -#attachments { -clear:both; -float:left; -width:100%; -margin-top:18px; -} -#attachments dt { -font-weight:bold; -font-size:1.3em; -margin-bottom:4px; -} - -#attachments ol li { -margin-bottom:18px; -list-style-type:decimal; -float:left; -clear:both; -} - -#jOverlayContent, -#jOverlayContent #content, -#jOverlayContent #content_inner { -width: auto !important; -margin-bottom:0; -} -#jOverlayContent #content { -padding:11px; -min-height:auto; -} -#jOverlayContent .external span { -display:block; -margin-bottom:11px; -} -#jOverlayContent button { -position:absolute; -top:0; -right:0; -width:29px; -height:29px; -text-align:center; -font-weight:bold; -padding:0; -} -#jOverlayContent h1 { -max-width:425px; -} -#jOverlayContent #content { -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -} -#jOverlayLoading { -top:5%; -left:40%; -} -#attachment_view img { -max-width:480px; -max-height:480px; -} -#attachment_view #oembed_info { -margin-top:11px; -} -#attachment_view #oembed_info dt, -#attachment_view #oembed_info dd { -float:left; -} -#attachment_view #oembed_info dt { -clear:left; -margin-right:11px; -font-weight:bold; -} -#attachment_view #oembed_info dt:after { -content: ":"; -} - -#usergroups #new_group { -float: left; -margin-right: 2em; -} -#new_group, #group_search { -margin-bottom:18px; -} -#new_group a { -padding-left:20px; -} - - -#filter_tags { -margin-bottom:11px; -float:left; -} -#filter_tags dt { -display:none; -} -#filter_tags ul { -list-style-type:none; -} -#filter_tags ul li { -float:left; -margin-left:7px; -padding-left:7px; -border-left-width:1px; -border-left-style:solid; -} -#filter_tags ul li.child_1 { -margin-left:0; -border-left:0; -padding-left:0; -} -#filter_tags ul li#filter_tags_all a { -font-weight:bold; -margin-top:7px; -float:left; -} - -#filter_tags ul li#filter_tags_item label { -margin-right:7px; -} -#filter_tags ul li#filter_tags_item label, -#filter_tags ul li#filter_tags_item select { -display:inline; -} -#filter_tags ul li#filter_tags_item p { -float:left; -margin-left:38px; -} -#filter_tags ul li#filter_tags_item input { -position:relative; -top:3px; -left:3px; -} - - - -.pagination { -float:left; -clear:both; -width:100%; -margin-top:18px; -} - -.pagination dt { -font-weight:bold; -display:none; -} - -.pagination .nav { -float:left; -width:100%; -list-style-type:none; -} - -.pagination .nav_prev { -float:left; -} -.pagination .nav_next { -float:right; -} - -.pagination a { -display:block; -text-decoration:none; -font-weight:bold; -padding:7px; -border-width:1px; -border-style:solid; --moz-border-radius:7px; --webkit-border-radius:7px; -border-radius:7px; -} - -.pagination .nav_prev a { -padding-left:30px; -} -.pagination .nav_next a { -padding-right:30px; -} -/* END: NOTICE */ - - -.hentry .entry-content p { -margin-bottom:18px; -} -.hentry entry-content ol, -.hentry .entry-content ul { -list-style-position:inside; -} -.hentry .entry-content li { -margin-bottom:18px; -} -.hentry .entry-content li li { -margin-left:18px; -} - - - - -/* TOP_POSTERS */ -.section tbody td { -padding-right:11px; -padding-bottom:11px; -} -.section .vcard .photo { -margin-right:7px; -margin-bottom:0; -} - -.section .notice { -padding-top:7px; -padding-bottom:7px; -border-top:0; -} - -.section .notice:first-child { -padding-top:0; -} - -.section .notice .author { -margin-right:0; -} -.section .notice .author .fn { -display:none; -} - - -/* tagcloud */ -.tag-cloud { -list-style-type:none; -text-align:center; -} -.aside .tag-cloud { -font-size:0.8em; -} -.tag-cloud li { -display:inline; -margin-right:7px; -line-height:1.25; -} -.aside .tag-cloud li { -line-height:1.5; -} -.tag-cloud li a { -text-decoration:none; -} -#tagcloud.section dt { -text-transform:uppercase; -font-weight:bold; -} -.tag-cloud-1 { -font-size:1em; -} -.tag-cloud-2 { -font-size:1.25em; -} -.tag-cloud-3 { -font-size:1.75em; -} -.tag-cloud-4 { -font-size:2em; -} -.tag-cloud-5 { -font-size:2.25em; -} -.tag-cloud-6 { -font-size:2.75em; -} -.tag-cloud-7 { -font-size:3.25em; -} - -#publictagcloud #tagcloud.section dt { -display:none; -} - -#form_settings_photo .form_data { -clear:both; -} - -#form_settings_avatar li { -width:auto; -} -#form_settings_avatar input { -margin-left:0; -} -#avatar_original, -#avatar_preview { -float:left; -} -#avatar_preview { -margin-left:29px; -} -#avatar_preview_view { -height:96px; -width:96px; -margin-bottom:18px; -overflow:hidden; -} - -#settings_attach, -#form_settings_avatar .form_actions { -clear:both; -} - -#form_settings_avatar .form_actions { -margin-bottom:0; -} - -#settings_design_background-image img { -max-width:480px; -max-height:480px; -} - -#settings_design_color .form_data, -#color-picker { -float:left; -} -#settings_design_color .form_data { -width:400px; -margin-right:1%; -} - -#settings_design_color .form_data li { -width:33%; -} -#settings_design_color .form_data label { -float:none; -display:block; -} -#settings_design_color .form_data .swatch { -padding:11px; -margin-left:0; -width:auto; -} - -.instructions ul { -list-style-position:inside; -} -.instructions p, -.instructions ul { -margin-bottom:18px; -} -.help dt { -display:none; -} -.guide { -clear:both; -} -#bookmarklet address { -display:none; -} -#bookmarklet .form_notice { -width:auto; -} -#bookmarklet #wrap { -min-width:0; -} - -#form_notice { -display: none; -} - -#public.user_in #form_notice, -#groups.user_in #form_notice, -#publictagcloud.user_in #form_notice, -#featured.user_in #form_notice, -#favorited.user_in #form_notice, -#all.user_in #form_notice, -#replies.user_in #form_notice, -#showstream.user_in #form_notice, -#showfavorites.user_in #form_notice, -#subscriptions.user_in #form_notice, -#subscribers.user_in #form_notice, -#showgroup.user_in #form_notice, -#conversation.user_in #form_notice, -#attachment.user_in #form_notice { -display: inline; -} - -#public.user_in #content, -#groups.user_in #content, -#publictagcloud.user_in #content, -#featured.user_in #content, -#favorited.user_in #content, -#all.user_in #content, -#replies.user_in #content, -#showstream.user_in #content, -#showfavorites.user_in #content, -#inbox.user_in #content, -#outbox.user_in #content, -#subscriptions.user_in #content, -#subscribers.user_in #content, -#showgroup.user_in #content, -#conversation.user_in #content, -#attachment.user_in #content { -padding-top:12.5em; -} - -#public #core, -#showstream #core, -#showgroup #core { -margin-top:10em; -} -#public.user_in #core, -#showstream.user_in #core { -margin-top:0; -} - -#jOverlayContent #core #content { -padding-top:11px; -} -#jOverlayContent #core { -background:none; -padding-top:0; -} - - -html, -body, -a:active { -background-color:#9AE4E8; -} -body { -font-family:'Lucida Grande',sans-serif; -background:#9AE4E8 url(../images/illustrations/illu_clouds-01.gif) 0 0 no-repeat; -color:#333333; -} -#core { -background:url(../images/illustrations/illu_arrow-up-01.gif) no-repeat 25px 0; -} - -input, textarea, select, option { -font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; -} -input, textarea, select, -.entity_remote_subscribe { -border-color:#aaa; -} -#filter_tags ul li { -border-color:#ddd; -} - -.form_settings input.form_action-primary { -background:none; -} - - -.form_notice label.notice_data-attach, -#export_data li a.rss, -#export_data li a.atom, -#export_data li a.foaf, -.entity_edit a, -.entity_send-a-message a, -.entity_nudge p, -.form_user_nudge input.submit, -.form_user_block input.submit, -.form_user_unblock input.submit, -.form_group_block input.submit, -.form_group_unblock input.submit, -.form_make_admin input.submit, -.notice .attachment, -.notice-options .notice_reply, -.notice-options form.form_favor input.submit, -.notice-options form.form_disfavor input.submit, -.notice-options .notice_delete, -.notice-options form.form_repeat input.submit, -#new_group a, -.pagination .nav_prev a, -.pagination .nav_next a, -button.close, -.form_group_leave input.submit, -.form_user_unsubscribe input.submit, -.form_group_join input.submit, -.form_user_subscribe input.submit, -.form_remote_authorize input.submit, -.entity_subscribe a, -.entity_moderation p, -.entity_sandbox input.submit, -.entity_silence input.submit, -.entity_delete input.submit, -.notice-options .repeated, -.form_notice label.notice_data-geo, -button.minimize, -.form_reset_key input.submit, -.entity_clear input.submit, -.entity_flag input.submit, -.entity_flag p, -.entity_subscribe input.submit, -#realtime_play, -#realtime_pause, -#realtime_popup { -background-image:url(../../base/images/icons/icons-01.gif); -background-repeat:no-repeat; -background-color:transparent; -} - -#wrap form.processing input.submit, -#core a.processing, -.dialogbox.processing .submit_dialogbox { -background:#FFFFFF url(../../base/images/icons/icon_processing.gif) no-repeat 47% 47%; -cursor:wait; -text-indent:-9999px; -outline:none; -} -.processing { -background-image:url(../../base/images/icons/icon_processing.gif); -background-repeat:no-repeat; -background-position:47% 47%; -} - -button.close { -background-position:0 -1120px; -} -button.minimize { -background-position:0 -1912px; -} - -input.submit, -.form_notice.warning .count, -.form_settings .form_note, -.entity_actions a, -.entity_actions input, -.entity_moderation p, -button { -box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); -} -.entity_actions a, -.entity_actions input, -.entity_actions p { -border-color:transparent; -background-color:transparent; -} -input:focus, textarea:focus, select:focus, -.form_notice.warning textarea, -.form_notice.warning .count, -.form_settings .form_note { -border-color:#9BB43E; -} -input.submit { -color:#FFFFFF; -} -.entity_actions a, -.entity_actions input, -.entity_actions p { -border-color:transparent; -background-color:transparent; -} -input:focus, textarea:focus, select:focus, -.form_notice.warning textarea, -.form_notice.warning .count, -.form_settings .form_note { -border-color:#9BB43E; -} -input.submit { -color:#FFFFFF; -} -.entity_actions input.submit { -border-color:transparent; -text-shadow:none; -} -.dialogbox .submit_dialogbox, -input.submit, -.form_notice input.submit { -background:#AAAAAA url(../../base/images/illustrations/illu_pattern-01.png) 0 0 repeat-x; -text-shadow:0 1px 0 #FFFFFF; -color:#000000; -border-color:#AAAAAA; -border-top-color:#CCCCCC; -border-left-color:#CCCCCC; -} -.dialogbox .submit_dialogbox:hover, -input.submit:hover { -background-position:0 -5px; -} -.dialogbox .submit_dialogbox:focus, -input.submit:focus { -background-position:0 -15px; -box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); --moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); --webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); -text-shadow:none; -} - -.form_notice span#notice_data-geo_name { -background-position:0 47%; -} -.form_notice a#notice_data-geo_name { -background-position:0 -1711px; -} -.form_notice label.notice_data-geo { -background-position:0 -1780px; -} -.form_notice label.notice_data-geo.checked { -background-position:0 -1846px; -} - -a, -.form_settings input.form_action-primary, -.notice-options input, -.entity_actions a, -.entity_actions input, -.entity_moderation p { -color:#0084B4; -} - -.notice, -.profile { -border-top-color:#CEE1E9; -} -.notice, -.profile { -border-top-color:#DDFFCC; -} -.section .profile { -border-top-color:#87B4C8; -} -.mark-top { -border-color:#AAAAAA; -} - -#aside_primary { -background-color:#DDFFCC; -} - -.form_notice .count { -color:#000000; -} -#form_notice.warning .count { -color:#000000; -} -#form_notice label.notice_data-attach { -background:transparent url(../../base/images/icons/twotone/green/clip-01.gif) no-repeat 0 45%; -} -#form_notice input.notice_data-attach { -opacity:0; -} - -#form_notice.processing .submit { -background:#fff url(../../base/images/icons/icon_processing.gif) no-repeat 47% 47%; -cursor:wait; -text-indent:-9999px; -} - -#content, -#site_nav_local_views a, -#aside_primary { -border-color:#FFFFFF; -} -#content, -#site_nav_local_views .current a, -.entity_send-a-message .form_notice, -.entity_moderation:hover ul, -.entity_role:hover ul, -.dialogbox { -background-color:#FFFFFF; -} - -#site_nav_local_views a { -background-color:rgba(135, 180, 200, 0.3); -} -#site_nav_local_views a:hover { -background-color:rgba(255, 255, 255, 0.7); -} - - -.error { -background-color:#F7E8E8; -} -.success { -background-color:#EFF3DC; -} - - -#anon_notice { -background-color:#FEFFDF; -color:#333; -border-color:#fff; -} - -#showstream #anon_notice { -background-color:#FEFFDF; -} - - -#export_data li a { -background-repeat:no-repeat; -background-position:0 45%; -} -#export_data li a.rss { -background-position:0 -130px; -} -#export_data li a.atom { -background-position:0 -64px; -} -#export_data li a.foaf { -background-position:0 1px; -} - -.form_group_join input.submit, -.form_group_leave input.submit, -.form_user_subscribe input.submit, -.form_user_unsubscribe input.submit, -.entity_subscribe a { -background-color:#AAAAAA; -color:#FFFFFF; -} -.form_group_leave input.submit, -.form_user_unsubscribe input.submit { -background-position:5px -1246px; -} -.form_group_join input.submit, -.form_user_subscribe input.submit, -.entity_subscribe a { -background-position:5px -1181px; -} - -.entity_edit a { -background-position: 5px -718px; -} -.entity_send-a-message a { -background-position: 5px -852px; -} -.entity_send-a-message .form_notice, -.entity_moderation:hover ul { -box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); --moz-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); --webkit-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); -} - -.entity_nudge p, -.form_user_nudge input.submit { -background-position: 5px -785px; -} -.form_user_block input.submit, -.form_user_unblock input.submit, -.form_group_block input.submit, -.form_group_unblock input.submit { -background-position: 5px -918px; -} -.form_make_admin input.submit { -background-position: 5px -983px; -} -.entity_moderation p { -background-position: 5px -1313px; -} -.entity_sandbox input.submit { -background-position: 5px -1380px; -} -.entity_silence input.submit { -background-position: 5px -1445px; -} -.entity_delete input.submit { -background-position: 5px -1511px; -} -.form_reset_key input.submit { -background-position: 5px -1973px; -} -.entity_clear input.submit { -background-position: 5px -2039px; -} -.entity_flag input.submit, -.entity_flag p { -background-position: 5px -2105px; -} -.entity_subscribe input.accept { -background-position: 5px -2171px; -} -.entity_subscribe input.reject { -background-position: 5px -2237px; -} -#realtime_play { -background-position: 0 -2308px; -} -#realtime_pause { -background-position: 0 -2374px; -} -#realtime_popup { -background-position: 0 -1714px; -} - - -/* NOTICES */ -.notice .attachment { -background-position:0 -394px; -} -.notice .attachment.more { -background-position:0 -2770px; -} -#attachments .attachment { -background:none; -} -.notice-options .notice_reply { -background-position:0 -592px; -} -.notice-options form.form_favor input.submit { -background-position:0 -460px; -} -.notice-options form.form_disfavor input.submit { -background-position:0 -526px; -} -.notice-options .notice_delete { -background-position:0 -658px; -} -.notice-options form.form_repeat input.submit { -background-position:0 -1582px; -} -.notice-options .repeated { -background-position:0 -1648px; -} - -.notices .attachment.more, -.notices div.entry-content, -.notices div.notice-options { -opacity:0.4; -} -.notices li:hover .attachment.more, -.notices li:hover div.entry-content, -.notices li:hover div.notice-options { -opacity:1; -} -.opaque { -opacity:1 !important; -} -.notices .notices { -background-color:rgba(200, 200, 200, 0.050); -} -.notices .notices .notices { -background-color:rgba(200, 200, 200, 0.100); -} -.notices .notices .notices .notices { -background-color:rgba(200, 200, 200, 0.150); -} -.notices .notices .notices .notices .notices { -background-color:rgba(200, 200, 200, 0.300); -} -.notice-options a, -.notice-options input { -font-family:sans-serif; -box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); -} -#content .notices li:hover { -background-color:rgba(240, 240, 240, 0.2); -} -#conversation .notices li:hover { -background-color:transparent; -} - -div.entry-content { -color:#333; -} -div.notice-options a, -div.notice-options input { -font-family:sans-serif; -} -#content .notices li:hover { -background-color:rgba(240, 240, 240, 0.2); -} -#conversation .notices li:hover { -background-color:transparent; -} -/*END: NOTICES */ - - -#new_group a { -background-position:0 -1054px; -} - -.pagination .nav_prev a, -.pagination .nav_next a { -background-repeat:no-repeat; -box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); -} -.pagination .nav_prev a { -background-position:10% -187px; -} -.pagination .nav_next a { -background-position:105% -252px; -} -.pagination .nav .processing { -background-image:url(../../base/images/icons/icon_processing.gif); -box-shadow:none; --moz-box-shadow:none; --webkit-box-shadow:none; -outline:none; -} -.pagination .nav_next a.processing { -background-position:90% 47%; -} -.pagination .nav_prev a.processing { -background-position:10% 47%; -} - - -/*--------------------------------------*/ - -#anon_notice { -background:url(../images/illustrations/illu_unicorn-01.png) no-repeat 0 0; -} -#showstream #anon_notice, -#content .notice p.entry-content a:visited, -content .notice p.entry-content .vcard a { -background-color:transparent; -} - -#anon_notice p { -background-color:#FEFFDF; -border-color:#FFFF00; -} - - -.form_notice .count { -color:#CCC; -} - -.notice div.entry-content, -.notice div.entry-content a { -color:#999; -} - -.notices div.entry-content, -.notices div.notice-options { -opacity:1; -} - -#site_nav_local_views { -background-color:#DDFFCC; -} -#site_nav_local_views li, -#aside_primary { -border-color:#BDDCAD; -} -#site_nav_local_views a, -.aside .section h2 { -background-color:transparent; -border-color:transparent; -color:#4C4C4C; -} -#site_nav_local_views .current { -border-left-color:#FFFFFF; -} - -#site_nav_local_views .current a, -#site_nav_global_primary, -#footer { -background-color:#FFFFFF; -} -}/*end of @media screen, projection, tv*/ - - -@media print { -a:after { background-color:#FFFFFF; } -a:not([href^="#"]):after { content:" <"attr(href)"> "; } -img { border:none; } -p { orphans: 2; widows: 1; } - -#site_nav_global_primary, -#site_nav_local_views, -#form_notice, -.pagination, -#site_nav_global_secondary, -.entity_actions, -.notice-options, -#aside_primary, -.form_subscription_edit .submit { -display:none; -} -.timestamp dt, .timestamp dd, -.device dt, .device dd { -display:inline; -} -.profiles li, -.notices li { -margin-bottom:18px; -} - -}/*end of @media print*/ diff --git a/theme/cloudy/css/ie.css b/theme/cloudy/css/ie.css deleted file mode 100644 index 013bdf9d16..0000000000 --- a/theme/cloudy/css/ie.css +++ /dev/null @@ -1,82 +0,0 @@ -/** - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2009-2010 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ -/* IE specific styles */ - -.notice-options input.submit { -color:#fff; -} - -#site_nav_local_views a { -background-color:#ddffcc; -} - -#form_notice { -width:525px; -} -.form_notice .count { -top:-5px; -right:0; -} -#form_notice textarea { -width:97.75%; -} -.form_notice .count + label { -position:absolute; -top:87px; -left:77%; -text-indent:-9999px; -height:16px; -width:16px; -display:block; -} -#form_notice input.notice_data-attach { -filter: alpha(opacity = 0); -left:33.5%; -} - -#form_notice .submit { -right:0; -} - -#aside_primary { -width:181px; -} - -#form_notice, -#anon_notice { -top:190px; -} - -#public.user_in #content, -#groups.user_in #content, -#publictagcloud.user_in #content, -#featured.user_in #content, -#favorited.user_in #content, -#all.user_in #content, -#replies.user_in #content, -#showstream.user_in #content, -#showfavorites.user_in #content, -#inbox.user_in #content, -#outbox.user_in #content, -#subscriptions.user_in #content, -#subscribers.user_in #content, -#showgroup.user_in #content, -#conversation.user_in #content, -#attachment.user_in #content { -padding-top:138px; -} - -.notice { -z-index:1; -} -.notice:hover { -z-index:9999; -} -.notice .thumbnail img { -z-index:9999; -} diff --git a/theme/cloudy/default-avatar-mini.png b/theme/cloudy/default-avatar-mini.png deleted file mode 100644 index 4fd8bd9e19..0000000000 Binary files a/theme/cloudy/default-avatar-mini.png and /dev/null differ diff --git a/theme/cloudy/default-avatar-profile.png b/theme/cloudy/default-avatar-profile.png deleted file mode 100644 index eb08571d99..0000000000 Binary files a/theme/cloudy/default-avatar-profile.png and /dev/null differ diff --git a/theme/cloudy/default-avatar-stream.png b/theme/cloudy/default-avatar-stream.png deleted file mode 100644 index 926b8a9ca2..0000000000 Binary files a/theme/cloudy/default-avatar-stream.png and /dev/null differ diff --git a/theme/cloudy/images/icons/icon_atom.png b/theme/cloudy/images/icons/icon_atom.png deleted file mode 100644 index 6a001f11aa..0000000000 Binary files a/theme/cloudy/images/icons/icon_atom.png and /dev/null differ diff --git a/theme/cloudy/images/icons/icon_disfavourite.gif b/theme/cloudy/images/icons/icon_disfavourite.gif deleted file mode 100644 index 2b02ac8a6c..0000000000 Binary files a/theme/cloudy/images/icons/icon_disfavourite.gif and /dev/null differ diff --git a/theme/cloudy/images/icons/icon_favourite.gif b/theme/cloudy/images/icons/icon_favourite.gif deleted file mode 100644 index 716ce35498..0000000000 Binary files a/theme/cloudy/images/icons/icon_favourite.gif and /dev/null differ diff --git a/theme/cloudy/images/icons/icon_foaf.gif b/theme/cloudy/images/icons/icon_foaf.gif deleted file mode 100644 index f8f7844235..0000000000 Binary files a/theme/cloudy/images/icons/icon_foaf.gif and /dev/null differ diff --git a/theme/cloudy/images/icons/icon_processing.gif b/theme/cloudy/images/icons/icon_processing.gif deleted file mode 100644 index d0bce15423..0000000000 Binary files a/theme/cloudy/images/icons/icon_processing.gif and /dev/null differ diff --git a/theme/cloudy/images/icons/icon_reply.gif b/theme/cloudy/images/icons/icon_reply.gif deleted file mode 100644 index a4379a70b6..0000000000 Binary files a/theme/cloudy/images/icons/icon_reply.gif and /dev/null differ diff --git a/theme/cloudy/images/icons/icon_rss.png b/theme/cloudy/images/icons/icon_rss.png deleted file mode 100644 index 0ccd1ce254..0000000000 Binary files a/theme/cloudy/images/icons/icon_rss.png and /dev/null differ diff --git a/theme/cloudy/images/icons/icon_trash.gif b/theme/cloudy/images/icons/icon_trash.gif deleted file mode 100644 index 916a332a34..0000000000 Binary files a/theme/cloudy/images/icons/icon_trash.gif and /dev/null differ diff --git a/theme/cloudy/images/icons/icon_vcard.gif b/theme/cloudy/images/icons/icon_vcard.gif deleted file mode 100644 index 6d52947f3e..0000000000 Binary files a/theme/cloudy/images/icons/icon_vcard.gif and /dev/null differ diff --git a/theme/cloudy/images/icons/twotone/green/arrow-left.gif b/theme/cloudy/images/icons/twotone/green/arrow-left.gif deleted file mode 100644 index afed190841..0000000000 Binary files a/theme/cloudy/images/icons/twotone/green/arrow-left.gif and /dev/null differ diff --git a/theme/cloudy/images/icons/twotone/green/arrow-right.gif b/theme/cloudy/images/icons/twotone/green/arrow-right.gif deleted file mode 100644 index ee1707ed96..0000000000 Binary files a/theme/cloudy/images/icons/twotone/green/arrow-right.gif and /dev/null differ diff --git a/theme/cloudy/images/icons/twotone/green/edit.gif b/theme/cloudy/images/icons/twotone/green/edit.gif deleted file mode 100644 index c746aca601..0000000000 Binary files a/theme/cloudy/images/icons/twotone/green/edit.gif and /dev/null differ diff --git a/theme/cloudy/images/icons/twotone/green/mail.gif b/theme/cloudy/images/icons/twotone/green/mail.gif deleted file mode 100644 index 1084c862f6..0000000000 Binary files a/theme/cloudy/images/icons/twotone/green/mail.gif and /dev/null differ diff --git a/theme/cloudy/images/icons/twotone/green/news.gif b/theme/cloudy/images/icons/twotone/green/news.gif deleted file mode 100644 index 712c685dc0..0000000000 Binary files a/theme/cloudy/images/icons/twotone/green/news.gif and /dev/null differ diff --git a/theme/cloudy/images/icons/twotone/green/quote.gif b/theme/cloudy/images/icons/twotone/green/quote.gif deleted file mode 100644 index 4ba1f0c03d..0000000000 Binary files a/theme/cloudy/images/icons/twotone/green/quote.gif and /dev/null differ diff --git a/theme/cloudy/images/icons/twotone/green/shield.gif b/theme/cloudy/images/icons/twotone/green/shield.gif deleted file mode 100644 index 419d5ee4be..0000000000 Binary files a/theme/cloudy/images/icons/twotone/green/shield.gif and /dev/null differ diff --git a/theme/cloudy/images/illustrations/illu_arrow-up-01.gif b/theme/cloudy/images/illustrations/illu_arrow-up-01.gif deleted file mode 100644 index 577be18717..0000000000 Binary files a/theme/cloudy/images/illustrations/illu_arrow-up-01.gif and /dev/null differ diff --git a/theme/cloudy/images/illustrations/illu_clouds-01.gif b/theme/cloudy/images/illustrations/illu_clouds-01.gif deleted file mode 100644 index 41cd622cf0..0000000000 Binary files a/theme/cloudy/images/illustrations/illu_clouds-01.gif and /dev/null differ diff --git a/theme/cloudy/images/illustrations/illu_jcrop.gif b/theme/cloudy/images/illustrations/illu_jcrop.gif deleted file mode 100644 index 72ea7ccb53..0000000000 Binary files a/theme/cloudy/images/illustrations/illu_jcrop.gif and /dev/null differ diff --git a/theme/cloudy/images/illustrations/illu_progress_loading-01.gif b/theme/cloudy/images/illustrations/illu_progress_loading-01.gif deleted file mode 100644 index 82290f4833..0000000000 Binary files a/theme/cloudy/images/illustrations/illu_progress_loading-01.gif and /dev/null differ diff --git a/theme/cloudy/images/illustrations/illu_unicorn-01.png b/theme/cloudy/images/illustrations/illu_unicorn-01.png deleted file mode 100644 index 6cb51b298f..0000000000 Binary files a/theme/cloudy/images/illustrations/illu_unicorn-01.png and /dev/null differ diff --git a/theme/cloudy/logo.png b/theme/cloudy/logo.png deleted file mode 100644 index cf1839194a..0000000000 Binary files a/theme/cloudy/logo.png and /dev/null differ diff --git a/theme/default/css/display.css b/theme/default/css/display.css deleted file mode 100644 index 3e3bfdfa86..0000000000 --- a/theme/default/css/display.css +++ /dev/null @@ -1,518 +0,0 @@ -/** theme: default - * - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2009-2010 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ - -@media screen, projection, tv { -body, -a:active { -background-color:#CEE1E9; -} -body { -font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; -font-size:1em; -} -address { -margin-right:5.3%; -} -input, textarea, select { -border-width:2px; -border-style: solid; -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} -input, textarea, select, option { -font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; -} -input, textarea, select, -.entity_actions .dialogbox input, -.mark-top { -border-color:#AAAAAA; -} - -.form_settings fieldset fieldset { -background:rgba(240, 240, 240, 0.2); -box-shadow:3px 3px 7px rgba(194, 194, 194, 0.3); --moz-box-shadow:3px 3px 7px rgba(194, 194, 194, 0.3); --webkit-box-shadow:3px 3px 7px rgba(194, 194, 194, 0.3); -} - -#filter_tags ul li, -.entity_send-a-message .form_notice, -.pagination .nav_prev a, -.pagination .nav_next a, -.form_settings fieldset fieldset, -.entity_moderation:hover ul, -.entity_role:hover ul, -.dialogbox { -border-color:#DDDDDD; -} - -.form_settings input.form_action-primary { -background:none; -} - -.form_notice.warning .count, -.form_settings .form_note { -background-color:#9BB43E; -} -input.submit, -.form_notice.warning .count, -.form_settings .form_note, -.entity_actions a, -.entity_actions input, -.entity_moderation p, -.entity_role p, -button { -box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); -} -.entity_actions a, -.entity_actions input, -.entity_actions p { -border-color:transparent; -background-color:transparent; -} -input:focus, textarea:focus, select:focus, -.form_notice.warning textarea, -.form_notice.warning .count, -.form_settings .form_note, -.entity_actions .dialogbox .form_data input:focus { -border-color:#9BB43E; -} -input.submit { -color:#FFFFFF; -} -.entity_actions input.submit { -border-color:transparent; -text-shadow:none; -} -.dialogbox .submit_dialogbox, -input.submit, -.form_notice input.submit { -background:#AAAAAA url(../../base/images/illustrations/illu_pattern-01.png) 0 0 repeat-x; -text-shadow:0 1px 0 #FFFFFF; -color:#000000; -border-color:#AAAAAA; -border-top-color:#CCCCCC; -border-left-color:#CCCCCC; -} -.dialogbox .submit_dialogbox:hover, -input.submit:hover { -background-position:0 -5px; -} -.dialogbox .submit_dialogbox:focus, -input.submit:focus { -background-position:0 -15px; -box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); --moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); --webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); -text-shadow:none; -} - -.form_notice label.notice_data-geo { -background-position:0 -1780px; -} -.form_notice label.notice_data-geo.checked { -background-position:0 -1846px; -} - -a, -.form_settings input.form_action-primary, -.notice-options input, -.entity_actions a, -.entity_actions input, -.entity_moderation p, -.entity_role p { -color:#002FA7; -} - -.notice, -.profile, -.application, -#content tbody tr { -border-top-color:#C8D1D5; -} - -#aside_primary { -background-color:#C8D1D5; -} - -.form_notice .count { -color:#333333; -} -.form_notice.warning .count, -.dialogbox, -.entity_actions .dialogbox input { -color:#000000; -} -.form_notice label.notice_data-attach { -background-position:0 -328px; -} -.form_notice input.notice_data-attach { -opacity:0; -} - -.form_notice label.notice_data-attach, -#export_data li a.rss, -#export_data li a.atom, -#export_data li a.foaf, -.entity_edit a, -.entity_send-a-message a, -.entity_nudge p, -.form_user_nudge input.submit, -.form_user_block input.submit, -.form_user_unblock input.submit, -.form_group_block input.submit, -.form_group_unblock input.submit, -.form_make_admin input.submit, -.notice .attachment, -.notice-options .notice_reply, -.notice-options form.form_favor input.submit, -.notice-options form.form_disfavor input.submit, -.notice-options .notice_delete, -.notice-options form.form_repeat input.submit, -#new_group a, -.pagination .nav_prev a, -.pagination .nav_next a, -button.close, -.form_group_leave input.submit, -.form_user_unsubscribe input.submit, -.form_group_join input.submit, -.form_user_subscribe input.submit, -.form_remote_authorize input.submit, -.entity_subscribe a, -.entity_moderation p, -.entity_sandbox input.submit, -.entity_silence input.submit, -.entity_delete input.submit, -.entity_role p, -.entity_role_administrator input.submit, -.entity_role_moderator input.submit, -.notice-options .repeated, -.form_notice label.notice_data-geo, -button.minimize, -.form_reset_key input.submit, -.entity_clear input.submit, -.entity_flag input.submit, -.entity_flag p, -.entity_subscribe input.submit, -#realtime_play, -#realtime_pause, -#realtime_popup { -background-image:url(../../base/images/icons/icons-01.gif); -background-repeat:no-repeat; -background-color:transparent; -} - -#wrap form.processing input.submit, -#core a.processing, -.dialogbox.processing .submit_dialogbox { -background:#FFFFFF url(../../base/images/icons/icon_processing.gif) no-repeat 47% 47%; -} -.notice-options .form_repeat.processing { -background-image:none; -} - -#content { -box-shadow:5px 7px 7px rgba(194, 194, 194, 0.3); --moz-box-shadow:5px 7px 7px rgba(194, 194, 194, 0.3); --webkit-box-shadow:5px 7px 7px rgba(194, 194, 194, 0.3); -} -#content, -#site_nav_local_views a, -#aside_primary { -border-color:transparent; -} -#content, -#site_nav_local_views .current a, -.entity_send-a-message .form_notice, -.entity_moderation:hover ul, -.entity_role:hover ul, -.dialogbox { -background-color:#FFFFFF; -} - -#site_nav_local_views li.current { -box-shadow:3px 7px 5px rgba(194, 194, 194, 0.5); --moz-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.5); --webkit-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.5); -} -#site_nav_local_views a { -background-color:rgba(194, 194, 194, 0.5); -} -#site_nav_local_views a:hover { -background-color:rgba(255, 255, 255, 0.7); -} -#site_nav_local_views .current a { -text-shadow: rgba(194,194,194,0.5) 1px 1px 1px; -} -.processing { -background-image:url(../../base/images/icons/icon_processing.gif); -background-repeat:no-repeat; -background-position:47% 47%; -} - - -.error { -background-color:#F7E8E8; -} -.success { -background-color:#EFF3DC; -} - -button.close { -background-position:0 -1120px; -} -button.minimize { -background-position:0 -1912px; -} - -#anon_notice { -background-color:#87B4C8; -color:#FFFFFF; -border-color:#FFFFFF; -} - -#showstream #anon_notice { -background-color:#9BB43E; -} - -#export_data li a { -background-repeat:no-repeat; -} -#export_data li a.rss { -background-position:0 -130px; -} -#export_data li a.atom { -background-position:0 -64px; -} -#export_data li a.foaf { -background-position:0 1px; -} - -.form_group_join input.submit, -.form_group_leave input.submit, -.form_user_subscribe input.submit, -.form_user_unsubscribe input.submit, -.form_remote_authorize input.submit, -.entity_subscribe a { -background-color:#AAAAAA; -color:#FFFFFF; -} -.form_group_leave input.submit, -.form_user_unsubscribe input.submit { -background-position:5px -1246px; -} -.form_group_join input.submit, -.form_user_subscribe input.submit, -.form_remote_authorize input.submit, -.entity_subscribe a { -background-position:5px -1181px; -} - -.entity_edit a { -background-position: 5px -719px; -} -.entity_send-a-message a { -background-position: 5px -852px; -} -.entity_send-a-message .form_notice, -.entity_moderation:hover ul, -.entity_role:hover ul, -.dialogbox { -box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); --moz-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); --webkit-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); -} - -.entity_nudge p, -.form_user_nudge input.submit { -background-position: 5px -785px; -} -.form_user_block input.submit, -.form_user_unblock input.submit, -.form_group_block input.submit, -.form_group_unblock input.submit { -background-position: 5px -918px; -} -.form_make_admin input.submit { -background-position: 5px -983px; -} -.entity_moderation p { -background-position: 5px -1313px; -} -.entity_sandbox input.submit { -background-position: 5px -1380px; -} -.entity_silence input.submit { -background-position: 5px -1445px; -} -.entity_delete input.submit { -background-position: 5px -1511px; -} -.entity_sandbox .form_user_unsandbox input.submit { -background-position: 5px -2568px; -} -.entity_silence .form_user_unsilence input.submit { -background-position: 5px -2633px; -} -.entity_role p { -background-position: 5px -2436px; -} -.entity_role_administrator .form_user_grantrole input.submit { -background-position: 5px -983px; -} -.entity_role_moderator .form_user_grantrole input.submit { -background-position: 5px -1313px; -} -.entity_role_administrator .form_user_revokerole input.submit { -background-position: 5px -2699px; -} -.entity_role_moderator .form_user_revokerole input.submit { -background-position: 5px -2501px; -} -.form_reset_key input.submit { -background-position: 5px -1973px; -} -.entity_clear input.submit { -background-position: 5px -2039px; -} -.entity_flag input.submit, -.entity_flag p { -background-position: 5px -2105px; -} -.entity_subscribe input.accept { -background-position: 5px -2171px; -} -.entity_subscribe input.reject { -background-position: 5px -2237px; -} -#realtime_play { -background-position: 0 -2308px; -} -#realtime_pause { -background-position: 0 -2374px; -} -#realtime_popup { -background-position: 0 -1714px; -} - - -/* NOTICES */ -.notice .attachment { -background-position:0 -394px; -} -.notice .attachment.more { -background-position:0 -2770px; -} -#attachments .attachment { -background:none; -} -.notice-options .notice_reply { -background-position:0 -592px; -} -.notice-options form.form_favor input.submit { -background-position:0 -460px; -} -.notice-options form.form_disfavor input.submit { -background-position:0 -526px; -} -.notice-options .notice_delete { -background-position:0 -658px; -} -.notice-options form.form_repeat input.submit { -background-position:0 -1582px; -} -.notice-options .repeated { -background-position:0 -1648px; -} - -.notices .attachment.more, -.notices div.entry-content, -.notices div.notice-options { -opacity:0.4; -} -.notices li:hover .attachment.more, -.notices li:hover div.entry-content, -.notices li:hover div.notice-options { -opacity:1; -} -.opaque { -opacity:1 !important; -} -.attachment.more, -.notice-options a, -.notice-options input { -font-family:sans-serif; -box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); -} -.attachment.more:focus { -box-shadow:none; --moz-box-shadow:none; --webkit-box-shadow:none; -outline:none; -} -#content .notices li:hover, -#content .applications li:hover, -#content tbody tr:hover { -background-color:rgba(240, 240, 240, 0.2); -} -#conversation .notices li:hover { -background-color:transparent; -} - -.notices .notices { -background-color:rgba(200, 200, 200, 0.050); -} -.notices .notices .notices { -background-color:rgba(200, 200, 200, 0.100); -} -.notices .notices .notices .notices { -background-color:rgba(200, 200, 200, 0.150); -} -.notices .notices .notices .notices .notices { -background-color:rgba(200, 200, 200, 0.300); -} -/*END: NOTICES */ - -#new_group a { -background-position:0 -1054px; -} - -.pagination .nav_prev a, -.pagination .nav_next a { -background-repeat:no-repeat; -box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); -} -.pagination .nav_prev a { -background-position:10% -187px; -} -.pagination .nav_next a { -background-position:105% -252px; -} -.pagination .nav .processing { -background-image:url(../../base/images/icons/icon_processing.gif); -box-shadow:none; --moz-box-shadow:none; --webkit-box-shadow:none; -outline:none; -} -.pagination .nav_next a.processing { -background-position:90% 47%; -} -.pagination .nav_prev a.processing { -background-position:10% 47%; -} - -}/*end of @media screen, projection, tv*/ diff --git a/theme/default/css/ie.css b/theme/default/css/ie.css deleted file mode 100644 index 3100821688..0000000000 --- a/theme/default/css/ie.css +++ /dev/null @@ -1,27 +0,0 @@ -/** - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2009-2010 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ -/* IE specific styles */ - -.notice-options input.submit { -color:#FFFFFF; -} -#site_nav_local_views a { -background-color:#C8D1D5; -} -.form_notice .count + label { -background:transparent url(../../base/images/icons/icons-01.gif) no-repeat 0 -328px; -} -.form_notice input.notice_data-attach { -filter: alpha(opacity=0); -} -.notice-options form.form_favor input.submit { -background-position:0 -460px; -} -.notice-options form.form_disfavor input.submit { -background-position:0 -526px; -} diff --git a/theme/default/default-avatar-mini.png b/theme/default/default-avatar-mini.png deleted file mode 100644 index 6c7808616a..0000000000 Binary files a/theme/default/default-avatar-mini.png and /dev/null differ diff --git a/theme/default/default-avatar-profile.png b/theme/default/default-avatar-profile.png deleted file mode 100644 index 08ce4e48ee..0000000000 Binary files a/theme/default/default-avatar-profile.png and /dev/null differ diff --git a/theme/default/default-avatar-stream.png b/theme/default/default-avatar-stream.png deleted file mode 100644 index f18994d752..0000000000 Binary files a/theme/default/default-avatar-stream.png and /dev/null differ diff --git a/theme/default/logo.png b/theme/default/logo.png deleted file mode 100644 index cf1839194a..0000000000 Binary files a/theme/default/logo.png and /dev/null differ diff --git a/theme/default/mobilelogo.png b/theme/default/mobilelogo.png deleted file mode 100644 index 66bb5f6787..0000000000 Binary files a/theme/default/mobilelogo.png and /dev/null differ diff --git a/theme/default/theme.ini b/theme/default/theme.ini deleted file mode 100644 index 33d0b67978..0000000000 --- a/theme/default/theme.ini +++ /dev/null @@ -1 +0,0 @@ -include=base diff --git a/theme/h4ck3r/css/base.css b/theme/h4ck3r/css/base.css deleted file mode 100644 index d369a5ecdd..0000000000 --- a/theme/h4ck3r/css/base.css +++ /dev/null @@ -1,1356 +0,0 @@ -/** theme: h4ck3r base - * - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2009 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ - -@media screen, projection, tv { -* { margin:0; padding:0; } -img { display:block; border:0; } -a abbr { cursor: pointer; border-bottom:0; } -table { border-collapse:collapse; } -ol { list-style-position:inside; } -html { font-size: 100%; background-color:#fff; height:100%; } -body { -background-color:#fff; -color:#000; -font-family:sans-serif; -font-size:1em; -line-height:1.65; -position:relative; -} -h1,h2,h3,h4,h5,h6 { -margin-bottom:7px; -overflow:hidden; -} -h1 { -font-size:1.4em; -margin-bottom:18px; -} -#showstream h1 { display:none; } -h2 { font-size:1.3em; } -h3 { font-size:1.2em; } -h4 { font-size:1.1em; } -h5 { font-size:1em; } -h6 { font-size:0.9em; } - -caption { -font-weight:bold; -} -legend { -font-weight:bold; -font-size:1.3em; -} -input, textarea, select, option { -padding:4px; -font-family:sans-serif; -font-size:1em; -} -input, textarea, select { -border-width:2px; -border-style: solid; -} - -input.submit { -font-weight:bold; -cursor:pointer; -} -textarea { -overflow:auto; -} -option { -padding-bottom:0; -} -fieldset { -padding:0; -border:0; -} -form ul li { -list-style-type:none; -margin:0 0 18px 0; -} -form label { -font-weight:bold; -} -input.checkbox { -position:relative; -top:2px; -left:0; -border:0; -} - -.error, -.success { -padding:4px 1.55%; -margin-bottom:18px; -} -form label.submit { -display:none; -} - -.form_settings { -clear:both; -} - -.form_settings fieldset { -margin-bottom:29px; -} -.form_settings input.remove { -margin-left:11px; -} -.form_settings .form_data li { -width:100%; -float:left; -} -.form_settings .form_data label { -float:left; -} -.form_settings .form_data textarea, -.form_settings .form_data select, -.form_settings .form_data input { -margin-left:11px; -float:left; -} -.form_settings .form_data input.submit { -margin-left:0; -} - -.form_settings label { -margin-top:2px; -width:152px; -} - -.form_actions label { -display:none; -} -.form_guide { -font-style:italic; -} - -.form_settings #settings_autosubscribe label { -display:inline; -font-weight:bold; -} - -#form_settings_profile legend, -#form_login legend, -#form_register legend, -#form_password legend, -#form_settings_avatar legend, -#newgroup legend, -#editgroup legend, -#form_tag_user legend, -#form_remote_subscribe legend, -#form_openid_login legend, -#form_search legend, -#form_invite legend, -#form_notice_delete legend, -#form_password_recover legend, -#form_password_change legend { -display:none; -} - -.form_settings .form_data p.form_guide { -clear:both; -margin-left:163px; -margin-bottom:0; -} - -.form_settings p { -margin-bottom:11px; -} - -.form_settings input.checkbox { -margin-top:3px; -margin-left:0; -} -.form_settings label.checkbox { -font-weight:normal; -margin-top:0; -margin-right:0; -margin-left:11px; -float:left; -width:90%; -} - - -#form_login p.form_guide, -#form_register #settings_rememberme p.form_guide, -#form_openid_login #settings_rememberme p.form_guide, -#settings_twitter_remove p.form_guide, -#form_search ul.form_data #q { -margin-left:0; -} - -.form_settings .form_note { -padding:0 7px; -} - - -.form_settings input.form_action-primary { -padding:0; -} -.form_settings input.form_action-secondary { -margin-left:29px; -} - -#form_search .submit { -margin-left:11px; -} - -address { -float:left; -margin-bottom:18px; -margin-left:18px; -} -address.vcard img.logo { -margin-right:0; -} -address .fn { -font-weight:bold; -} -address img + .fn { -display:none; -} - -#header { -width:100%; -position:relative; -float:left; -padding-top:18px; -margin-bottom:29px; -} - -#site_nav_global_primary { -float:right; -margin-right:18px; -margin-bottom:11px; -margin-left:18px; -} -#site_nav_global_primary ul li { -display:inline; -margin-left:11px; -} - -.system_notice dt { -font-weight:bold; -text-transform:uppercase; -display:none; -} - -#site_notice { -float:left; -clear:right; -margin-top:7px; -margin-right:18px; -width:31%; -} -#page_notice { -clear:both; -margin-bottom:18px; -} - - -#anon_notice { -float:right; -clear:right; -width:41.2%; -padding:1.1%; -border-width:2px; -border-style:dashed; -line-height:1.5; -font-size:1.1em; -font-weight:bold; --moz-transform:skewX(-30deg) scale(0.85); --webkit-transform:skewX(-30deg) scale(0.85); -} - - -#footer { -float:left; -width:64%; -padding:18px; -} - -#site_nav_local_views { -width:100%; -float:right; -} -#site_nav_local_views dt { -display:none; -} -#site_nav_local_views li { -float:right; -margin-left:11px; -list-style-type:none; -} -#site_nav_local_views a { -float:left; -text-decoration:none; -padding:4px 11px; -border-width:1px; -border-style:dashed; -border-bottom:0; -text-shadow: 2px 2px 2px #ddd; -font-weight:bold; -} -#site_nav_local_views .nav { -float:left; -width:100%; -} - -#site_nav_global_primary dt, -#site_nav_global_secondary dt { -display:none; -} - -#site_nav_global_secondary { -margin-bottom:11px; -} - -#site_nav_global_secondary ul li { -display:inline; -margin-right:11px; -} -#export_data li a { -padding-left:20px; -} -#export_data li a.foaf { -padding-left:30px; -} -#export_data li a.export_vcard { -padding-left:28px; -} - -#export_data ul { -display:inline; -} -#export_data li { -list-style-type:none; -display:inline; -margin-left:11px; -} -#export_data li:first-child { -margin-left:0; -} - -#licenses { -font-size:0.9em; -} - -#licenses dt { -font-weight:bold; -display:none; -} -#licenses dd { -margin-bottom:11px; -line-height:1.5; -} - -#site_content_license_cc { -margin-bottom:0; -} -#site_content_license_cc img { -display:inline; -vertical-align:top; -margin-right:4px; -} - -#wrap { -margin:0 auto; -width:100%; -min-width:760px; -max-width:1003px; -overflow:hidden; -} - -#core { -position:relative; -width:100%; -float:left; -margin-bottom:1em; -} - -#content { -width:60.009%; -min-height:259px; -padding:1.795%; -float:right; -border-style:dashed; -border-width:1px; -} -#shownotice #content { -min-height:0; -} - -#content_inner { -position:relative; -width:100%; -float:left; -} - -#aside_primary { -width:27.917%; -min-height:259px; -float:right; -margin-right:4.385%; -padding:1.795%; -border-width:1px; -border-style:dashed; -} - -#form_notice { -width:43.664%; -float:right; -position:relative; -line-height:1; -} -#form_notice fieldset { -border:0; -padding:0; -position:relative; -} -#form_notice legend { -display:none; -} -#form_notice textarea { -float:left; -width:80.789%; -height:67px; -line-height:1.5; -padding:7px 7px 16px 7px; -} -#form_notice label { -display:block; -float:left; -font-size:1.3em; -margin-bottom:7px; -} -#form_notice #notice_submit label { -display:none; -} -.form_notice .count { -position:absolute; -top:99px; -right:98px; -z-index:9; -} -.form_notice .count dt { -font-weight:bold; -display:none; -} -.form_notice .count { -font-weight:bold; -line-height:1.15; -padding:1px 2px; -} -#form_notice .submit { -width:14%; -height:47px; -padding:0; -position:absolute; -bottom:0; -right:0; -} -#form_notice label[for=to] { -margin-top:7px; -} -#form_notice select[id=to] { -margin-bottom:7px; -margin-left:18px; -float:left; -} -#form_notice .error { -float:left; -clear:both; -width:96.9%; -margin-bottom:0; -line-height:1.618; -} - -/* entity_profile */ -.entity_profile { -position:relative; -width:67.702%; -min-height:123px; -float:left; -margin-bottom:18px; -margin-left:0; -overflow:hidden; -} -.entity_profile dt, -#entity_statistics dt { -font-weight:bold; -} -.entity_profile dd { -display:inline; -} - -.entity_profile .entity_depiction { -float:left; -width:96px; -margin-right:18px; -margin-bottom:18px; -} - -.entity_profile .entity_fn, -.entity_profile .entity_nickname, -.entity_profile .entity_location, -.entity_profile .entity_url, -.entity_profile .entity_note, -.entity_profile .entity_tags { -margin-left:113px; -margin-bottom:4px; -} - -.entity_profile .entity_fn, -.entity_profile .entity_nickname { -margin-left:11px; -display:inline; -font-weight:bold; -} -.entity_profile .entity_nickname { -margin-left:0; -} - -.entity_profile .entity_fn dd:before { -content: "("; -font-weight:normal; -} -.entity_profile .entity_fn dd:after { -content: ")"; -font-weight:normal; -} - -.entity_profile dt { -display:none; -} -.entity_profile h2 { -display:none; -} -/* entity_profile */ - - -/*entity_actions*/ -.entity_actions { -float:right; -margin-left:4.35%; -max-width:25%; -} -.entity_actions h2 { -display:none; -} -.entity_actions ul { -list-style-type:none; -} -.entity_actions li { -margin-bottom:4px; -} -.entity_actions li:first-child { -border-top:0; -} -.entity_actions fieldset { -border:0; -padding:0; -} -.entity_actions legend { -display:none; -} - -.entity_actions input.submit { -display:block; -text-align:left; -width:100%; -} -.entity_actions a, -.entity_nudge p, -.entity_remote_subscribe { -text-decoration:none; -font-weight:bold; -display:block; -} - -.form_user_block input.submit, -.form_user_unblock input.submit, -.entity_send-a-message a, -.entity_edit a, -.form_user_nudge input.submit, -.entity_nudge p { -border:0; -padding-left:20px; -} - -.entity_edit a, -.entity_send-a-message a, -.entity_nudge p { -padding:4px 4px 4px 23px; -} - -.entity_remote_subscribe { -padding:4px; -border-width:2px; -border-style:solid; -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} -.entity_actions .accept { -margin-bottom:18px; -} - -.entity_tags ul { -list-style-type:none; -display:inline; -} -.entity_tags li { -display:inline; -margin-right:4px; -} - -.aside .section { -margin-bottom:29px; -clear:both; -float:left; -width:100%; -} -.aside .section h2 { -text-transform:uppercase; -font-size:1em; -} - -#entity_statistics dt, -#entity_statistics dd { -display:inline; -} -#entity_statistics dt:after { -content: ":"; -} - -.section ul.entities { -float:left; -width:100%; -} -.section .entities li { -list-style-type:none; -float:left; -margin-right:7px; -margin-bottom:7px; -} -.section .entities li .photo { -margin-right:0; -margin-bottom:0; -} -.section .entities li .fn { -display:none; -} - -.aside .section p, -.aside .section .more { -clear:both; -} - -.profile .entity_profile { -margin-bottom:0; -min-height:60px; -} - - -.profile .form_group_join legend, -.profile .form_group_leave legend, -.profile .form_user_subscribe legend, -.profile .form_user_unsubscribe legend { -display:none; -} - -.profiles { -list-style-type:none; -} -.profile .entity_profile .entity_location { -width:auto; -clear:none; -margin-left:11px; -} -.profile .entity_profile dl, -.profile .entity_profile dd { -display:inline; -float:none; -} -.profile .entity_profile .entity_note, -.profile .entity_profile .entity_url, -.profile .entity_profile .entity_tags, -.profile .entity_profile .form_subscription_edit { -margin-left:59px; -clear:none; -display:block; -width:auto; -} -.profile .entity_profile .entity_tags dt { -display:inline; -margin-right:11px; -} - - -.profile .entity_profile .form_subscription_edit label { -font-weight:normal; -margin-right:11px; -} - - -/* NOTICE */ -.notice, -.profile, -.application { -position:relative; -padding-top:11px; -padding-bottom:11px; -clear:both; -float:left; -width:100%; -border-top-width:1px; -border-top-style:dotted; -} -.notices li { -list-style-type:none; -} -.notices .notices { -margin-top:7px; -margin-left:2%; -width:98%; -float:left; -} -.mark-top { -border-top-width:1px; -border-top-style:solid; -} - - -/* NOTICES */ -#notices_primary { -float:left; -width:100%; -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -} -#notices_primary h2 { -display:none; -} -.notice-data a span { -display:block; -padding-left:28px; -} - -.notice .author { -margin-right:11px; -} - -.fn { -overflow:hidden; -} - -.notice .author .fn { -font-weight:bold; -} - -.vcard .photo { -display:inline; -margin-right:11px; -float:left; -} -#shownotice .vcard .photo { -margin-bottom:4px; -} -.vcard .url { -text-decoration:none; -} -.vcard .url:hover { -text-decoration:underline; -} - -.notice .entry-title { -display:inline; -width:100%; -overflow:hidden; -} -#shownotice .notice .entry-title { -font-size:2.2em; -} - -.notice p.entry-content { -display:inline; -} - -#content .notice p.entry-content a:visited { -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} -.notice p.entry-content .vcard a { -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} - -.notice div.entry-content { -float:left; -font-size:0.95em; -width:65%; -} - -.notice .notice-options a, -.notice .notice-options input { -float:left; -font-size:1.025em; -} - -.notice div.entry-content dl, -.notice div.entry-content dt, -.notice div.entry-content dd { -display:inline; -} - -.notice div.entry-content .timestamp dt, -.notice div.entry-content .response dt { -display:none; -} -.notice div.entry-content .timestamp a { -display:inline-block; -} -.notice div.entry-content .device dt { -text-transform:lowercase; -} - - -.notice .notice-options a, -.notice .notice-options input { -float:left; -font-size:1.025em; -} - -.notice div.entry-content .timestamp { -display:inline-block; -} - -.entry-content .repeat { -display:block; -} -.entry-content .repeat .photo { -float:none; -margin-right:1px; -position:relative; -top:4px; -left:0; -} - -.dialogbox { -position:absolute; -top:-1px; -right:-1px; -z-index:9; -float:none; -padding:11px; -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -border-style:solid; -border-width:1px; -} - -.dialogbox legend { -display:block !important; -margin-right:18px; -margin-bottom:18px; -} - -.dialogbox button.close { -position:absolute; -right:3px; -top:3px; -} - -.dialogbox .form_guide { -font-weight:normal; -padding:0; -} - -.dialogbox .submit_dialogbox { -font-weight:bold; -text-indent:0; -min-width:46px; -} -.dialogbox input { -padding-left:4px; -} -.dialogbox fieldset { -margin-bottom:0; -} - -#wrap form.processing input.submit, -.entity_actions a.processing, -.dialogbox.processing .submit_dialogbox { -cursor:wait; -outline:none; -text-indent:-9999px; -} - -.form_repeat.dialogbox { -top:-4px; -right:29px; -min-width:199px; -} - -.notice-options { -position:relative; -font-size:0.95em; -width:113px; -float:right; -margin-top:3px; -margin-right:4px; -} - -.notice-options a { -float:left; -} -.notice-options .notice_reply, -.notice-options .form_repeat, -.notice-options .form_favor, -.notice-options .form_disfavor, -.notice-options .repeated { -float:left; -margin-left:14.2%; -} -.notice-options .form_favor, -.notice-options .form_disfavor { -margin-left:0; -} -.notice-options input, -.notice-options a, -.notice-options .repeated { -text-indent:-9999px; -outline:none; -} -.notice-options input.submit { -display:block; -border:0; -} -.notice-options .notice_reply, -.notice-options .notice_delete { -text-decoration:none; -} -.notice .notice-options .notice_delete { -float:right; -} -.notice-options form input.submit { -width:16px; -height:16px; -padding:0; -border-radius:0; --moz-border-radius:0; --webkit-border-radius:0; -} -.notice-options .form_repeat legend, -.notice-options .form_favor legend, -.notice-options .form_disfavor legend { -display:none; -} -.notice-options .form_repeat fieldset, -.notice-options .form_favor fieldset, -.notice-options .form_disfavor fieldset { -border:0; -padding:0; -} -.notice-options a, -.notice-options .repeated { -width:16px; -height:16px; -} - - -.notice .attachment { -position:relative; -padding-left:16px; -} -.notice .attachment.more { -text-indent:-9999px; -width:16px; -height:16px; -display:inline-block; -overflow:hidden; -vertical-align:middle; -margin-left:4px; -} - -#attachments .attachment, -.notice .attachment.more { -padding-left:0; -} -.notice .attachment img { -position:absolute; -top:18px; -left:0; -z-index:99; -} -#shownotice .notice .attachment img { -position:static; -} - -#attachments { -clear:both; -float:left; -width:100%; -margin-top:18px; -} -#attachments dt { -font-weight:bold; -font-size:1.3em; -margin-bottom:4px; -} - -#attachments ol li { -margin-bottom:18px; -list-style-type:decimal; -float:left; -clear:both; -} - -#jOverlayContent, -#jOverlayContent #content, -#jOverlayContent #content_inner { -width: auto !important; -margin-bottom:0; -} -#jOverlayContent #content { -padding:11px; -min-height:auto; -} -#jOverlayContent .entry-title { -display:block; -margin-bottom:11px; -} -#jOverlayContent button { -position:absolute; -top:0; -right:0; -} -#jOverlayContent h1 { -max-width:425px; -} -#jOverlayContent #content { -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -} -#jOverlayLoading { -top:5%; -left:40%; -} -#attachment_view img { -max-width:480px; -max-height:480px; -} -#attachment_view #oembed_info { -margin-top:11px; -} -#attachment_view #oembed_info dt, -#attachment_view #oembed_info dd { -float:left; -} -#attachment_view #oembed_info dt { -clear:left; -margin-right:11px; -font-weight:bold; -} -#attachment_view #oembed_info dt:after { -content: ":"; -} - -#usergroups #new_group { -float: left; -margin-right: 2em; -} -#new_group, #group_search { -margin-bottom:18px; -} -#new_group a { -padding-left:20px; -} - - -#filter_tags { -margin-bottom:11px; -float:left; -} -#filter_tags dt { -display:none; -} -#filter_tags ul { -list-style-type:none; -} -#filter_tags ul li { -float:left; -margin-left:7px; -padding-left:7px; -border-left-width:1px; -border-left-style:solid; -} -#filter_tags ul li.child_1 { -margin-left:0; -border-left:0; -padding-left:0; -} -#filter_tags ul li#filter_tags_all a { -font-weight:bold; -margin-top:7px; -float:left; -} - -#filter_tags ul li#filter_tags_item label { -margin-right:7px; -} -#filter_tags ul li#filter_tags_item label, -#filter_tags ul li#filter_tags_item select { -display:inline; -} -#filter_tags ul li#filter_tags_item p { -float:left; -margin-left:38px; -} -#filter_tags ul li#filter_tags_item input { -position:relative; -top:3px; -left:3px; -} - - - -.pagination { -float:left; -clear:both; -width:100%; -margin-top:18px; -} - -.pagination dt { -font-weight:bold; -display:none; -} - -.pagination .nav { -float:left; -width:100%; -list-style-type:none; -} - -.pagination .nav_prev { -float:left; -} -.pagination .nav_next { -float:right; -} - -.pagination a { -display:block; -text-decoration:none; -font-weight:bold; -padding:7px; -border-width:1px; -border-style:solid; --moz-border-radius:7px; --webkit-border-radius:7px; -border-radius:7px; -} - -.pagination .nav_prev a { -padding-left:30px; -} -.pagination .nav_next a { -padding-right:30px; -} -/* END: NOTICE */ - - -.hentry .entry-content p { -margin-bottom:18px; -} -.system_notice ul, -.instructions ul, -.hentry entry-content ol, -.hentry .entry-content ul { -list-style-position:inside; -} -.hentry .entry-content li { -margin-bottom:18px; -} -.hentry .entry-content li li { -margin-left:18px; -} - - - - -/* TOP_POSTERS */ -.section tbody td { -padding-right:11px; -padding-bottom:11px; -} -.section .vcard .photo { -margin-right:7px; -margin-bottom:0; -} - -.section .notice { -padding-top:7px; -padding-bottom:7px; -border-top:0; -} - -.section .notice:first-child { -padding-top:0; -} - -.section .notice .author { -margin-right:0; -} -.section .notice .author .fn { -display:none; -} - - -/* tagcloud */ -.tag-cloud { -list-style-type:none; -text-align:center; -} -.aside .tag-cloud { -font-size:0.8em; -} -.tag-cloud li { -display:inline; -margin-right:7px; -line-height:1.25; -} -.aside .tag-cloud li { -line-height:1.5; -} -.tag-cloud li a { -text-decoration:none; -} -#tagcloud.section dt { -text-transform:uppercase; -font-weight:bold; -} -.tag-cloud-1 { -font-size:1em; -} -.tag-cloud-2 { -font-size:1.25em; -} -.tag-cloud-3 { -font-size:1.75em; -} -.tag-cloud-4 { -font-size:2em; -} -.tag-cloud-5 { -font-size:2.25em; -} -.tag-cloud-6 { -font-size:2.75em; -} -.tag-cloud-7 { -font-size:3.25em; -} - -#publictagcloud #tagcloud.section dt { -display:none; -} - -#form_settings_photo .form_data { -clear:both; -} - -#form_settings_avatar li { -width:auto; -} -#form_settings_avatar input { -margin-left:0; -} -#avatar_original, -#avatar_preview { -float:left; -} -#avatar_preview { -margin-left:29px; -} -#avatar_preview_view { -height:96px; -width:96px; -margin-bottom:18px; -overflow:hidden; -} - -#settings_attach, -#form_settings_avatar .form_actions { -clear:both; -} - -#form_settings_avatar .form_actions { -margin-bottom:0; -} - -#form_settings_design #settings_design_color .form_data, -#form_settings_design #color-picker { -float:left; -} -#form_settings_design #settings_design_color .form_data { -width:400px; -margin-right:28px; -} - -.instructions ul { -list-style-position:inside; -} -.instructions p, -.instructions ul { -margin-bottom:18px; -} -.help dt { -display:none; -} -.guide { -clear:both; -} - -}/*end of @media screen, projection, tv*/ - - -@media print { -a:after { background-color:#FFFFFF; } -a:not([href^="#"]):after { content:" <"attr(href)"> "; } -img { border:none; } -p { orphans: 2; widows: 1; } - -#site_nav_global_primary, -#site_nav_local_views, -#form_notice, -.pagination, -#site_nav_global_secondary, -.entity_actions, -.notice-options, -#aside_primary, -.form_subscription_edit .submit { -display:none; -} -.timestamp dt, .timestamp dd, -.device dt, .device dd { -display:inline; -} -.profiles li, -.notices li { -margin-bottom:18px; -} - -}/*end of @media print*/ diff --git a/theme/h4ck3r/css/display.css b/theme/h4ck3r/css/display.css deleted file mode 100644 index 45d958bbea..0000000000 --- a/theme/h4ck3r/css/display.css +++ /dev/null @@ -1,244 +0,0 @@ -/** theme: h4ck3r - * - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2009 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ - -@import url(base.css) screen, projection, tv, print; - -@media screen, projection, tv { -html, -body, -a:active { -background-color:#000; -} - -body { -background-image:url(../images/illustrations/illu_h4x0r1ng.gif); -font-family: monospace; -font-size:1em; -color:#647819; -} -address { -margin-right:7.18%; -} - -input, textarea, select, option { -font-family: monospace; -} -input, textarea, select, -.entity_remote_subscribe { -border-color:#aaa; -background-color:#000; -color:#ccc; -} -#filter_tags ul li { -border-color:#ddd; -} - -.form_settings input.form_action-primary { -background:none; -} - -input.submit, -#form_notice.warning .count, -.form_settings .form_note, -.entity_remote_subscribe { -background-color:rgba(0, 255, 0, 0.5); -} - -input:focus, textarea:focus, select:focus, -#form_notice.warning textarea { -border-color:#9BB43E; -} -input.submit, -.entity_remote_subscribe { -color:#fff; -} - -a, -div.notice-options input, -.form_user_block input.submit, -.form_user_unblock input.submit, -.entity_send-a-message a, -.form_user_nudge input.submit, -.entity_nudge p, -.form_settings input.form_action-primary { -color:#0f0; -} - -.notice, -.profile { -border-top-color:#333; -} -.section .profile { -border-top-color:#87B4C8; -} - -#aside_primary { -background-color:rgba(0,128,0,0.3); -} - -.form_notice .count { -color:#0f0; -} -#form_notice.warning .count { -color:#000; -} -#form_notice.processing .submit { -background:#ccc url(../../base/images/icons/icon_processing.gif) no-repeat 47% 47%; -cursor:wait; -text-indent:-9999px; -} - -#content, -#site_nav_local_views a, -#aside_primary { -border-color:#50964D; -} -#content, -#site_nav_local_views .current a { -background-color:rgba(0, 0, 0, 0.698); -} - -#site_nav_local_views a { -background-color:rgba(0, 200, 0, 0.3); -} -#site_nav_local_views a:hover { -background-color:rgba(255, 255, 255, 0.4); -} - -.error { -background-color:#F7E8E8; -} -.success { -background-color:#EFF3DC; -} - -#anon_notice { -color:#ccc; -border-color:#50964D; -} - -#showstream #anon_notice { -} - -#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.png); -} -#export_data li a.atom { -background-image:url(../../base/images/icons/icon_atom.png); -} -#export_data li a.foaf { -background-image:url(../../base/images/icons/icon_foaf.gif); -} - -.entity_edit a, -.entity_send-a-message a, -.form_user_nudge input.submit, -.form_user_block input.submit, -.form_user_unblock input.submit, -.entity_nudge p { -background-position: 0 40%; -background-repeat: no-repeat; -background-color:transparent; -} -.form_group_join input.submit, -.form_group_leave input.submit -.form_user_subscribe input.submit, -.form_user_unsubscribe input.submit { -background-color:#9BB43E; -color:#ccc; -} -.form_user_unsubscribe input.submit, -.form_group_leave input.submit, -.form_user_authorization input.reject { -background-color:#87B4C8; -} - -.entity_edit a { -background-image:url(../../base/images/icons/twotone/green/edit.gif); -} -.entity_send-a-message a { -background-image:url(../../base/images/icons/twotone/green/quote.gif); -} -.entity_nudge p, -.form_user_nudge input.submit { -background-image:url(../../base/images/icons/twotone/green/mail.gif); -} -.form_user_block input.submit, -.form_user_unblock input.submit { -background-image:url(../../base/images/icons/twotone/green/shield.gif); -} - -/* NOTICES */ -.notices li.over { -background-color:#fcfcfc; -} - -.notice-options .notice_reply a, -.notice-options form input.submit { -background-color:transparent; -} -.notice-options .notice_reply a { -background:transparent url(../../base/images/icons/twotone/green/reply.gif) no-repeat 0 45%; -} -.notice-options form.form_favor input.submit { -background:transparent url(../../base/images/icons/twotone/green/favourite.gif) no-repeat 0 45%; -} -.notice-options form.form_disfavor input.submit { -background:transparent url(../../base/images/icons/twotone/green/disfavourite.gif) no-repeat 0 45%; -} -.notice-options .notice_delete a { -background:transparent url(../../base/images/icons/twotone/green/trash.gif) no-repeat 0 45%; -} - -.notices .attachment.more, -.notices div.entry-content, -.notices div.notice-options { -opacity:0.4; -} -.notices li:hover .attachment.more, -.notices li:hover div.entry-content, -.notices li:hover div.notice-options { -opacity:1; -} -.opaque { -opacity:1 !important; -} -div.entry-content { -color:#ccc; -} -div.notice-options a, -div.notice-options input { -font-family:sans-serif; -} - -/*END: NOTICES */ - -#new_group a { -background:transparent url(../../base/images/icons/twotone/green/news.gif) no-repeat 0 45%; -} - -.pagination .nav_prev a, -.pagination .nav_next a { -background-repeat:no-repeat; -border-color:#000; -} -.pagination .nav_prev a { -background-image:url(../../base/images/icons/twotone/green/arrow-left.gif); -background-position:10% 45%; -} -.pagination .nav_next a { -background-image:url(../../base/images/icons/twotone/green/arrow-right.gif); -background-position:90% 45%; -} - -}/*end of @media screen, projection, tv*/ diff --git a/theme/h4ck3r/css/ie.css b/theme/h4ck3r/css/ie.css deleted file mode 100644 index 46d14c2021..0000000000 --- a/theme/h4ck3r/css/ie.css +++ /dev/null @@ -1,16 +0,0 @@ -/** - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2009-2010 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ -/* IE specific styles */ - -.notice-options input.submit { -color:#fff; -} - -#site_nav_local_views a { -background-color:#D0DFE7; -} diff --git a/theme/h4ck3r/default-avatar-mini.png b/theme/h4ck3r/default-avatar-mini.png deleted file mode 100644 index 38b8692b4a..0000000000 Binary files a/theme/h4ck3r/default-avatar-mini.png and /dev/null differ diff --git a/theme/h4ck3r/default-avatar-profile.png b/theme/h4ck3r/default-avatar-profile.png deleted file mode 100644 index f8357d4fc2..0000000000 Binary files a/theme/h4ck3r/default-avatar-profile.png and /dev/null differ diff --git a/theme/h4ck3r/default-avatar-stream.png b/theme/h4ck3r/default-avatar-stream.png deleted file mode 100644 index 6b63baa70f..0000000000 Binary files a/theme/h4ck3r/default-avatar-stream.png and /dev/null differ diff --git a/theme/h4ck3r/images/illustrations/illu_h4x0r1ng.gif b/theme/h4ck3r/images/illustrations/illu_h4x0r1ng.gif deleted file mode 100644 index c233af3912..0000000000 Binary files a/theme/h4ck3r/images/illustrations/illu_h4x0r1ng.gif and /dev/null differ diff --git a/theme/h4ck3r/logo.png b/theme/h4ck3r/logo.png deleted file mode 100644 index cf1839194a..0000000000 Binary files a/theme/h4ck3r/logo.png and /dev/null differ diff --git a/theme/identica/css/display.css b/theme/identica/css/display.css deleted file mode 100644 index fe7ffa9f7d..0000000000 --- a/theme/identica/css/display.css +++ /dev/null @@ -1,517 +0,0 @@ -/** theme: identica - * - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2009-2010 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ - -@media screen, projection, tv { -body, -a:active { -background-color:#F0F2F5; -} -body { -font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; -font-size:1em; -} -address { -margin-right:7.2%; -} -input, textarea, select { -border-width:2px; -border-style: solid; -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} -input, textarea, select, option { -font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; -} -input, textarea, select, -.entity_actions .dialogbox input, -.mark-top { -border-color:#AAAAAA; -} - -.form_settings fieldset fieldset { -background:rgba(240, 240, 240, 0.2); -box-shadow:3px 3px 7px rgba(194, 194, 194, 0.3); --moz-box-shadow:3px 3px 7px rgba(194, 194, 194, 0.3); --webkit-box-shadow:3px 3px 7px rgba(194, 194, 194, 0.3); -} - -#filter_tags ul li, -.entity_send-a-message .form_notice, -.pagination .nav_prev a, -.pagination .nav_next a, -.form_settings fieldset fieldset, -.entity_moderation:hover ul, -.entity_role:hover ul, -.dialogbox { -border-color:#DDDDDD; -} - -.form_settings input.form_action-primary { -background:none; -} - -.form_notice.warning .count, -.form_settings .form_note { -background-color:#9BB43E; -} -input.submit, -.form_notice.warning .count, -.form_settings .form_note, -.entity_actions a, -.entity_actions input, -.entity_moderation p, -.entity_role p, -button { -box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); -} -.entity_actions a, -.entity_actions input, -.entity_actions p { -border-color:transparent; -background-color:transparent; -} -input:focus, textarea:focus, select:focus, -.form_notice.warning textarea, -.form_notice.warning .count, -.form_settings .form_note, -.entity_actions .dialogbox .form_data input:focus { -border-color:#9BB43E; -} -input.submit { -color:#FFFFFF; -} -.entity_actions input.submit { -border-color:transparent; -text-shadow:none; -} - -.dialogbox .submit_dialogbox, -input.submit, -.form_notice input.submit { -background:#AAAAAA url(../../base/images/illustrations/illu_pattern-01.png) 0 0 repeat-x; -text-shadow:0 1px 0 #FFFFFF; -color:#000000; -border-color:#AAAAAA; -border-top-color:#CCCCCC; -border-left-color:#CCCCCC; -} -.dialogbox .submit_dialogbox:hover, -input.submit:hover { -background-position:0 -5px; -} -.dialogbox .submit_dialogbox:focus, -input.submit:focus { -background-position:0 -15px; -box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); --moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); --webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); -text-shadow:none; -} - -.form_notice label.notice_data-geo { -background-position:0 -1780px; -} -.form_notice label.notice_data-geo.checked { -background-position:0 -1846px; -} - -a, -.form_settings input.form_action-primary, -.notice-options input, -.entity_actions a, -.entity_actions input, -.entity_moderation p, -.entity_role p { -color:#002FA7; -} - -.notice, -.profile, -.application, -#content tbody tr { -border-top-color:#CEE1E9; -} - -#aside_primary { -background-color:#CEE1E9; -} - -.form_notice .count { -color:#333333; -} -.form_notice.warning .count, -.dialogbox, -.entity_actions .dialogbox input { -color:#000000; -} -.form_notice label.notice_data-attach { -background-position:0 -328px; -} -.form_notice input.notice_data-attach { -opacity:0; -} - -.form_notice label.notice_data-attach, -#export_data li a.rss, -#export_data li a.atom, -#export_data li a.foaf, -.entity_edit a, -.entity_send-a-message a, -.entity_nudge p, -.form_user_nudge input.submit, -.form_user_block input.submit, -.form_user_unblock input.submit, -.form_group_block input.submit, -.form_group_unblock input.submit, -.form_make_admin input.submit, -.notice .attachment, -.notice-options .notice_reply, -.notice-options form.form_favor input.submit, -.notice-options form.form_disfavor input.submit, -.notice-options .notice_delete, -.notice-options form.form_repeat input.submit, -#new_group a, -.pagination .nav_prev a, -.pagination .nav_next a, -button.close, -.form_group_leave input.submit, -.form_user_unsubscribe input.submit, -.form_group_join input.submit, -.form_user_subscribe input.submit, -.form_remote_authorize input.submit, -.entity_subscribe a, -.entity_moderation p, -.entity_sandbox input.submit, -.entity_silence input.submit, -.entity_delete input.submit, -.entity_role p, -.entity_role_administrator input.submit, -.entity_role_moderator input.submit, -.notice-options .repeated, -.form_notice label.notice_data-geo, -button.minimize, -.form_reset_key input.submit, -.entity_clear input.submit, -.entity_flag input.submit, -.entity_flag p, -.entity_subscribe input.submit, -#realtime_play, -#realtime_pause, -#realtime_popup { -background-image:url(../../base/images/icons/icons-01.gif); -background-repeat:no-repeat; -background-color:transparent; -} - -#wrap form.processing input.submit, -#core a.processing, -.dialogbox.processing .submit_dialogbox { -background:#FFFFFF url(../../base/images/icons/icon_processing.gif) no-repeat 47% 47%; -} -.notice-options .form_repeat.processing { -background-image:none; -} - -#content { -box-shadow:5px 7px 7px rgba(194, 194, 194, 0.3); --moz-box-shadow:5px 7px 7px rgba(194, 194, 194, 0.3); --webkit-box-shadow:5px 7px 7px rgba(194, 194, 194, 0.3); -} -#content, -#site_nav_local_views a, -#aside_primary { -border-color:transparent; -} -#content, -#site_nav_local_views .current a, -.entity_send-a-message .form_notice, -.entity_moderation:hover ul, -.entity_role:hover ul, -.dialogbox { -background-color:#FFFFFF; -} - -#site_nav_local_views li.current { -box-shadow:3px 7px 5px rgba(194, 194, 194, 0.5); --moz-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.5); --webkit-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.5); -} -#site_nav_local_views a { -background-color:rgba(194, 194, 194, 0.5); -} -#site_nav_local_views a:hover { -background-color:rgba(255, 255, 255, 0.7); -} -#site_nav_local_views .current a { -text-shadow: rgba(194,194,194,0.5) 1px 1px 1px; -} -.processing { -background-image:url(../../base/images/icons/icon_processing.gif); -background-repeat:no-repeat; -background-position:47% 47%; -} - -.error { -background-color:#F7E8E8; -} -.success { -background-color:#EFF3DC; -} - -button.close { -background-position:0 -1120px; -} -button.minimize { -background-position:0 -1912px; -} - -#anon_notice { -background-color:#87B4C8; -color:#FFFFFF; -border-color:#FFFFFF; -} - -#showstream #anon_notice { -background-color:#9BB43E; -} - -#export_data li a { -background-repeat:no-repeat; -} -#export_data li a.rss { -background-position:0 -130px; -} -#export_data li a.atom { -background-position:0 -64px; -} -#export_data li a.foaf { -background-position:0 1px; -} - -.form_group_join input.submit, -.form_group_leave input.submit, -.form_user_subscribe input.submit, -.form_user_unsubscribe input.submit, -.form_remote_authorize input.submit, -.entity_subscribe a { -background-color:#AAAAAA; -color:#FFFFFF; -} -.form_group_leave input.submit, -.form_user_unsubscribe input.submit { -background-position:5px -1246px; -} -.form_group_join input.submit, -.form_user_subscribe input.submit, -.form_remote_authorize input.submit, -.entity_subscribe a { -background-position:5px -1181px; -} - -.entity_edit a { -background-position: 5px -719px; -} -.entity_send-a-message a { -background-position: 5px -852px; -} -.entity_send-a-message .form_notice, -.entity_moderation:hover ul, -.entity_role:hover ul, -.dialogbox { -box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); --moz-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); --webkit-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); -} - -.entity_nudge p, -.form_user_nudge input.submit { -background-position: 5px -785px; -} -.form_user_block input.submit, -.form_user_unblock input.submit, -.form_group_block input.submit, -.form_group_unblock input.submit { -background-position: 5px -918px; -} -.form_make_admin input.submit { -background-position: 5px -983px; -} -.entity_moderation p { -background-position: 5px -1313px; -} -.entity_sandbox input.submit { -background-position: 5px -1380px; -} -.entity_silence input.submit { -background-position: 5px -1445px; -} -.entity_delete input.submit { -background-position: 5px -1511px; -} -.entity_sandbox .form_user_unsandbox input.submit { -background-position: 5px -2568px; -} -.entity_silence .form_user_unsilence input.submit { -background-position: 5px -2633px; -} -.entity_role p { -background-position: 5px -2436px; -} -.entity_role_administrator .form_user_grantrole input.submit { -background-position: 5px -983px; -} -.entity_role_moderator .form_user_grantrole input.submit { -background-position: 5px -1313px; -} -.entity_role_administrator .form_user_revokerole input.submit { -background-position: 5px -2699px; -} -.entity_role_moderator .form_user_revokerole input.submit { -background-position: 5px -2501px; -} -.form_reset_key input.submit { -background-position: 5px -1973px; -} -.entity_clear input.submit { -background-position: 5px -2039px; -} -.entity_flag input.submit, -.entity_flag p { -background-position: 5px -2105px; -} -.entity_subscribe input.accept { -background-position: 5px -2171px; -} -.entity_subscribe input.reject { -background-position: 5px -2237px; -} -#realtime_play { -background-position: 0 -2308px; -} -#realtime_pause { -background-position: 0 -2374px; -} -#realtime_popup { -background-position: 0 -1714px; -} - -/* NOTICES */ -.notice .attachment { -background-position:0 -394px; -} -.notice .attachment.more { -background-position:0 -2770px; -} -#attachments .attachment { -background:none; -} -.notice-options .notice_reply { -background-position:0 -592px; -} -.notice-options form.form_favor input.submit { -background-position:0 -460px; -} -.notice-options form.form_disfavor input.submit { -background-position:0 -526px; -} -.notice-options .notice_delete { -background-position:0 -658px; -} -.notice-options form.form_repeat input.submit { -background-position:0 -1582px; -} -.notice-options .repeated { -background-position:0 -1648px; -} - -.notices .attachment.more, -.notices div.entry-content, -.notices div.notice-options { -opacity:0.4; -} -.notices li:hover .attachment.more, -.notices li:hover div.entry-content, -.notices li:hover div.notice-options { -opacity:1; -} -.opaque { -opacity:1 !important; -} -.attachment.more, -.notice-options a, -.notice-options input { -font-family:sans-serif; -box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); -} -.attachment.more:focus { -box-shadow:none; --moz-box-shadow:none; --webkit-box-shadow:none; -outline:none; -} -#content .notices li:hover, -#content .applications li:hover, -#content tbody tr:hover { -background-color:rgba(240, 240, 240, 0.2); -} -#conversation .notices li:hover { -background-color:transparent; -} - -.notices .notices { -background-color:rgba(200, 200, 200, 0.050); -} -.notices .notices .notices { -background-color:rgba(200, 200, 200, 0.100); -} -.notices .notices .notices .notices { -background-color:rgba(200, 200, 200, 0.150); -} -.notices .notices .notices .notices .notices { -background-color:rgba(200, 200, 200, 0.300); -} -/*END: NOTICES */ - -#new_group a { -background-position:0 -1054px; -} - -.pagination .nav_prev a, -.pagination .nav_next a { -background-repeat:no-repeat; -box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); -} -.pagination .nav_prev a { -background-position:10% -187px; -} -.pagination .nav_next a { -background-position:105% -252px; -} -.pagination .nav .processing { -background-image:url(../../base/images/icons/icon_processing.gif); -box-shadow:none; --moz-box-shadow:none; --webkit-box-shadow:none; -outline:none; -} -.pagination .nav_next a.processing { -background-position:90% 47%; -} -.pagination .nav_prev a.processing { -background-position:10% 47%; -} - -}/*end of @media screen, projection, tv*/ diff --git a/theme/identica/css/ie.css b/theme/identica/css/ie.css deleted file mode 100644 index 858cf3e181..0000000000 --- a/theme/identica/css/ie.css +++ /dev/null @@ -1,27 +0,0 @@ -/** - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2009-2010 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ -/* IE specific styles */ - -.notice-options input.submit { -color:#FFFFFF; -} -#site_nav_local_views a { -background-color:#D9DADB; -} -.form_notice .count + label { -background:transparent url(../../base/images/icons/icons-01.gif) no-repeat 0 -328px; -} -.form_notice input.notice_data-attach { -filter: alpha(opacity=0); -} -.notice-options form.form_favor input.submit { -background-position:0 -460px; -} -.notice-options form.form_disfavor input.submit { -background-position:0 -526px; -} diff --git a/theme/identica/default-avatar-mini.png b/theme/identica/default-avatar-mini.png deleted file mode 100644 index 6c7808616a..0000000000 Binary files a/theme/identica/default-avatar-mini.png and /dev/null differ diff --git a/theme/identica/default-avatar-profile.png b/theme/identica/default-avatar-profile.png deleted file mode 100644 index 08ce4e48ee..0000000000 Binary files a/theme/identica/default-avatar-profile.png and /dev/null differ diff --git a/theme/identica/default-avatar-stream.png b/theme/identica/default-avatar-stream.png deleted file mode 100644 index f18994d752..0000000000 Binary files a/theme/identica/default-avatar-stream.png and /dev/null differ diff --git a/theme/identica/logo.png b/theme/identica/logo.png deleted file mode 100644 index b32c6f951c..0000000000 Binary files a/theme/identica/logo.png and /dev/null differ diff --git a/theme/identica/mobilelogo.png b/theme/identica/mobilelogo.png deleted file mode 100644 index 66bb5f6787..0000000000 Binary files a/theme/identica/mobilelogo.png and /dev/null differ diff --git a/theme/identica/theme.ini b/theme/identica/theme.ini deleted file mode 100644 index 33d0b67978..0000000000 --- a/theme/identica/theme.ini +++ /dev/null @@ -1 +0,0 @@ -include=base diff --git a/theme/mnml/css/display.css b/theme/mnml/css/display.css deleted file mode 100644 index e7bce84439..0000000000 --- a/theme/mnml/css/display.css +++ /dev/null @@ -1,2114 +0,0 @@ -/** theme: mnml - * - * @package StatusNet - * @author Michael R. Bernstein - * @copyright 2010 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://www.michaelbernstein.com/ - */ - -/*-- FONTS --*/ - -@font-face { - font-family: 'TeXGyreHerosRegular'; - src: url('../fonts/texgyreheros-regular-webfont.eot'); - src: local('☺'), url('../fonts/texgyreheros-regular-webfont.woff') format('woff'), url('../fonts/texgyreheros-regular-webfont.ttf') format('truetype'), url('../fonts/texgyreheros-regular-webfont.svg#webfonts1QuWEVy') format('svg'); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: 'TeXGyreHerosItalic'; - src: url('../fonts/texgyreheros-italic-webfont.eot'); - src: local('☺'), url('../fonts/texgyreheros-italic-webfont.woff') format('woff'), url('../fonts/texgyreheros-italic-webfont.ttf') format('truetype'), url('../fonts/texgyreheros-italic-webfont.svg#webfontonVrQ9Kn') format('svg'); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: 'TeXGyreHerosBold'; - src: url('../fonts/texgyreheros-bold-webfont.eot'); - src: local('☺'), url('../fonts/texgyreheros-bold-webfont.woff') format('woff'), url('../fonts/texgyreheros-bold-webfont.ttf') format('truetype'), url('../fonts/texgyreheros-bold-webfont.svg#webfontaJCL46uI') format('svg'); - font-weight: normal; - font-style: normal; -} - -/*-- END FONTS --*/ - - -@media screen, projection, tv { - -/* -- RESET -- */ -/* From Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html */ -html, body, div, span, applet, object, iframe, -h1, h2, h3, h4, h5, h6, p, blockquote, pre, -a, abbr, acronym, address, big, cite, code, -del, dfn, em, font, img, ins, kbd, q, s, samp, -small, strike, strong, sub, sup, tt, var, -b, u, i, center, -dl, dt, dd, ol, ul, li, -fieldset, form, label, legend, -table, caption, tbody, tfoot, thead, tr, th, td { - margin: 0; - padding: 0; - border: 0; - outline: 0; - font-size: 100%; - vertical-align: baseline; - background: transparent; -} -body { - line-height: 1; -} -ol, ul { - list-style: none; -} -blockquote, q { - quotes: none; -} -blockquote:before, blockquote:after, -q:before, q:after { - content: ''; - content: none; -} - -/* remember to define focus styles! */ -:focus { - outline: 0; -} - -/* remember to highlight inserts somehow! */ -ins { - text-decoration: none; -} -del { - text-decoration: line-through; -} - -/* tables still need 'cellspacing="0"' in the markup */ -table { - border-collapse: collapse; - border-spacing: 0; -} - -/*-- END RESET --*/ - - -/*-- TYPOGRAPHY --*/ -/* Borrowed liberally from Typogridphy 2.0 - http://csswizardry.com/typogridphy/preview/ */ - -html{ - font-size:100%; -} -body{ - font-size:62.5%; - font-family:TeXGyreHerosRegular, sans-serif; - color:#444; - background-color: #EEE; - height: 100%; -} - -#wrap{ - width:94em; - padding:3em 2em 1em 2em; - margin-top: 0; - margin-left: auto; - margin-right: auto; - margin-bottom: 0; - background-color: #fff; -} - -#header{ - width:100%; - overflow:hidden; -} -#content{ - margin-right:2em; - float:left; - width: 70em; - clear:both; - background-color: #FFF; -} - - -/*-- HEADINGS --*/ -h1,h2,h3,h4,h5,h6{ - font-family: 'TeXGyreHerosBold', sans-serif; - font-weight: normal; - color:#444; -} -h1{ /* H1 is a bit hacky but it works */ - font-size:4.3em; - line-height:1.2; - margin-bottom:0.5em; -} -h2{ - font-size:2em; - line-height:1.2em; - margin-bottom:1.2em; - margin-top:-1px; - padding-bottom:1px; -} -h3{ - font-size:1.8em; - line-height:1.3333333333333333333333333333333em; - margin-bottom:1.3333333333333333333333333333333em; -} -h4{ - font-size:1.6em; - line-height:1.5em; - margin-bottom:1.5em; -} -h5{ - font-size:1.6em; - line-height:1.5em; - margin-bottom:1.5em; -} -h6{ - font-size:1.3em; - line-height:1.8461538461538461538461538461538em; - margin-bottom:1.8461538461538461538461538461538em; -} - -/*-- END HEADINGS --*/ - -/*-- LISTS --*/ -ul,ol{ - font-size:1.6em; - line-height:1.5em; - margin-bottom:1.5em; - } - -ul{ - list-style:square; - } - -ol{ - list-style:lower-roman; - } - -ul,ol{ - padding-left:1em;margin-left:-1em;/* This makes IE display hung bullets */ - } - -ul ul,ol ol{ - clear: both; - font-size:1em; - line-height:1.5em; - margin:0 0 0 2em; -} - -dl{ - } -dl dt{ - font-family: 'TeXGyreHerosBold', sans-serif; -} -dl dd{ - margin-bottom:1.5em; -} - -/*-- END LISTS --*/ - -/* --- =LINKS --- */ -a{ - color:#C00; - font-family: 'TeXGyreHerosBold', sans-serif; -} -a:visited{ - color:#C00; -} -a:hover{ - text-decoration:none; -} - -/*-- PARAGRAPHS --*/ -p{ - font-size:1.6em; - line-height:1.5em; - margin-bottom:1.5em; -} - -p.instructions { - font-family: 'TeXGyreHerosBold', sans-serif; -} - -/*-- FORMS --*/ - -.form_notice label.notice_data-attach, -#export_data li a.rss, -#export_data li a.atom, -#export_data li a.foaf, -.entity_edit a, -.entity_send-a-message a, -.entity_nudge p, -.form_user_nudge input.submit, -.form_user_block input.submit, -.form_user_unblock input.submit, -.form_group_block input.submit, -.form_group_unblock input.submit, -.form_make_admin input.submit, -.notice .attachment, -.notice-options .notice_reply, -.notice-options form.form_favor input.submit, -.notice-options form.form_disfavor input.submit, -.notice-options .notice_delete, -.notice-options form.form_repeat input.submit, -#new_group a, -.pagination .nav_prev a, -.pagination .nav_next a, -button.close, -.form_group_leave input.submit, -.form_user_unsubscribe input.submit, -.form_group_join input.submit, -.form_user_subscribe input.submit, -.form_remote_authorize input.submit, -.entity_subscribe a, -.entity_moderation p, -.entity_sandbox input.submit, -.entity_silence input.submit, -.entity_delete input.submit, -.entity_role p, -.entity_role_administrator input.submit, -.entity_role_moderator input.submit, -.notice-options .repeated, -.form_notice label.notice_data-geo, -button.minimize, -.form_reset_key input.submit, -.entity_clear input.submit, -.entity_flag input.submit, -.entity_flag p, -.entity_subscribe input.submit, -#realtime_play, -#realtime_pause, -#realtime_popup { - background-image:url(../images/icons/icons-01.png); - background-repeat:no-repeat; - background-color:transparent; -} - -.form_notice label.notice_data-geo { - background-position:0 -1780px; -} -.form_notice label.notice_data-geo.checked { - background-position:0 -1846px; -} -.form_notice label.notice_data-attach { - background-position:0 -328px; -} -button.close { - background-position:0 -1120px; -} -button.minimize { - background-position:0 -1912px; -} -#export_data li a.rss { - background-position:0 -125px; -} -#export_data li a.atom { - background-position:0 -59px; -} -#export_data li a.foaf { - background-position:0 1px; -} -.form_group_leave input.submit, -.form_user_unsubscribe input.submit { - background-position:5px -1246px; -} -.form_group_join input.submit, -.form_user_subscribe input.submit, -.form_remote_authorize input.submit, -.entity_subscribe a { - background-position:5px -1181px; -} - -.entity_edit a { - background-position: 5px -719px; -} -.entity_send-a-message a { - background-position: 5px -852px; -} -.entity_nudge p, -.form_user_nudge input.submit { - background-position: 5px -785px; -} -.form_user_block input.submit, -.form_user_unblock input.submit, -.form_group_block input.submit, -.form_group_unblock input.submit { - background-position: 5px -918px; -} -.form_make_admin input.submit { - background-position: 5px -983px; -} -.entity_moderation p { - background-position: 5px -1313px; -} -.entity_sandbox input.submit { - background-position: 5px -1380px; -} -.entity_silence input.submit { - background-position: 5px -1445px; -} -.entity_delete input.submit { - background-position: 5px -1511px; -} -.entity_sandbox .form_user_unsandbox input.submit { - background-position: 5px -2568px; -} -.entity_silence .form_user_unsilence input.submit { - background-position: 5px -2633px; -} -.entity_role p { - background-position: 5px -2436px; -} -.entity_role_administrator .form_user_grantrole input.submit { - background-position: 5px -983px; -} -.entity_role_moderator .form_user_grantrole input.submit { - background-position: 5px -1313px; -} -.entity_role_administrator .form_user_revokerole input.submit { - background-position: 5px -2699px; -} -.entity_role_moderator .form_user_revokerole input.submit { - background-position: 5px -2501px; -} -.form_reset_key input.submit { - background-position: 5px -1973px; -} -.entity_clear input.submit { - background-position: 5px -2039px; -} -.entity_flag input.submit, -.entity_flag p { - background-position: 5px -2105px; -} -.entity_subscribe input.accept { - background-position: 5px -2171px; -} -.entity_subscribe input.reject { - background-position: 5px -2237px; -} -#realtime_play { - background-position: 0 -2308px; -} -#realtime_pause { - background-position: 0 -2374px; -} -#realtime_popup { - background-position: 0 -1714px; -} -.notice .attachment { - background-position:0 -394px; -} -.notice .attachment.more { - background-position:0 -2770px; -} -#attachments .attachment { - background:none; -} -.notice-options .notice_reply { - background-position:0 -592px; -} -.notice-options form.form_favor input.submit { - background-position:0 -461px; -} -.notice-options form.form_disfavor input.submit { - background-position:0 -526px; -} -.notice-options .notice_delete { - background-position:0 -658px; -} -.notice-options form.form_repeat input.submit { - background-position:0 -1582px; -} -.notice-options .repeated { - background-position:0 -1648px; -} -#new_group a { - background-position:0 -1054px; -} -.pagination .nav_prev a { - background-position:10% -187px; -} -.pagination .nav_next a { - background-position:105% -252px; -} - -caption, legend { -font-family: 'TeXGyreHerosBold', sans-serif; -} - -input, textarea, select, option { - -} - -input.submit { -font-family: 'TeXGyreHerosBold', sans-serif; -cursor:pointer; -} -textarea { -overflow:auto; -} -option { -padding-bottom:0; -} -fieldset { -padding:0; -border:0; -} -form ul li { -list-style-type:none; -margin:0 0 18px 0; -} -form label { - font-family: 'TeXGyreHerosBold', sans-serif; - font-size: 1.6em; - line-height: 1.5em; -} -input.checkbox, -input.radio { -position:relative; -top:2px; -left:auto; -border:0; -} - -.error, -.success { - font-size:1.6em; - line-height:1.5em; - font-family: 'TeXGyreHerosBold', sans-serif; - display: inline-block; - width: auto; - min-width: 10em; -} - -.error { - color: #000; - background-color: #C00; -} - -.success { - color: #FFF; - background-color: #090; -} -.xoxo li { -list-style-type:none; -} - -form label.submit { -display:none; -} -.form_settings { -clear:both; -} -.form_settings fieldset { -margin-bottom:29px; -} -.form_settings fieldset fieldset { -margin-bottom:41px; -padding:3% 1.795% 1.795% 3%; -border-width:1px; -border-style:solid; -} -.form_settings fieldset fieldset legend { -line-height:0; -} - -.form_settings input.remove { -margin-left:11px; -} - -ul.form_data { - font-size: 100% -} - -.form_settings .form_data li { -width:100%; -float:left; -} -.form_settings .form_data label { -float:left; -} -.form_settings .form_data textarea, -.form_settings .form_data select, -.form_settings .form_data input { -margin-left:1.795%; -float:left; -} -.form_settings .form_data input { -} -.form_settings .form_data input.submit, -.form_settings .form_data input.checkbox, -.form_settings .form_data input.radio { -width:auto; -} -.form_settings .form_data textarea { -width:63%; -} - -.form_settings .form_data input.submit { -margin-left:0; -} - -.form_settings label { -margin-top:2px; -width:24%; -} - -.form_actions label { -display:none; -} -.form_guide { -font-family: 'TeXGyreHerosItalic', sans-serif; -} - -.form_settings #settings_autosubscribe label { -display:inline; -font-weight:bold; -} - -#form_settings_profile legend, -#form_login legend, -#form_register legend, -#form_password legend, -#form_settings_avatar legend, -#newgroup legend, -#editgroup legend, -#form_tag_user legend, -#form_remote_subscribe legend, -#form_openid_login legend, -#form_search legend, -#form_invite legend, -#form_notice_delete legend, -#form_password_recover legend, -#form_password_change legend, -.form_entity_block legend, -#form_filter_bytag legend, -#apioauthauthorize_allowdeny { -display:none; -} - -.form_settings .form_data p.form_guide { -clear:both; -margin-left:26%; -margin-bottom:0; -} - -.form_settings p { -margin-bottom:11px; -} - -.form_settings input.checkbox, -.form_settings input.radio { -margin-top:3px; -margin-left:0; -} -.form_settings label.checkbox { -font-weight:normal; -margin-top:0; -margin-right:0; -margin-left:11px; -float:left; -width:90%; -} -.form_settings label.radio { -margin-top:0; -margin-right:47px; -margin-left:11px; -width:auto; -} - -#form_login p.form_guide, -#form_register #settings_rememberme p.form_guide, -#form_openid_login #settings_rememberme p.form_guide, -#settings_twitter_remove p.form_guide, -#form_search ul.form_data #q, -#design_background-image_onoff p.form_guide { -margin-left:0; -} - -.form_settings .form_note { -padding:0 7px; -} - -.form_settings input.form_action-default { -margin-right:11px; -} -.form_settings input.form_action-default, -.form_settings input.form_action-primary { -padding:0; -} -.form_settings input.form_action-secondary { -margin-left:29px; -} - -#form_search .submit { -margin-left:11px; -} -#form_search .form_data input { -width:auto; -} - -address { - margin-bottom: 0.5em; - margin-top: 4.75em; - margin-bottom: 1.75em; - float: left; -} -address.vcard img.logo { -margin-right:0; -float: none; -} -address .fn { -font-weight:bold; -} -address img + .fn { -display:none; -} -address a { -text-decoration:none; -} -address .poweredby { -float:left; -clear:left; -display:block; -position:relative; -top:7px; -margin-right:-47px; -} - - -#site_nav_global_primary { - margin: 0; - margin-bottom: 2.4em; - position: absolute; -} - -#site_nav_global_primary dd { - margin: 0; - } - -#site_nav_global_primary li { - -} - -.system_notice dt { -font-weight:bold; -text-transform:uppercase; -display:none; -} - -#site_notice { - float:right; - clear:right; - margin-top: 4.75em; - margin-bottom: 1.75em; - width:22em; - background-color: #EEE; -} -#page_notice { -clear:both; -margin-bottom:18px; -} - -#anon_notice { - float:left; - margin-left: 15em; - margin-top: 3.7em; - margin-bottom: 0.9em; - width: 32em; - padding: 0.9em; - border-width:2px; - border-style:solid; - font-family: 'TeXGyreHerosBold', sans-serif; -} - -#anon_notice p { - margin-bottom: 0; -} -#footer { - clear: both; -} - -#site_nav_local_views { -width:100%; -float:left; -margin: 0; -margin-bottom: -.25em; -} - -#site_nav_local_views dt{ - display:none; - } - -#site_nav_local_views dd { - margin:0; - } - -ul.nav{ - overflow:hidden; - list-style:none; - font-size:1.3em; - line-height:1.8461538461538461538461538461538em; - margin-bottom:1.8461538461538461538461538461538em; - float: left; - } - -ul.nav li{ - float:left; - font-family: 'TeXGyreHerosBold', sans-serif; - } - -ul.nav li#nav_invitecontact { - } -ul.nav li a, ul.nav li a:visited{ - color:#444 !important; - text-decoration:none; - width: 7.8em; - margin-right:1.5em; - display:block; - } - -ul.nav li.current a { - color: #fff !important; - background-color: #666 !important; -} -ul.nav li a:hover{ - text-decoration:underline; -} - -body#register #site_nav_global_primary li#nav_register a, -body#login #site_nav_global_primary li#nav_login a, -body#openidlogin #site_nav_global_primary li#nav_login a, -body#all #site_nav_global_primary li#nav_home a, -body#replies #site_nav_global_primary li#nav_home a, -body#showstream #site_nav_global_primary li#nav_home a, -body#showfavorites #site_nav_global_primary li#nav_home a, -body#inbox #site_nav_global_primary li#nav_home a, -body#outbox #site_nav_global_primary li#nav_home a, -body#profilesettings #site_nav_global_primary li#nav_account a, -body#avatarsettings #site_nav_global_primary li#nav_account a, -body#passwordsettings #site_nav_global_primary li#nav_account a, -body#emailsettings #site_nav_global_primary li#nav_account a, -body#userdesignsettings #site_nav_global_primary li#nav_account a, -body#othersettings #site_nav_global_primary li#nav_account a, -body#openidsettings #site_nav_global_primary li#nav_account a, -body#oauthconnectionssettings #site_nav_global_primary li#nav_connect a, -body#smssettings #site_nav_global_primary li#nav_connect a, -body[id$=adminpanel] #site_nav_global_primary li#nav_admin a, -body#invite #site_nav_global_primary li#nav_invitecontact a, -body#usergroups #site_nav_global_primary li#nav_invitecontact a, -body#subscribers #site_nav_global_primary li#nav_invitecontact a, -body#subscriptions #site_nav_global_primary li#nav_invitecontact a, -body[id$=doc] #site_nav_global_primary li#nav_help a, -body[id$=search] #site_nav_global_primary li#nav_search a { - background-color: #666; - color: #FFF !important; -} -body[id$=adminpanel] #aside_primary { -display:none; -} - -#site_nav_global_primary dt, -#site_nav_global_secondary dt { -display:none; -} - -#site_nav_global_secondary { -margin: 0; -} - -#site_nav_global_secondary dd { - margin: 0; -} - -#site_nav_global_secondary ul li { -display:inline; -} -#export_data li a { -padding-left:20px; -} -#export_data li a.foaf { -padding-left:30px; -} -#export_data li a.export_vcard { -padding-left:28px; -} - -#export_data ul { -width:100%; -float:left; -} -#export_data li { -list-style-type:none; -float:left; -margin-right:11px; -} - -#licenses { -margin: 0; -clear: left; -} - -#licenses dt { -font-family: 'TeXGyreHerosBold', sans-serif;; -display:none; -} -#licenses dd { -margin: 0; -line-height:1.5; -} - -#site_content_license_cc { -margin-bottom:0; -} -#site_content_license_cc img { - display:inline; - vertical-align:top; - margin-right:4px; -} - -#core { - position:relative; - width:100%; - float:left; - margin-top: 0.5em; -} - -#shownotice #content { - min-height:0; -} - -#content_inner { - position:relative; - width:100%; - float:left; -} - -#aside_primary { - width: 22em; - float:left; - margin-right:0; - margin-right:0; - margin-bottom: 2.4em; - background-color: #FFF; -} - -#aside_primary dl { - font-size:1.3em; - line-height:1.8461538461538461538461538461538em; - margin-bottom:0; - margin-left: 0; -} - -#aside_primary dl dd { - margin-left: 0; -} - -.form_notice { -width:45%; -float:left; -position:relative; -line-height:1; -margin-left: 9em; -margin-top: 4.75em; -margin-bottom: 2.6em; -} -.form_notice fieldset { -border:0; -padding:0; -position:relative; -} -.form_notice legend { -display:none; -} -.form_notice textarea { -float:left; -clear: left; -width: 24.4em; -height:6.7em; -line-height:1.5; -padding:7px 7px 16px 7px; -position:relative; -z-index:2; -} -.form_notice label { -float:left; -} -.form_notice label.notice_data-attach, -.form_notice input.notice_data-attach { -position:absolute; -top:2em; -right: 3em; -cursor:pointer; -} -.form_notice label.notice_data-attach { -text-indent:-9999px; -width:16px; -height:16px; -} -.form_notice input.notice_data-attach { -opacity: 0; -padding:0; -height:1.6em; -} -.form_notice .count { -position:absolute; -bottom:2px; -right:21.715%; -z-index:9; -} -.form_notice .count dt { -font-weight:bold; -display:none; -} -.form_notice .count { -font-family: 'TeXGyreHerosBold', sans-serif; -line-height:1.15; -padding:1px 2px; -} -.form_notice .submit { -width:14%; -height:47px; -padding:0; -position:absolute; -bottom:0; -right:0; -} -.form_notice label[for=to] { -} -.form_notice select[id=to] { -margin-left: 3em; -float:left; -width: 21em; -} -.form_notice .error, -.form_notice .success { -float:left; -clear:both; -width:81.5%; -margin-bottom:0; -line-height:1.618; -} -.form_notice .attach-status code { -float:left; -width:80%; -display:block; -overflow:auto; -margin-right:2.5%; -font-size:1.1em; -} -.form_notice .attach-status button.close { -float:right; -font-size:0.8em; -} - -.form_notice .notice_data-geo_wrap label, -.form_notice .notice_data-geo_wrap input { -position:absolute; -top:3.25em; -right:0.4em; -left:auto; -cursor:pointer; -width:1.6em; -height:1.6em; -display:block; -} -.form_notice .notice_data-geo_wrap input { -visibility:hidden; -} -.form_notice .notice_data-geo_wrap label { -font-weight:normal; -font-size:1em; -margin-bottom:0; -text-indent:-9999px; -} - -button.close, -button.minimize { -width:1.6em; -height:1.6em; -text-indent:-9999px; -padding:0; -border:0; -text-align:center; -font-weight:bold; -cursor:pointer; -} - -/* entity_profile */ -.entity_profile { -position:relative; -width: 52em; -float:left; -margin-left:0; -overflow:hidden; -} -.entity_profile dt, -#entity_statistics dt { -font-family: 'TeXGyreHerosBold', sans-serif;; -} -.entity_profile dd { - display:inline; - font-size:1.6em; - line-height:1.5em; - margin-bottom:1.5em; -} - - -.entity_profile .entity_depiction { -float:left; -width:96px; -margin-right: 2.4em; -margin-bottom: 2.4em; -text-align: center; -} - -.entity_profile .entity_fn, -.entity_profile .entity_nickname, -.entity_profile .entity_location, -.entity_profile .entity_url, -.entity_profile .entity_note, -.entity_profile .entity_tags, -.entity_profile .entity_aliases, -.entity_profile .entity_statistics { -margin-left:113px; -} - -.entity_profile .entity_fn, -.entity_profile .entity_nickname { -margin-left:11px; -display:inline; -} -.entity_profile .entity_nickname { -margin-left:0; -} -.entity_profile .fn, -.entity_profile .nickname { - font-family: 'TeXGyreHerosBold', sans-serif; -} - -body#subscriptions .entity_profile .fn, .entity_profile .nickname { - font-family: TeXGyreHerosBold, sans-serif; - font-size: 1.6em; - line-height: 1.5em; - margin-bottom: 1.5em; -} - -.entity_profile .fn:before { -content: "("; -font-weight:normal; -} -.entity_profile .fn:after { -content: ")"; -font-weight:normal; -} -.entity_profile .nickname:after, -.entity_profile .nickname:before { -content:""; -} -.entity_profile dt, -.entity_profile h2 { -display:none; -} -.entity_profile .role { -margin-left:11px; -font-family: 'TeXGyreHerosItalic', sans-serif; -} - -.section .entity_remote_subscribe { - color: #C00 !important; -} -/* entity_profile */ - -/*entity_actions*/ -.entity_actions { -float:right; -margin-left:2%; -min-width:21%; -} -.entity_actions h2 { -display:none; -} -.entity_actions ul { -list-style-type:none; -} -.entity_actions li { -margin-bottom:7px; -} -.entity_actions li:first-child { -border-top:0; -} -.entity_actions fieldset { -border:0; -padding:0; -} -.entity_actions legend { -display:none; -} - -.entity_actions input.submit { -display:block; -text-align:left; -width:100%; -border-color: transparent; -text-shadow: none; -color: #C00; -line-height: 1.5em; -font-size: 1.6em; -} - -.entity_actions a { -text-decoration:none; -font-family: 'TeXGyreHerosBold', sans-serif; -display:block; -} -.entity_actions a, -.entity_actions input { -} - -.entity_actions a, -.entity_actions input, -.entity_actions p { -padding-left:23px; -} - -.entity_actions a, -.entity_actions p { -padding:2px 4px 1px 26px; -} - -.entity_actions .accept { -margin-bottom:18px; -} - -.entity_send-a-message button { -position:absolute; -top:3px; -right:3px; -} - -.entity_send-a-message .form_notice { -position:absolute; -top:34px; -right:-1px; -padding:1.795%; -width:65%; -z-index:2; -border-width:1px; -border-style:solid; -} -.entity_send-a-message .form_notice legend { -display:block; -margin-bottom:11px; -} - -.entity_send-a-message .form_notice label, -.entity_send-a-message .form_notice select { -display:none; -} -.entity_send-a-message .form_notice input.submit { -text-align:center; -} - -.entity_moderation, -.entity_role { -position:relative; -} -.entity_moderation p, -.entity_role p { -font-weight:bold; -padding-bottom:2px; -margin-bottom:7px; -} -.entity_moderation ul, -.entity_role ul { -display:none; -} -.entity_moderation:hover ul, -.entity_role:hover ul { -display:block; -width:110%; -padding:11px; -position:absolute; -top:-1px; -right:-1px; -z-index:1; -border-width:1px; -border-style:solid; -} - -.entity_tags ul { -list-style-type:none; -display:inline; -} -.entity_tags li { -display:inline; -margin-right:7px; -} -.entity_tags li:before { -content:'\0009'; -} - -.aside .section { -clear:both; -float:left; -width:100%; -list-style-position:inside; -} -.aside .section h2 { - text-transform:uppercase; - color: #FFF; - background-color: #CCC; -} - -#entity_statistics { - margin-bottom: 2.4em; -} -#entity_statistics dt, -#entity_statistics dd { -display:inline; -margin-right: 0.5em; -} -#entity_statistics dt:after { -content: ":"; -} - -#entity_map a { - font-size: 1.3em; - line-height: 1.84615em; - margin-bottom: 0px; - margin-left: 0px; -} -.section ul.entities { -float:left; -width: 15em; -} -.section .entities li { -list-style-type:none; -float:left; -margin-right:1.5em; -margin-bottom: 1.5em; -display:inline; -} -.section .entities li .photo { -margin-right:0; -margin-bottom:0; -} -.section .entities li .fn { -display:none; -} - -.aside .section p, -.aside .section .more { -clear:both; -} - -.profile .entity_profile { -margin-bottom: 1.6em; -min-height:60px; -} - -.profile .form_group_join legend, -.profile .form_group_leave legend, -.profile .form_user_subscribe legend, -.profile .form_user_unsubscribe legend { -display:none; -} - -.profiles { -list-style-type:none; -font-size: 100%; -} -.profile .entity_profile .fn.nickname, -.profile .entity_profile .url[rel~=contact] { - margin-left: 1.2em; - display:inline; -} - -.profile .entity_profile .fn, -.profile .entity_profile .label { -margin-left:11px; -margin-bottom:4px; -width:auto; -clear:none; -} - -.profile .entity_profile .note, -.profile .entity_profile .entity_tag, -.profile .entity_profile .form_subscription_edit { -margin-left: 3.75em; -clear:none; -display:block; -width:auto; -} - -.profile .entity_profile .note { - margin-bottom: 0.2em; -} - -.profile .entity_profile .url, -.profile .entity_profile .entity_tags{ - margin-left: 6em; - display: block; - width: auto; -} - -.profile .entity_profile .entity_tags dt { -display:inline; -margin-right:11px; -} - -.profile .entity_profile .form_subscription_edit label { -font-weight:normal; -margin-right:11px; -} - -/*applications*/ -.applications { -margin-bottom:18px; -float:left; -width:100%; -} -.applications li { -list-style-type:none; -} -.application img, -#showapplication .entity_profile img, -.form_data #application_icon img, -#apioauthauthorize .form_data img { -max-width:96px; -max-height:96px; -} -#apioauthauthorize .form_data img { -margin-right:18px; -float:left; -} -#showapplication .entity_profile { -width:68%; -} -#showapplication .entity_profile .entity_fn { -margin-left:0; -} -#showapplication .entity_profile .entity_fn .fn:before, -#showapplication .entity_profile .entity_fn .fn:after { -content:''; -} -#showapplication .entity_data { -clear:both; -margin-bottom:18px; -} -#showapplication .entity_data h2 { -display:none; -} -#showapplication .entity_data dl { -margin-bottom:18px; -} -#showapplication .entity_data dt { -font-weight:bold; -} -#showapplication .entity_data dd { -margin-left:1.795%; -font-family:monospace; -font-size:1.3em; -} -.form_data #application_types label.radio, -.form_data #default_access_types label.radio { -width:14.5%; -} - -/* NOTICE */ -ol.notices, ol.xoxo { - font-size: 100%; - line-height: 1; -} - -.notice, -.profile, -.application { -position:relative; -clear:both; -float:left; -width:100%; -} -.notices li { -list-style-type:none; -} - -.notices li li { -} -.notices .notices { -margin-top: 4.8em; -} -.mark-top { -border-top-width:1px; -border-top-style:solid; -} - -/* NOTICES */ -#notices_primary { -float:left; -width:100%; -} -#notices_primary h2 { -display:none; -} -.notice-data a span { -display:block; -padding-left:28px; -} - -.notice .author { -margin-right:11px; -} -#showstream #content .notice .author { -display:none; -} - -.fn { - overflow:hidden; -} - -p .fn { - font-size: 100%; -} -.notice .author .fn { - font-family: 'TexGyreHerosBold', sans-serif; - font-size:1.6em; - line-height:1.5em; - margin-bottom:1.5em; -} - -.vcard .photo { -display:inline; -float:left; -} -#shownotice .vcard .photo { -margin-bottom:4px; -} -#content .notice .author .photo { -position:absolute; -left:0; -float:none; -margin-top: 0.6em; -} -#content .notice .entry-title { -margin-left: 6em; -max-width: 48em; -} - -.vcard .url, -.vcard .entity_tags{ - text-decoration:none;i - font-size:1.3em; -} -.vcard .url:hover { -text-decoration:underline; -} - -.notice .entry-title { -overflow:hidden; -word-wrap:break-word; -} -.notice .entry-title.ov { -overflow:visible; -} -#showstream .notice .entry-title, -#showstream .notice div.entry-content { -margin-left:0; -} -#shownotice .notice .entry-title { -margin-left:110px; -font-size:2.2em; -min-height:123px; -} -#shownotice .notice div.entry-content { -margin-left:0; -} - -.notice p.entry-content { -display:inline; -} - -#content .notice p.entry-content a:visited { -} -.notice p.entry-content .vcard a { -} - -.notice div.entry-content { - clear:left; - float:left; - font-size:1.3em; - line-height:1.8461538461538461538461538461538em; - margin-bottom:1.8461538461538461538461538461538em; - margin-left: 4.75em; -} -#showstream .notice div.entry-content, -#shownotice .notice div.entry-content { -max-width:79%; -} - -.notice .notice-options a, -.notice .notice-options input { -float:left; -} - -.notice div.entry-content .timestamp { -display:inline-block; -} - -.entry-content .repeat { -display:block; -} -.entry-content .repeat .photo { -float:none; -margin-right:1px; -position:relative; -top:4px; -left:0; -} - -.dialogbox { -position:absolute; -top:-1px; -right:-1px; -z-index:9; -float:none; -padding:11px; -border-style:solid; -border-width:1px; -background-color: #FFF; -font-size: 62.5%; -} - -.dialogbox legend { -display:block !important; -margin-right:18px; -margin-bottom:18px; -font-size: 1.6em; -} - -.dialogbox button.close { -position:absolute; -right:3px; -top:3px; -} - -.dialogbox .form_guide { -font-weight:normal; -padding:0; -} - -.dialogbox .submit_dialogbox { -font-weight:bold; -text-indent:0; -min-width:46px; -} -.dialogbox input { -padding-left:4px; -} -.dialogbox fieldset { -margin-bottom:0; -} - -#wrap form.processing input.submit, -.entity_actions a.processing, -.dialogbox.processing .submit_dialogbox { -cursor:wait; -outline:none; -text-indent:-9999px; -} - -.form_repeat.dialogbox { -top:-4px; -right:29px; -min-width:199px; -} - -.notice-options { -position:relative; -width:9.8em; -float:right; -} - -.notice-options a { -float:left; -} -.notice-options .notice_reply, -.notice-options .form_repeat, -.notice-options .form_favor, -.notice-options .form_disfavor, -.notice-options .repeated { -float:left; -margin-left: 0.5em; -} -.notice-options .form_favor, -.notice-options .form_disfavor { -margin-left:0; -} -.notice-options input, -.notice-options a, -.notice-options .repeated { -text-indent:-9999px; -outline:none; -width: 1em; -} -.notice-options input.submit { -display:block; -border:0; -} -.notice-options .notice_reply, -.notice-options .notice_delete { -text-decoration:none; -} -.notice .notice-options .notice_delete { -float:right; -} -.notice-options form input.submit { -width:16px; -height:16px; -padding:0; -} -.notice-options .form_repeat legend, -.notice-options .form_favor legend, -.notice-options .form_disfavor legend { -display:none; -} -.notice-options .form_repeat fieldset, -.notice-options .form_favor fieldset, -.notice-options .form_disfavor fieldset { -border:0; -padding:0; -} -.notice-options a, -.notice-options .repeated { - font-size:1.6em; - line-height:1.5em; - margin-bottom:0; -} - -.notice .attachment { -position:relative; -padding-left:16px; -} -.notice .attachment.more { -text-indent:-9999px; -width:16px; -height:16px; -display:inline-block; -overflow:hidden; -vertical-align:middle; -margin-left:4px; -} - -#attachments .attachment, -.notice .attachment.more { -padding-left:0; -} -.notice .attachment img { -position:absolute; -top:18px; -left:0; -z-index:99; -} -#shownotice .notice .attachment img { -position:static; -} - -#attachments { -clear:both; -float:left; -width:100%; -margin-top:18px; -} -#attachments dt { -font-weight:bold; -font-size:1.3em; -margin-bottom:4px; -} - -#attachments ol li { -margin-bottom:18px; -list-style-type:decimal; -float:left; -clear:both; -} - -#jOverlayContent, -#jOverlayContent #content, -#jOverlayContent #content_inner { -width: auto !important; -margin-bottom:0; -} -#jOverlayContent #content { -padding:11px; -min-height:auto; -} -#jOverlayContent .entry-title { -display:block; -margin-bottom:11px; -} -#jOverlayContent button { -position:absolute; -top:0; -right:0; -} -#jOverlayContent h1 { -max-width:425px; -} -#jOverlayContent #content { -} -#jOverlayLoading { -top:5%; -left:40%; -} -#attachment_view img { -max-width:480px; -max-height:480px; -} -#attachment_view #oembed_info { -margin-top:11px; -} -#attachment_view #oembed_info dt, -#attachment_view #oembed_info dd { -float:left; -} -#attachment_view #oembed_info dt { -clear:left; -margin-right:11px; -font-weight:bold; -} -#attachment_view #oembed_info dt:after { -content: ":"; -} - -#usergroups #new_group { -float: left; -margin-right: 2em; -} -#new_group, #group_search { -margin-bottom:18px; -} -#new_group a { -padding-left:20px; -} - -#filter_tags { -margin-bottom:11px; -float:left; -} -#filter_tags dt { -display:none; -} -#filter_tags ul { - list-style-type:none; - font-size: 100%; - line-height: 1; -} -#filter_tags li { -float:left; -margin-left:7px; -padding-left:7px; -border-left-width:1px; -border-left-style:solid; -} -#filter_tags #filter_tags_all { -margin-left:0; -border-left:0; -padding-left:0; -} -#filter_tags_all a { -font-weight:bold; -margin-top:7px; -float:left; -} - -#filter_tags_item label { -margin-right:7px; -} -#filter_tags_item label, -#filter_tags_item select { -float:left; -} -#filter_tags_item p { -float:left; -clear:both; -margin-left:38px; -} -#filter_tags_item .submit { -position:relative; -top:-3px; -left:3px; -} - -.pagination { -float:left; -clear:both; -width:100%; -margin-top:18px; -} - -.pagination dt { -font-weight:bold; -display:none; -} - -.pagination .nav { -float:left; -width:100%; -list-style-type:none; -} - -.pagination .nav_prev { -float:left; -} -.pagination .nav_next { -float:right; -} - -.pagination a { -display:block; -text-decoration:none; -padding:0.7em; -font-size: 1.2em; -vertical-align: middle; -line-height: 1; -color: #C00 !important; -width: auto !important; -} - -.pagination .nav_prev a { -padding-left:30px; -} -.pagination .nav_next a { -padding-right:30px; -} -/* END: NOTICE */ - -.hentry .entry-content li { - margin-left: 3.75em;; -} - -.hentry .entry-content .form_settings ul { -margin-left:0; -} - -#content #plugin_authors { -min-width:122px; -} -#content thead th { -text-align:left; -} -#content tbody th { -vertical-align:top; -text-align:left; -font-weight:normal; -padding-top:11px; -padding-right:18px; -} -#content tbody tr { -border-top-width:1px; -border-top-style:dotted; -} -#content td { -padding:11px 18px 11px 0; -vertical-align:top; -} -#content td:last-child { -padding-right:0; -} - -/* TOP_POSTERS */ -.section tbody td { -padding-right:18px; -padding-bottom:11px; -} -.section .vcard .photo { -margin-right:7px; -margin-bottom:0; -} - -.section .notice { -padding-top:7px; -padding-bottom:7px; -border-top:0; -} - -.section .notice:first-child { -padding-top:0; -} - -.section .notice .author { -margin-right:0; -} -.section .notice .author .fn { -display:none; -} - -/* tagcloud */ -.tag-cloud { -list-style-type:none; -text-align:center; -} -.aside .tag-cloud { -font-size:0.8em; -word-wrap:break-word; -} -.tag-cloud li { -display:inline; -margin-right:7px; -line-height:1.25; -} - -.tag-cloud li:before { -content:'\0009'; -} - -.aside .tag-cloud li { -line-height:1.5; -} -.tag-cloud li a { -text-decoration:none; -} -#tagcloud.section dt { -text-transform:uppercase; -font-weight:bold; -} -.tag-cloud-1 { -font-size:1em; -} -.tag-cloud-2 { -font-size:1.25em; -} -.tag-cloud-3 { -font-size:1.75em; -} -.tag-cloud-4 { -font-size:2em; -} -.tag-cloud-5 { -font-size:2.25em; -} -.tag-cloud-6 { -font-size:2.75em; -} -.tag-cloud-7 { -font-size:3.25em; -} - -#publictagcloud #tagcloud.section dt { -display:none; -} - -#form_settings_photo .form_data { -clear:both; -} - -#form_settings_avatar li { -width:auto; -} -#form_settings_avatar input { -margin-left:0; -} -#avatar_original, -#avatar_preview { -float:left; -} -#avatar_preview { -margin-left:29px; -} -#avatar_preview_view { -height:96px; -width:96px; -margin-bottom:18px; -overflow:hidden; -} - -#settings_attach, -#form_settings_avatar .form_actions { -clear:both; -} - -#form_settings_avatar .form_actions { -margin-bottom:0; -} - -#settings_design_background-image img { -max-width:480px; -max-height:480px; -} - -#settings_design_color .form_data, -#color-picker { -float:left; -} -#settings_design_color .form_data { -width:400px; -margin-right:1%; -} - -#settings_design_color .form_data li { -width:33%; -} -#settings_design_color .form_data label { -float:none; -display:block; -} -#settings_design_color .form_data .swatch { -padding:11px; -margin-left:0; -width:auto; -} - -.system_notice ul, -.instructions ul { -margin-left:1em; -} -.instructions ul { -margin-bottom:18px; -} -.help dt { -display:none; -} -.guide { -clear:both; -} - -#bookmarklet address { -display:none; -} -#bookmarklet .form_notice { -width:auto; -} -#bookmarklet #wrap { -min-width:0; -} - -}/*end of @media screen, projection, tv*/ - - -@media print { -a:after { background-color:#FFFFFF; } -a:not([href^="#"]):after { content:" <"attr(href)"> "; } -img { border:none; } -p { orphans: 2; widows: 1; } - -#site_nav_global_primary, -#site_nav_local_views, -#form_notice, -.pagination, -#site_nav_global_secondary, -.entity_actions, -.notice-options, -#aside_primary, -.form_subscription_edit .submit { -display:none; -} -.timestamp dt, .timestamp dd, -.device dt, .device dd { -display:inline; -} - -}/*end of @media print*/ diff --git a/theme/mnml/css/ie.css b/theme/mnml/css/ie.css deleted file mode 100644 index 839855aa6f..0000000000 --- a/theme/mnml/css/ie.css +++ /dev/null @@ -1,87 +0,0 @@ -/* IE specific styles */ -input.checkbox, -input.radio { -top:0; -} - -#wrap { - *position: relative; -} - -#site_nav_global_primary { - *float: none; - *left: 1em; -} - -img.logo { - *margin-bottom: 1.75em; - } - -.form_notice textarea { -width:78%; -} -.form_notice .count + label { -position:absolute; -top:25px; -left:83%; -text-indent:-9999px; -height:16px; -width:16px; -display:block; -} -.form_notice .submit { -width:17%; -max-width:17%; -} -.form_notice .attach-status, -.form_notice #notice_data-geo_selected { -width:78.75%; -} -.form_notice .attach-status button, -.form_notice #notice_data-geo_selected button { -padding:0 4px; -} -.form_notice .count + label { - background:transparent url(../images/icons/icons-01.png) no-repeat 0 -328px; -} - -.form_notice input.notice_data-attach { - filter: alpha(opacity=0); -} -.form_notice .notice_data-geo_wrap label { - background:transparent url(../images/icons/icons-01.png) no-repeat -0 -1780px; -} -.form_notice .notice_data-geo_wrap label.checked { - background:transparent url(../images/icons/icons-01.png) no-repeat -0 -1846px; -} - -.notices li { -*margin-bottom: 1.6em; -} - -.notice-options input.submit { -font-size:0; -text-align:right; -text-indent:0; -} -.notice div.entry-content .timestamp a { -margin-right:4px; -} -.entity_profile { -width:64%; -} -.notice { -z-index:1; -} -.notice:hover { -z-index:9999; -} -.notice .thumbnail img { -z-index:9999; -} - -.form_settings fieldset fieldset legend { -line-height:auto; -} diff --git a/theme/mnml/css/ie6.css b/theme/mnml/css/ie6.css deleted file mode 100644 index 6df5e01cee..0000000000 --- a/theme/mnml/css/ie6.css +++ /dev/null @@ -1,40 +0,0 @@ -/* IE6 specific styles */ -address { -margin-left:7px; -} -address .fn { -display:none; -} - -#wrap { -width:1003px; -margin:0 auto; -} - -#content { -width:66%; -} -#aside_primary { -padding:1.8%; -width:24%; -} -.entity_profile .entity_nickname, -.entity_profile .entity_location, -.entity_profile .entity_url, -.entity_profile .entity_note, -.entity_profile .entity_tags { -margin-left:0; -} -.entity_profile .entity_depiction { -margin-bottom:123px; -} -.entity_actions { -width:20%; -} -.notice div.entry-content { -width:65%; -margin-left:30px; -} -.notice-options a { -width:16px; -} diff --git a/theme/mnml/css/jquery.Jcrop.css b/theme/mnml/css/jquery.Jcrop.css deleted file mode 100644 index b35f332aae..0000000000 --- a/theme/mnml/css/jquery.Jcrop.css +++ /dev/null @@ -1,35 +0,0 @@ -/* Fixes issue here http://code.google.com/p/jcrop/issues/detail?id=1 */ -.jcrop-holder { text-align: left; } - -.jcrop-vline, .jcrop-hline -{ - font-size: 0; - position: absolute; - background: white url(../images/illustrations/illu_jcrop.gif) top left repeat; -} -.jcrop-vline { height: 100%; width: 1px !important; } -.jcrop-hline { width: 100%; height: 1px !important; } -.jcrop-handle { - font-size: 1px; - width: 7px !important; - height: 7px !important; - border: 1px #eee solid; - background-color: #333; - *width: 9px; - *height: 9px; -} - -.jcrop-tracker { width: 100%; height: 100%; } - -.custom .jcrop-vline, -.custom .jcrop-hline -{ - background: yellow; -} -.custom .jcrop-handle -{ - border-color: black; - background-color: #C7BB00; - -moz-border-radius: 3px; - -webkit-border-radius: 3px; -} diff --git a/theme/mnml/css/mp-screen.css b/theme/mnml/css/mp-screen.css deleted file mode 100644 index 47fdbf5e3b..0000000000 --- a/theme/mnml/css/mp-screen.css +++ /dev/null @@ -1,293 +0,0 @@ -/** theme: mobile profile screen - * - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2009-2010 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ - -#wrap { -min-width:0; -max-width:100%; -} - -body { - max-width: 100%; - margin: 0 1em; -} - -#header { -margin:0; -padding:0.7em 2%; -width:96%; -} - -address { -margin:1em 0 0 0; -float:left; -width:100%; -} -address .vcard .photo { -margin-right:0; -} - -address img + .fn { -display:block; -margin-top:1em; -float:left; -} - -.vcard .photo { -margin-right:7px; -} - - -.form_settings fieldset { -margin-bottom:7px; -} - -.form_settings label { -width:auto; -display:block; -float:none; -} -.form_settings .form_data li { -margin-bottom:7px; -} - -.form_settings .form_data textarea, -.form_settings .form_data select, -.form_settings .form_data input { -margin-left:0; -display:block; -} -.form_settings .form_data textarea { -width:96.41%; -} - -.form_settings .form_data label { -float:none; -} - -.form_settings .form_data p.form_guide { -width:auto; -margin-left:0; -} - -#site_nav_global_primary { -margin:0; -width:100%; -list-style-type:none; -position:absolute; -top:0; -left:0; -} -#site_nav_global_primary li { -margin-left:0; -margin-right:4%; -float:left; -font-size:0.9em; -} - -#form_notice { -width:100%; -margin-left: 0; -} - -#form_notice textarea { -width:60%; -height:20px; -} - -.form_notice .count { -position:absolute; -bottom:2px; -right:40%; -z-index:9; -} - -/*input type=file no good in -iPhone/iPod Touch, Android, Opera Mini Simulator -*/ -.form_notice .count + label, -#form_notice label[for="notice_data-attach"] { -display:none; -} -#form_notice input.notice_data-attach { -position:static; -clear:both; -width:65%; -height:auto; -display:block; -z-index:9; -padding:0; -margin:0; -background:none; -opacity:1; -} - -#form_notice .submit { -width:20%; -right:2%; -text-align:center; -} - - -#site_nav_local_views li { -margin-left:0; -margin-right:0; -} -#site_nav_local_views li:first-child { -margin-left:0; -} -#site_nav_local_views a { -padding:1px 3px; -display:block; -font-size:0.9em; -} -#site_nav_local_views .current a { -text-shadow:none; -} -#site_nav_local_views li { --moz-box-shadow:none; --webkit-box-shadow:none; -box-shadow:none; -} - - -#content { -width:96.41%; -min-height:auto; -} -#content, -#site_nav_local_views a, -#aside_primary { -border:0; -} - -.instructions p, -.instructions ul { -margin-bottom:4px; -} - -h1 { -margin-bottom:0; -} - -.notice, -.profile { -padding-top:4px; -padding-bottom:4px; -min-height:65px; -} -#content .notice .entry-title { -float:left; -width:100%; -margin-left:0; -} -#content .notice .author .photo { -position:static; -float:left; -} -#content .notice div.entry-content { -margin-left:0; -width:75%; -max-width:100%; -min-width:0; -} -.notice-options { -margin-right:1%; -} - -.notice-options form.processing { -background-image:none; -} -#wrap .notice-options form.processing input.submit { -background-position:0 47%; -} - -.notice .notice-options a, -.notice .notice-options input { -box-shadow:none; --moz-box-shadow:none; --webkit-box-shadow:none; -} -.notice .notice-options a, -.notice .notice-options form { -margin: 0; -} -.notice .notice-options .form_repeat, -.notice .notice-options .notice_delete { -margin-top:0px; -} -.notice .notice-options .form_favor, -.notice .notice-options .form_disfavor, -.notice .notice-options .form_repeat { -margin-right:11px; -} - -.notice .notice-options .notice_delete { -float:left; -} - -.entity_profile { -width:auto; -} - -.entity_actions { -margin-right:0; -margin-left:0; -clear:both; -float:none; -width:100%; -max-width:9999px; -} - -.entity_profile { -margin-bottom:7px; -min-height:0; -} - -.entity_profile .entity_fn, -.entity_profile .entity_nickname, -.entity_profile .entity_location, -.entity_profile .entity_url, -.entity_profile .entity_note, -.entity_profile .entity_tags, -.entity_profile .entity_aliases { -line-height:1.4; -margin-left:0; -} - -.entity_profile .entity_depiction { -margin-bottom:1%; -margin-right:7px; -} - -.entity_actions { -margin-bottom:1%; -float:left; -width:100%; -} - -.entity_actions li { -float:left; -margin-right:1.5%; -margin-bottom:0; -height:29px; -width:40%; -} - -.user_in .entity_actions .entity_subscribe { -margin-bottom:47px; -width:auto; -height:auto; -margin-right:5%; -} - -#footer { -width:96%; -padding:2%; -} - diff --git a/theme/mnml/css/uap.css b/theme/mnml/css/uap.css deleted file mode 100644 index 9b724cfb0c..0000000000 --- a/theme/mnml/css/uap.css +++ /dev/null @@ -1,53 +0,0 @@ -/** Universal Ad Package styles: - * Medium Rectangle 300x250 - * Rectangle 180x150 - * Leaderboard 728x90 - * Wide Skyscraper 160x600 - * - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2010 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ - -.ad { -border:1px solid #CCC; -float:left; -} - -#ad_medium-rectangle { -width:300px; -height:250px; - -margin-left:1.35%; -margin-bottom:18px; -} - -#ad_rectangle { -width:180px; -height:150px; - -float:none; -clear:both; -margin:0 auto; -margin-bottom:29px; -} - -#ad_leaderboard { -width:728px; -height:90px; - -margin:0 auto 18px; -float:none; -clear:both; -} - -#ad_wide-skyscraper { -width:160px; -height:600px; - -float:right; -margin-top:18px; -margin-right:8.25%; -} diff --git a/theme/mnml/default-avatar-mini.png b/theme/mnml/default-avatar-mini.png deleted file mode 100644 index 3f1682a0cd..0000000000 Binary files a/theme/mnml/default-avatar-mini.png and /dev/null differ diff --git a/theme/mnml/default-avatar-profile.png b/theme/mnml/default-avatar-profile.png deleted file mode 100644 index a667695e93..0000000000 Binary files a/theme/mnml/default-avatar-profile.png and /dev/null differ diff --git a/theme/mnml/default-avatar-stream.png b/theme/mnml/default-avatar-stream.png deleted file mode 100644 index cec1ac1f8d..0000000000 Binary files a/theme/mnml/default-avatar-stream.png and /dev/null differ diff --git a/theme/mnml/fonts/GUST e-foundry License.txt b/theme/mnml/fonts/GUST e-foundry License.txt deleted file mode 100644 index 9da139743e..0000000000 --- a/theme/mnml/fonts/GUST e-foundry License.txt +++ /dev/null @@ -1,29 +0,0 @@ -This is a preliminary version (2006-09-30), barring acceptance from -the LaTeX Project Team and other feedback, of the GUST Font License. -(GUST is the Polish TeX Users Group, http://www.gust.org.pl) - -For the most recent version of this license see -http://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt -or -http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt - -This work may be distributed and/or modified under the conditions -of the LaTeX Project Public License, either version 1.3c of this -license or (at your option) any later version. - -Please also observe the following clause: -1) it is requested, but not legally required, that derived works be - distributed only after changing the names of the fonts comprising this - work and given in an accompanying "manifest", and that the - files comprising the Work, as listed in the manifest, also be given - new names. Any exceptions to this request are also given in the - manifest. - - We recommend the manifest be given in a separate file named - MANIFEST-.txt, where is some unique identification - of the font family. If a separate "readme" file accompanies the Work, - we recommend a name of the form README-.txt. - -The latest version of the LaTeX Project Public License is in -http://www.latex-project.org/lppl.txt and version 1.3c or later -is part of all distributions of LaTeX version 2006/05/20 or later. diff --git a/theme/mnml/fonts/stylesheet.css b/theme/mnml/fonts/stylesheet.css deleted file mode 100644 index 8b4e55483b..0000000000 --- a/theme/mnml/fonts/stylesheet.css +++ /dev/null @@ -1,60 +0,0 @@ -/* Generated by Font Squirrel (http://www.fontsquirrel.com) on August 31, 2010 09:11:40 AM America/New_York */ - - - -@font-face { - font-family: 'TeXGyreHerosRegular'; - src: url('texgyreheros-regular-webfont.eot'); - src: local('☺'), url('texgyreheros-regular-webfont.woff') format('woff'), url('texgyreheros-regular-webfont.ttf') format('truetype'), url('texgyreheros-regular-webfont.svg#webfontznVDIkhT') format('svg'); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: 'TeXGyreHerosItalic'; - src: url('texgyreheros-italic-webfont.eot'); - src: local('☺'), url('texgyreheros-italic-webfont.woff') format('woff'), url('texgyreheros-italic-webfont.ttf') format('truetype'), url('texgyreheros-italic-webfont.svg#webfontonVrQ9Kn') format('svg'); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: 'TeXGyreHerosBold'; - src: url('texgyreheros-bold-webfont.eot'); - src: local('☺'), url('texgyreheros-bold-webfont.woff') format('woff'), url('texgyreheros-bold-webfont.ttf') format('truetype'), url('texgyreheros-bold-webfont.svg#webfontaJCL46uI') format('svg'); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: 'TeXGyreHerosCnRegular'; - src: url('texgyreheroscn-regular-webfont.eot'); - src: local('☺'), url('texgyreheroscn-regular-webfont.woff') format('woff'), url('texgyreheroscn-regular-webfont.ttf') format('truetype'), url('texgyreheroscn-regular-webfont.svg#webfont5LIRj7jM') format('svg'); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: 'TeXGyreHerosCnItalic'; - src: url('texgyreheroscn-italic-webfont.eot'); - src: local('☺'), url('texgyreheroscn-italic-webfont.woff') format('woff'), url('texgyreheroscn-italic-webfont.ttf') format('truetype'), url('texgyreheroscn-italic-webfont.svg#webfontHl3qwlFd') format('svg'); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: 'TeXGyreHerosCnBold'; - src: url('texgyreheroscn-bold-webfont.eot'); - src: local('☺'), url('texgyreheroscn-bold-webfont.woff') format('woff'), url('texgyreheroscn-bold-webfont.ttf') format('truetype'), url('texgyreheroscn-bold-webfont.svg#webfonthCSznjKQ') format('svg'); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: 'TeXGyreHerosCnBoldItalic'; - src: url('texgyreheroscn-bolditalic-webfont.eot'); - src: local('☺'), url('texgyreheroscn-bolditalic-webfont.woff') format('woff'), url('texgyreheroscn-bolditalic-webfont.ttf') format('truetype'), url('texgyreheroscn-bolditalic-webfont.svg#webfontYufML4kp') format('svg'); - font-weight: normal; - font-style: normal; -} - diff --git a/theme/mnml/fonts/texgyreheros-bold-webfont.eot b/theme/mnml/fonts/texgyreheros-bold-webfont.eot deleted file mode 100644 index b31bded808..0000000000 Binary files a/theme/mnml/fonts/texgyreheros-bold-webfont.eot and /dev/null differ diff --git a/theme/mnml/fonts/texgyreheros-bold-webfont.svg b/theme/mnml/fonts/texgyreheros-bold-webfont.svg deleted file mode 100644 index 6b494fc75a..0000000000 --- a/theme/mnml/fonts/texgyreheros-bold-webfont.svg +++ /dev/null @@ -1,238 +0,0 @@ - - - - -This is a custom SVG webfont generated by Font Squirrel. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/theme/mnml/fonts/texgyreheros-bold-webfont.ttf b/theme/mnml/fonts/texgyreheros-bold-webfont.ttf deleted file mode 100644 index 3c4ffef550..0000000000 Binary files a/theme/mnml/fonts/texgyreheros-bold-webfont.ttf and /dev/null differ diff --git a/theme/mnml/fonts/texgyreheros-bold-webfont.woff b/theme/mnml/fonts/texgyreheros-bold-webfont.woff deleted file mode 100644 index de4f5f1f8f..0000000000 Binary files a/theme/mnml/fonts/texgyreheros-bold-webfont.woff and /dev/null differ diff --git a/theme/mnml/fonts/texgyreheros-italic-webfont.eot b/theme/mnml/fonts/texgyreheros-italic-webfont.eot deleted file mode 100644 index 896ebcbed6..0000000000 Binary files a/theme/mnml/fonts/texgyreheros-italic-webfont.eot and /dev/null differ diff --git a/theme/mnml/fonts/texgyreheros-italic-webfont.svg b/theme/mnml/fonts/texgyreheros-italic-webfont.svg deleted file mode 100644 index 213584a098..0000000000 --- a/theme/mnml/fonts/texgyreheros-italic-webfont.svg +++ /dev/null @@ -1,238 +0,0 @@ - - - - -This is a custom SVG webfont generated by Font Squirrel. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/theme/mnml/fonts/texgyreheros-italic-webfont.ttf b/theme/mnml/fonts/texgyreheros-italic-webfont.ttf deleted file mode 100644 index e07782e98c..0000000000 Binary files a/theme/mnml/fonts/texgyreheros-italic-webfont.ttf and /dev/null differ diff --git a/theme/mnml/fonts/texgyreheros-italic-webfont.woff b/theme/mnml/fonts/texgyreheros-italic-webfont.woff deleted file mode 100644 index d33dc0a85d..0000000000 Binary files a/theme/mnml/fonts/texgyreheros-italic-webfont.woff and /dev/null differ diff --git a/theme/mnml/fonts/texgyreheros-regular-webfont.eot b/theme/mnml/fonts/texgyreheros-regular-webfont.eot deleted file mode 100644 index ab9638e9a7..0000000000 Binary files a/theme/mnml/fonts/texgyreheros-regular-webfont.eot and /dev/null differ diff --git a/theme/mnml/fonts/texgyreheros-regular-webfont.svg b/theme/mnml/fonts/texgyreheros-regular-webfont.svg deleted file mode 100644 index 778a548826..0000000000 --- a/theme/mnml/fonts/texgyreheros-regular-webfont.svg +++ /dev/null @@ -1,238 +0,0 @@ - - - - -This is a custom SVG webfont generated by Font Squirrel. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/theme/mnml/fonts/texgyreheros-regular-webfont.ttf b/theme/mnml/fonts/texgyreheros-regular-webfont.ttf deleted file mode 100644 index 65840af159..0000000000 Binary files a/theme/mnml/fonts/texgyreheros-regular-webfont.ttf and /dev/null differ diff --git a/theme/mnml/fonts/texgyreheros-regular-webfont.woff b/theme/mnml/fonts/texgyreheros-regular-webfont.woff deleted file mode 100644 index 53a9349e62..0000000000 Binary files a/theme/mnml/fonts/texgyreheros-regular-webfont.woff and /dev/null differ diff --git a/theme/mnml/images/icons/README b/theme/mnml/images/icons/README deleted file mode 100644 index a469a7f8e7..0000000000 --- a/theme/mnml/images/icons/README +++ /dev/null @@ -1,79 +0,0 @@ -/** - * @author P.J. Onori - * @license Creative Commons Attribution-Share Alike 3.0 license http://creativecommons.org/licenses/by-sa/3.0/us/ - * @link http://somerandomdude.com/projects/iconic/ - * @note - Feed icon - Left arrow - Right arrow - Solid heart - Outlined heart - @-sign - Trash - Pencil - Envelope - Speech bubble - Lock - User - Sun - 'x' - Plus - Minus - Solid tag - Outlined tag - pair of outlined speech bubbles - pair of solid speech bubbles - New Window - Key - Solid map pin - Outlined map pin - Checkmark - Denied - Play - Pause - - */ - -/** - * @author Brightmix - * @link http://www.brightmix.com/blog/more-icons-in-the-brightmix-icon-set-free-for-all/ - * @license WTFPL - Paper clip - Paper clip with paper - Flag - */ - -/** - * @author Michael R. Bernstein - * @copyright 2010 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @note - These icons were heavily modified from versions - in the Iconic set by P.J. Onori, or were created - from scratch to match: - Speech bubble with minus - Speech bubble with plus - User in a circle - */ - -/** - * @author Michael R. Bernstein - * @author Sarven Capadisli - * @copyright 2008-2010 StatusNet, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - * @note - These icons were originally by Sarven Capadisli, but were - subsequently modified by Michael Bernstein: - Underscore with gray background - Broken underscore with grey background - White C with gray background - White magic wand with gray background - Gray sandbox with transparent background - Transparent sandbox with gray background - Skull in a circle - */ - -Created by various authors -* FOAF icon from http://iandavis.com/2006/foaf-icons/ with Public Domain license -* Processing icon from/by Unknown with Unknown license //FIXME diff --git a/theme/mnml/images/icons/icon_processing.gif b/theme/mnml/images/icons/icon_processing.gif deleted file mode 100644 index d0bce15423..0000000000 Binary files a/theme/mnml/images/icons/icon_processing.gif and /dev/null differ diff --git a/theme/mnml/images/icons/icon_vcard.gif b/theme/mnml/images/icons/icon_vcard.gif deleted file mode 100644 index 6d52947f3e..0000000000 Binary files a/theme/mnml/images/icons/icon_vcard.gif and /dev/null differ diff --git a/theme/mnml/images/icons/icons-01.png b/theme/mnml/images/icons/icons-01.png deleted file mode 100644 index 072b95d355..0000000000 Binary files a/theme/mnml/images/icons/icons-01.png and /dev/null differ diff --git a/theme/mnml/images/illustrations/illu_jcrop.gif b/theme/mnml/images/illustrations/illu_jcrop.gif deleted file mode 100644 index 72ea7ccb53..0000000000 Binary files a/theme/mnml/images/illustrations/illu_jcrop.gif and /dev/null differ diff --git a/theme/mnml/images/illustrations/illu_pattern-01.png b/theme/mnml/images/illustrations/illu_pattern-01.png deleted file mode 100644 index 833309e587..0000000000 Binary files a/theme/mnml/images/illustrations/illu_pattern-01.png and /dev/null differ diff --git a/theme/mnml/images/illustrations/illu_progress_loading-01.gif b/theme/mnml/images/illustrations/illu_progress_loading-01.gif deleted file mode 100644 index 82290f4833..0000000000 Binary files a/theme/mnml/images/illustrations/illu_progress_loading-01.gif and /dev/null differ diff --git a/theme/mnml/images/logo.png b/theme/mnml/images/logo.png deleted file mode 100644 index 8c2c2b7233..0000000000 Binary files a/theme/mnml/images/logo.png and /dev/null differ diff --git a/theme/mnml/logo.png b/theme/mnml/logo.png deleted file mode 100644 index 8c2c2b7233..0000000000 Binary files a/theme/mnml/logo.png and /dev/null differ diff --git a/theme/mnml/mobilelogo.png b/theme/mnml/mobilelogo.png deleted file mode 100644 index 67960b2a36..0000000000 Binary files a/theme/mnml/mobilelogo.png and /dev/null differ diff --git a/theme/pigeonthoughts/css/base.css b/theme/pigeonthoughts/css/base.css deleted file mode 100644 index 2eade7a451..0000000000 --- a/theme/pigeonthoughts/css/base.css +++ /dev/null @@ -1,1453 +0,0 @@ -/** theme: pigeonthoughts base - * - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2009 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ - -@media screen, projection, tv { -* { margin:0; padding:0; } -img { display:block; border:0; } -a abbr { cursor: pointer; border-bottom:0; } -table { border-collapse:collapse; } -ol { list-style-position:inside; } -html { font-size: 87.5%; } -body { -background-color:#FFFFFF; -color:#000; -font-family:sans-serif; -font-size:1em; -line-height:1.65; -position:relative; -margin-left:183px; -} -h1,h2,h3,h4,h5,h6 { -margin-bottom:7px; -overflow:hidden; -} -h1 { -font-size:1.4em; -margin-bottom:18px; -} -#showstream h1 { display:none; } -h2 { font-size:1.3em; } -h3 { font-size:1.2em; } -h4 { font-size:1.1em; } -h5 { font-size:1em; } -h6 { font-size:0.9em; } - -caption { -font-weight:bold; -} -legend { -font-weight:bold; -font-size:1.3em; -} -input, textarea, select, option { -padding:4px; -font-family:sans-serif; -font-size:1em; -} -input, textarea, select { -border-width:2px; -border-style: solid; -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} - -input.submit { -font-weight:bold; -cursor:pointer; -} -textarea { -overflow:auto; -} -option { -padding-bottom:0; -} -fieldset { -padding:0; -border:0; -} -form ul li { -list-style-type:none; -margin:0 0 18px 0; -} -form label { -font-weight:bold; -} -input.checkbox, -input.radio { -position:relative; -top:2px; -left:0; -border:0; -} - -.error, -.success { -padding:4px 1.55%; -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -margin-bottom:18px; -} -form label.submit { -display:none; -} - -.form_settings { -clear:both; -} - -.form_settings fieldset { -margin-bottom:29px; -} -.form_settings input.remove { -margin-left:11px; -} -.form_settings .form_data li { -width:100%; -float:left; -} -.form_settings .form_data label { -float:left; -} -.form_settings .form_data textarea, -.form_settings .form_data select, -.form_settings .form_data input { -margin-left:11px; -float:left; -} -.form_settings .form_data input.submit { -margin-left:0; -} - -.form_settings label { -margin-top:2px; -width:152px; -} - -.form_actions label { -display:none; -} -.form_guide { -font-style:italic; -} - -.form_settings #settings_autosubscribe label { -display:inline; -font-weight:bold; -} - -#form_settings_profile legend, -#form_login legend, -#form_register legend, -#form_password legend, -#form_settings_avatar legend, -#newgroup legend, -#editgroup legend, -#form_tag_user legend, -#form_remote_subscribe legend, -#form_openid_login legend, -#form_search legend, -#form_invite legend, -#form_notice_delete legend, -#form_password_recover legend, -#form_password_change legend, -.form_entity_block legend { -display:none; -} - -.form_settings .form_data p.form_guide { -clear:both; -margin-left:163px; -margin-bottom:0; -} - -.form_settings p { -margin-bottom:11px; -} - -.form_settings input.checkbox { -margin-top:3px; -margin-left:0; -} -.form_settings label.checkbox { -font-weight:normal; -margin-top:0; -margin-right:0; -margin-left:11px; -float:left; -width:90%; -} -.form_settings label.radio { -margin-top:0; -margin-right:47px; -margin-left:11px; -width:auto; -} - -#form_login p.form_guide, -#form_register #settings_rememberme p.form_guide, -#form_openid_login #settings_rememberme p.form_guide, -#settings_twitter_remove p.form_guide, -#form_search ul.form_data #q, -#design_background-image_onoff p.form_guide { -margin-left:0; -} - -.form_settings .form_note { -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -padding:0 7px; -} - - -.form_settings input.form_action-primary { -padding:0; -} -.form_settings input.form_action-secondary { -margin-left:29px; -} - -#form_search .submit { -margin-left:11px; -} - -address { -float:right; -margin-bottom:18px; -margin-right:18px; -} -address.vcard img.logo { -margin-right:0; -} -address .fn { -font-weight:bold; -} -address img + .fn { -display:none; -} -address a { -text-decoration:none; -} -address .poweredby { -float:left; -clear:left; -display:block; -position:relative; -top:7px; -margin-right:-47px; -} - -#header { -width:98.5%; -position:relative; -float:left; -padding-top:18px; -padding-left:18px; -margin-bottom:29px; -} - -#site_nav_global_primary { -float:left; -margin-right:18px; -margin-bottom:11px; -} -#site_nav_global_primary ul li { -display:inline; -margin-right:11px; -} - -.system_notice dt { -font-weight:bold; -text-transform:uppercase; -display:none; -} - -#site_notice { -float:right; -margin-top:7px; -margin-right:18px; -width:26%; -} -#page_notice { -clear:both; -margin-bottom:18px; -} - - -#anon_notice { -float:left; -width:50.2%; -line-height:1.5; -font-size:1.1em; -font-weight:bold; -} - - -#footer { -float:left; -width:64%; -padding:18px; -} - -#site_nav_local_views { -width:183px; -float:left; -margin-bottom:29px; -position:fixed; -top:179px; -left:0; -} -#site_nav_local_views dt { -display:none; -} -#site_nav_local_views li { -list-style-type:none; -} -#site_nav_local_views a { -text-decoration:none; -padding:4px 11px; -text-shadow: 1px 1px 1px #ddd; -font-weight:bold; -display:block; -} -#site_nav_local_views .nav { -float:left; -width:100%; -} - -#site_nav_global_primary dt, -#site_nav_global_secondary dt { -display:none; -} - -#site_nav_global_secondary { -margin-bottom:11px; -} - -#site_nav_global_secondary ul li { -display:inline; -margin-right:11px; -} -#export_data li a { -padding-left:20px; -} -#export_data li a.foaf { -padding-left:30px; -} -#export_data li a.export_vcard { -padding-left:28px; -} - -#export_data ul { -display:inline; -} -#export_data li { -list-style-type:none; -display:inline; -margin-left:11px; -} -#export_data li:first-child { -margin-left:0; -} - -#licenses { -font-size:0.9em; -} - -#licenses dt { -font-weight:bold; -display:none; -} -#licenses dd { -margin-bottom:11px; -line-height:1.5; -} - -#site_content_license_cc { -margin-bottom:0; -} -#site_content_license_cc img { -display:inline; -vertical-align:top; -margin-right:4px; -} - -#wrap { -width:100%; -min-width:760px; -max-width:1003px; -overflow:hidden; -} - -#core { -position:relative; -width:100%; -float:left; -margin-bottom:1em; -} - -#content { -width:50%; -min-height:259px; -float:left; -padding:0 18px; -} -#shownotice #content { -min-height:0; -} - -#content_inner { -position:relative; -width:100%; -float:left; -} - -#aside_primary { -width:45.917%; -min-height:259px; -float:left; -margin-left:0.25%; -padding-bottom:47px; -} - -#form_notice { -width:45.664%; -float:left; -position:relative; -line-height:1; -} -#form_notice fieldset { -border:0; -padding:0; -position:relative; -} -#form_notice legend { -display:none; -} -#form_notice textarea { -float:left; -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -width:80.789%; -height:46px; -line-height:1.5; -padding:7px 7px 16px 7px; -position:relative; -z-index:2; -} -#form_notice label { -display:block; -float:left; -font-size:1.3em; -margin-bottom:7px; -} -#form_notice label.notice_data-attach, -#form_notice input.notice_data-attach { -position:absolute; -cursor:pointer; -} -#form_notice label.notice_data-attach { -top:25px; -} -#form_notice input.notice_data-attach { -top:0; -} -#form_notice label.notice_data-attach { -text-indent:-9999px; -left:394px; -width:16px; -height:16px; -} -#form_notice input.notice_data-attach { -left:183px; -padding:0; -height:16px; -} -.form_notice .count { -position:absolute; -top:76px; -right:98px; -z-index:9; -} -.form_notice .count dt { -font-weight:bold; -display:none; -} -.form_notice .count { -font-weight:bold; -line-height:1.15; -padding:1px 2px; -} -#form_notice .submit { -width:14%; -height:47px; -padding:0; -position:absolute; -bottom:0; -right:0; -} -#form_notice label[for=to] { -margin-top:7px; -} -#form_notice select[id=to] { -margin-bottom:7px; -margin-left:18px; -float:left; -} -.form_notice .error, -.form_notice .success { -float:left; -clear:both; -width:81.5%; -margin-bottom:0; -line-height:1.618; -} -.form_notice .attach-status code { -float:left; -width:80%; -display:block; -overflow:auto; -margin-right:2.5%; -font-size:1.1em; -} -.form_notice .attach-status button.close { -float:right; -font-size:0.8em; -} - -.form_notice .notice_data-geo_wrap label, -.form_notice .notice_data-geo_wrap input { -position:absolute; -top:25px; -right:4px; -left:auto; -cursor:pointer; -width:16px; -height:16px; -display:block; -} -.form_notice .notice_data-geo_wrap input { -visibility:hidden; -} -.form_notice .notice_data-geo_wrap label { -font-weight:normal; -font-size:1em; -margin-bottom:0; -text-indent:-9999px; -} - -button.close, -button.minimize { -width:16px; -height:16px; -text-indent:-9999px; -padding:0; -border:0; -text-align:center; -font-weight:bold; -cursor:pointer; -} - -/* entity_profile */ -.entity_profile { -position:relative; -width:67.702%; -min-height:123px; -float:left; -margin-bottom:18px; -margin-left:0; -overflow:hidden; -} -.entity_profile dt, -#entity_statistics dt { -font-weight:bold; -} -.entity_profile dd { -display:inline; -} - -.entity_profile .entity_depiction { -float:left; -width:96px; -margin-right:18px; -margin-bottom:18px; -} - -.entity_profile .entity_fn, -.entity_profile .entity_nickname, -.entity_profile .entity_location, -.entity_profile .entity_url, -.entity_profile .entity_note, -.entity_profile .entity_tags { -margin-left:113px; -margin-bottom:4px; -} - -.entity_profile .entity_fn, -.entity_profile .entity_nickname { -margin-left:11px; -display:inline; -} -.entity_profile .entity_nickname { -margin-left:0; -} -.entity_profile .fn, -.entity_profile .nickname { -font-size:1.1em; -font-weight:bold; -} -.entity_profile .entity_fn dd:before { -content: "("; -font-weight:normal; -} -.entity_profile .entity_fn dd:after { -content: ")"; -font-weight:normal; -} - -.entity_profile dt { -display:none; -} -.entity_profile h2 { -display:none; -} -/* entity_profile */ - - -/*entity_actions*/ -.entity_actions { -float:right; -margin-left:4.35%; -max-width:25%; -} -.entity_actions h2 { -display:none; -} -.entity_actions ul { -list-style-type:none; -} -.entity_actions li { -margin-bottom:4px; -} -.entity_actions li:first-child { -border-top:0; -} -.entity_actions fieldset { -border:0; -padding:0; -} -.entity_actions legend { -display:none; -} - -.entity_actions input.submit { -display:block; -text-align:left; -width:100%; -} -.entity_actions a, -.entity_nudge p, -.entity_remote_subscribe { -text-decoration:none; -font-weight:bold; -display:block; -} - -.form_user_block input.submit, -.form_user_unblock input.submit, -.form_group_block input.submit, -.form_group_unblock input.submit, -.entity_send-a-message a, -.entity_edit a, -.form_user_nudge input.submit, -.entity_nudge p, -.form_make_admin input.submit { -border:0; -padding-left:20px; -} - -.entity_edit a, -.entity_send-a-message a, -.entity_nudge p { -padding:4px 4px 4px 23px; -} - -.entity_remote_subscribe { -padding:4px; -border-width:2px; -border-style:solid; -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} -.entity_actions .accept { -margin-bottom:18px; -} - -.entity_tags ul { -list-style-type:none; -display:inline; -} -.entity_tags li { -display:inline; -margin-right:4px; -} - -.aside .section { -margin-bottom:29px; -float:right; -width:44%; -padding:1%; -border-width:1px; -border-style:solid; -margin-left:2.5%; -} -.aside .section h2 { -text-transform:uppercase; -font-size:1em; -} - -#entity_statistics dt, -#entity_statistics dd { -display:inline; -} -#entity_statistics dt:after { -content: ":"; -} - -.section ul.entities { -float:left; -width:100%; -} -.section .entities li { -list-style-type:none; -float:left; -margin-right:7px; -margin-bottom:7px; -display:inline; -} -.section .entities li .photo { -margin-right:0; -margin-bottom:0; -} -.section .entities li .fn { -display:none; -} - -.aside .section p, -.aside .section .more { -clear:both; -} - -.profile .entity_profile { -margin-bottom:0; -min-height:60px; -} - - -.profile .form_group_join legend, -.profile .form_group_leave legend, -.profile .form_user_subscribe legend, -.profile .form_user_unsubscribe legend { -display:none; -} - -.profiles { -list-style-type:none; -} -.profile .entity_profile .entity_location { -width:auto; -clear:none; -margin-left:11px; -} -.profile .entity_profile dl, -.profile .entity_profile dd { -display:inline; -float:none; -} -.profile .entity_profile .entity_note, -.profile .entity_profile .entity_url, -.profile .entity_profile .entity_tags, -.profile .entity_profile .form_subscription_edit { -margin-left:59px; -clear:none; -display:block; -width:auto; -} -.profile .entity_profile .entity_tags dt { -display:inline; -margin-right:11px; -} - - -.profile .entity_profile .form_subscription_edit label { -font-weight:normal; -margin-right:11px; -} - - -/* NOTICE */ -.notice, -.profile, -.application { -position:relative; -padding-top:11px; -padding-bottom:11px; -clear:both; -float:left; -width:100%; -border-top-width:1px; -border-top-style:dotted; -} -.notices li { -list-style-type:none; -} -.notices .notices { -margin-top:7px; -margin-left:2%; -width:98%; -float:left; -} -.mark-top { -border-top-width:1px; -border-top-style:solid; -} - -#aside_primary .notice, -#aside_primary .profile { -border:0; -margin-bottom:11px; -} - -/* NOTICES */ -#notices_primary { -float:left; -width:100%; -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -} -#notices_primary h2 { -display:none; -} -.notice-data a span { -display:block; -padding-left:28px; -} - -.notice .author { -margin-right:11px; -} - -.fn { -overflow:hidden; -} - -.notice .author .fn { -font-weight:bold; -} - -.vcard .photo { -display:inline; -margin-right:11px; -float:left; -} -#shownotice .vcard .photo { -margin-bottom:4px; -} -.vcard .url { -text-decoration:none; -} -.vcard .url:hover { -text-decoration:underline; -} - -.notice .entry-title { -float:left; -width:100%; -overflow:hidden; -} -.notice .entry-title.ov { -overflow:visible; -} -#shownotice .notice .entry-title { -font-size:2.2em; -} - -.notice p.entry-content { -display:inline; -} - -#content .notice p.entry-content a:visited { -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} -.notice p.entry-content .vcard a { -border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; -} - -.notice div.entry-content { -clear:left; -float:left; -font-size:0.95em; -margin-left:59px; -width:60%; -} -#showstream .notice div.entry-content, -#shownotice .notice div.entry-content { -margin-left:0; -} - -.notice .notice-options a, -.notice .notice-options input { -float:left; -font-size:1.025em; -} -.notice div.entry-content .timestamp { -display:inline-block; -} -.entry-content .repeat { -display:block; -} -.entry-content .repeat .photo { -float:none; -margin-right:1px; -position:relative; -top:4px; -left:0; -} - -.dialogbox { -position:absolute; -top:-1px; -right:-1px; -z-index:9; -float:none; -padding:11px; -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -border-style:solid; -border-width:1px; -} - -.dialogbox legend { -display:block !important; -margin-right:18px; -margin-bottom:18px; -} - -.dialogbox button.close { -position:absolute; -right:3px; -top:3px; -} - -.dialogbox .form_guide { -font-weight:normal; -padding:0; -} - -.dialogbox .submit_dialogbox { -font-weight:bold; -text-indent:0; -min-width:46px; -} -.dialogbox input { -padding-left:4px; -} -.dialogbox fieldset { -margin-bottom:0; -} - -#wrap form.processing input.submit, -.entity_actions a.processing, -.dialogbox.processing .submit_dialogbox { -cursor:wait; -outline:none; -text-indent:-9999px; -} - -.form_repeat.dialogbox { -top:-4px; -right:29px; -min-width:199px; -} - -.notice-options { -position:relative; -font-size:0.95em; -width:113px; -float:right; -margin-top:3px; -margin-right:4px; -} -.notice-options a { -float:left; -} -.notice-options .notice_reply, -.notice-options .form_repeat, -.notice-options .form_favor, -.notice-options .form_disfavor, -.notice-options .repeated { -float:left; -margin-left:14.2%; -} -.notice-options .form_favor, -.notice-options .form_disfavor { -margin-left:0; -} -.notice-options input, -.notice-options a, -.notice-options .repeated { -text-indent:-9999px; -outline:none; -} -.notice-options input.submit { -display:block; -border:0; -} -.notice-options .notice_reply, -.notice-options .notice_delete { -text-decoration:none; -} -.notice .notice-options .notice_delete { -float:right; -} -.notice-options form input.submit { -width:16px; -height:16px; -padding:0; -border-radius:0; --moz-border-radius:0; --webkit-border-radius:0; -} -.notice-options .form_repeat legend, -.notice-options .form_favor legend, -.notice-options .form_disfavor legend { -display:none; -} -.notice-options .form_repeat fieldset, -.notice-options .form_favor fieldset, -.notice-options .form_disfavor fieldset { -border:0; -padding:0; -} -.notice-options a, -.notice-options .repeated { -width:16px; -height:16px; -} - -.notice .attachment { -position:relative; -padding-left:16px; -} -.notice .attachment.more { -text-indent:-9999px; -width:16px; -height:16px; -display:inline-block; -overflow:hidden; -vertical-align:middle; -margin-left:4px; -} - -#attachments .attachment, -.notice .attachment.more { -padding-left:0; -} -.notice .attachment img { -position:absolute; -top:18px; -left:0; -z-index:99; -} -#shownotice .notice .attachment img { -position:static; -} - -#attachments { -clear:both; -float:left; -width:100%; -margin-top:18px; -} -#attachments dt { -font-weight:bold; -font-size:1.3em; -margin-bottom:4px; -} - -#attachments ol li { -margin-bottom:18px; -list-style-type:decimal; -float:left; -clear:both; -} - -#jOverlayContent, -#jOverlayContent #content, -#jOverlayContent #content_inner { -width: auto !important; -margin-bottom:0; -} -#jOverlayContent #content { -padding:11px; -min-height:auto; -} -#jOverlayContent .external span { -display:block; -margin-bottom:11px; -} -#jOverlayContent button { -position:absolute; -top:0; -right:0; -width:29px; -height:29px; -text-align:center; -font-weight:bold; -padding:0; -} -#jOverlayContent h1 { -max-width:425px; -} -#jOverlayContent #content { -border-radius:7px; --moz-border-radius:7px; --webkit-border-radius:7px; -} -#jOverlayLoading { -top:5%; -left:40%; -} -#attachment_view img { -max-width:480px; -max-height:480px; -} -#attachment_view #oembed_info { -margin-top:11px; -} -#attachment_view #oembed_info dt, -#attachment_view #oembed_info dd { -float:left; -} -#attachment_view #oembed_info dt { -clear:left; -margin-right:11px; -font-weight:bold; -} -#attachment_view #oembed_info dt:after { -content: ":"; -} - -#usergroups #new_group { -float: left; -margin-right: 2em; -} -#new_group, #group_search { -margin-bottom:18px; -} -#new_group a { -padding-left:20px; -} - - -#filter_tags { -margin-bottom:11px; -float:left; -} -#filter_tags dt { -display:none; -} -#filter_tags ul { -list-style-type:none; -} -#filter_tags ul li { -float:left; -margin-left:7px; -padding-left:7px; -border-left-width:1px; -border-left-style:solid; -} -#filter_tags ul li.child_1 { -margin-left:0; -border-left:0; -padding-left:0; -} -#filter_tags ul li#filter_tags_all a { -font-weight:bold; -margin-top:7px; -float:left; -} - -#filter_tags ul li#filter_tags_item label { -margin-right:7px; -} -#filter_tags ul li#filter_tags_item label, -#filter_tags ul li#filter_tags_item select { -display:inline; -} -#filter_tags ul li#filter_tags_item p { -float:left; -margin-left:38px; -} -#filter_tags ul li#filter_tags_item input { -position:relative; -top:3px; -left:3px; -} - -.pagination { -float:left; -clear:both; -width:100%; -margin-top:18px; -} - -.pagination dt { -font-weight:bold; -display:none; -} - -.pagination .nav { -float:left; -width:100%; -list-style-type:none; -} - -.pagination .nav_prev { -float:left; -} -.pagination .nav_next { -float:right; -} - -.pagination a { -display:block; -text-decoration:none; -font-weight:bold; -padding:7px; -border-width:1px; -border-style:solid; --moz-border-radius:7px; --webkit-border-radius:7px; -border-radius:7px; -} - -.pagination .nav_prev a { -padding-left:30px; -} -.pagination .nav_next a { -padding-right:30px; -} -/* END: NOTICE */ - -.hentry .entry-content p { -margin-bottom:18px; -} -.system_notice ul, -.instructions ul, -.hentry entry-content ol, -.hentry .entry-content ul { -list-style-position:inside; -} -.hentry .entry-content li { -margin-bottom:18px; -} -.hentry .entry-content li li { -margin-left:18px; -} - -/* TOP_POSTERS */ -.section tbody td { -padding-right:11px; -padding-bottom:11px; -} -.section .vcard .photo { -margin-right:7px; -margin-bottom:0; -} - -.section .notice { -padding-top:7px; -padding-bottom:7px; -border-top:0; -} - -.section .notice:first-child { -padding-top:0; -} - -.section .notice .author { -margin-right:0; -} -.section .notice .author .fn { -display:none; -} - -/* tagcloud */ -.tag-cloud { -list-style-type:none; -text-align:center; -} -.aside .tag-cloud { -font-size:0.8em; -} -.tag-cloud li { -display:inline; -margin-right:7px; -line-height:1.25; -} -.aside .tag-cloud li { -line-height:1.5; -} -.tag-cloud li a { -text-decoration:none; -} -#tagcloud.section dt { -text-transform:uppercase; -font-weight:bold; -} -.tag-cloud-1 { -font-size:1em; -} -.tag-cloud-2 { -font-size:1.25em; -} -.tag-cloud-3 { -font-size:1.75em; -} -.tag-cloud-4 { -font-size:2em; -} -.tag-cloud-5 { -font-size:2.25em; -} -.tag-cloud-6 { -font-size:2.75em; -} -.tag-cloud-7 { -font-size:3.25em; -} - -#publictagcloud #tagcloud.section dt { -display:none; -} - -#form_settings_photo .form_data { -clear:both; -} - -#form_settings_avatar li { -width:auto; -} -#form_settings_avatar input { -margin-left:0; -} -#avatar_original, -#avatar_preview { -float:left; -} -#avatar_preview { -margin-left:29px; -} -#avatar_preview_view { -height:96px; -width:96px; -margin-bottom:18px; -overflow:hidden; -} - -#settings_attach, -#form_settings_avatar .form_actions { -clear:both; -} - -#form_settings_avatar .form_actions { -margin-bottom:0; -} - -#form_settings_design #settings_design_background-image img { -max-width:480px; -max-height:480px; -} - -#form_settings_design #settings_design_color .form_data, -#form_settings_design #color-picker { -float:left; -} -#form_settings_design #settings_design_color .form_data { -width:400px; -margin-right:28px; -} - -#settings_design_color .form_data li { -width:33%; -} -#settings_design_color .form_data label { -float:none; -display:block; -} -#settings_design_color .form_data .swatch { -padding:11px; -margin-left:0; -} - -.instructions ul { -list-style-position:inside; -} -.instructions p, -.instructions ul { -margin-bottom:18px; -} -.help dt { -display:none; -} -.guide { -clear:both; -} - -}/*end of @media screen, projection, tv*/ - - -@media print { -a:after { background-color:#FFFFFF; } -a:not([href^="#"]):after { content:" <"attr(href)"> "; } -img { border:none; } -p { orphans: 2; widows: 1; } - -#site_nav_global_primary, -#site_nav_local_views, -#form_notice, -.pagination, -#site_nav_global_secondary, -.entity_actions, -.notice-options, -#aside_primary, -.form_subscription_edit .submit { -display:none; -} -.timestamp dt, .timestamp dd, -.device dt, .device dd { -display:inline; -} -.profiles li, -.notices li { -margin-bottom:18px; -} - -}/*end of @media print*/ diff --git a/theme/pigeonthoughts/css/display.css b/theme/pigeonthoughts/css/display.css deleted file mode 100644 index 3ac0f0bce7..0000000000 --- a/theme/pigeonthoughts/css/display.css +++ /dev/null @@ -1,518 +0,0 @@ -/** theme: pigeonthoughts - * - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2009 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ - -@import url(base.css); - -@media screen, projection, tv { -html { -background:url(../images/illustrations/illu_pigeons-01.png) no-repeat 0 100%; -} - -body, -a:active, -#content { -background-color:#AEA187; -} -body { -font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; -font-size:1em; -} -address { -margin-left:2%; -} - -input, textarea, select, option { -font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; -} -input, textarea, select, -.entity_remote_subscribe { -border-color:#AAAAAA; -} -#filter_tags ul li { -border-color:#DDDDDD; -} - -.form_settings input.form_action-primary { -background:none; -} - -input.submit, -#form_notice.warning .count, -.form_settings .form_note, -.entity_remote_subscribe { -background-color:#8F0000; -} - -input:focus, textarea:focus, select:focus, -#form_notice.warning textarea { -border-color:#8F0000; -box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); --webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); -} -input.submit, -.entity_remote_subscribe { -color:#FFFFFF; -} - -.dialogbox .submit_dialogbox, -input.submit, -.form_notice input.submit { -background:#AAAAAA url(../../base/images/illustrations/illu_pattern-01.png) 0 0 repeat-x; -text-shadow:0 1px 0 #FFFFFF; -color:#000000; -border-color:#AAAAAA; -border-top-color:#CCCCCC; -border-left-color:#CCCCCC; -} -.dialogbox .submit_dialogbox:hover, -input.submit:hover { -background-position:0 -5px; -} -.dialogbox .submit_dialogbox:focus, -input.submit:focus { -background-position:0 -15px; -box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); --moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); --webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); -text-shadow:none; -} - -.form_notice label.notice_data-geo { -background-position:0 -1780px; -} -.form_notice label.notice_data-geo.checked { -background-position:0 -1846px; -} - -a, -div.notice-options input, -.form_user_block input.submit, -.form_user_unblock input.submit, -.form_group_block input.submit, -.form_group_unblock input.submit, -.entity_send-a-message a, -.form_user_nudge input.submit, -.entity_nudge p, -.form_settings input.form_action-primary, -.form_make_admin input.submit { -color:#000000; -} - -.notice, -.profile { -border-color:#000000; -} -.notice a, -.profile a { -color:#FFFFFF; -} - -.notice:nth-child(3n-1), -.profile:nth-child(3n-1) { -border-color:#FFFFFF; -} -.notice:nth-child(3n-1) a, -.profile:nth-child(3n-1) a { -color:#7F1114; -} -.notice:nth-child(3n), -.profile:nth-child(3n) { -border-color:#7F1114; -} -.notice:nth-child(3n) a, -.profile:nth-child(3n) a { -color:#000000; -} - -.aside .section .notice, -.aside .section .profile, -.aside .section .notice:nth-child(3n-1), -.aside .section .profile:nth-child(3n-1), -.aside .section .notice:nth-child(3n), -.aside .section .profile:nth-child(3n) { -background-color:transparent; -color:#000000; -} - -.aside .section { -border-color:#FFFFFF; -background-color:#FFFFFF; -color:#000000; -} - -.aside .section:nth-child(n) { -border-color:#000000; -background-color:#000000; -color:#FFFFFF; -} -.aside .section:nth-child(3n-1) { -border-color:#FFFFFF; -background-color:#FFFFFF; -color:#000000; -} -.aside .section:nth-child(3n) { -background-color:#7F1114; -border-color:#7F1114; -color:#000000; -} -.aside .section a { -color:#7F1114; -} -.aside .section:nth-child(3n-1) a { -color:#7F1114; -} -.aside .section:nth-child(3n) a { -color:#FFFFFF; -} - -.aside .section .dialogbox { -color:#000000; -} - - - -.section .profile { -border-top-color:#87B4C8; -} - -#aside_primary { -background:url(../images/illustrations/illu_pigeons-02.png) no-repeat 10% 100%; -} - -.form_notice .count { -color:#333333; -} -#form_notice.warning .count { -color:#000000; -} -#form_notice label.notice_data-attach { -background-position:0 -328px; -} -#form_notice input.notice_data-attach { -opacity:0; -} - -.form_notice label.notice_data-attach, -#export_data li a.rss, -#export_data li a.atom, -#export_data li a.foaf, -.entity_edit a, -.entity_send-a-message a, -.entity_nudge p, -.form_user_nudge input.submit, -.form_user_block input.submit, -.form_user_unblock input.submit, -.form_group_block input.submit, -.form_group_unblock input.submit, -.form_make_admin input.submit, -.notice .attachment, -.notice-options .notice_reply, -.notice-options form.form_favor input.submit, -.notice-options form.form_disfavor input.submit, -.notice-options .notice_delete, -.notice-options form.form_repeat input.submit, -#new_group a, -.pagination .nav_prev a, -.pagination .nav_next a, -button.close, -.form_group_leave input.submit, -.form_user_unsubscribe input.submit, -.form_group_join input.submit, -.form_user_subscribe input.submit, -.form_remote_authorize input.submit, -.entity_subscribe a, -.entity_moderation p, -.entity_sandbox input.submit, -.entity_silence input.submit, -.entity_delete input.submit, -.notice-options .repeated, -.form_notice label.notice_data-geo, -button.minimize, -.form_reset_key input.submit, -.entity_clear input.submit, -.entity_flag input.submit, -.entity_flag p, -.entity_subscribe input.submit, -#realtime_play, -#realtime_pause, -#realtime_popup { -background-image:url(../../base/images/icons/icons-01.gif); -background-repeat:no-repeat; -background-color:transparent; -} - - -#wrap form.processing input.submit, -#core a.processing, -.dialogbox.processing .submit_dialogbox { -background:#FFFFFF url(../../base/images/icons/icon_processing.gif) no-repeat 47% 47%; -} -.notice-options .form_repeat.processing { -background-image:none; -} - -.entity_send-a-message .form_notice, -.entity_moderation:hover ul, -.entity_role:hover ul, -.dialogbox { -background-color:#FFFFFF; -} - -#content, -#site_nav_local_views a { -border-color:#FFFFFF; -} -#site_nav_local_views .current a { -background-color:rgba(143, 0, 0, 0.8); -color:#FFFFFF; -} - -#site_nav_local_views a { -background-color:rgba(255, 255, 255, 0.5); -} -#site_nav_local_views a:hover { -background-color:rgba(255, 255, 255, 0.9); -color:#8F0000; -} -#site_nav_local_views .current a { -text-shadow: rgba(194,194,194,0.5) 1px 1px 1px; -} - -.processing { -background-image:url(../../base/images/icons/icon_processing.gif); -background-repeat:no-repeat; -background-position:47% 47%; -} - -.error { -background-color:#F7E8E8; -} -.success { -background-color:#EFF3DC; -} - -button.close { -background-position:0 -1120px; -} -button.minimize { -background-position:0 -1912px; -} - - -#anon_notice { -color:#000000; -} - - -#export_data li a { -background-repeat:no-repeat; -background-position:0 45%; -} -#export_data li a.rss { -background-position:0 -130px; -} -#export_data li a.atom { -background-position:0 -64px; -} -#export_data li a.foaf { -background-position:0 1px; -} - -#export_data li a.rss { -background-position:0 -130px; -} -#export_data li a.atom { -background-position:0 -64px; -} -#export_data li a.foaf { -background-position:0 1px; -} - -.form_group_join input.submit, -.form_group_leave input.submit, -.form_user_subscribe input.submit, -.form_user_unsubscribe input.submit, -.form_remote_authorize input.submit, -.entity_subscribe a { -background-color:#8F0000; -color:#FFFFFF; -} -.form_group_leave input.submit, -.form_user_unsubscribe input.submit { -background-position:5px -1246px; -background-color:#87B4C8; -} -.form_group_join input.submit, -.form_user_subscribe input.submit, -.form_remote_authorize input.submit, -.entity_subscribe a { -background-position:5px -1181px; -} - -.entity_edit a { -background-position: 5px -719px; -} -.entity_send-a-message a { -background-position: 5px -852px; -} -.entity_send-a-message .form_notice, -.entity_moderation:hover ul, -.dialogbox { -box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); --moz-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); --webkit-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); -} - -.entity_nudge p, -.form_user_nudge input.submit { -background-position: 5px -785px; -} -.form_user_block input.submit, -.form_user_unblock input.submit, -.form_group_block input.submit, -.form_group_unblock input.submit { -background-position: 5px -918px; -} -.form_make_admin input.submit { -background-position: 5px -983px; -} -.entity_moderation p { -background-position: 5px -1313px; -} -.entity_sandbox input.submit { -background-position: 5px -1380px; -} -.entity_silence input.submit { -background-position: 5px -1445px; -} -.entity_delete input.submit { -background-position: 5px -1511px; -} -.form_reset_key input.submit { -background-position: 5px -1973px; -} -.entity_clear input.submit { -background-position: 5px -2039px; -} -.entity_flag input.submit, -.entity_flag p { -background-position: 5px -2105px; -} -.entity_subscribe input.accept { -background-position: 5px -2171px; -} -.entity_subscribe input.reject { -background-position: 5px -2237px; -} -#realtime_play { -background-position: 0 -2308px; -} -#realtime_pause { -background-position: 0 -2374px; -} -#realtime_popup { -background-position: 0 -1714px; -} - -/* NOTICES */ -.notice .attachment { -background-position:0 -394px; -} -.notice .attachment.more { -background-position:0 -2770px; -} -#attachments .attachment { -background:none; -} -.notice-options .notice_reply { -background-position:0 -592px; -} -.notice-options form.form_favor input.submit { -background-position:0 -460px; -} -.notice-options form.form_disfavor input.submit { -background-position:0 -526px; -} -.notice-options .notice_delete { -background-position:0 -658px; -} -.notice-options form.form_repeat input.submit { -background-position:0 -1582px; -} -.notice-options .repeated { -background-position:0 -1648px; -} - -.notices .attachment.more, -.notices div.entry-content, -.notices div.notice-options { -opacity:0.4; -} -.notices li:hover .attachment.more, -.notices li:hover div.entry-content, -.notices li:hover div.notice-options { -opacity:1; -} -.opaque { -opacity:1 !important; -} -div.entry-content { -color:#333333; -} -div.notice-options a, -div.notice-options input { -font-family:sans-serif; -} -#content .notices li:hover { -background-color:transparent; -} -#conversation .notices li:hover { -background-color:transparent; -} - -.notices .notices { -background-color:rgba(200, 200, 200, 0.050); -} -.notices .notices .notices { -background-color:rgba(200, 200, 200, 0.100); -} -.notices .notices .notices .notices { -background-color:rgba(200, 200, 200, 0.150); -} -.notices .notices .notices .notices .notices { -background-color:rgba(200, 200, 200, 0.300); -} -/*END: NOTICES */ - -#new_group a { -background-position:0 -1054px; -} - -.pagination .nav_prev a { -background-position:10% -187px; -} -.pagination .nav_next a { -background-position:105% -252px; -} -.pagination .nav .processing { -background-image:url(../../base/images/icons/icon_processing.gif); -box-shadow:none; --moz-box-shadow:none; --webkit-box-shadow:none; -outline:none; -} -.pagination .nav_next a.processing { -background-position:90% 47%; -} -.pagination .nav_prev a.processing { -background-position:10% 47%; -} - -}/*end of @media screen, projection, tv*/ diff --git a/theme/pigeonthoughts/css/ie.css b/theme/pigeonthoughts/css/ie.css deleted file mode 100644 index 46d14c2021..0000000000 --- a/theme/pigeonthoughts/css/ie.css +++ /dev/null @@ -1,16 +0,0 @@ -/** - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2009-2010 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ -/* IE specific styles */ - -.notice-options input.submit { -color:#fff; -} - -#site_nav_local_views a { -background-color:#D0DFE7; -} diff --git a/theme/pigeonthoughts/default-avatar-mini.png b/theme/pigeonthoughts/default-avatar-mini.png deleted file mode 100644 index 38b8692b4a..0000000000 Binary files a/theme/pigeonthoughts/default-avatar-mini.png and /dev/null differ diff --git a/theme/pigeonthoughts/default-avatar-profile.png b/theme/pigeonthoughts/default-avatar-profile.png deleted file mode 100644 index f8357d4fc2..0000000000 Binary files a/theme/pigeonthoughts/default-avatar-profile.png and /dev/null differ diff --git a/theme/pigeonthoughts/default-avatar-stream.png b/theme/pigeonthoughts/default-avatar-stream.png deleted file mode 100644 index 6b63baa70f..0000000000 Binary files a/theme/pigeonthoughts/default-avatar-stream.png and /dev/null differ diff --git a/theme/pigeonthoughts/images/illustrations/illu_pigeons-01.png b/theme/pigeonthoughts/images/illustrations/illu_pigeons-01.png deleted file mode 100644 index 4fdaaeb25b..0000000000 Binary files a/theme/pigeonthoughts/images/illustrations/illu_pigeons-01.png and /dev/null differ diff --git a/theme/pigeonthoughts/images/illustrations/illu_pigeons-02.png b/theme/pigeonthoughts/images/illustrations/illu_pigeons-02.png deleted file mode 100644 index 187c6c8a66..0000000000 Binary files a/theme/pigeonthoughts/images/illustrations/illu_pigeons-02.png and /dev/null differ diff --git a/theme/pigeonthoughts/logo.png b/theme/pigeonthoughts/logo.png deleted file mode 100644 index cf1839194a..0000000000 Binary files a/theme/pigeonthoughts/logo.png and /dev/null differ diff --git a/theme/shiny/css/display.css b/theme/shiny/css/display.css deleted file mode 100644 index 32a0a7e255..0000000000 --- a/theme/shiny/css/display.css +++ /dev/null @@ -1,553 +0,0 @@ -/** theme: shiny - * - * @package StatusNet - * @author Samantha Doherty - * @copyright 2010 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ - - -@media screen, projection, tv { - -body { - background: url(../images/page_bg1.png) no-repeat fixed 50% 100%; - background-color: #181818; - font-family: "DejaVu Sans", "Bitstream Vera Sans", Geneva, Verdana, sans-serif; - font-size: 84%; -} - -#wrap { - width: 867px; - margin: 0px auto; - padding: 0px 8px 10px 8px; - box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7); - -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7); - background-color: rgba(201, 203, 202, 0.5); -} - -a { - color: #24245c; -} - -address { - float: left; - margin-right: 20px; - margin-top: 0px; -} - -h1, h2, h3, h4, h5, h6 { - font-weight: normal; - margin-bottom: 15px; - margin-top: 10px; -} - -h1 {font-size: 1.4em;} -h2 {font-size: 1.3em;} -h3 {font-size: 1.2em;} -h4 {font-size: 1.1em;} -h5 {font-size: 1em;} -h6 {font-size: 1em;} - -#content h1 { - letter-spacing: 0.2em; - font-size: 1.4em; - font-weight: normal; - text-shadow:0 1px 0 rgba(255,255,255,0.4); - margin: -4px 0px 15px 0px; -} - -#header { - width: 851px; - padding: 0px; - padding-top: 60px; - margin: 0px; - margin-left: 8px; -} - -.poweredby { - background: url(../images/sn-tiny.png) no-repeat top left; - height: 40px; - font-size: 0.8em; - color: #fff; - line-height: 16px; - padding-left: 50px; - position: absolute; - top: 0px; - left: -10px; - z-index: 99; - font-style: normal; -} - -.poweredby a { - color: #fff !important; - font-weight: bold; - display: block; - clear: left; -} - -#site_nav_global_primary { - padding-top: 8px; - padding-bottom: 2px; - height: 30px; - box-shadow:0px 2px 2px rgba(194, 194, 194, 0.3); - -moz-box-shadow:0px 2px 2px rgba(194, 194, 194, 0.3); - -webkit-box-shadow:0px 2px 2px rgba(194, 194, 194, 0.3); - z-index: 98; - border-bottom-right-radius: 8px; - -moz-border-radius-bottomright: 8px; - -webkit-border-bottom-right-radius: 8px; - border-bottom-left-radius: 8px; - -moz-border-radius-bottomleft: 8px; - -webkit-border-bottom-left-radius: 8px; - letter-spacing: 0.1em; - font-size: 0.8em; - background: url(../images/global_bg.png) repeat-x top left; - float: right; - position: absolute; - width: 893px; - top: -20px; - left: 0; - margin-left: -21px; - text-transform: uppercase; - padding-right: 10px; -} - -#site_nav_global_primary li { - margin-right: 0px; - margin-left: 0px; -} - -#site_nav_global_primary a { - padding: 4px 8px; - line-height: 1.8em; - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - color: #fff !important; - text-shadow: 0px 1px 0px rgba(0,0,0,0.8); - border-bottom: 1px solid transparent; - border-left: 1px solid transparent; -} - -#site_nav_global_primary a:hover { - color: #fff; - background-color: #000; - border-bottom: 1px solid #666; - border-left: 1px solid #666; - text-decoration: none; -} - -#site_nav_global_primary li { - margin-left: 8px; -} - -#anon_notice { - background: url(../images/overlay10.png) repeat-x top left; - clear: both; - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-color: #333; - border-top-color: #aaa; - border-left-color: #aaa; - border-width: 1px; - border-style: solid; - color: #ccc; - padding-left: 10px; - padding-right: 10px; - font-size: 1.1em; - margin-top: 16px; - margin-bottom: 12px; - background-color: #444; - text-shadow: 0px 1px 0px rgba(0,0,0,0.8); -} - -#anon_notice a { - color: #fff; -} - -#anon_notice a:hover { - text-decoration: underline; -} - -#site_notice { - float: right; - width: 270px; - padding: 10px; - margin-left: 40px; - background: none; - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-color: #ccc; - border-bottom-color: #999; - border-right-color: #999; - border-width: 1px; - border-style: solid; -} - -.form_notice { - float: right; - width: 494px; - margin-top: 0px; - background: #ccc; - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - padding: 10px; - border: 1px solid #ddd; - box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); - -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); -} - -.form_notice label[for=notice_data-text], .form_notice label[for=to] { - text-shadow:0 1px 0 rgba(255,255,255,0.4); - padding-left: 2px; -} - -.form_notice fieldset { - width: 494px; -} - -.form_notice textarea { - width: 362px; - height: 54px; - border: 1px solid #bbb; - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - position:relative; -} - -.entity_send-a-message .form_notice legend { - text-shadow:0 1px 0 rgba(255,255,255,0.4); -} - -.form_notice textarea:focus { - border: 1px solid #9495b7; -} - -.form_notice label.notice_data-attach, -.form_notice input.notice_data-attach { - top: 27px; - right: 86px; -} - -.form_notice .notice_data-geo_wrap label, -.form_notice .notice_data-geo_wrap input { - top: 50px; - right: 86px; -} - -.form_notice .submit { - top: 79px; - right: 0; - width: 102px; - right: 0px; - height: 2.2em; -} - -.entity_send-a-message .form_notice .submit { - color: #fff !important; -} - -.form_notice input.submit, .form_settings input.submit { - border: 1px solid #555; - border-top: none; - border-left: none; - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - background: #666 url(../images/overlay25.png) repeat-x top left; - text-shadow: 0px 1px 0px rgba(0,0,0,0.8); - color:#fff; - font-weight: normal; - font-size: 1em; - height: 2.2em; - padding-left: 1em; - padding-right: 1em; - box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3); - -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3); - -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3); -} - -.form_notice input.submit:hover, .form_settings input.submit:hover { - background-color: #888; -} - -.form_notice .error, -.form_notice .success { - width: 373px; - margin-left: 0px; -} - -.form_notice .error { - width: 375px; - margin-left: 1px; -} - -#site_nav_local_views { - position: relative; - z-index: 9; - float: right; - margin: 0px; - width: 290px; -} - -#site_nav_local_views li { - width: 100%; - margin-right: 0; - margin-bottom: 0px; - text-align: right; -} - -#site_nav_local_views a { - background: url(../images/overlay10.png) repeat-x top left; - display:block; - padding-right: 10px; - border: 1px solid #fff; - border-color: transparent; - padding-top: 4px; - padding-bottom: 4px; - font-size: 1.1em; - font-weight: normal; - letter-spacing: 0.2em; - text-transform: uppercase; - color: #f2f2f2 !important; - background-color: #444; - border-bottom: 1px solid #999; - border-left: none; - text-shadow: 0px 1px 0px rgba(0,0,0,0.8); - border-radius:0; - -moz-border-radius:0; - -webkit-border-radius:0; - text-decoration: none; -} - -#site_nav_local_views li:first-child a { - border-top-right-radius:4px; - -moz-border-radius-topright:4px; - -webkit-border-top-right-radius:4px; -} - -#site_nav_local_views a:hover { - background: url(../images/overlay20.png) repeat-x top left; - color: #4d424c !important; - background-color: #b3b3b3; - text-shadow: 0 1px 0 rgba(255,255,255,0.75); -} - -#site_nav_local_views .current a { - background: none; - display: block; - color: #4d4d4d !important; - box-shadow: 1px 1px 1px rgba(0,0,0,0.5); - -moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.5); - -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.5); - border-bottom: 1px solid #fff; - text-shadow: 1px 1px 0px rgba(0,0,0,0.2); - background-color: #e2e2e2; - text-decoration: none; -} - -#core { - clear: both; - margin: 0px; - width: 851px; - margin-left: 8px; - margin-top: 4px; -} - -#content { - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-top-right-radius: 0px; - -moz-border-radius-topright: 0px; - -webkit-border-top-right-radius: 0px; - padding: 14px 10px 20px 10px; - width: 541px; - margin-right: 0px; - background-color: #e2e2e2; -} - -#aside_primary { - width: 280px; - padding: 0px; - padding-top: 16px; - padding-left: 10px; - background-color: #262626; - border-bottom-right-radius: 6px; - -moz-border-radius-bottomright: 6px; - -webkit-border-bottom-right-radius: 6px; -} - -#aside_primary .section { - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - padding: 6px; - padding-bottom: 12px; - border: 1px solid #ddd; - box-shadow: 1px 1px 2px #444; - -moz-box-shadow: 1px 1px 2px #444; - -webkit-box-shadow: 1px 1px 2px #444; - background-color: rgba(201, 203, 202, 0.5); - margin-left: 4px; - width: 248px; -} - -#aside_primary .section H2 { - font-size: 1.1em; - font-weight: normal; - letter-spacing: 0.2em; - margin-bottom: 10px; - margin-left: -4px; - padding: 6px; - margin-top: 2px; - text-shadow:0 1px 0 rgba(255,255,255,0.4); - line-height: 1.1em; -} - -#aside_primary .notice { - background: none; - border: none; -} - -.section ul.entities { - width: 270px; -} - -.section .entities li { - margin-right: 13px; - margin-bottom: 10px; - width: 24px; -} - -#notices_primary { - padding-top: 2px; -} - -#content .notices .notice { - border-top: 1px dotted #bbb; - padding-top: 14px; - margin-bottom: 14px; -} - -#content .notices .notices .notice { - margin-bottom: 0px; - padding-bottom: 14px; -} - -#content .notices .notices .notice + .notice { - margin-bottom: -10px; -} - -.notice { - line-height: 1.35em; -} - -#content .notice .author .photo { - top: 18px; - left: 0px; -} - -#content .notice .entry-title { - min-height: 26px; -} - -#shownotice .notice .entry-title { - min-height:123px; -} - -.notice div.entry-content { - font-size: 0.9em; - line-height: 1em; - margin-top: 10px; - opacity: 0.6; -} - -.notice:hover div.entry-content { - opacity: 1; -} - -.notice-options { - margin-top: 7px; -} - -.user_in .notice div.entry-content { - max-width: 360px; -} - -div.entry-content a.response:before { - content: "("; -} - -div.entry-content a.response:after { - content: ")"; -} - -#footer { - background: none; -} - -.form_settings input { - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border: 1px solid #bbb; - padding: 4px; - margin-bottom: 4px; -} - -.form_settings input:focus { - border: 1px solid #9495b7; -} - -.form_settings fieldset fieldset legend { - line-height:0; - font-size: 1.2em; - letter-spacing: 0.2em; -} - -#jOverlayContent #content { - box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7); - -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7); -} - -#jOverlayContent button { - top: 10px; - right: 36px; -} - -.entity_profile { - width: 365px; -} - -.entity_actions { - min-width: 140px; -} - -.entity_actions a, .entity_actions input, .entity_actions p { - text-shadow:0 1px 0 rgba(255,255,255,0.4); - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; -} - -.entity_moderation:hover ul, -.entity_role:hover ul { - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; -} - -.pagination { - background: none; -} - -}/*end of @media screen, projection, tv*/ diff --git a/theme/shiny/css/ie.css b/theme/shiny/css/ie.css deleted file mode 100644 index e916b1e4cc..0000000000 --- a/theme/shiny/css/ie.css +++ /dev/null @@ -1,87 +0,0 @@ -/* Temporary copy of base styles for overriding */ - -input.checkbox, -input.radio { -top:0; -} -.form_notice textarea { - width: 362px; -} -.form_notice .count + label { -position:absolute; -top:25px; -left:83%; -text-indent:-9999px; -height:16px; -width:16px; -display:block; - left: 392px; - top: 27px; - right: 88px; -} -.form_notice .submit { - width: 96px; - max-width: 96px; -} -.form_notice .attach-status, -.form_notice #notice_data-geo_selected { -width:78.75%; -} -.form_notice .attach-status button, -.form_notice #notice_data-geo_selected button { -padding:0 4px; -} -.notice-options input.submit { -font-size:0; -text-align:right; -text-indent:0; -} -.notice div.entry-content .timestamp a { -margin-right:4px; -} -.entity_profile { -width:64%; -} -.notice { -z-index:1; -} -.notice:hover { -z-index:9999; -} -.notice .thumbnail img { -z-index:9999; -} - -.form_settings fieldset fieldset legend { -line-height:auto; -} - - -/* IE specific styles */ - -.notice-options input.submit { - color:#FFFFFF; -} - -.form_notice input.notice_data-attach { - filter: alpha(opacity=0); -} - -.form_notice .count + label { - background:transparent url(../../rebase/images/icons/icons-01.gif) no-repeat 0 -328px; -} - -.form_notice .notice_data-geo_wrap label { - background:transparent url(../../rebase/images/icons/icons-01.gif) no-repeat 0 -1780px; -} -.form_notice .notice_data-geo_wrap label.checked { - background:transparent url(../../rebase/images/icons/icons-01.gif) no-repeat 0 -1846px; -} - -#wrap { - background: url(../images/wrap_bg.png) repeat top left; -} - -#aside_primary .section { - background: url(../images/wrap_bg.png) repeat top left; -} diff --git a/theme/shiny/css/mp-screen.css b/theme/shiny/css/mp-screen.css deleted file mode 100644 index c23a24b3c9..0000000000 --- a/theme/shiny/css/mp-screen.css +++ /dev/null @@ -1,242 +0,0 @@ -/* mobile style */ - -body { - background-image: none; - min-width: 0; -} - -#wrap { - margin: 0; - padding: 0; - min-width:0; - max-width:100%; -} - -#header { - width: 96%; - padding: 0 2%; - padding-top: 20px; -} - -.user_in #header { - padding-top: 40px; -} - -address { -margin:1em 0 0 0; -float:left; -width:100%; -} - -address img + .fn { -display:block; -margin-top:1em; - margin-right: 10px; -clear: left; -float:left; -} - -#site_nav_global_primary { - margin:0; - margin-left: -2%; - width: 94%; - padding: 2%; - height: auto; - position:absolute; - top:0; - left:0; - background: #333; - font-size: 1em; - letter-spacing: 0em; -} - -#site_nav_global_primary li { - margin-left:0; - margin-right:10px; - float:left; - font-size:0.9em; - padding: 2px 4px; - line-height: 1em; -} - -#site_nav_global_primary li a { - color: #fff !important; -} - -.form_notice { - float: left; - margin-left: -10px; - width: 300px; - padding: 4px; -} - -#form_notice-direct.form_notice { - padding-top: 10px; -} - -.form_notice textarea { - width: 210px; - height: 50px; - padding: 4px; -} - -.form_notice .count { -position:absolute; -bottom:2px; - left: 175px; - font-size: 0.8em; -z-index:9; -} - -#form_notice-direct.form_notice .count { - left: -185px; -} - -/*input type=file no good in -iPhone/iPod Touch, Android, Opera Mini Simulator -*/ -.form_notice .count + label, -.form_notice label[for="notice_data-attach"] { -display:none; -} -.form_notice input.notice_data-attach { -position:static; -clear:both; -width:65%; -height:auto; -display:block; -z-index:9; -padding:0; -margin:0; -background:none; -opacity:1; -} - -.form_notice .submit { - text-align: center; - left: 230px; - top: 34px; - width: 70px; - font-size: 0.8em; -} - -#form_notice-direct.form_notice .submit { - top: 64px; -} - -#site_nav_local_views { - position: relative; - z-index: 9; - float: left; - margin: 0px 10px 2px 4px; - width: auto; -} - -#site_nav_local_views li { - width: auto; - text-align: left; -} - -#site_nav_local_views a { - background: none; - display:block; - float: left; - padding: 4px; - margin: 0px 10px 10px 0px; - border: none !important; - font-size: 0.9em; - font-weight: normal; - letter-spacing: 0em; - text-transform: uppercase; - color: #f2f2f2 !important; - background-color: #444; - text-shadow: none; - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; -} - -#site_nav_local_views li:first-child a { - border-radius: 4px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; -} - -#site_nav_local_views a:hover { - background: none; - background-color: #b3b3b3; -} - -#site_nav_local_views .current a { - background: none; - display: inline; - color: #4d4d4d !important; - box-shadow: none; - -moz-box-shadow: none; - -webkit-box-shadow: none; - border-bottom: 1px solid #fff; - text-shadow: 1px 1px 0px rgba(0,0,0,0.2); - background-color: #e2e2e2; - text-decoration: none; -} - -#core { - width: 100%; - margin: 0; -} - -#content { - width: 96%; - padding: 10px 2%; - margin: 0; - min-height: auto; - border-radius-topright: 4px; - -moz-border-radius-topright: 4px; - -webkit-border-top-right-radius: 4px; -} - -#footer { - margin: 0; - padding: 10px 4px 4px 4px; -} - - -.form_settings fieldset { -margin-bottom:7px; -} - -.form_settings label { -width:auto; -display:block; -float:none; - text-align: left; -} - -.form_settings .form_data li { -margin-bottom:7px; -} - -.form_settings .form_data textarea, -.form_settings .form_data select, -.form_settings .form_data input { -margin-left:0; -display:block; -} -.form_settings .form_data textarea { -width:96.41%; -} - -.form_settings .form_data label { -float:none; -} - -.form_settings .form_data p.form_guide { -width:auto; -margin-left:0; -} - - -#settings_design_color .form_data { - width: auto; - margin-right: 0; -} diff --git a/theme/shiny/default-avatar-mini.png b/theme/shiny/default-avatar-mini.png deleted file mode 100644 index 7c9fc0348b..0000000000 Binary files a/theme/shiny/default-avatar-mini.png and /dev/null differ diff --git a/theme/shiny/default-avatar-profile.png b/theme/shiny/default-avatar-profile.png deleted file mode 100644 index e8f87006a0..0000000000 Binary files a/theme/shiny/default-avatar-profile.png and /dev/null differ diff --git a/theme/shiny/default-avatar-stream.png b/theme/shiny/default-avatar-stream.png deleted file mode 100644 index c8148e42ef..0000000000 Binary files a/theme/shiny/default-avatar-stream.png and /dev/null differ diff --git a/theme/shiny/images/global_bg.png b/theme/shiny/images/global_bg.png deleted file mode 100644 index 1c9af189c2..0000000000 Binary files a/theme/shiny/images/global_bg.png and /dev/null differ diff --git a/theme/shiny/images/overlay10.png b/theme/shiny/images/overlay10.png deleted file mode 100644 index a4cdbe82ad..0000000000 Binary files a/theme/shiny/images/overlay10.png and /dev/null differ diff --git a/theme/shiny/images/overlay20.png b/theme/shiny/images/overlay20.png deleted file mode 100644 index e15aba8283..0000000000 Binary files a/theme/shiny/images/overlay20.png and /dev/null differ diff --git a/theme/shiny/images/overlay25.png b/theme/shiny/images/overlay25.png deleted file mode 100644 index 718286062f..0000000000 Binary files a/theme/shiny/images/overlay25.png and /dev/null differ diff --git a/theme/shiny/images/page_bg1.png b/theme/shiny/images/page_bg1.png deleted file mode 100644 index a9f446812f..0000000000 Binary files a/theme/shiny/images/page_bg1.png and /dev/null differ diff --git a/theme/shiny/images/sn-tiny.png b/theme/shiny/images/sn-tiny.png deleted file mode 100644 index e1db3a1605..0000000000 Binary files a/theme/shiny/images/sn-tiny.png and /dev/null differ diff --git a/theme/shiny/images/wrap_bg.png b/theme/shiny/images/wrap_bg.png deleted file mode 100644 index ce9e4eceeb..0000000000 Binary files a/theme/shiny/images/wrap_bg.png and /dev/null differ diff --git a/theme/shiny/logo.png b/theme/shiny/logo.png deleted file mode 100644 index b078601019..0000000000 Binary files a/theme/shiny/logo.png and /dev/null differ diff --git a/theme/shiny/mobilelogo.png b/theme/shiny/mobilelogo.png deleted file mode 100644 index 66bb5f6787..0000000000 Binary files a/theme/shiny/mobilelogo.png and /dev/null differ diff --git a/theme/shiny/theme.ini b/theme/shiny/theme.ini deleted file mode 100644 index 0209008d40..0000000000 --- a/theme/shiny/theme.ini +++ /dev/null @@ -1 +0,0 @@ -include=rebase diff --git a/theme/victorian/css/display.css b/theme/victorian/css/display.css deleted file mode 100644 index 65d73e96fc..0000000000 --- a/theme/victorian/css/display.css +++ /dev/null @@ -1,886 +0,0 @@ -/** theme: Victorian - * - * @package StatusNet - * @author Michael R. Bernstein - * @copyright 2010 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://www.michaelbernstein.com/ - */ - -/* Typography */ - -@font-face { - font-family: 'LinuxLibertineRegular'; - src: url('../fonts/LinLibertine_Re-4.1_.8_-webfont.eot'); - src: local('☺'), url('../fonts/LinLibertine_Re-4.1_.8_-webfont.woff') format('woff'), url('../fonts/LinLibertine_Re-4.1_.8_-webfont.ttf') format('truetype'), url('../fonts/LinLibertine_Re-4.1_.8_-webfont.svg#webfontrdqe1DyH') format('svg'); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: 'LinuxLibertineItalic'; - src: url('../fonts/LinLibertine_It-4.0_.3_-webfont.eot'); - src: local('☺'), url('../fonts/LinLibertine_It-4.0_.3_-webfont.woff') format('woff'), url('../fonts/LinLibertine_It-4.0_.3_-webfont.ttf') format('truetype'), url('../fonts/LinLibertine_It-4.0_.3_-webfont.svg#webfont1JABFqYn') format('svg'); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: 'LinuxLibertineBold'; - src: url('../fonts/LinLibertine_Bd-4.0_.2_-webfont.eot'); - src: local('☺'), url('../fonts/LinLibertine_Bd-4.0_.2_-webfont.woff') format('woff'), url('../fonts/LinLibertine_Bd-4.0_.2_-webfont.ttf') format('truetype'), url('../fonts/LinLibertine_Bd-4.0_.2_-webfont.svg#webfont8Py9MN8V') format('svg'); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: 'LinuxLibertineCRegular'; - src: url('../fonts/LinLibertineC_Re-4.0_.1_-webfont.eot'); - src: local('☺'), url('../fonts/LinLibertineC_Re-4.0_.1_-webfont.woff') format('woff'), url('../fonts/LinLibertineC_Re-4.0_.1_-webfont.ttf') format('truetype'), url('../fonts/LinLibertineC_Re-4.0_.1_-webfont.svg#webfonth75RjTOl') format('svg'); - font-weight: normal; - font-style: normal; -} - -/* bolding */ - -caption, legend, input.submit, form label, .form_settings #settings_autosubscribe label, address .fn, .system_notice dt, #anon_notice, #site_nav_local_views a, #licenses dt, .form_notice .count dt, .form_notice .count, button.close, button.minimize, .entity_profile dt, #entity_statistics dt, .entity_profile .fn, .entity_profile .nickname, .entity_actions a, .entity_moderation p, .entity_role p, #showapplication .entity_data dt, .notice .author .fn, .dialogbox .submit_dialogbox, #attachments dt, #attachment_view #oembed_info dt, #filter_tags_all a, .pagination dt, .pagination a, #tagcloud.section dt { - font-weight: normal; - font-family: 'LinuxLibertineBold', serif; -} - -/* italicizing */ - -i, cite, em, var, address { - font-style: normal; - font-family: 'LinuxLibertineItalic', serif; -} - -/* End Typography */ - - -@media screen, projection, tv { -body, -a:active { - background-color:#7D6957; -} - -body { - font-family: LinuxLibertineRegular, serif; - font-size:1.2em; - color: #333; - background-image: url(../images/background.jpg); - background-attachment:fixed; - background-position:center; - line-height: 1.5; -} - -#wrap { - box-shadow: rgba(0, 0, 0, 0.496094) 0px 0px 8px; - -moz-box-shadow: rgba(0, 0, 0, 0.496094) 0px 0px 8px; - -webkit-box-shadow: rgba(0, 0, 0, 0.496094) 0px 0px 8px; - background-color: #F2EFEC; - border: 1px solid white; - margin-top: 16px; - margin-bottom: 16px; - width: 60em; -} - -address { - float: none; - text-align: center; - margin-left: 0px; -} - -.vcard .photo { - float: none; -} - -address .poweredby { - clear: none; - float: none; - margin: 0px; - font-size: 80%; - font-family: 'LinuxLibertineItalic'; -} - -#site_nav_global_primary { - float: none; - margin: 0; - margin-bottom: 1em; - text-align: center; - top: 0; - box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px; - -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px; - -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px; - background-color: #fff; -} - -#site_nav_global_primary li:hover { -background-color: #F2EFEC; -} - -body#register #site_nav_global_primary li#nav_register a, -body#login #site_nav_global_primary li#nav_login a, -body#openidlogin #site_nav_global_primary li#nav_login a, -body#all #site_nav_global_primary li#nav_home a, -body#replies #site_nav_global_primary li#nav_home a, -body#showstream #site_nav_global_primary li#nav_home a, -body#showfavorites #site_nav_global_primary li#nav_home a, -body#inbox #site_nav_global_primary li#nav_home a, -body#outbox #site_nav_global_primary li#nav_home a, -body#profilesettings #site_nav_global_primary li#nav_account a, -body#avatarsettings #site_nav_global_primary li#nav_account a, -body#passwordsettings #site_nav_global_primary li#nav_account a, -body#emailsettings #site_nav_global_primary li#nav_account a, -body#userdesignsettings #site_nav_global_primary li#nav_account a, -body#othersettings #site_nav_global_primary li#nav_account a, -body#openidsettings #site_nav_global_primary li#nav_account a, -body#oauthconnectionssettings #site_nav_global_primary li#nav_connect a, -body#smssettings #site_nav_global_primary li#nav_connect a, -body[id$=adminpanel] #site_nav_global_primary li#nav_admin a, -body#invite #site_nav_global_primary li#nav_invitecontact a, -body#usergroups #site_nav_global_primary li#nav_invitecontact a, -body#subscribers #site_nav_global_primary li#nav_invitecontact a, -body#subscriptions #site_nav_global_primary li#nav_invitecontact a, -body[id$=doc] #site_nav_global_primary li#nav_help a, -body[id$=search] #site_nav_global_primary li#nav_search a { - color: #000; - text-decoration: none; -} - -#site_notice { - box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px inset; - -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px inset; - -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px inset; - position: absolute; - top: 1em; - right: 1em; - padding: 1em; - width: 15em; - background-color:#E6DFDA; - margin: 0; -} - -.form_notice { - float: none; - margin: 0 auto; - } - -.form_notice label{ - font-family: 'LinuxLibertineCRegular', serif; - float: none; - text-align: center; - } - -#form_notice-direct label{ - float: left; - } - -.form_guide { - font-style: normal; - font-family: 'LinuxLibertineItalic'; -} - -input, textarea, select { - border-width:2px; - border-style: solid; - border-radius:4px; - -moz-border-radius:4px; - -webkit-border-radius:4px; -} - -input, textarea, select, option { - font-family: 'LinuxLibertineCRegular', serif; -} - -input, textarea, select, -.entity_actions .dialogbox input, -.mark-top { - border-color:#AAAAAA; -} - -.form_settings fieldset fieldset { - background:rgba(240, 240, 240, 0.2); - box-shadow:3px 3px 7px rgba(194, 194, 194, 0.3); - -moz-box-shadow:3px 3px 7px rgba(194, 194, 194, 0.3); - -webkit-box-shadow:3px 3px 7px rgba(194, 194, 194, 0.3); -} - -h1, h2, h3, h4, h5, h6 { - font-family: LinuxLibertineCRegular, serif; - text-align: center; - font-weight: normal; - text-transform: capitalize; - margin-bottom: 1em; -} - - -#filter_tags ul li, -.entity_send-a-message .form_notice, -.form_settings fieldset fieldset, -.entity_moderation:hover ul, -.entity_role:hover ul, -.dialogbox { - border-color:#DDDDDD; -} - -.form_settings input.form_action-primary { - background:none; -} - -.form_notice.warning .count, -.form_settings .form_note { - background-color:#9BB43E; -} - -input.submit, -.form_notice.warning .count, -.form_settings .form_note, -.entity_actions a, -.entity_actions input, -.entity_moderation p, -.entity_role p, -button { - box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); - -moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); - -webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); -} - -.entity_actions a, -.entity_actions input, -.entity_actions p { - border-color:transparent; - background-color:transparent; -} - -input:focus, textarea:focus, select:focus, -.form_notice.warning textarea, -.form_notice.warning .count, -.form_settings .form_note, -.entity_actions .dialogbox .form_data input:focus { - border-color:#9BB43E; -} - -input.submit { - color:#FFFFFF; -} - -.entity_actions input.submit { - border-color:transparent; - text-shadow:none; -} - -.dialogbox .submit_dialogbox, -input.submit, -.form_notice input.submit { - background:#D5C5B6 url(../../base/images/illustrations/illu_pattern-01.png) 0 0 repeat-x; - color:#000000; - border-color:#7D6957; - border-top-color:#DAD5D0; - border-left-color:#DAD5D0; -} - -.dialogbox .submit_dialogbox:hover, -input.submit:hover { - background-position:0 -5px; -} - -.dialogbox .submit_dialogbox:focus, -input.submit:focus { - background-position:0 -15px; - box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); - -moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); - -webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); - text-shadow:none; -} - -.form_notice label.notice_data-geo { - background-position:0 -1780px; -} -.form_notice label.notice_data-geo.checked { - background-position:0 -1846px; -} - -a, -.form_settings input.form_action-primary, -.notice-options input, -.entity_actions a, -.entity_actions input, -.entity_moderation p, -.entity_role p { - color:#015C65; -} - -.notice, -.profile, -.application, -#content tbody tr { - border-top-color:#C8D1D5; -} - -.form_notice .count { - color:#333333; -} - -.form_notice.warning .count, -.dialogbox, -.entity_actions .dialogbox input { - color:#000000; -} - -.form_notice label.notice_data-attach { - background-position:0 -328px; -} - -.form_notice input.notice_data-attach { - opacity:0; -} - -.form_notice label.notice_data-attach, -#export_data li a.rss, -#export_data li a.atom, -#export_data li a.foaf, -.entity_edit a, -.entity_send-a-message a, -.entity_nudge p, -.form_user_nudge input.submit, -.form_user_block input.submit, -.form_user_unblock input.submit, -.form_group_block input.submit, -.form_group_unblock input.submit, -.form_make_admin input.submit, -.notice .attachment, -.notice-options .notice_reply, -.notice-options form.form_favor input.submit, -.notice-options form.form_disfavor input.submit, -.notice-options .notice_delete, -.notice-options form.form_repeat input.submit, -#new_group a, -.pagination .nav_prev a, -.pagination .nav_next a, -button.close, -.form_group_leave input.submit, -.form_user_unsubscribe input.submit, -.form_group_join input.submit, -.form_user_subscribe input.submit, -.form_remote_authorize input.submit, -.entity_subscribe a, -.entity_moderation p, -.entity_sandbox input.submit, -.entity_silence input.submit, -.entity_delete input.submit, -.entity_role p, -.entity_role_administrator input.submit, -.entity_role_moderator input.submit, -.notice-options .repeated, -.form_notice label.notice_data-geo, -button.minimize, -.form_reset_key input.submit, -.entity_clear input.submit, -.entity_flag input.submit, -.entity_flag p, -.entity_subscribe input.submit, -#realtime_play, -#realtime_pause, -#realtime_popup { - background-image:url(../images/icons/icons-01.gif); - background-repeat:no-repeat; - background-color:transparent; -} - -#wrap form.processing input.submit, -#core a.processing, -.dialogbox.processing .submit_dialogbox { - background:#FFFFFF url(../../base/images/icons/icon_processing.gif) no-repeat 47% 47%; -} -.notice-options .form_repeat.processing { - background-image:none; -} - -#content, body[id$="adminpanel"] #content { - -moz-border-radius: 0 0 0 0; - border-bottom-left-radius: 0 0; - border-bottom-right-radius: 0 0; - border-top-left-radius: 0 0; - border-top-right-radius: 0 0; - border: 1px solid #7D6957; - box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px; - -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px; - -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px; - margin-left: 1em; - width: 37em; -} - -#content, body[id$="adminpanel"] #content, -#site_nav_local_views a, body[id$=adminpanel] #site_nav_local_views a, -#aside_primary { - border-color:transparent; -} - -body[id$=adminpanel] #aside_primary { -display:block; -} - -#aside_primary { - background-color:#E6DFDA; - -moz-border-radius: 0px 0px 0px 0px; - border-bottom-left-radius: 0 0; - border-bottom-right-radius: 0 0; - border-top-left-radius: 0 0; - border-top-right-radius: 0 0; - -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px inset; - -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px inset; - box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px inset; - width: 15em; - float: right; - margin-left: 1em; - margin-right: 1em; -} - -.aside .section { - border-bottom: 1px solid #7D6957; - margin-bottom: 1em; - padding-bottom: 1em; -} - -.aside .section h2 { - text-transform: capitalize; -} - -.section .vcard .photo { - margin-top: 0.3em; - float: left; -} - -.section p { - display: block !important; - clear: none !important; - margin-left: 2.5em; - font-size: 90% -} - -.section table { - margin: 0 auto; -} - -.section table td { - vertical-align: middle; -} - -.section p a.more { - float: right; -} - -#content, -#site_nav_local_views .current a, body[id$=adminpanel] #site_nav_local_views .current a, -.entity_send-a-message .form_notice, -.entity_moderation:hover ul, -.entity_role:hover ul, -.dialogbox { - background-color:#FFFFFF; -} - -#site_nav_local_views, body[id$=adminpanel] #site_nav_local_views { - margin-left: 2em; - margin-right: 0; - margin-bottom: -1em; - float: left; - width: 100%; - position: static; -} - -body[id$=adminpanel] #site_nav_local_views li { -float:left; -margin-right:18px; -list-style-type:none; -width: auto; -margin-bottom: 0; -} - -#site_nav_local_views li.current, body[id$=adminpanel] #site_nav_local_views li.current { - box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px; - -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px; - -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px; - position: relative; - z-index:1; - width: auto; -} - -#site_nav_local_views a, body[id$=adminpanel] #site_nav_local_views a { - background-color:rgba(194, 194, 194, 0.5); - padding: 1em; - text-transform: capitalize; - font-size: 90%; - float: left; - font-weight: normal; - width:auto; - border-radius:4px; - -moz-border-radius:4px; - -webkit-border-radius:4px; -} - -#site_nav_local_views a:hover, body[id$=adminpanel] #site_nav_local_views a:hover { - background-color: #ffc; -} - -#site_nav_local_views .current a, body[id$=adminpanel] #site_nav_local_views .current a { - text-shadow: rgba(194,194,194,0.5) 1px 1px 1px; -} - -#footer { -padding: 1.2em; -background-color:#E6DFDA; -width: 58em; -text-align: center; -} - -#licenses { -margin-left: 5em; -margin-right: 5em; -} - -.processing { - background-image:url(../../base/images/icons/icon_processing.gif); - background-repeat:no-repeat; - background-position:47% 47%; -} - -.error { - background-color:#F7E8E8; -} - -.success { - background-color:#EFF3DC; -} - -button.close { - background-position:0 -1120px; -} - -button.minimize { - background-position:0 -1912px; -} - -#anon_notice { - background-color: #E6DFDA; - float: none; - margin-right: auto; - margin-left: auto; - border: none; - text-align: center; - box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px inset; - -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px inset; - -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px inset; -} - -#showstream #anon_notice { - background-color: #E6DFDA; -} - -#export_data ul { - float: none; - text-align: center; -} - -#export_data li { - float:none; - display: inline; - margin-right: 5px; - margin-left: 5px; -} - -#export_data li a { - background-repeat:no-repeat; -} - -#export_data li a.rss { - background-position:0 -130px; -} - -#export_data li a.atom { - background-position:0 -64px; -} - -#export_data li a.foaf { - background-position:0 1px; -} - -.form_group_join input.submit, -.form_group_leave input.submit, -.form_user_subscribe input.submit, -.form_user_unsubscribe input.submit, -.form_remote_authorize input.submit, -.entity_subscribe a { - background-color:#AAAAAA; - color:#FFFFFF; -} - -.form_group_leave input.submit, -.form_user_unsubscribe input.submit { - background-position:5px -1246px; -} - -.form_group_join input.submit, -.form_user_subscribe input.submit, -.form_remote_authorize input.submit, -.entity_subscribe a { - background-position:5px -1181px; -} - -.entity_edit a { - background-position: 5px -719px; -} - -.entity_send-a-message a { - background-position: 5px -852px; -} - -.entity_send-a-message .form_notice, -.entity_moderation:hover ul, -.entity_role:hover ul, -.dialogbox { - box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); - -moz-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); - -webkit-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); -} - -.entity_nudge p, -.form_user_nudge input.submit { - background-position: 5px -785px; -} - -.form_user_block input.submit, -.form_user_unblock input.submit, -.form_group_block input.submit, -.form_group_unblock input.submit { - background-position: 5px -918px; -} - -.form_make_admin input.submit { - background-position: 5px -983px; -} - -.entity_moderation p { - background-position: 5px -1313px; -} - -.entity_sandbox input.submit { - background-position: 5px -1380px; -} - -.entity_silence input.submit { - background-position: 5px -1445px; -} - -.entity_delete input.submit { - background-position: 5px -1511px; -} - -.entity_sandbox .form_user_unsandbox input.submit { - background-position: 5px -2568px; -} - -.entity_silence .form_user_unsilence input.submit { - background-position: 5px -2633px; -} - -.entity_role p { - background-position: 5px -2436px; -} - -.entity_role_administrator .form_user_grantrole input.submit { - background-position: 5px -983px; -} - -.entity_role_moderator .form_user_grantrole input.submit { - background-position: 5px -1313px; -} - -.entity_role_administrator .form_user_revokerole input.submit { - background-position: 5px -2699px; -} - -.entity_role_moderator .form_user_revokerole input.submit { - background-position: 5px -2501px; -} - -.form_reset_key input.submit { - background-position: 5px -1973px; -} - -.entity_clear input.submit { - background-position: 5px -2039px; -} - -.entity_flag input.submit, -.entity_flag p { - background-position: 5px -2105px; -} - -.entity_subscribe input.accept { - background-position: 5px -2171px; -} - -.entity_subscribe input.reject { - background-position: 5px -2237px; -} - -#realtime_play { - background-position: 0 -2308px; -} - -#realtime_pause { - background-position: 0 -2374px; -} - -#realtime_popup { - background-position: 0 -1714px; -} - -/* NOTICES */ -.notice .attachment { - background-position:0 -394px; -} - -.notice .attachment.more { - background-position:0 -2770px; -} - -#attachments .attachment { - background:none; -} -.notice-options .notice_reply { - background-position:0 -592px; -} - -.notice-options form.form_favor input.submit { - background-position:0 -460px; -} - -.notice-options form.form_disfavor input.submit { - background-position:0 -526px; -} -.notice-options .notice_delete { - background-position:0 -658px; -} -.notice-options form.form_repeat input.submit { - background-position:0 -1582px; -} - -.notice-options .repeated { - background-position:0 -1648px; -} - -.notices .attachment.more, -.notices div.entry-content, -.notices div.notice-options { - opacity:0.4; -} - -.notices li:hover .attachment.more, -.notices li:hover div.entry-content, -.notices li:hover div.notice-options { - opacity:1; -} - -.opaque { - opacity:1 !important; -} - -.attachment.more, -.notice-options a, -.notice-options input { - font-family: 'LinuxLibertineCRegular', serif; - box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); - -moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); - -webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); -} - -.attachment.more:focus { - box-shadow:none; - -moz-box-shadow:none; - -webkit-box-shadow:none; - outline:none; -} - -#content .notices li:hover, -#content .applications li:hover, -#content tbody tr:hover { - background-color:rgba(240, 240, 240, 0.2); -} - -#content .notice .author .photo { - margin-right: 0.5em; - margin-top: 0.3em; -} - -#conversation .notices li:hover { - background-color:transparent; -} - -.notices .notices { - background-color:rgba(200, 200, 200, 0.050); -} - -.notices .notices .notices { - background-color:rgba(200, 200, 200, 0.100); -} - -.notices .notices .notices .notices { - background-color:rgba(200, 200, 200, 0.150); -} - -.notices .notices .notices .notices .notices { - background-color:rgba(200, 200, 200, 0.300); -} - -/*END: NOTICES */ - -#new_group a { - background-position:0 -1054px; -} - -.pagination .nav_prev a, -.pagination .nav_next a { - border-bottom-left-radius: 4px 4px; - border-bottom-right-radius: 4px 4px; - border-style: solid; - border-width: 2px; - border-top-left-radius: 4px 4px; - border-top-right-radius: 4px 4px; - background-repeat:no-repeat; - background-color: #D5C5B6; - color:#000000; - border-color:#7D6957; - border-top-color:#DAD5D0; - border-left-color:#DAD5D0; - box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); - -moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); - -webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); -} - -.pagination .nav_prev a { - background-position:10% -187px; -} - -.pagination .nav_next a { - background-position:105% -252px; -} - -.pagination .nav .processing { - background-image:url(../../base/images/icons/icon_processing.gif); - box-shadow:none; - -moz-box-shadow:none; - -webkit-box-shadow:none; - outline:none; -} - -.pagination .nav_next a.processing { - background-position:90% 47%; -} - -.pagination .nav_prev a.processing { - background-position:10% 47%; -} - -}/*end of @media screen, projection, tv*/ diff --git a/theme/victorian/css/ie.css b/theme/victorian/css/ie.css deleted file mode 100644 index 2befa9cc48..0000000000 --- a/theme/victorian/css/ie.css +++ /dev/null @@ -1,20 +0,0 @@ -/* IE specific styles */ - -.notice-options input.submit { -color:#FFFFFF; -} -#site_nav_local_views a { -background-color:#C8D1D5; -} -.form_notice .count + label { -background:transparent url(../../base/images/icons/icons-01.gif) no-repeat 0 -328px; -} -.form_notice input.notice_data-attach { -filter: alpha(opacity=0); -} -.notice-options form.form_favor input.submit { -background-position:0 -460px; -} -.notice-options form.form_disfavor input.submit { -background-position:0 -526px; -} diff --git a/theme/victorian/css/mp-screen.css b/theme/victorian/css/mp-screen.css deleted file mode 100644 index 584bfc7c10..0000000000 --- a/theme/victorian/css/mp-screen.css +++ /dev/null @@ -1,292 +0,0 @@ -/** theme: mobile profile screen - * - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2009-2010 StatusNet, Inc. - * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported - * @link http://status.net/ - */ - -#wrap { -min-width:0; -max-width:100%; -} - -#header { -margin:0; -padding:0.7em 2%; -width:96%; -} - -address { -margin:1em 0 0 0; -float:left; -width:100%; -} -address .vcard .photo { -margin-right:0; -} - -address img + .fn { -display:block; -margin-top:1em; -float:left; -} - -.vcard .photo { -margin-right:7px; -} - - -.form_settings fieldset { -margin-bottom:7px; -} - -.form_settings label { -width:auto; -display:block; -float:none; -} -.form_settings .form_data li { -margin-bottom:7px; -} - -.form_settings .form_data textarea, -.form_settings .form_data select, -.form_settings .form_data input { -margin-left:0; -display:block; -} -.form_settings .form_data textarea { -width:96.41%; -} - -.form_settings .form_data label { -float:none; -} - -.form_settings .form_data p.form_guide { -width:auto; -margin-left:0; -} - -#site_nav_global_primary { -margin:0; -width:100%; -list-style-type:none; -position:absolute; -top:0; -left:0; -} -#site_nav_global_primary li { -margin-left:0; -margin-right:4%; -float:left; -font-size:0.9em; -} - -#form_notice { -width:100%; -float: left; -} - -#form_notice textarea { -width:60%; -height:20px; -} - -.form_notice .count { -position:absolute; -bottom:2px; -right:40%; -z-index:9; -} - -/*input type=file no good in -iPhone/iPod Touch, Android, Opera Mini Simulator -*/ -.form_notice .count + label, -#form_notice label[for="notice_data-attach"] { -display:none; -} -#form_notice input.notice_data-attach { -position:static; -clear:both; -width:65%; -height:auto; -display:block; -z-index:9; -padding:0; -margin:0; -background:none; -opacity:1; -} - -#form_notice .submit { -width:20%; -right:2%; -text-align:center; -} - -#site_nav_local_views { - margin-bottom: -0.5em; -} - -#site_nav_local_views li { -margin-left:0; -margin-right: 4px; -} -#site_nav_local_views li:first-child { -margin-left:0; -} -#site_nav_local_views a { -padding: 5px 10px; -display:block; -font-size:0.9em; -} -#site_nav_local_views .current a { -text-shadow:none; -} -#site_nav_local_views li { --moz-box-shadow:none; --webkit-box-shadow:none; -box-shadow:none; -} - - -#content { -width:96.41%; -min-height:auto; -} -#content, -#site_nav_local_views a, -#aside_primary { -border:0; -} - -.instructions p, -.instructions ul { -margin-bottom:4px; -} - -h1 { -margin-bottom:0; -} - -.notice, -.profile { -padding-top:4px; -padding-bottom:4px; -min-height:65px; -} -#content .notice .entry-title { -float:left; -width:100%; -margin-left:0; -} -#content .notice .author .photo { -position:static; -float:left; -} -#content .notice div.entry-content { -margin-left:0; -width:75%; -max-width:100%; -min-width:0; -} -.notice-options { -width:43px; -margin-right:1%; -} - -.notice-options form.processing { -background-image:none; -} -#wrap .notice-options form.processing input.submit { -background-position:0 47%; -} - -.notice .notice-options a, -.notice .notice-options input { -box-shadow:none; --moz-box-shadow:none; --webkit-box-shadow:none; -} -.notice .notice-options a, -.notice .notice-options form { -margin:-4px 0 0 0; -} -.notice .notice-options .form_repeat, -.notice .notice-options .notice_delete { -margin-top:11px; -} -.notice .notice-options .form_favor, -.notice .notice-options .form_disfavor, -.notice .notice-options .form_repeat { -margin-right:11px; -} - -.notice .notice-options .notice_delete { -float:left; -} - -.entity_profile { -width:auto; -} - -.entity_actions { -margin-right:0; -margin-left:0; -clear:both; -float:none; -width:100%; -max-width:9999px; -} - -.entity_profile { -margin-bottom:7px; -min-height:0; -} - -.entity_profile .entity_fn, -.entity_profile .entity_nickname, -.entity_profile .entity_location, -.entity_profile .entity_url, -.entity_profile .entity_note, -.entity_profile .entity_tags, -.entity_profile .entity_aliases { -line-height:1.4; -margin-left:0; -} - -.entity_profile .entity_depiction { -margin-bottom:1%; -margin-right:7px; -} - -.entity_actions { -margin-bottom:1%; -float:left; -width:100%; -} - -.entity_actions li { -float:left; -margin-right:1.5%; -margin-bottom:0; -height:29px; -width:40%; -} - -.user_in .entity_actions .entity_subscribe { -margin-bottom:47px; -width:auto; -height:auto; -margin-right:5%; -} - -#footer { -width:96%; -padding:2%; -} - diff --git a/theme/victorian/default-avatar-mini.png b/theme/victorian/default-avatar-mini.png deleted file mode 100644 index 5ff4f440b9..0000000000 Binary files a/theme/victorian/default-avatar-mini.png and /dev/null differ diff --git a/theme/victorian/default-avatar-orig.png b/theme/victorian/default-avatar-orig.png deleted file mode 100644 index 0682e0c784..0000000000 Binary files a/theme/victorian/default-avatar-orig.png and /dev/null differ diff --git a/theme/victorian/default-avatar-profile.png b/theme/victorian/default-avatar-profile.png deleted file mode 100644 index 78ca9bca44..0000000000 Binary files a/theme/victorian/default-avatar-profile.png and /dev/null differ diff --git a/theme/victorian/default-avatar-stream.png b/theme/victorian/default-avatar-stream.png deleted file mode 100644 index fbb9be276b..0000000000 Binary files a/theme/victorian/default-avatar-stream.png and /dev/null differ diff --git a/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.eot b/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.eot deleted file mode 100644 index 7e6f04e5d3..0000000000 Binary files a/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.eot and /dev/null differ diff --git a/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.svg b/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.svg deleted file mode 100644 index 805958e5ca..0000000000 --- a/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.svg +++ /dev/null @@ -1,241 +0,0 @@ - - - - -This is a custom SVG webfont generated by Font Squirrel. -Designer : Philipp H. Poll -Foundry : Philipp H. Poll -Foundry URL : http://linuxlibertine.sf.net - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.ttf b/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.ttf deleted file mode 100644 index 63a2810568..0000000000 Binary files a/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.ttf and /dev/null differ diff --git a/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.woff b/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.woff deleted file mode 100644 index 4de051ecfe..0000000000 Binary files a/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.woff and /dev/null differ diff --git a/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.eot b/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.eot deleted file mode 100644 index 883a04d7a0..0000000000 Binary files a/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.eot and /dev/null differ diff --git a/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.svg b/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.svg deleted file mode 100644 index 251eede408..0000000000 --- a/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.svg +++ /dev/null @@ -1,241 +0,0 @@ - - - - -This is a custom SVG webfont generated by Font Squirrel. -Designer : Philipp H. Poll -Foundry : Philipp H. Poll -Foundry URL : http://linuxlibertine.sf.net - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.ttf b/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.ttf deleted file mode 100644 index 9ddc4b2d8c..0000000000 Binary files a/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.ttf and /dev/null differ diff --git a/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.woff b/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.woff deleted file mode 100644 index f5178bc6e9..0000000000 Binary files a/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.woff and /dev/null differ diff --git a/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.eot b/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.eot deleted file mode 100644 index 19f9b7831e..0000000000 Binary files a/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.eot and /dev/null differ diff --git a/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.svg b/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.svg deleted file mode 100644 index 2a6ae3f183..0000000000 --- a/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.svg +++ /dev/null @@ -1,241 +0,0 @@ - - - - -This is a custom SVG webfont generated by Font Squirrel. -Designer : Philipp H. Poll -Foundry : Philipp H. Poll -Foundry URL : http://linuxlibertine.sf.net - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.ttf b/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.ttf deleted file mode 100644 index 89209c0e39..0000000000 Binary files a/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.ttf and /dev/null differ diff --git a/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.woff b/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.woff deleted file mode 100644 index d78e0c6e9d..0000000000 Binary files a/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.woff and /dev/null differ diff --git a/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.eot b/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.eot deleted file mode 100644 index 26f192376b..0000000000 Binary files a/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.eot and /dev/null differ diff --git a/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.svg b/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.svg deleted file mode 100644 index 40609c6602..0000000000 --- a/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.svg +++ /dev/null @@ -1,241 +0,0 @@ - - - - -This is a custom SVG webfont generated by Font Squirrel. -Designer : Philipp H. Poll -Foundry : Philipp H. Poll -Foundry URL : http://linuxlibertine.sf.net - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.ttf b/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.ttf deleted file mode 100644 index 63afbdd39c..0000000000 Binary files a/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.ttf and /dev/null differ diff --git a/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.woff b/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.woff deleted file mode 100644 index cdfe614e07..0000000000 Binary files a/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.woff and /dev/null differ diff --git a/theme/victorian/fonts/Philipp Poll License - LinuxLibertine.txt b/theme/victorian/fonts/Philipp Poll License - LinuxLibertine.txt deleted file mode 100644 index e8bf53c1e3..0000000000 --- a/theme/victorian/fonts/Philipp Poll License - LinuxLibertine.txt +++ /dev/null @@ -1,98 +0,0 @@ -This Font Software is Copyright (c) 2003-2006, Philipp H. Poll (http://linuxlibertine.sf.net/). -All Rights Reserved. - -"Linux Libertine" is a Reserved Font Name for this Font Software. - -This Font Software is licensed under the SIL Open Font License, Version 1.0. -No modification of the license is permitted, only verbatim copy is allowed. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.0 - 22 November 2005 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of cooperative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide an open -framework in which fonts may be shared and improved in partnership with -others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and sold with any software provided that the font -names of derivative works are changed. The fonts and derivatives, -however, cannot be released under any other type of license. - -DEFINITIONS -"Font Software" refers to any and all of the following: - - font files - - data files - - source code - - build scripts - - documentation - -"Reserved Font Name" refers to the Font Software name as seen by -users and any other names as specified after the copyright statement. - -"Standard Version" refers to the collection of Font Software -components as distributed by the Copyright Holder. - -"Modified Version" refers to any derivative font software made by -adding to, deleting, or substituting -- in part or in whole -- -any of the components of the Standard Version, by changing formats -or by porting the Font Software to a new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Standard or Modified Versions, may be sold by itself. - -2) Standard or Modified Versions of the Font Software may be bundled, -redistributed and sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s), in part or in whole, unless explicit written permission is -granted by the Copyright Holder. This restriction applies to all -references stored in the Font Software, such as the font menu name and -other font description fields, which are used to differentiate the -font from others. - -4) The name(s) of the Copyright Holder or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed using this license, and may not be distributed -under any other license. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/theme/victorian/fonts/stylesheet.css b/theme/victorian/fonts/stylesheet.css deleted file mode 100644 index bbb24d16d7..0000000000 --- a/theme/victorian/fonts/stylesheet.css +++ /dev/null @@ -1,28 +0,0 @@ -/* Generated by Font Squirrel (http://www.fontsquirrel.com) on September 5, 2010 08:38:55 PM America/New_York */ - - - -@font-face { - font-family: 'LinuxLibertineRegular'; - src: url('LinLibertine_Re-4.1_.8_-webfont.eot'); - src: local('☺'), url('LinLibertine_Re-4.1_.8_-webfont.woff') format('woff'), url('LinLibertine_Re-4.1_.8_-webfont.ttf') format('truetype'), url('LinLibertine_Re-4.1_.8_-webfont.svg#webfont3W3HuBJC') format('svg'); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: 'LinuxLibertineItalic'; - src: url('LinLibertine_It-4.0_.3_-webfont.eot'); - src: local('☺'), url('LinLibertine_It-4.0_.3_-webfont.woff') format('woff'), url('LinLibertine_It-4.0_.3_-webfont.ttf') format('truetype'), url('LinLibertine_It-4.0_.3_-webfont.svg#webfontJZPzbf10') format('svg'); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: 'LinuxLibertineBold'; - src: url('LinLibertine_Bd-4.0_.2_-webfont.eot'); - src: local('☺'), url('LinLibertine_Bd-4.0_.2_-webfont.woff') format('woff'), url('LinLibertine_Bd-4.0_.2_-webfont.ttf') format('truetype'), url('LinLibertine_Bd-4.0_.2_-webfont.svg#webfontA4g6XhNd') format('svg'); - font-weight: normal; - font-style: normal; -} - diff --git a/theme/victorian/images/background.jpg b/theme/victorian/images/background.jpg deleted file mode 100644 index 340a46e726..0000000000 Binary files a/theme/victorian/images/background.jpg and /dev/null differ diff --git a/theme/victorian/images/icons/icons-01.gif b/theme/victorian/images/icons/icons-01.gif deleted file mode 100644 index 4b1cb331a6..0000000000 Binary files a/theme/victorian/images/icons/icons-01.gif and /dev/null differ diff --git a/theme/victorian/logo.png b/theme/victorian/logo.png deleted file mode 100644 index 6ab9bd8b34..0000000000 Binary files a/theme/victorian/logo.png and /dev/null differ diff --git a/theme/victorian/mobilelogo.png b/theme/victorian/mobilelogo.png deleted file mode 100644 index 1ea5139686..0000000000 Binary files a/theme/victorian/mobilelogo.png and /dev/null differ diff --git a/theme/victorian/theme.ini b/theme/victorian/theme.ini deleted file mode 100644 index 33d0b67978..0000000000 --- a/theme/victorian/theme.ini +++ /dev/null @@ -1 +0,0 @@ -include=base