Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.x
* '1.0.x' of gitorious.org:statusnet/mainline: use conversationnoticestream in conversationrepliesaction use conversationnoticestream in conversationaction make ConversationNoticeStream accept a profile parameter enable user directory and extended profile by default Remove incompatible theme victorian Remove incompatible theme shiny Remove incompatible theme pigeonthoughts Remove incompatible theme mnml Remove incompatible theme identica Remove incompatible theme h4ck3r Remove incompatible theme default Remove incompatible theme cloudy Remove incompatible theme cleaner Remove incompatible theme clean Remove incompatible theme biz correctly return for deleted items show event as deleted Use pkeyGet() instead of idStream() for fave caching store oft-requested stuff in the data object
@ -47,8 +47,11 @@ require_once INSTALLDIR.'/lib/noticelist.php';
|
|||||||
*/
|
*/
|
||||||
class ConversationAction extends Action
|
class ConversationAction extends Action
|
||||||
{
|
{
|
||||||
var $id = null;
|
var $id = null;
|
||||||
var $page = null;
|
var $page = null;
|
||||||
|
var $notices = null;
|
||||||
|
|
||||||
|
const MAX_NOTICES = 500;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialization.
|
* Initialization.
|
||||||
@ -69,6 +72,19 @@ class ConversationAction extends Action
|
|||||||
if (empty($this->page)) {
|
if (empty($this->page)) {
|
||||||
$this->page = 1;
|
$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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -106,11 +122,9 @@ class ConversationAction extends Action
|
|||||||
*/
|
*/
|
||||||
function showContent()
|
function showContent()
|
||||||
{
|
{
|
||||||
$notices = Notice::conversationStream($this->id, null, null);
|
$tnl = new ThreadedNoticeList($this->notices, $this);
|
||||||
|
|
||||||
$ct = new ConversationTree($notices, $this);
|
$cnt = $tnl->show();
|
||||||
|
|
||||||
$cnt = $ct->show();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function isReadOnly()
|
function isReadOnly()
|
||||||
@ -118,173 +132,3 @@ class ConversationAction extends Action
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Conversation tree
|
|
||||||
*
|
|
||||||
* The widget class for displaying a hierarchical list of notices.
|
|
||||||
*
|
|
||||||
* @category Widget
|
|
||||||
* @package StatusNet
|
|
||||||
* @author Evan Prodromou <evan@status.net>
|
|
||||||
* @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 <evan@status.net>
|
|
||||||
* @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 <li>; we skip, since the ConversationTree
|
|
||||||
* takes care of that.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
function showStart()
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* finish the notice
|
|
||||||
*
|
|
||||||
* The default closes the <li>; 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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -66,9 +66,7 @@ class ConversationRepliesAction extends ConversationAction
|
|||||||
*/
|
*/
|
||||||
function showContent()
|
function showContent()
|
||||||
{
|
{
|
||||||
$notices = Notice::conversationStream($this->id, null, null);
|
$ct = new FullThreadedNoticeList($this->notices, $this);
|
||||||
|
|
||||||
$ct = new FullThreadedNoticeList($notices, $this);
|
|
||||||
|
|
||||||
$cnt = $ct->show();
|
$cnt = $ct->show();
|
||||||
}
|
}
|
||||||
|
@ -96,17 +96,21 @@ class Notice extends Memcached_DataObject
|
|||||||
const GROUP_SCOPE = 4;
|
const GROUP_SCOPE = 4;
|
||||||
const FOLLOWER_SCOPE = 8;
|
const FOLLOWER_SCOPE = 8;
|
||||||
|
|
||||||
|
protected $_profile = -1;
|
||||||
|
|
||||||
function getProfile()
|
function getProfile()
|
||||||
{
|
{
|
||||||
$profile = Profile::staticGet('id', $this->profile_id);
|
if ($this->_profile == -1) {
|
||||||
|
$this->_profile = Profile::staticGet('id', $this->profile_id);
|
||||||
|
|
||||||
if (empty($profile)) {
|
if (empty($this->_profile)) {
|
||||||
// TRANS: Server exception thrown when a user profile for a notice cannot be found.
|
// 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).
|
// 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));
|
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()
|
function delete()
|
||||||
|
@ -52,9 +52,15 @@ class Profile extends Memcached_DataObject
|
|||||||
/* the code above is auto generated do not remove the tag below */
|
/* the code above is auto generated do not remove the tag below */
|
||||||
###END_AUTOCODE
|
###END_AUTOCODE
|
||||||
|
|
||||||
|
protected $_user = -1; // Uninitialized value distinct from null
|
||||||
|
|
||||||
function getUser()
|
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)
|
function getAvatar($width, $height=null)
|
||||||
@ -465,34 +471,6 @@ class Profile extends Memcached_DataObject
|
|||||||
|
|
||||||
function hasFave($notice)
|
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,
|
$fave = Fave::pkeyGet(array('user_id' => $this->id,
|
||||||
'notice_id' => $notice->id));
|
'notice_id' => $notice->id));
|
||||||
return ((is_null($fave)) ? false : true);
|
return ((is_null($fave)) ? false : true);
|
||||||
|
@ -73,16 +73,21 @@ class User extends Memcached_DataObject
|
|||||||
/* the code above is auto generated do not remove the tag below */
|
/* the code above is auto generated do not remove the tag below */
|
||||||
###END_AUTOCODE
|
###END_AUTOCODE
|
||||||
|
|
||||||
|
protected $_profile = -1;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return Profile
|
* @return Profile
|
||||||
*/
|
*/
|
||||||
function getProfile()
|
function getProfile()
|
||||||
{
|
{
|
||||||
$profile = Profile::staticGet('id', $this->id);
|
if ($this->_profile == -1) { // invalid but distinct from null
|
||||||
if (empty($profile)) {
|
$this->_profile = Profile::staticGet('id', $this->id);
|
||||||
throw new UserNoProfileException($this);
|
if (empty($this->_profile)) {
|
||||||
|
throw new UserNoProfileException($this);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return $profile;
|
|
||||||
|
return $this->_profile;
|
||||||
}
|
}
|
||||||
|
|
||||||
function isSubscribed($other)
|
function isSubscribed($other)
|
||||||
|
@ -46,10 +46,11 @@ if (!defined('STATUSNET')) {
|
|||||||
*/
|
*/
|
||||||
class ConversationNoticeStream extends ScopingNoticeStream
|
class ConversationNoticeStream extends ScopingNoticeStream
|
||||||
{
|
{
|
||||||
function __construct($id)
|
function __construct($id, $profile = null)
|
||||||
{
|
{
|
||||||
parent::__construct(new CachingNoticeStream(new RawConversationNoticeStream($id),
|
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;
|
return $ids;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -312,7 +312,9 @@ $default =
|
|||||||
'QnA' => null,
|
'QnA' => null,
|
||||||
'SearchSub' => null,
|
'SearchSub' => null,
|
||||||
'TagSub' => 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
|
'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories
|
||||||
'server' => null,
|
'server' => null,
|
||||||
'sslserver' => null,
|
'sslserver' => null,
|
||||||
|
@ -329,6 +329,11 @@ class EventPlugin extends MicroappPlugin
|
|||||||
{
|
{
|
||||||
$rsvp = RSVP::fromNotice($notice);
|
$rsvp = RSVP::fromNotice($notice);
|
||||||
|
|
||||||
|
if (empty($rsvp)) {
|
||||||
|
$out->element('p', null, _('Deleted.'));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$out->elementStart('div', 'rsvp');
|
$out->elementStart('div', 'rsvp');
|
||||||
$out->raw($rsvp->asHTML());
|
$out->raw($rsvp->asHTML());
|
||||||
$out->elementEnd('div');
|
$out->elementEnd('div');
|
||||||
@ -340,8 +345,10 @@ class EventPlugin extends MicroappPlugin
|
|||||||
$profile = $notice->getProfile();
|
$profile = $notice->getProfile();
|
||||||
$event = Happening::fromNotice($notice);
|
$event = Happening::fromNotice($notice);
|
||||||
|
|
||||||
assert(!empty($event));
|
if (empty($event)) {
|
||||||
assert(!empty($profile));
|
$out->element('p', null, _('Deleted.'));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$out->elementStart('div', 'vevent event'); // VEVENT IN
|
$out->elementStart('div', 'vevent event'); // VEVENT IN
|
||||||
|
|
||||||
|
@ -1,489 +0,0 @@
|
|||||||
/** theme: biz
|
|
||||||
*
|
|
||||||
* @package StatusNet
|
|
||||||
* @author Sarven Capadisli <csarven@status.net>
|
|
||||||
* @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%;
|
|
||||||
}
|
|
@ -1,16 +0,0 @@
|
|||||||
/**
|
|
||||||
* @package StatusNet
|
|
||||||
* @author Sarven Capadisli <csarven@status.net>
|
|
||||||
* @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;
|
|
||||||
}
|
|
Before Width: | Height: | Size: 646 B |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 935 B |
Before Width: | Height: | Size: 9.3 KiB |
Before Width: | Height: | Size: 9.9 KiB |
@ -1,256 +0,0 @@
|
|||||||
/** theme: clean
|
|
||||||
*
|
|
||||||
* @package StatusNet
|
|
||||||
* @author Samantha Doherty <sammy@status.net>
|
|
||||||
* @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*/
|
|
@ -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;
|
|
||||||
}
|
|
@ -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;
|
|
||||||
}
|
|
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 8.8 KiB |
Before Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 87 KiB |
Before Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 3.9 KiB |
@ -1 +0,0 @@
|
|||||||
include=rebase
|
|
@ -1,810 +0,0 @@
|
|||||||
/** theme: cleaner
|
|
||||||
*
|
|
||||||
* @package StatusNet
|
|
||||||
* @author Samantha Doherty <sammy@status.net>
|
|
||||||
* @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*/
|
|
@ -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;
|
|
||||||
}
|
|
@ -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;
|
|
||||||
}
|
|
Before Width: | Height: | Size: 857 B |
Before Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 9.1 KiB |
@ -1 +0,0 @@
|
|||||||
include=rebase
|
|
@ -1,82 +0,0 @@
|
|||||||
/**
|
|
||||||
* @package StatusNet
|
|
||||||
* @author Sarven Capadisli <csarven@status.net>
|
|
||||||
* @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;
|
|
||||||
}
|
|
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 9.0 KiB |
Before Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 820 B |
Before Width: | Height: | Size: 701 B |
Before Width: | Height: | Size: 397 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 673 B |
Before Width: | Height: | Size: 336 B |
Before Width: | Height: | Size: 777 B |
Before Width: | Height: | Size: 148 B |
Before Width: | Height: | Size: 331 B |
Before Width: | Height: | Size: 73 B |
Before Width: | Height: | Size: 74 B |
Before Width: | Height: | Size: 75 B |
Before Width: | Height: | Size: 82 B |
Before Width: | Height: | Size: 76 B |
Before Width: | Height: | Size: 79 B |
Before Width: | Height: | Size: 85 B |
Before Width: | Height: | Size: 68 B |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 329 B |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 9.9 KiB |
@ -1,518 +0,0 @@
|
|||||||
/** theme: default
|
|
||||||
*
|
|
||||||
* @package StatusNet
|
|
||||||
* @author Sarven Capadisli <csarven@status.net>
|
|
||||||
* @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*/
|
|
@ -1,27 +0,0 @@
|
|||||||
/**
|
|
||||||
* @package StatusNet
|
|
||||||
* @author Sarven Capadisli <csarven@status.net>
|
|
||||||
* @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;
|
|
||||||
}
|
|
Before Width: | Height: | Size: 512 B |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 9.9 KiB |
Before Width: | Height: | Size: 3.9 KiB |
@ -1 +0,0 @@
|
|||||||
include=base
|
|
@ -1,244 +0,0 @@
|
|||||||
/** theme: h4ck3r
|
|
||||||
*
|
|
||||||
* @package StatusNet
|
|
||||||
* @author Sarven Capadisli <csarven@status.net>
|
|
||||||
* @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*/
|
|
@ -1,16 +0,0 @@
|
|||||||
/**
|
|
||||||
* @package StatusNet
|
|
||||||
* @author Sarven Capadisli <csarven@status.net>
|
|
||||||
* @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;
|
|
||||||
}
|
|
Before Width: | Height: | Size: 646 B |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 423 KiB |
Before Width: | Height: | Size: 9.9 KiB |
@ -1,517 +0,0 @@
|
|||||||
/** theme: identica
|
|
||||||
*
|
|
||||||
* @package StatusNet
|
|
||||||
* @author Sarven Capadisli <csarven@status.net>
|
|
||||||
* @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*/
|
|
@ -1,27 +0,0 @@
|
|||||||
/**
|
|
||||||
* @package StatusNet
|
|
||||||
* @author Sarven Capadisli <csarven@status.net>
|
|
||||||
* @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;
|
|
||||||
}
|
|
Before Width: | Height: | Size: 512 B |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 3.9 KiB |
@ -1 +0,0 @@
|
|||||||
include=base
|
|
@ -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;
|
|
||||||
}
|
|
@ -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;
|
|
||||||
}
|
|
@ -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;
|
|
||||||
}
|
|
@ -1,293 +0,0 @@
|
|||||||
/** theme: mobile profile screen
|
|
||||||
*
|
|
||||||
* @package StatusNet
|
|
||||||
* @author Sarven Capadisli <csarven@status.net>
|
|
||||||
* @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%;
|
|
||||||
}
|
|
||||||
|
|
@ -1,53 +0,0 @@
|
|||||||
/** Universal Ad Package styles:
|
|
||||||
* Medium Rectangle 300x250
|
|
||||||
* Rectangle 180x150
|
|
||||||
* Leaderboard 728x90
|
|
||||||
* Wide Skyscraper 160x600
|
|
||||||
*
|
|
||||||
* @package StatusNet
|
|
||||||
* @author Sarven Capadisli <csarven@status.net>
|
|
||||||
* @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%;
|
|
||||||
}
|
|
Before Width: | Height: | Size: 507 B |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 821 B |
@ -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-<fontid>.txt, where <fontid> is some unique identification
|
|
||||||
of the font family. If a separate "readme" file accompanies the Work,
|
|
||||||
we recommend a name of the form README-<fontid>.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.
|
|
@ -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;
|
|
||||||
}
|
|
||||||
|
|