diff options
Diffstat (limited to 'view/theme/dispy')
83 files changed, 0 insertions, 17495 deletions
diff --git a/view/theme/dispy/README.md b/view/theme/dispy/README.md deleted file mode 100644 index a058d9d50..000000000 --- a/view/theme/dispy/README.md +++ /dev/null @@ -1,29 +0,0 @@ -## Dispy Themes ## - -**Dispy**: Light, Spartan, Sleek, and Functional - -**Dispy Dark**: Dark, Spartan, Sleek, and Functional - - -### A Brief History ### - -Their beginnings are unknown to me, but they are part of the themes -that Mike Macgirvin, Emmanual Revah, put together for Friendica, I *think*. - -Later on, in the fall and winter of 2011-2012, I took over maintaining -the original dispy (now called dispy light). It went through a minor re-vamp, -keeping to its spartan look as much as possible. - -I added more rounded corners, and as Friendica grew in capabilities and -features, so did it - but, I always wanted to keep the features down, so as -to be fast and spartan, which seems to appeal to a lot of the geekier -users (like myself). - -Soon after I started maintaining dispy light, I developed its sister -theme - dark - according to another user's request (and other "+1" -votes for one like it). So *dark* was "born". - -Anyway, I've added a few more things since, and I hope I haven't -over-done it ;-). - -Simon diff --git a/view/theme/dispy/bottom.tpl b/view/theme/dispy/bottom.tpl deleted file mode 100644 index 130bfb25a..000000000 --- a/view/theme/dispy/bottom.tpl +++ /dev/null @@ -1,46 +0,0 @@ -<script type="text/javascript" src="$baseurl/view/theme/dispy/js/jquery.autogrow.textarea.js"></script> -<script type="text/javascript"> -$(document).ready(function() { - -}); -function tautogrow(id) { - $("textarea#comment-edit-text-" + id).autogrow(); -}; - -function insertFormatting(comment, BBcode, id) { - var tmpStr = $("#comment-edit-text-" + id).val(); - if(tmpStr == comment) { - tmpStr = ""; - $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); - $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); - openMenu("comment-edit-submit-wrapper-" + id); - } - textarea = document.getElementById("comment-edit-text-" + id); - if (document.selection) { - textarea.focus(); - selected = document.selection.createRange(); - if (BBcode == "url") { - selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]"; - } else { - selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; - } - } else if (textarea.selectionStart || textarea.selectionStart == "0") { - var start = textarea.selectionStart; - var end = textarea.selectionEnd; - if (BBcode == "url") { - textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" - + "http://" + textarea.value.substring(start, end) - + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); - } else { - textarea.value = textarea.value.substring(0, start) - + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" - + textarea.value.substring(end, textarea.value.length); - } - } - return true; -} - -function cmtBbOpen(id) { - $(".comment-edit-bb-" + id).show(); -} -</script> diff --git a/view/theme/dispy/comment_item.tpl b/view/theme/dispy/comment_item.tpl deleted file mode 100644 index aa63a03ed..000000000 --- a/view/theme/dispy/comment_item.tpl +++ /dev/null @@ -1,69 +0,0 @@ - <div class="comment-wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;"> - <form class="comment-edit-form" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;"> - <input type="hidden" name="type" value="$type" /> - <input type="hidden" name="profile_uid" value="$profile_uid" /> - <input type="hidden" name="parent" value="$parent" /> - <input type="hidden" name="return" value="$return_path" /> - <input type="hidden" name="jsreload" value="$jsreload" /> - <input type="hidden" name="preview" id="comment-preview-inp-$id" value="0" /> - - <div class="comment-edit-photo" id="comment-edit-photo-$id" > - <a class="comment-edit-photo-link" href="$mylink" title="$mytitle"><img class="my-comment-photo" src="$myphoto" alt="$mytitle" title="$mytitle" /></a> - </div> - <div class="comment-edit-photo-end"></div> - <ul class="comment-edit-bb-$id"> - <li><a class="editicon boldbb shadow" - style="cursor: pointer;" - onclick="insertFormatting('$comment','b', $id);"></a></li> - <li><a class="editicon italicbb shadow" - style="cursor: pointer;" - onclick="insertFormatting('$comment','i', $id);"></a></li> - <li><a class="editicon underlinebb shadow" - style="cursor: pointer;" - onclick="insertFormatting('$comment','u', $id);"></a></li> - <li><a class="editicon quotebb shadow" - style="cursor: pointer;" - onclick="insertFormatting('$comment','quote', $id);"></a></li> - <li><a class="editicon codebb shadow" - style="cursor: pointer;" - onclick="insertFormatting('$comment','code', $id);"></a></li> - <li><a class="editicon imagebb shadow" - style="cursor: pointer;" - onclick="insertFormatting('$comment','img', $id);"></a></li> - <li><a class="editicon urlbb shadow" - style="cursor: pointer;" - onclick="insertFormatting('$comment','url', $id);"></a></li> - <li><a class="editicon videobb shadow" - style="cursor: pointer;" - onclick="insertFormatting('$comment','video', $id);"></a></li> - </ul> - <div class="comment-edit-bb-end"></div> - <textarea id="comment-edit-text-$id" - class="comment-edit-text-empty" - name="body" - onfocus="commentOpen(this,$id);tautogrow($id);cmtBbOpen($id);" - onblur="commentClose(this,$id);" - placeholder="Comment">$comment</textarea> - {{ if $qcomment }} - <div class="qcomment-wrapper"> - <select id="qcomment-select-$id" - name="qcomment-$id" - class="qcomment" - onchange="qCommentInsert(this,$id);"> - <option value=""></option> - {{ for $qcomment as $qc }} - <option value="$qc">$qc</option> - {{ endfor }} - </select> - </div> - {{ endif }} - - <div class="comment-edit-text-end"></div> - <div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-$id" style="display: none;"> - <input type="submit" onclick="post_comment($id); return false;" id="comment-edit-submit-$id" class="comment-edit-submit" name="submit" value="$submit" /> - <span onclick="preview_comment($id);" id="comment-edit-preview-link-$id" class="fakelink">$preview</span> - <div id="comment-edit-preview-$id" class="comment-edit-preview" style="display:none;"></div> - </div> - <div class="comment-edit-end"></div> - </form> - </div> diff --git a/view/theme/dispy/communityhome.tpl b/view/theme/dispy/communityhome.tpl deleted file mode 100644 index aaa27465b..000000000 --- a/view/theme/dispy/communityhome.tpl +++ /dev/null @@ -1,35 +0,0 @@ -{{ if $page }} -<div>$page</div> -{{ endif }} - -<h3 id="extra-help-header">Help or '@NewHere'?</h3> -<div id="extra-help"> -<a href="https://helpers.pyxis.uberspace.de/profile/helpers" - title="Friendica Support" target="_blank">Friendica Support</a><br /> -<a href="https://letstalk.pyxis.uberspace.de/profile/letstalk" - title="Let's talk" target="_blank">Let's talk</a><br /> -<a href="http://newzot.hydra.uberspace.de/profile/newzot" - title="Local Friendica" target="_blank">Local Friendica</a><br /> -<a href="http://kakste.com/profile/newhere" title="@NewHere" target="_blank">NewHere</a> -</div> - -<h3 id="connect-services-header">Connectable Services</h3> -<ul id="connect-services"> -<li><a href="$url/facebook"><img alt="Facebook" - src="view/theme/dispy/icons/facebook.png" title="Facebook" /></a></li> -<li><a href="$url/settings/connectors"><img - alt="StatusNet" src="view/theme/dispy/icons/StatusNet.png" title="StatusNet" /></a></li> -<li><a href="$url/settings/connectors"><img - alt="LiveJournal" src="view/theme/dispy/icons/livejournal.png" title="LiveJournal" /></a></li> -<li><a href="$url/settings/connectors"><img - alt="Posterous" src="view/theme/dispy/icons/posterous.png" title="Posterous" /></a></li> -<li><a href="$url/settings/connectors"><img - alt="Tumblr" src="view/theme/dispy/icons/tumblr.png" title="Tumblr" /></a></li> -<li><a href="$url/settings/connectors"><img - alt="Twitter" src="view/theme/dispy/icons/twitter.png" title="Twitter" /></a></li> -<li><a href="$url/settings/connectors"><img - alt="WordPress" src="view/theme/dispy/icons/wordpress.png" title="WordPress" /></a></li> -<li><a href="$url/settings/connectors"><img - alt="E-Mail" src="view/theme/dispy/icons/email.png" title="E-Mail" /></a></li> -</ul> - diff --git a/view/theme/dispy/config.php b/view/theme/dispy/config.php deleted file mode 100644 index 25663c10b..000000000 --- a/view/theme/dispy/config.php +++ /dev/null @@ -1,79 +0,0 @@ -<?php -/** - * Theme settings - */ - -function theme_content(&$a) { - if(!local_user()) { return; } - - $font_size = get_pconfig(local_user(),'dispy', 'font_size' ); - $line_height = get_pconfig(local_user(), 'dispy', 'line_height' ); - $colour = get_pconfig(local_user(), 'dispy', 'colour' ); - - return dispy_form($a, $font_size, $line_height, $colour); -} - -function theme_post(&$a) { - if(!local_user()) { return; } - - if (isset($_POST['dispy-settings-submit'])) { - set_pconfig(local_user(), 'dispy', 'font_size', $_POST['dispy_font_size']); - set_pconfig(local_user(), 'dispy', 'line_height', $_POST['dispy_line_height']); - set_pconfig(local_user(), 'dispy', 'colour', $_POST['dispy_colour']); - } -} - -function theme_admin(&$a) { - $font_size = get_config('dispy', 'font_size' ); - $line_height = get_config('dispy', 'line_height' ); - $colour = get_config('dispy', 'colour' ); - - return dispy_form($a, $font_size, $line_height, $colour); -} - -function theme_admin_post(&$a) { - if (isset($_POST['dispy-settings-submit'])) { - set_config('dispy', 'font_size', $_POST['dispy_font_size']); - set_config('dispy', 'line_height', $_POST['dispy_line_height']); - set_config('dispy', 'colour', $_POST['dispy_colour']); - } -} - -function dispy_form(&$a, $font_size, $line_height, $colour) { - $line_heights = array( - "1.3" => "1.3", - "---" => "---", - "1.6" => "1.6", - "1.5" => "1.5", - "1.4" => "1.4", - "1.2" => "1.2", - "1.1" => "1.1", - ); - $font_sizes = array( - '12' => '12', - '14' => '14', - "---" => "---", - "16" => "16", - "15" => "15", - '13.5' => '13.5', - '13' => '13', - '12.5' => '12.5', - '12' => '12', - ); - $colours = array( - 'light' => 'light', - 'dark' => 'dark', - ); - - $t = file_get_contents( dirname(__file__). "/theme_settings.tpl" ); - $o .= replace_macros($t, array( - '$submit' => t('Submit'), - '$baseurl' => $a->get_baseurl(), - '$title' => t("Theme settings"), - '$font_size' => array('dispy_font_size', t('Set font-size for posts and comments'), $font_size, '', $font_sizes), - '$line_height' => array('dispy_line_height', t('Set line-height for posts and comments'), $line_height, '', $line_heights), - '$colour' => array('dispy_colour', t('Set colour scheme'), $colour, '', $colours), - )); - - return $o; -} diff --git a/view/theme/dispy/contact_template.tpl b/view/theme/dispy/contact_template.tpl deleted file mode 100644 index 04968bd07..000000000 --- a/view/theme/dispy/contact_template.tpl +++ /dev/null @@ -1,30 +0,0 @@ - -<div class="contact-entry-wrapper" id="contact-entry-wrapper-$contact.id" > - <div class="contact-entry-photo-wrapper"> - <div class="contact-entry-photo mframe" id="contact-entry-photo-$contact.id" - onmouseover="if (typeof t$contact.id != 'undefined') clearTimeout(t$contact.id); openMenu('contact-photo-menu-button-$contact.id')" - onmouseout="t$contact.id=setTimeout('closeMenu(\'contact-photo-menu-button-$contact.id\'); closeMenu(\'contact-photo-menu-$contact.id\');',200)"> - - <a href="$contact.url" title="$contact.img_hover" /><img src="$contact.thumb" $contact.sparkle alt="$contact.name" /></a> - - {{ if $contact.photo_menu }} - <span onclick="openClose('contact-photo-menu-$contact.id');" class="fakelink contact-photo-menu-button" id="contact-photo-menu-button-$contact.id">menu</span> - <div class="contact-photo-menu" id="contact-photo-menu-$contact.id"> - <ul> - $contact.photo_menu - </ul> - </div> - {{ endif }} - </div> - - </div> - <div class="contact-entry-photo-end" ></div> - <div class="contact-entry-name" id="contact-entry-name-$contact.id" >$contact.name</div> -{{ if $contact.alt_text }}<div class="contact-entry-details" id="contact-entry-rel-$contact.id" >$contact.alt_text</div>{{ endif }} - <div class="contact-entry-details" id="contact-entry-url-$contact.id" > - <a href="$contact.itemurl" title="$contact.itemurl">Profile URL</a></div> - <div class="contact-entry-details" id="contact-entry-network-$contact.id" >$contact.network</div> - - <div class="contact-entry-end" ></div> -</div> - diff --git a/view/theme/dispy/conversation.tpl b/view/theme/dispy/conversation.tpl deleted file mode 100644 index a42585597..000000000 --- a/view/theme/dispy/conversation.tpl +++ /dev/null @@ -1,28 +0,0 @@ -<div id="threads-begin"></div> -{{ for $threads as $thread }} -<div id="thread-wrapper-$thread.id" class="thread-wrapper"> - {{ for $thread.items as $item }} - {{if $item.comment_firstcollapsed}} - <div class="hide-comments-outer"> - <span id="hide-comments-total-$thread.id" class="hide-comments-total">$thread.num_comments</span> <span id="hide-comments-$thread.id" class="hide-comments fakelink" onclick="showHideComments($thread.id);">$thread.hide_text</span> - </div> - <div id="collapsed-comments-$thread.id" class="collapsed-comments" style="display: none;"> - {{endif}} - {{if $item.comment_lastcollapsed}}</div>{{endif}} - - {{ inc $item.template }}{{ endinc }} - - - {{ endfor }} -</div> -{{ endfor }} -<div id="threads-end"></div> -<div id="conversation-end"></div> - -{{ if $dropping }} -<div id="item-delete-selected" class="fakelink" onclick="deleteCheckedItems(); return false;"> - <div id="item-delete-selected-icon" class="icon drophide" title="$dropping" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></div> - <div id="item-delete-selected-desc" >$dropping</div> -</div> -<div id="item-delete-selected-end"></div> -{{ endif }} diff --git a/view/theme/dispy/css/media.less b/view/theme/dispy/css/media.less deleted file mode 100644 index 28cf3f054..000000000 --- a/view/theme/dispy/css/media.less +++ /dev/null @@ -1,71 +0,0 @@ -// -//* media stuff */ -@media handheld and screen { - body { - font-size: 15pt; - } -} -//* Smartphones (portrait and landscape) ----------- */ -@media only screen and (min-device-width: 320px) - and (max-device-width: 480px) { - body { - font-size: 12pt; - } -} -//* Smartphones (landscape) ----------- */ -@media only screen and (min-width: 321px) { - body { - font-size: 12pt; - } -} -//* Smartphones (portrait) ----------- */ -@media only screen and (max-width: 320px) { - body { - font-size: 12pt; - } -} -//* iPads (portrait and landscape) ----------- */ -@media only screen and (min-device-width: 768px) - and (max-device-width: 1024px) { - body { - font-size: 14pt; - } -} -//* iPads (landscape) ----------- */ -@media only screen and (min-device-width: 768px) - and (max-device-width: 1024px) - and (orientation: landscape) { - body { - font-size: 14pt; - } -} -//* iPads (portrait) ----------- */ -@media only screen and (min-device-width: 768px) - and (max-device-width: 1024px) - and (orientation: portrait) { - body { - font-size: 14pt; - } -} -//* Desktops and laptops ----------- */ -//adjusted to 1024 from 1224. -//not everybody has a fucking big screen ffs -@media only screen and (min-width: 1024px) { - body { - font-size: 14pt; - } -} -//* Large screens - */ -@media only screen and (min-width: 1520px) { - body { - font-size: 16pt; - } -} -//* iPhone 4 ----------- */ -@media only screen and (-webkit-min-device-pixel-ratio: 1.5), - only screen and (min-device-pixel-ratio: 1.5) { - body { - font-size: 14pt; - } -} - diff --git a/view/theme/dispy/css/reset.less b/view/theme/dispy/css/reset.less deleted file mode 100644 index 0cac48d8e..000000000 --- a/view/theme/dispy/css/reset.less +++ /dev/null @@ -1,66 +0,0 @@ -///* http://meyerweb.com/eric/tools/css/reset/ -// v2.0 | 20110126 -// License: none (public domain) -//*/ - -html, body, div, span, -applet, object, iframe, -h1, h2, h3, h4, h5, h6, -p, blockquote, pre, a, -abbr, acronym, address, -big, cite, code, del, -dfn, em, img, ins, kbd, -q, s, samp, small, strike, -strong, sub, sup, tt, var, -b, u, i, center, dl, dt, -dd, ol, ul, li, fieldset, -form, label, legend, table, -caption, tbody, tfoot, thead, -tr, th, td, article, aside, -canvas, details, embed, -figure, figcaption, footer, -header, hgroup, menu, nav, -output, ruby, section, summary, -time, mark, audio, video { - margin: 0; - padding: 0; - border: 0; - font-size: 100%; - font: inherit; - vertical-align: baseline; -} -///* HTML5 display-role reset for older browsers */ -article, aside, details, figcaption, figure, -footer, header, hgroup, menu, nav, section { - display: block; -} -body { - line-height: 1; -} -ul, ol { - .list_reset; -} -blockquote, q { - quotes: none; -} -blockquote:before, blockquote:after, -q:before, q:after { - content: ''; - content: none; -} -table { - border-collapse: collapse; - border-spacing: 0; -} -///* de-italicize address */ -address { - font-style: normal; -} -a img, -:link img, -:visited img { - border: none; -} -q { - quotes: "" ""; -} diff --git a/view/theme/dispy/dark/_base.less b/view/theme/dispy/dark/_base.less deleted file mode 100644 index d1051a989..000000000 --- a/view/theme/dispy/dark/_base.less +++ /dev/null @@ -1,184 +0,0 @@ -// _base.less -// -// the base file for dispy's dark "sub-theme". -// -// Notes: -// this is used to define mixins (think of them as functions) -// and variables. the mixins are the ".foo () {}" things, vars are -// like "@bar". -// -// (BTW, this will make it a LOT easier to maintain.) -// -// Dev. Note: the // style comments don't show up at all when -// you "compile" the css (with `lessc`), but css (/**/) comments -// do. i use them to our advantage :). - -// import our reset styles first -@import "../css/reset"; - -//* backgrounds */ -@lt_bg_colour: lighten(@bg_colour, 10%); -@dk_bg_colour: #1d1f1d; -@bg_colour: #2e2f2e; -@bg_alt_colour: #2e302e; -@med_bg_colour: #4e4f4e; -@menu_bg_colour: #555753; - -//* font colour, aka color: */ -@lt_main_colour: lighten(@main_colour, 10%); -@main_colour: #eeeecc; -@dk_main_colour: darken(@main_colour, 20%); -@main_alt_colour: #eeeeee; -// darken(@main_alt_colour, 13%) > #cdcdcd -// darken(@main_alt_colour, 13.5%) > #cccccc -// darken(@main_alt_colour, 33%) > #9a9a9a -// darken(@main_alt_colour, 24%) > #b1b1b1 -// darken(@main_alt_colour, 27%) > #a9a9a9 -// darken(@main_alt_colour, 33.5%) > #999999 -// darken(@main_alt_colour, 40%) > #888888 -// darken(@main_alt_colour, 46.8%) > #777777 -// darken(@main_alt_colour, 53.5%) > #666666 -// darken(@main_alt_colour, 60%) > #555555 -// darken(@main_alt_colour, 66.5%) > #444444 -// darken(@main_alt_colour, 73.5%) > #333333 -// darken(@main_alt_colour, 80%) > #222222 -// darken(@main_alt_colour, 86.5%) > #111111 -@disabled_colour: #ddddbb; -@shiny_colour: #2e3436; -@red_orange: #ff2000; -@orange: #f8911b; -@lt_orange: #fcaf3e; -@shadow_colour: darken(@main_alt_colour, 86.5%); -@lt_shadow_colour: #888888; -@friendica_blue: #3465a4; -@border2: #babdb6; -@group_show: #9ade00; -@group_hide: #ff4141; -@notice: #3320bc; -@info: #1353b1; -@alert: #ff0000; - -//* links */ -@link_colour: #88a9d2; -@dk_link_colour: darken(@link_colour, 10%); -@lt_link_colour: lighten(@link_colour, 10%); -//@hover_colour: #729fcf; -@hover_colour: @dk_link_colour; - -// other colours -@med_border_colour: #c8bebe; - -//* box shadows */ -@menu_shadow: 5px 0 10px 0 @shadow_colour; -@main_shadow: 3px 3px 3px 10px 0 @shadow_colour; - -// default here was @main_shadow -.box_shadow(@h: 5px, @v: 5px, @blur: 5px, @spread: 0px, @colour: @shadow_colour) { - -moz-box-shadow: @h @v @blur @spread @colour; - -o-box-shadow: @h @v @blur @spread @colour; - -webkit-box-shadow: @h @v @blur @spread @colour; - -ms-box-shadow: @h @v @blur @spread @colour; - box-shadow: @h @v @blur @spread @colour; -} -//* http://css-tricks.com/snippets/css/css-box-shadow/ -//* box-shadow: -//* 1. The horizontal offset of the shadow, positive means -//* the shadow will be on the right of the box, a negative -//* offset will put the shadow on the left of the box. -//* 2. The vertical offset of the shadow, a negative one -//* means the box-shadow will be above the box, a -//* positive one means the shadow will be below the box. -//* 3. The blur radius (optional), if set to 0 the shadow -//* will be sharp, the higher the number, the more blurred -//* it will be. -//* 4. The spread radius (optional), positive values increase -//* the size of the shadow, negative values decrease the size. -//* Default is 0 (the shadow is same size as blur). -//* 5. Colo[u]r -//*/ - -//* text-shadow */ -.text_shadow (@h: 1px, @v: 1px, @c: @shadow_colour) { - -moz-text-shadow: @h @v @c; - -o-text-shadow: @h @v @c; - -webkit-text-shadow: @h @v @c; - -ms-text-shadow: @h @v @c; - text-shadow: @h @v @c; -} -//* transitions */ -.transition (@type: all, @dur: 0.75s, @effect: ease-in-out) { - -webkit-transition: @arguments; - -moz-transition: @arguments; - -o-transition: @arguments; - -ms-transition: @arguments; - transition: @arguments; -} - -//* borders */ -.borders (@size: 1px, @style: solid, @colour: @main_colour) { - border: @size @style @colour; -} -.med_borders (@sz: 2px, @st: solid, @c: @med_border_colour) { - border: @sz @st @c; -} -//* rounded box corners */ -.rounded_corners (@r: 5px) { - -o-border-radius: @r; - -webkit-border-radius: @r; - -moz-border-radius: @r; - -ms-border-radius: @r; - border-radius: @r; -} -.text_overflow (@t: ellipsis) { - -moz-text-overflow: @t; - -ms-text-verflow: @t; - -o-text-overflow: @t; - -webkit-text-overflow: @t; - text-overflow: @t; -} -.lin_gradient(@x1: left, @x2: right, @y1: top, @y2: bottom, @c1: @bg_colour, @c2: @dk_bg_colour) { - // w3c - background: linear-gradient(@x1 @y2, @c1, @c2); - // webkit - // -webkit-gradient(<type>, <point> [, <radius>]?, <point> [, <radius>]? [, <stop>]*) - background: -webkit-gradient(linear, @x1 @y1, @x2 @y2, from(@c1), to(@c2)); - // mozilla - // -moz-linear-gradient([<point> || <angle>,]? <stop>, <stop> [, <stop>]) - background: -moz-linear-gradient(@x1 @y2, @c1, @c2); - // opera - //background: -o-linear-gradient([<point> || <angle>,]? <stop>, <stop> [, <stop>]); - background: -o-linear-gradient(@x1, @c1, @c2); -} -//* pre wrap */ -.wrap () { - white-space: pre-wrap; - white-space: pre; - word-wrap: none; -} -//* font size sizing */ -.default_font () { - font-size: 14pt; - line-height: 1.1em; - font-family: sans-serif; -} -.font_size_adjust () { - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; - -o-text-size-adjust: 100%; - font-size-adjust: 100%; -} - -//* reset ul, ol */ -.list_reset () { - margin: 0px; - padding: 0px; - list-style: none; - list-style-position: inside; -} - -//* box size: width, height */ -.box (@w: 20px, @h: 20px) { - width: @w; - height: @h; -} - diff --git a/view/theme/dispy/dark/editicons.png b/view/theme/dispy/dark/editicons.png Binary files differdeleted file mode 100644 index 51e0d9830..000000000 --- a/view/theme/dispy/dark/editicons.png +++ /dev/null diff --git a/view/theme/dispy/dark/editicons.svg b/view/theme/dispy/dark/editicons.svg deleted file mode 100644 index 8804d0907..000000000 --- a/view/theme/dispy/dark/editicons.svg +++ /dev/null @@ -1,725 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="250" - height="200" - contentStyleType="text/css" - contentScriptType="text/ecmascript" - sodipodi:docname="editicons.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - version="1.1" - id="svg1" - inkscape:version="0.48+devel r" - inkscape:export-filename="/var/www3/kisikew.org/portal/pub/fd/view/theme/dispy-dark/editicons.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <title - id="title4806">editicons</title> - <defs - id="defs4" /> - <sodipodi:namedview - id="base" - pagecolor="#8a8a8a" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="0" - inkscape:zoom="3.6894726" - inkscape:cx="54.191332" - inkscape:cy="133.63138" - inkscape:document-units="px" - inkscape:current-layer="svg1" - showgrid="false" - inkscape:window-width="1100" - inkscape:window-height="740" - inkscape:window-x="34" - inkscape:window-y="42" - inkscape:window-maximized="0" - inkscape:showpageshadow="false" - width="0px" - height="0px" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title>editicons</dc:title> - <dc:contributor> - <cc:Agent> - <dc:title>Simon L'nu</dc:title> - </cc:Agent> - </dc:contributor> - <dc:date>2012-04-20</dc:date> - <dc:creator> - <cc:Agent> - <dc:title>Simon L'nu</dc:title> - </cc:Agent> - </dc:creator> - <dc:publisher> - <cc:Agent> - <dc:title>Simon L'nu</dc:title> - </cc:Agent> - </dc:publisher> - <dc:subject> - <rdf:Bag> - <rdf:li /> - </rdf:Bag> - </dc:subject> - <dc:description> - <dc:title>DESCRIPTION</dc:title> - </dc:description> - <cc:license - rdf:resource="http://artlibre.org/licence/lal" /> - <dc:language>en-CA</dc:language> - </cc:Work> - <cc:License - rdf:about="http://artlibre.org/licence/lal"> - <cc:permits - rdf:resource="http://creativecommons.org/ns#Reproduction" /> - <cc:permits - rdf:resource="http://creativecommons.org/ns#Distribution" /> - <cc:permits - rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> - <cc:requires - rdf:resource="http://creativecommons.org/ns#ShareAlike" /> - <cc:requires - rdf:resource="http://creativecommons.org/ns#Notice" /> - <cc:requires - rdf:resource="http://creativecommons.org/ns#Attribution" /> - </cc:License> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0.43349891,-524.43349)" /> - <rect - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4713" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(-64.805152,-66.847069)" /> - <text - xml:space="preserve" - style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Verdana;-inkscape-font-specification:Verdana Bold" - x="79.591835" - y="91.591835" - id="text4709" - transform="translate(-68.16293,-73.825339)"><tspan - sodipodi:role="line" - id="tspan4711" - x="79.591835" - y="91.591835" - style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#e6e6e6;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold">B</tspan></text> - <rect - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4721" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(-64.805152,21.152934)" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4725" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(-42.805152,-66.847066)" /> - <rect - transform="translate(-42.805152,-44.847066)" - ry="3" - rx="3" - y="68.413567" - x="66.405151" - height="20" - width="20" - id="rect4727" - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4729" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(-42.805152,-22.84707)" /> - <rect - transform="translate(-42.805152,-0.8470705)" - ry="3" - rx="3" - y="68.413567" - x="66.405151" - height="20" - width="20" - id="rect4731" - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4733" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(-42.805152,21.15293)" /> - <rect - transform="translate(-20.805152,-66.847066)" - ry="3" - rx="3" - y="68.413567" - x="66.405151" - height="20" - width="20" - id="rect4735" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" /> - <rect - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4737" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(-20.805152,-44.847066)" /> - <rect - transform="translate(-20.805152,-22.84707)" - ry="3" - rx="3" - y="68.413567" - x="66.405151" - height="20" - width="20" - id="rect4739" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" /> - <rect - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4741" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(-20.805152,-0.8470705)" /> - <rect - transform="translate(-20.805152,21.15293)" - ry="3" - rx="3" - y="68.413567" - x="66.405151" - height="20" - width="20" - id="rect4743" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4745" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(1.194848,-66.847066)" /> - <rect - transform="translate(1.194848,-44.847066)" - ry="3" - rx="3" - y="68.413567" - x="66.405151" - height="20" - width="20" - id="rect4747" - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4749" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(1.194848,-22.84707)" /> - <rect - transform="translate(1.194848,-0.8470705)" - ry="3" - rx="3" - y="68.413567" - x="66.405151" - height="20" - width="20" - id="rect4751" - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4753" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(1.194848,21.15293)" /> - <rect - transform="translate(-64.805152,-44.847069)" - ry="3" - rx="3" - y="68.413567" - x="66.405151" - height="20" - width="20" - id="rect4715" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" /> - <text - xml:space="preserve" - style="font-size:20px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#ececec;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold" - x="4.7811713" - y="28.940323" - id="text4774" - transform="translate(6.806399,11)"><tspan - sodipodi:role="line" - id="tspan4776" - x="4.7811713" - y="28.940323" - style="font-size:18px">I</tspan></text> - <rect - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4717" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(-64.805152,-22.847069)" /> - <text - xml:space="preserve" - style="font-size:20px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#ececec;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold" - x="6.4507866" - y="61.118362" - id="text4778" - transform="translate(5,1)"><tspan - sodipodi:role="line" - id="tspan4780" - x="6.4507866" - y="61.118362" - style="font-size:18px">U</tspan></text> - <rect - transform="translate(-64.805152,-0.8470699)" - ry="3" - rx="3" - y="68.413567" - x="66.405151" - height="20" - width="20" - id="rect4719" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" /> - <text - xml:space="preserve" - style="font-size:20px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#ececec;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold" - x="4.28688" - y="81.765083" - id="text4782" - transform="translate(7,0.7234271)"><tspan - sodipodi:role="line" - id="tspan4784" - x="4.28688" - y="81.765083" - style="font-size:18px">Q</tspan></text> - <g - id="g1783" - transform="translate(44.197715,-88)"> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - ry="2.9268293" - rx="2.9268293" - y="858.11218" - x="173.12502" - height="9" - width="14.5" - id="rect4387-8" - style="fill:#666666;stroke:#ececec;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - transform="translate(-168.97273,-762.7948)" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - transform="matrix(1.1489362,0,0,1.1489362,-455.1097,-153.28349)" - d="m 411.5,220.26843 c 0,1.50153 -1.20323,2.71875 -2.6875,2.71875 -1.48427,0 -2.6875,-1.21722 -2.6875,-2.71875 0,-1.50152 1.20323,-2.71875 2.6875,-2.71875 1.48427,0 2.6875,1.21723 2.6875,2.71875 z" - sodipodi:ry="2.71875" - sodipodi:rx="2.6875" - sodipodi:cy="220.26843" - sodipodi:cx="408.8125" - id="path4391-3" - style="fill:#1a1a1a;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - sodipodi:type="arc" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - ry="1" - rx="1" - y="859.06403" - x="174.89275" - height="1.8561553" - width="3.5355339" - id="rect4290" - style="fill:#1a1a1a;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - transform="translate(-168.97273,-762.7948)" /> - </g> - <g - transform="translate(-65.063391,-846.33726)" - id="g1037"> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - sodipodi:nodetypes="csccccscc" - inkscape:connector-curvature="0" - id="rect4428-4" - d="m 118.03127,895.15627 0,0.3125 c 0,1.2601 -0.0643,3.4345 -0.35937,5.75 l -1.5625,1e-4 c -0.80183,0.011 -1.64766,4.0737 -1.60938,8.0625 l 8.25,0 c -0.057,-5.5479 1.56902,-11.5211 1.75,-5.6563 0.21453,6.9525 1.74237,-5.1823 1.75,-8.4687 z" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:connector-curvature="0" - id="path4440-4" - d="m 124.78127,905.73727 -1.9375,-0.063" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path4442-9" - d="m 117.59377,901.20597 6.4375,0" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="908.11218" - x="115.28126" - height="0.375" - width="1.0625" - id="rect4446-9" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4448-3" - width="1.0625" - height="0.375" - x="115.34376" - y="906.51843" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="904.89343" - x="115.50001" - height="0.375" - width="1.0625" - id="rect4450-6" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4452-0" - width="1.0625" - height="0.375" - x="115.81251" - y="903.42468" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="902.17468" - x="116.21876" - height="0.375" - width="1.0625" - id="rect4454-5" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4456-0" - width="1.0625" - height="0.375" - x="118.50001" - y="900.17468" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="898.70593" - x="118.68751" - height="0.375" - width="1.0625" - id="rect4458-2" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4460-9" - width="1.0625" - height="0.375" - x="118.75001" - y="897.20593" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="895.79968" - x="118.75001" - height="0.375" - width="1.0625" - id="rect4462-4" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4464-3" - width="1.0625" - height="0.375" - x="120.84376" - y="908.11218" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="906.51843" - x="120.90627" - height="0.375" - width="1.0625" - id="rect4466-5" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4468-1" - width="1.0625" - height="0.375" - x="121.06252" - y="904.89343" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="903.42468" - x="121.37502" - height="0.375" - width="1.0625" - id="rect4470-7" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4472-4" - width="1.0625" - height="0.375" - x="121.78127" - y="902.17468" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="900.17468" - x="124.06252" - height="0.375" - width="1.0625" - id="rect4474-3" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4476-1" - width="1.0625" - height="0.375" - x="124.25002" - y="898.70593" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="897.20593" - x="124.31252" - height="0.375" - width="1.0625" - id="rect4478-4" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4480-6" - width="1.0625" - height="0.375" - x="124.31252" - y="895.79968" /> - </g> - <g - id="g1790" - transform="translate(0,22)"> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:connector-curvature="0" - id="rect4397-0" - d="m 242.44524,860.13287 c -0.98011,0 -1.77562,0.6006 -1.77562,1.3586 l 0,1.5632 c 0,0.7581 0.79551,1.3733 1.77562,1.3733 l 4.53349,0 c 0.98012,0 1.77562,-0.6152 1.77562,-1.3733 l 0,-1.5632 c 0,-0.758 -0.7955,-1.3586 -1.77562,-1.3586 l -4.53349,0 z m 0.41557,1.0372 3.70235,0 c 0.51967,0 0.94448,0.2879 0.94448,0.6574 l 0,0.8912 c 0,0.3695 -0.42481,0.672 -0.94448,0.672 l -3.70235,0 c -0.51966,0 -0.94447,-0.3025 -0.94447,-0.672 l 0,-0.8912 c 0,-0.3695 0.42481,-0.6574 0.94447,-0.6574 z" - style="fill:#1a1a1a;fill-opacity:1;stroke:#e6e6e6;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - transform="matrix(0.87398418,0,0,1,-154.20273,-850.767)" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:#1a1a1a;fill-opacity:1;stroke:#e6e6e6;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - d="m 232.97199,860.13287 c -0.98011,0 -1.77562,0.6006 -1.77562,1.3586 l 0,1.5632 c 0,0.7581 0.79551,1.3733 1.77562,1.3733 l 4.53349,0 c 0.98012,0 1.77562,-0.6152 1.77562,-1.3733 l 0,-1.5632 c 0,-0.758 -0.7955,-1.3586 -1.77562,-1.3586 l -4.53349,0 z m 0.41557,1.0372 3.70236,0 c 0.51966,0 0.94447,0.2879 0.94447,0.6574 l 0,0.8912 c 0,0.3695 -0.42481,0.672 -0.94447,0.672 l -3.70236,0 c -0.51966,0 -0.94447,-0.3025 -0.94447,-0.672 l 0,-0.8912 c 0,-0.3695 0.42481,-0.6574 0.94447,-0.6574 z" - id="path4418-4" - inkscape:connector-curvature="0" - transform="matrix(0.87398418,0,0,1,-154.20273,-850.767)" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - ry="0.81812328" - rx="1.0135853" - y="861.57312" - x="236.7028" - height="1.6362466" - width="6.7246785" - id="rect4395-0" - style="fill:#1a1a1a;fill-opacity:1;stroke:#e6e6e6;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - transform="matrix(0.87398418,0,0,1,-154.20273,-850.767)" /> - </g> - <use - x="0" - y="0" - xlink:href="#text4709" - id="use1769" - transform="translate(22,0)" - width="250" - height="200" /> - <use - x="0" - y="0" - xlink:href="#text4774" - id="use1771" - transform="translate(22,0)" - width="250" - height="200" /> - <use - x="0" - y="0" - xlink:href="#text4778" - id="use1773" - transform="translate(22,0)" - width="250" - height="200" /> - <use - x="0" - y="0" - xlink:href="#text4782" - id="use1775" - transform="translate(22,0)" - width="250" - height="200" /> - <use - x="0" - y="0" - xlink:href="#g1783" - id="use1788" - transform="translate(22,0)" - width="250" - height="200" /> - <use - x="0" - y="0" - xlink:href="#g1037" - id="use1795" - transform="translate(22,0)" - width="250" - height="200" /> - <use - x="0" - y="0" - xlink:href="#g1790" - id="use1797" - transform="translate(22,0)" - width="250" - height="200" /> - <text - xml:space="preserve" - style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold" - x="6.5049949" - y="106.76174" - id="text1799" - transform="translate(4,-1)"><tspan - sodipodi:role="line" - id="tspan1801" - x="6.5049949" - y="106.76174" - style="fill:#ececec;fill-opacity:1">C</tspan></text> - <use - x="0" - y="0" - xlink:href="#text1799" - id="use1803" - transform="translate(22,0)" - width="250" - height="200" /> -</svg> diff --git a/view/theme/dispy/dark/icons.png b/view/theme/dispy/dark/icons.png Binary files differdeleted file mode 100644 index 67c8f3f0b..000000000 --- a/view/theme/dispy/dark/icons.png +++ /dev/null diff --git a/view/theme/dispy/dark/icons.svg b/view/theme/dispy/dark/icons.svg deleted file mode 100644 index 90b83bf81..000000000 --- a/view/theme/dispy/dark/icons.svg +++ /dev/null @@ -1,2223 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="250" - height="200" - id="svg3403" - version="1.1" - inkscape:version="0.48.3.1 r9886" - sodipodi:docname="icons.svg" - inkscape:export-filename="/var/www3/kisikew.org/portal/pub/fd/view/theme/dispy/dark/icons.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs3405"> - <filter - color-interpolation-filters="sRGB" - inkscape:collect="always" - id="filter4064"> - <feBlend - inkscape:collect="always" - mode="lighten" - in2="BackgroundImage" - id="feBlend4066" /> - </filter> - <inkscape:path-effect - effect="gears" - id="path-effect4050" - is_visible="true" - teeth="10" - phi="10" /> - <inkscape:path-effect - effect="gears" - id="path-effect3436" - is_visible="true" - teeth="10" - phi="10" /> - <inkscape:path-effect - effect="gears" - id="path-effect4050-9" - is_visible="true" - teeth="10" - phi="10" /> - <filter - color-interpolation-filters="sRGB" - inkscape:collect="always" - id="filter4064-8"> - <feBlend - inkscape:collect="always" - mode="lighten" - in2="BackgroundImage" - id="feBlend4066-4" /> - </filter> - <filter - color-interpolation-filters="sRGB" - inkscape:collect="always" - id="filter4064-7"> - <feBlend - inkscape:collect="always" - mode="lighten" - in2="BackgroundImage" - id="feBlend4066-9" /> - </filter> - <inkscape:path-effect - effect="gears" - id="path-effect4050-9-1" - is_visible="true" - teeth="10" - phi="10" /> - <filter - color-interpolation-filters="sRGB" - inkscape:collect="always" - id="filter4064-8-9"> - <feBlend - inkscape:collect="always" - mode="lighten" - in2="BackgroundImage" - id="feBlend4066-4-4" /> - </filter> - <filter - color-interpolation-filters="sRGB" - inkscape:collect="always" - id="filter4064-7-3"> - <feBlend - inkscape:collect="always" - mode="lighten" - in2="BackgroundImage" - id="feBlend4066-9-2" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#454545" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="2.7164213" - inkscape:cx="79.895323" - inkscape:cy="76.322411" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:snap-global="false" - inkscape:window-width="1148" - inkscape:window-height="452" - inkscape:window-x="0" - inkscape:window-y="24" - inkscape:window-maximized="0" - width="0px" - height="0px" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:showpageshadow="false" - showborder="true"> - <inkscape:grid - type="xygrid" - id="grid4016" - empspacing="5" - visible="true" - enabled="false" - snapvisiblegridlinesonly="false" - spacingx="20px" - spacingy="20px" - dotted="false" - units="px" - originx="50px" - originy="200px" /> - <inkscape:grid - type="xygrid" - id="grid4018" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="false" - color="#ff0000" - opacity="0.1254902" - empcolor="#ff0000" - empopacity="0.25098039" - originy="200px" - spacingx="22px" - spacingy="22px" /> - </sodipodi:namedview> - <metadata - id="metadata3408"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-852.36218)"> - <rect - transform="matrix(2.5239206,0,0,0.84848485,21.386213,217.14578)" - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons.png" - y="852.36218" - x="1.5883562e-17" - height="132" - width="44" - id="rect185" - style="fill:#2e2f2e;fill-opacity:1;stroke:none;display:inline" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;stroke:none;display:inline" - id="rect4007" - width="44" - height="132" - x="1.5883562e-17" - y="852.36218" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - transform="matrix(1,0,0,1.5151515,0,-439.09566)" /> - <rect - ry="6" - rx="6" - y="18.790752" - x="417.14285" - height="44.285713" - width="44.285713" - id="rect4011" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - transform="matrix(0.43114968,0,0,0.43114968,-178.47604,867.63556)" /> - <rect - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect4021" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,889.63556)" /> - <rect - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect4029" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,845.63556)" /> - <rect - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect4070" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,911.63556)" /> - <rect - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect4108" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,933.6356)" /> - <rect - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect3147" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,955.6356)" /> - <rect - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,1022.6356)" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect192" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" /> - <rect - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect194" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - transform="matrix(0.43114968,0,0,0.43114968,-157.41936,1022.6356)" /> - <rect - transform="matrix(0.43114968,0,0,0.43114968,-157.41936,999.6356)" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect196" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" /> - <rect - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect202" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - transform="matrix(0.43114968,0,0,0.43114968,-157.41936,933.6356)" /> - <rect - transform="matrix(0.43114968,0,0,0.43114968,-157.41936,977.6356)" - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect1024" - style="fill:#1a1a1a;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" /> - <rect - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,977.6356)" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect188" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" /> - <rect - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect190" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,999.6356)" /> - <rect - transform="matrix(0.43114968,0,0,0.43114968,-157.41936,955.6356)" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect200" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect3820" - width="44.285713" - height="44.285713" - x="417.14285" - y="18.790752" - rx="6" - ry="6" - transform="matrix(0.43114968,0,0,0.43114968,-156.47604,867.63556)" /> - <path - id="path3830" - d="m 449.12191,27.281249 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z" - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - inkscape:connector-curvature="0" - transform="matrix(0.43114968,0,0,0.43114968,-157.03951,867.63556)" /> - <path - inkscape:connector-curvature="0" - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 431.26477,26.924106 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z" - id="path3832" - transform="matrix(0.43114968,0,0,0.43114968,-157.03951,867.63556)" /> - <path - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="M 439.46875,29.78125 C 437.00319,29.78125 435,31.784443 435,34.25 c 0,2.465557 2.00319,4.46875 4.46875,4.46875 2.46556,0 4.46875,-2.003193 4.46875,-4.46875 0,-2.465557 -2.00319,-4.46875 -4.46875,-4.46875 z m 0,8.9375 c -6.2132,0 -11.25,6.862234 -11.25,15.34375 0,0.239102 0.0233,0.482318 0.0313,0.71875 l 22.4375,0 c 0.008,-0.236432 0.0313,-0.479648 0.0313,-0.71875 0,-8.481516 -5.0368,-15.34375 -11.25,-15.34375 z" - id="path3822" - inkscape:connector-curvature="0" - transform="matrix(0.43114968,0,0,0.43114968,-157.03951,867.63556)" /> - <rect - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect3837" - style="fill:#2e2f2e;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,889.63556)" /> - <path - style="fill:none;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 477.97758,26.469174 c -3.64342,3.88426 -3.47037,9.984211 0.41389,13.627637 3.52011,3.301856 8.87059,3.441123 12.55302,0.54905 -0.17428,0.682501 0.0188,1.431563 0.57086,1.949383 l 13.7666,12.913032 c 0.80813,0.75802 2.06896,0.717682 2.82698,-0.09044 l 0.68414,-0.729357 c 0.75802,-0.808126 0.71768,-2.06896 -0.0904,-2.82698 l -13.7666,-12.913032 c -0.55205,-0.51782 -1.31192,-0.66264 -1.98188,-0.445086 2.65077,-3.859767 2.16978,-9.190402 -1.35033,-12.492258 -3.88426,-3.643426 -9.9828,-3.426204 -13.62623,0.458055 z" - id="path3839" - inkscape:connector-curvature="0" - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,889.63556)" /> - <path - sodipodi:type="arc" - style="fill:none;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="path3844" - sodipodi:cx="485.17856" - sodipodi:cy="33.612183" - sodipodi:rx="7.3214288" - sodipodi:ry="7.3214288" - d="m 492.49999,33.612183 c 0,4.043513 -3.27792,7.321428 -7.32143,7.321428 -4.04352,0 -7.32143,-3.277915 -7.32143,-7.321428 0,-4.043514 3.27791,-7.321429 7.32143,-7.321429 4.04351,0 7.32143,3.277915 7.32143,7.321429 z" - transform="matrix(0.43114968,0,0,0.43114968,-201.51175,889.48158)" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect3995" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,845.63556)" /> - <path - inkscape:connector-curvature="0" - id="path4003" - d="M 504.69787,28.735741 480.30214,53.131477" - style="fill:#333333;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.31938004" - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,845.63556)" /> - <path - style="fill:#333333;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.31938004" - d="M 504.69787,53.131473 480.30214,28.735746" - id="path4005" - inkscape:connector-curvature="0" - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,845.63556)" /> - <path - inkscape:connector-curvature="0" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 449.12191,27.281249 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z" - id="path4013" - transform="matrix(0.43114968,0,0,0.43114968,-178.91257,867.63556)" /> - <path - id="path4015" - d="m 431.26477,26.924106 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - inkscape:connector-curvature="0" - transform="matrix(0.43114968,0,0,0.43114968,-178.91257,867.63556)" /> - <path - inkscape:connector-curvature="0" - id="path4017" - d="M 439.46875,29.78125 C 437.00319,29.78125 435,31.784443 435,34.25 c 0,2.465557 2.00319,4.46875 4.46875,4.46875 2.46556,0 4.46875,-2.003193 4.46875,-4.46875 0,-2.465557 -2.00319,-4.46875 -4.46875,-4.46875 z m 0,8.9375 c -6.2132,0 -11.25,6.862234 -11.25,15.34375 0,0.239102 0.0233,0.482318 0.0313,0.71875 l 22.4375,0 c 0.008,-0.236432 0.0313,-0.479648 0.0313,-0.71875 0,-8.481516 -5.0368,-15.34375 -11.25,-15.34375 z" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - transform="matrix(0.43114968,0,0,0.43114968,-178.91257,867.63556)" /> - <path - inkscape:connector-curvature="0" - id="path4023" - d="m 477.97758,26.469174 c -3.64342,3.88426 -3.47037,9.984211 0.41389,13.627637 3.52011,3.301856 8.87059,3.441123 12.55302,0.54905 -0.17428,0.682501 0.0188,1.431563 0.57086,1.949383 l 13.7666,12.913032 c 0.80813,0.75802 2.06896,0.717682 2.82698,-0.09044 l 0.68414,-0.729357 c 0.75802,-0.808126 0.71768,-2.06896 -0.0904,-2.82698 l -13.7666,-12.913032 c -0.55205,-0.51782 -1.31192,-0.66264 -1.98188,-0.445086 2.65077,-3.859767 2.16978,-9.190402 -1.35033,-12.492258 -3.88426,-3.643426 -9.9828,-3.426204 -13.62623,0.458055 z" - style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,889.63556)" /> - <path - transform="matrix(0.43114968,0,0,0.43114968,-179.51175,889.48158)" - d="m 492.49999,33.612183 c 0,4.043513 -3.27792,7.321428 -7.32143,7.321428 -4.04352,0 -7.32143,-3.277915 -7.32143,-7.321428 0,-4.043514 3.27791,-7.321429 7.32143,-7.321429 4.04351,0 7.32143,3.277915 7.32143,7.321429 z" - sodipodi:ry="7.3214288" - sodipodi:rx="7.3214288" - sodipodi:cy="33.612183" - sodipodi:cx="485.17856" - id="path4025" - style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - sodipodi:type="arc" /> - <path - style="fill:#1a1a1a;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.31938004" - d="M 504.69787,28.735741 480.30214,53.131477" - id="path4031" - inkscape:connector-curvature="0" - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,845.63556)" /> - <path - inkscape:connector-curvature="0" - id="path4033" - d="M 504.69787,53.131473 480.30214,28.735746" - style="fill:#1a1a1a;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.31938004" - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,845.63556)" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect4042" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,911.63556)" /> - <path - inkscape:original-d="M 484.55417,49.762303 492.5,40.933609 504.27158,48.879434" - inkscape:path-effect="#path-effect4050" - inkscape:connector-curvature="0" - id="path4048" - d="m 484.90604,52.679071 c 0,0 -0.72327,1.028211 -2.88202,1.697409 -0.63474,-0.494653 -1.23439,-1.034334 -1.79294,-1.613646 0.43889,-2.217071 1.3855,-3.044283 1.3855,-3.044283 l 2.04237,-1.648571 c -0.73879,-0.915258 -1.3342,-1.946011 -1.75793,-3.043257 l -2.44847,0.945549 c 0,0 -1.18951,0.40671 -3.32932,-0.320779 -0.22277,-0.773276 -0.39067,-1.56235 -0.50204,-2.359331 1.65823,-1.535673 2.91028,-1.648499 2.91028,-1.648499 l 2.62132,-0.133248 c -0.0597,-1.174706 0.0645,-2.358577 0.36658,-3.495332 l -2.53663,-0.674208 c 0,0 -1.20139,-0.37014 -2.50493,-2.216441 0.2743,-0.756533 0.60227,-1.4936 0.98062,-2.20383 2.24419,-0.267701 3.32343,0.376954 3.32343,0.376954 l 2.19901,1.432971 c 0.64217,-0.985455 1.43848,-1.870246 2.35108,-2.612309 l -1.65589,-2.03644 c 0,0 -0.75438,-1.005609 -0.72373,-3.265497 0.66659,-0.45082 1.36515,-0.854347 2.08871,-1.206542 1.97294,1.102524 2.46715,2.258424 2.46715,2.258424 l 0.93675,2.451844 c 1.09876,-0.419794 2.26306,-0.667544 3.43754,-0.731472 l -0.14265,-2.620822 c 0,0 -0.0192,-1.25697 1.3339,-3.067245 0.80426,0.02709 1.6066,0.111239 2.39899,0.251604 0.94809,2.051624 0.66849,3.277254 0.66849,3.277254 l -0.6833,2.534196 c 1.13566,0.306213 2.22322,0.790136 3.21097,1.428761 l 1.42508,-2.204138 c 0,0 0.72327,-1.028211 2.88202,-1.697409 0.63474,0.494653 1.23439,1.034334 1.79294,1.613646 -0.43889,2.217071 -1.3855,3.044283 -1.3855,3.044283 l -2.04237,1.648571 c 0.73879,0.915258 1.3342,1.946011 1.75793,3.043257 l 2.44847,-0.945549 c 0,0 1.18951,-0.40671 3.32932,0.320779 0.22277,0.773276 0.39067,1.56235 0.50204,2.359331 -1.65823,1.535673 -2.91028,1.648499 -2.91028,1.648499 l -2.62132,0.133248 c 0.0597,1.174706 -0.0645,2.358577 -0.36658,3.495332 l 2.53663,0.674208 c 0,0 1.20139,0.37014 2.50493,2.216441 -0.2743,0.756533 -0.60227,1.4936 -0.98062,2.20383 -2.24419,0.267701 -3.32343,-0.376954 -3.32343,-0.376954 l -2.19901,-1.432971 c -0.64217,0.985455 -1.43848,1.870246 -2.35108,2.612309 l 1.65589,2.03644 c 0,0 0.75438,1.005609 0.72373,3.265497 -0.66659,0.45082 -1.36515,0.854347 -2.08871,1.206542 -1.97294,-1.102524 -2.46715,-2.258424 -2.46715,-2.258424 l -0.93675,-2.451844 c -1.09876,0.419794 -2.26306,0.667544 -3.43754,0.731472 l 0.14265,2.620822 c 0,0 0.0192,1.25697 -1.3339,3.067245 -0.80426,-0.02709 -1.6066,-0.111239 -2.39899,-0.251604 -0.94809,-2.051624 -0.66849,-3.277254 -0.66849,-3.277254 l 0.6833,-2.534196 c -1.13566,-0.306213 -2.22322,-0.790136 -3.21097,-1.428761 l -1.42508,2.204138" - style="fill:#333333;fill-opacity:1;stroke:#e6e6e6;stroke-width:1.66475451;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter4064)" - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,911.63556)" /> - <path - style="fill:#1a1a1a;fill-opacity:1;stroke:#d3d7cf;stroke-width:1.66475451;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter4064)" - d="m 484.90604,52.679071 c 0,0 -0.72327,1.028211 -2.88202,1.697409 -0.63474,-0.494653 -1.23439,-1.034334 -1.79294,-1.613646 0.43889,-2.217071 1.3855,-3.044283 1.3855,-3.044283 l 2.04237,-1.648571 c -0.73879,-0.915258 -1.3342,-1.946011 -1.75793,-3.043257 l -2.44847,0.945549 c 0,0 -1.18951,0.40671 -3.32932,-0.320779 -0.22277,-0.773276 -0.39067,-1.56235 -0.50204,-2.359331 1.65823,-1.535673 2.91028,-1.648499 2.91028,-1.648499 l 2.62132,-0.133248 c -0.0597,-1.174706 0.0645,-2.358577 0.36658,-3.495332 l -2.53663,-0.674208 c 0,0 -1.20139,-0.37014 -2.50493,-2.216441 0.2743,-0.756533 0.60227,-1.4936 0.98062,-2.20383 2.24419,-0.267701 3.32343,0.376954 3.32343,0.376954 l 2.19901,1.432971 c 0.64217,-0.985455 1.43848,-1.870246 2.35108,-2.612309 l -1.65589,-2.03644 c 0,0 -0.75438,-1.005609 -0.72373,-3.265497 0.66659,-0.45082 1.36515,-0.854347 2.08871,-1.206542 1.97294,1.102524 2.46715,2.258424 2.46715,2.258424 l 0.93675,2.451844 c 1.09876,-0.419794 2.26306,-0.667544 3.43754,-0.731472 l -0.14265,-2.620822 c 0,0 -0.0192,-1.25697 1.3339,-3.067245 0.80426,0.02709 1.6066,0.111239 2.39899,0.251604 0.94809,2.051624 0.66849,3.277254 0.66849,3.277254 l -0.6833,2.534196 c 1.13566,0.306213 2.22322,0.790136 3.21097,1.428761 l 1.42508,-2.204138 c 0,0 0.72327,-1.028211 2.88202,-1.697409 0.63474,0.494653 1.23439,1.034334 1.79294,1.613646 -0.43889,2.217071 -1.3855,3.044283 -1.3855,3.044283 l -2.04237,1.648571 c 0.73879,0.915258 1.3342,1.946011 1.75793,3.043257 l 2.44847,-0.945549 c 0,0 1.18951,-0.40671 3.32932,0.320779 0.22277,0.773276 0.39067,1.56235 0.50204,2.359331 -1.65823,1.535673 -2.91028,1.648499 -2.91028,1.648499 l -2.62132,0.133248 c 0.0597,1.174706 -0.0645,2.358577 -0.36658,3.495332 l 2.53663,0.674208 c 0,0 1.20139,0.37014 2.50493,2.216441 -0.2743,0.756533 -0.60227,1.4936 -0.98062,2.20383 -2.24419,0.267701 -3.32343,-0.376954 -3.32343,-0.376954 l -2.19901,-1.432971 c -0.64217,0.985455 -1.43848,1.870246 -2.35108,2.612309 l 1.65589,2.03644 c 0,0 0.75438,1.005609 0.72373,3.265497 -0.66659,0.45082 -1.36515,0.854347 -2.08871,1.206542 -1.97294,-1.102524 -2.46715,-2.258424 -2.46715,-2.258424 l -0.93675,-2.451844 c -1.09876,0.419794 -2.26306,0.667544 -3.43754,0.731472 l 0.14265,2.620822 c 0,0 0.0192,1.25697 -1.3339,3.067245 -0.80426,-0.02709 -1.6066,-0.111239 -2.39899,-0.251604 -0.94809,-2.051624 -0.66849,-3.277254 -0.66849,-3.277254 l 0.6833,-2.534196 c -1.13566,-0.306213 -2.22322,-0.790136 -3.21097,-1.428761 l -1.42508,2.204138" - id="path4072" - inkscape:connector-curvature="0" - inkscape:path-effect="#path-effect4050" - inkscape:original-d="M 484.55417,49.762303 492.5,40.933609 504.27158,48.879434" - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,911.63556)" /> - <rect - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect4076" - style="fill:#2e2f2e;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,933.6356)" /> - <path - inkscape:connector-curvature="0" - id="path3839-4" - transform="translate(-856.62503,901.37504)" - d="m 871.875,46.1875 c -1.86715,0.0095 -3.39179,1.39545 -3.65625,3.1875 -0.13267,-0.238038 -0.39472,-0.407705 -0.6875,-0.40625 L 860.21875,49 c -0.42864,0.0022 -0.75216,0.352585 -0.75,0.78125 l 0,0.375 c 0.002,0.428643 0.35273,0.783324 0.78125,0.78125 l 0.71875,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.04661 -0.0143,-0.115964 -0.0313,-0.15625 l 1.25,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.05736 -0.006,-0.140333 -0.0313,-0.1875 l 2.1875,0 c 0.29284,-0.0015 0.55725,-0.166865 0.6875,-0.40625 0.28274,1.789274 1.85161,3.165775 3.71875,3.15625 2.0603,-0.01052 3.69802,-1.720959 3.6875,-3.78125 -0.0105,-2.060291 -1.68969,-3.698024 -3.75,-3.6875 z" - style="fill:none;stroke:#e6e6e6;stroke-width:0.79446769;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;filter:url(#filter4064)" /> - <path - inkscape:connector-curvature="0" - style="fill:none;fill-opacity:1;stroke:#d3d7cf;stroke-width:0.794;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;filter:url(#filter4064)" - d="m 871.875,46.1875 c -1.86715,0.0095 -3.39179,1.39545 -3.65625,3.1875 -0.13267,-0.238038 -0.39472,-0.407705 -0.6875,-0.40625 L 860.21875,49 c -0.42864,0.0022 -0.75216,0.352585 -0.75,0.78125 l 0,0.375 c 0.002,0.428643 0.35273,0.783324 0.78125,0.78125 l 0.71875,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.04661 -0.0143,-0.115964 -0.0313,-0.15625 l 1.25,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.05736 -0.006,-0.140333 -0.0313,-0.1875 l 2.1875,0 c 0.29284,-0.0015 0.55725,-0.166865 0.6875,-0.40625 0.28274,1.789274 1.85161,3.165775 3.71875,3.15625 2.0603,-0.01052 3.69802,-1.720959 3.6875,-3.78125 -0.0105,-2.060291 -1.68969,-3.698024 -3.75,-3.6875 z" - transform="translate(-834.62503,901.37504)" - id="path4110" /> - <path - transform="matrix(1.2829201,1.9081591,-1.9081591,1.2829201,-436.65386,-211.76762)" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - sodipodi:ry="0.88388348" - sodipodi:rx="0.88388348" - sodipodi:cy="21.754047" - sodipodi:cx="559.67499" - id="path4002-3" - style="fill:#e6e6e6;fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:#e6e6e6;fill-opacity:1;stroke:none" - id="path4004-9" - sodipodi:cx="559.67499" - sodipodi:cy="21.754047" - sodipodi:rx="0.88388348" - sodipodi:ry="0.88388348" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - transform="matrix(0.96219008,1.4311194,-1.4311194,0.96219008,-261.29289,65.614849)" /> - <path - transform="matrix(1.0080086,1.4992679,-1.4992679,1.0080086,-291.03317,15.446827)" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - sodipodi:ry="0.88388348" - sodipodi:rx="0.88388348" - sodipodi:cy="21.754047" - sodipodi:cx="559.67499" - id="path4006-4" - style="fill:#e6e6e6;fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - inkscape:connector-curvature="0" - id="path4010-56" - d="m 563.21055,31.653543 4.41942,-6.187185 -7.6014,-6.187184" - style="fill:none;stroke:#e6e6e6;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - transform="matrix(0.45818575,0.68148541,-0.68148541,0.45818575,-2.7897502,485.71067)" /> - <path - sodipodi:type="arc" - style="fill:#e6e6e6;fill-opacity:1;stroke:none" - id="path4008-8" - sodipodi:cx="559.67499" - sodipodi:cy="21.754047" - sodipodi:rx="0.88388348" - sodipodi:ry="0.88388348" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - transform="matrix(1.0996458,1.635565,-1.635565,1.0996458,-346.37171,-55.312424)" /> - <path - inkscape:connector-curvature="0" - id="path4012-5" - d="m 567.45319,25.466358 7.6014,-4.065864" - style="fill:none;stroke:#e6e6e6;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - transform="matrix(0.45818575,0.68148541,-0.68148541,0.45818575,-2.7897502,485.71067)" /> - <path - style="fill:none;stroke:#e6e6e6;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - d="m 218.00001,881.25007 -5.8125,0 0,9.1875 10.53125,0 0,-5.2187" - id="rect4432" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <rect - style="fill:#666666;stroke:#ececec;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4387-8" - width="14.5" - height="9" - x="173.12502" - y="858.11218" - rx="2.9268293" - ry="2.9268293" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - sodipodi:type="arc" - style="fill:#1a1a1a;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="path4391-3" - sodipodi:cx="408.8125" - sodipodi:cy="220.26843" - sodipodi:rx="2.6875" - sodipodi:ry="2.71875" - d="m 411.5,220.26843 c 0,1.50153 -1.20323,2.71875 -2.6875,2.71875 -1.48427,0 -2.6875,-1.21722 -2.6875,-2.71875 0,-1.50152 1.20323,-2.71875 2.6875,-2.71875 1.48427,0 2.6875,1.21723 2.6875,2.71875 z" - transform="matrix(1.1489362,0,0,1.1489362,-286.13697,609.51131)" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:#1a1a1a;fill-opacity:1;stroke:#e6e6e6;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - d="m 242.44524,860.13287 c -0.98011,0 -1.77562,0.6006 -1.77562,1.3586 l 0,1.5632 c 0,0.7581 0.79551,1.3733 1.77562,1.3733 l 4.53349,0 c 0.98012,0 1.77562,-0.6152 1.77562,-1.3733 l 0,-1.5632 c 0,-0.758 -0.7955,-1.3586 -1.77562,-1.3586 l -4.53349,0 z m 0.41557,1.0372 3.70235,0 c 0.51967,0 0.94448,0.2879 0.94448,0.6574 l 0,0.8912 c 0,0.3695 -0.42481,0.672 -0.94448,0.672 l -3.70235,0 c -0.51966,0 -0.94447,-0.3025 -0.94447,-0.672 l 0,-0.8912 c 0,-0.3695 0.42481,-0.6574 0.94447,-0.6574 z" - id="rect4397-0" - inkscape:connector-curvature="0" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - inkscape:connector-curvature="0" - id="path4418-4" - d="m 232.97199,860.13287 c -0.98011,0 -1.77562,0.6006 -1.77562,1.3586 l 0,1.5632 c 0,0.7581 0.79551,1.3733 1.77562,1.3733 l 4.53349,0 c 0.98012,0 1.77562,-0.6152 1.77562,-1.3733 l 0,-1.5632 c 0,-0.758 -0.7955,-1.3586 -1.77562,-1.3586 l -4.53349,0 z m 0.41557,1.0372 3.70236,0 c 0.51966,0 0.94447,0.2879 0.94447,0.6574 l 0,0.8912 c 0,0.3695 -0.42481,0.672 -0.94447,0.672 l -3.70236,0 c -0.51966,0 -0.94447,-0.3025 -0.94447,-0.672 l 0,-0.8912 c 0,-0.3695 0.42481,-0.6574 0.94447,-0.6574 z" - style="fill:#1a1a1a;fill-opacity:1;stroke:#e6e6e6;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <rect - style="fill:#1a1a1a;fill-opacity:1;stroke:#e6e6e6;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4395-0" - width="6.7246785" - height="1.6362466" - x="236.7028" - y="861.57312" - rx="1.0135853" - ry="0.81812328" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <g - id="g1037"> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - sodipodi:nodetypes="csccccscc" - inkscape:connector-curvature="0" - id="rect4428-4" - d="m 118.03127,895.15627 0,0.3125 c 0,1.2601 -0.0643,3.4345 -0.35937,5.75 l -1.5625,1e-4 c -0.80183,0.011 -1.64766,4.0737 -1.60938,8.0625 l 8.25,0 c -0.057,-5.5479 1.56902,-11.5211 1.75,-5.6563 0.21453,6.9525 1.74237,-5.1823 1.75,-8.4687 z" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:connector-curvature="0" - id="path4440-4" - d="m 124.78127,905.73727 -1.9375,-0.063" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path4442-9" - d="m 117.59377,901.20597 6.4375,0" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="908.11218" - x="115.28126" - height="0.375" - width="1.0625" - id="rect4446-9" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4448-3" - width="1.0625" - height="0.375" - x="115.34376" - y="906.51843" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="904.89343" - x="115.50001" - height="0.375" - width="1.0625" - id="rect4450-6" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4452-0" - width="1.0625" - height="0.375" - x="115.81251" - y="903.42468" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="902.17468" - x="116.21876" - height="0.375" - width="1.0625" - id="rect4454-5" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4456-0" - width="1.0625" - height="0.375" - x="118.50001" - y="900.17468" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="898.70593" - x="118.68751" - height="0.375" - width="1.0625" - id="rect4458-2" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4460-9" - width="1.0625" - height="0.375" - x="118.75001" - y="897.20593" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="895.79968" - x="118.75001" - height="0.375" - width="1.0625" - id="rect4462-4" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4464-3" - width="1.0625" - height="0.375" - x="120.84376" - y="908.11218" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="906.51843" - x="120.90627" - height="0.375" - width="1.0625" - id="rect4466-5" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4468-1" - width="1.0625" - height="0.375" - x="121.06252" - y="904.89343" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="903.42468" - x="121.37502" - height="0.375" - width="1.0625" - id="rect4470-7" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4472-4" - width="1.0625" - height="0.375" - x="121.78127" - y="902.17468" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="900.17468" - x="124.06252" - height="0.375" - width="1.0625" - id="rect4474-3" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4476-1" - width="1.0625" - height="0.375" - x="124.25002" - y="898.70593" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="897.20593" - x="124.31252" - height="0.375" - width="1.0625" - id="rect4478-4" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4480-6" - width="1.0625" - height="0.375" - x="124.31252" - y="895.79968" /> - </g> - <path - style="fill:none;stroke:#e6e6e6;stroke-width:0.35579938;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 310.75659,223.79453 c 0.76095,-0.8373 1.2453,-2.02269 1.2453,-3.35786 0,-1.33796 -0.48156,-2.54257 -1.2453,-3.38009" - id="path4491-2" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csc" - transform="matrix(0.92823291,-0.48059851,0.48059851,0.92823291,-312.89954,806.76727)" /> - <path - sodipodi:nodetypes="csc" - inkscape:connector-curvature="0" - id="path4496-2" - d="m 311.49266,224.75938 c 1.00712,-1.10816 1.64816,-2.67702 1.64816,-4.44411 0,-1.77079 -0.63735,-3.36509 -1.64816,-4.47354" - style="fill:none;stroke:#e6e6e6;stroke-width:0.47089946;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - transform="matrix(0.92823291,-0.48059851,0.48059851,0.92823291,-312.89954,806.76727)" /> - <path - style="fill:none;stroke:#e6e6e6;stroke-width:0.62789989;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 312.78041,226.18348 c 1.3429,-1.47763 2.19766,-3.56956 2.19766,-5.9258 0,-2.36118 -0.84984,-4.48703 -2.19766,-5.96505" - id="path4498-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csc" - transform="matrix(0.92823291,-0.48059851,0.48059851,0.92823291,-312.89954,806.76727)" /> - <path - style="fill:none;stroke:#e6e6e6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 309.34375,224.125 0,-7.375 -3.78125,2.07812 -3.4375,-0.10937 0,3.46875 3.4375,-0.125 z" - id="path4500-4" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" - transform="matrix(0.92823291,-0.48059851,0.48059851,0.92823291,-312.89954,806.76727)" /> - <g - id="g1373" - style="stroke:#e6e6e6"> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - transform="translate(-224.73743,661.76263)" - d="m 292.21188,220.62782 c 0,4.10051 -3.32411,7.42462 -7.42462,7.42462 -4.1005,0 -7.42462,-3.32411 -7.42462,-7.42462 0,-4.1005 3.32412,-7.42462 7.42462,-7.42462 4.10051,0 7.42462,3.32412 7.42462,7.42462 z" - sodipodi:ry="7.4246211" - sodipodi:rx="7.4246211" - sodipodi:cy="220.62782" - sodipodi:cx="284.78726" - id="path4515-2" - style="fill:none;stroke:#e6e6e6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - sodipodi:type="arc" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - sodipodi:nodetypes="csc" - inkscape:connector-curvature="0" - id="path4517-8" - d="m 53.15626,883.15627 c 1.94168,0.712 4.31843,1.1563 6.90625,1.1563 2.58782,0 4.96457,-0.4443 6.90625,-1.1563" - style="fill:none;stroke:#e6e6e6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline" - d="m 60.45665,888.82867 c 0.71191,-1.9416 1.15625,-4.3184 1.15625,-6.9062 0,-2.5878 -0.44434,-4.9646 -1.15625,-6.9063" - id="path4528-8" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csc" /> - </g> - <text - xml:space="preserve" - style="font-size:3.72799897px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#e6e6e6;fill-opacity:1;stroke:none;display:inline;font-family:Liberation Sans;-inkscape-font-specification:Liberation Sans" - x="51.803352" - y="859.21899" - id="text4532-2" - sodipodi:linespacing="100%" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"><tspan - sodipodi:role="line" - id="tspan4534-8" - x="51.803352" - y="859.21899" - style="font-weight:bold;fill:#e6e6e6;-inkscape-font-specification:Liberation Sans Bold">Lorem Ip</tspan></text> - <path - style="fill:#e6e6e6;fill-opacity:1;stroke:#e6e6e6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline" - d="m 52.25001,862.61227 15.25,0" - id="path4536-8" - inkscape:connector-curvature="0" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - inkscape:connector-curvature="0" - id="path4538-8" - d="m 52.25001,864.86227 15.25,0" - style="fill:#e6e6e6;fill-opacity:1;stroke:#e6e6e6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:#e6e6e6;fill-opacity:1;stroke:#e6e6e6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline" - d="m 52.25001,867.11227 15.25,0" - id="path4540-6" - inkscape:connector-curvature="0" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:none;stroke:#e6e6e6;stroke-width:0.82322329;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - d="m 242.49116,907.21887 5.125,-5.125 -5.125,-5.0937" - id="rect4544-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccc" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - sodipodi:nodetypes="ccc" - inkscape:connector-curvature="0" - id="path4549-8" - d="m 237.98183,907.21887 -5.125,-5.125 5.125,-5.0937" - style="fill:none;stroke:#e6e6e6;stroke-width:0.82322329;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - transform="matrix(0.92307692,0.3846154,-0.3846154,0.92307692,5.144234,833.96249)" - d="m 98.48214,-19.375 6.43972,2.66742 2.66742,6.439723 -2.66742,6.4397218 -6.439721,2.6674201 -6.439722,-2.6674204 -2.66742,-6.4397225 2.667421,-6.439722 z" - inkscape:randomized="0" - inkscape:rounded="0" - inkscape:flatsided="true" - sodipodi:arg2="-1.1780972" - sodipodi:arg1="-1.5707963" - sodipodi:r2="8.4139032" - sodipodi:r1="9.1071424" - sodipodi:cy="-10.267858" - sodipodi:cx="98.48214" - sodipodi:sides="8" - id="path4802" - style="fill:#e6e6e6;fill-opacity:1;stroke:#e6e6e6" - sodipodi:type="star" /> - <path - sodipodi:type="star" - style="fill:none;stroke:#333333;stroke-width:2.47171569;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="path4804" - sodipodi:sides="8" - sodipodi:cx="98.48214" - sodipodi:cy="-10.267858" - sodipodi:r1="9.1071424" - sodipodi:r2="8.4139032" - sodipodi:arg1="-1.5707963" - sodipodi:arg2="-1.1780972" - inkscape:flatsided="true" - inkscape:rounded="0" - inkscape:randomized="0" - d="m 98.48214,-19.375 6.43972,2.66742 2.66742,6.439723 -2.66742,6.4397218 -6.439721,2.6674201 -6.439722,-2.6674204 -2.66742,-6.4397225 2.667421,-6.439722 z" - transform="matrix(0.74691191,0.31121331,-0.31121331,0.74691191,23.247023,839.38239)" /> - <path - sodipodi:nodetypes="ccc" - inkscape:connector-curvature="0" - id="rect4806" - d="m 53.26552,1056.9525 -5.5,6.2008 5.5,6.2009" - style="fill:none;stroke:#e6e6e6;stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - transform="translate(49.48448,-140.79121)" /> - <path - sodipodi:nodetypes="ccc" - inkscape:connector-curvature="0" - style="fill:none;stroke:#e6e6e6;stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 67.781143,1069.3407 5.46875,-6.2009 -5.46875,-6.1736" - id="path4812" - transform="translate(49.48448,-140.79121)" /> - <path - style="fill:#e6e6e6;fill-opacity:1;stroke:none;display:inline" - id="path4257" - d="m 115.39024,855.00555 c 0.0904,0.0266 0.18708,0.0371 0.27111,0.0797 0.24682,0.12501 0.80382,0.53514 1.00046,0.67918 0.72548,0.53142 1.43751,1.08068 2.14837,1.63134 1.22364,0.99003 2.36274,2.09287 3.41202,3.2665 0.43117,0.4822 1.01205,1.207 1.42675,1.7166 0.97898,1.2314 2.022,2.4234 2.86791,3.7533 0.20576,0.2994 0.39551,0.6797 0.65579,0.9028 -0.10862,-0.1107 -0.10877,-0.099 0.0344,-0.01 0.19118,0.1291 -1.63528,2.8328 -1.82646,2.7036 l 0,0 c -0.18814,-0.022 -0.0511,0 -0.37755,-0.1793 -0.55628,-0.365 -1.09599,-0.7525 -1.61517,-1.1691 -1.27322,-1.0021 -2.36476,-2.2048 -3.47982,-3.3749 -1.53016,-1.5621 -3.0115,-3.1717 -4.57958,-4.6966 -0.94249,-1.01074 -1.92636,-2.0326 -2.54392,-3.28422 -0.14292,-0.18424 2.46273,-2.20539 2.60565,-2.02115 z" - inkscape:connector-curvature="0" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:#e6e6e6;fill-opacity:1;stroke:none;display:inline" - id="path4259" - d="m 112.109,867.43007 c 0.0548,-0.091 0.10266,-0.1866 0.16432,-0.2731 0.23235,-0.3261 0.52565,-0.6137 0.79275,-0.9102 0.42229,-0.4689 0.38553,-0.4337 0.82852,-0.9537 1.44214,-1.6363 3.06836,-3.0981 4.69856,-4.5425 1.63203,-1.40989 3.17698,-2.9167 4.78859,-4.3486 0.46305,-0.4369 0.97793,-0.80137 1.52221,-1.12653 0.15824,-0.21119 3.14491,2.0267 2.98666,2.23789 l 0,0 c -0.2952,0.52243 -0.62275,1.02042 -1.01852,1.47475 -0.88192,1.11919 -1.78212,2.22369 -2.79371,3.23049 -0.29346,0.2921 -0.60222,0.5684 -0.90606,0.8497 -0.31321,0.2899 -0.63003,0.5759 -0.94504,0.8639 -1.67153,1.4209 -3.37366,2.8163 -5.22715,3.9963 -0.49876,0.3405 -0.57121,0.3777 -1.0203,0.7266 -0.39341,0.3057 -0.75974,0.6889 -1.26518,0.7962 -0.14292,0.1842 -2.74857,-1.8369 -2.60565,-2.0212 z" - inkscape:connector-curvature="0" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - inkscape:connector-curvature="0" - d="m 135.39024,855.00555 c 0.0904,0.027 0.18708,0.037 0.27111,0.08 0.24682,0.125 0.80382,0.5352 1.00046,0.6792 0.72548,0.5314 1.43751,1.0807 2.14837,1.6314 1.22364,0.99 2.36274,2.0928 3.41202,3.26652 0.43117,0.4822 1.01205,1.207 1.42675,1.7166 0.97898,1.2314 2.022,2.4234 2.86791,3.7533 0.20576,0.2994 0.39551,0.6797 0.65579,0.9028 -0.10862,-0.1107 -0.10877,-0.099 0.0344,-0.01 0.19118,0.1291 -1.63528,2.8328 -1.82646,2.7036 l 0,0 c -0.18814,-0.022 -0.0511,0 -0.37755,-0.1793 -0.55628,-0.365 -1.09599,-0.7525 -1.61517,-1.1691 -1.27322,-1.0021 -2.36476,-2.2048 -3.47982,-3.3749 -1.53016,-1.5621 -3.0115,-3.1717 -4.57958,-4.6966 -0.94249,-1.01082 -1.92636,-2.03262 -2.54392,-3.28432 -0.14292,-0.1842 2.46273,-2.2054 2.60565,-2.0211 z" - id="path4263" - style="fill:#808080;fill-opacity:1;stroke:none;display:inline" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - inkscape:connector-curvature="0" - d="m 132.109,867.43017 c 0.0548,-0.091 0.10266,-0.1866 0.16432,-0.2731 0.23235,-0.3261 0.52565,-0.6137 0.79275,-0.9102 0.42229,-0.4689 0.38553,-0.4337 0.82852,-0.9537 1.44214,-1.6363 3.06836,-3.0981 4.69856,-4.5425 1.63203,-1.40992 3.17698,-2.91672 4.78859,-4.34862 0.46305,-0.4369 0.97793,-0.8014 1.52221,-1.1266 0.15824,-0.2112 3.14491,2.0267 2.98666,2.2379 l 0,0 c -0.2952,0.5224 -0.62275,1.0204 -1.01852,1.4748 -0.88192,1.11922 -1.78212,2.22372 -2.79371,3.23052 -0.29346,0.2921 -0.60222,0.5684 -0.90606,0.8497 -0.31321,0.2899 -0.63003,0.5759 -0.94504,0.8639 -1.67153,1.4209 -3.37366,2.8163 -5.22715,3.9963 -0.49876,0.3405 -0.57121,0.3777 -1.0203,0.7266 -0.39341,0.3057 -0.75974,0.6889 -1.26518,0.7962 -0.14292,0.1842 -2.74857,-1.8369 -2.60565,-2.0212 z" - id="path4265" - style="fill:#808080;fill-opacity:1;stroke:none;display:inline" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:none;stroke:#e6e6e6;stroke-width:0.66930836;stroke-miterlimit:4;stroke-dasharray:none" - d="m -44.467884,1107.2152 0,17.7252 1.161165,3.7983 c 1.200046,4.2782 1.065706,4.1105 2.322331,0 l 1.161165,-3.7983 0,-17.7252 z" - id="path4269" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" - transform="matrix(0.52823691,0.52823691,-0.52823691,0.52823691,773.22931,294.0656)" /> - <path - style="fill:none;stroke:#e6e6e6;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m -44.467884,1124.9404 4.644661,0" - id="path4271" - inkscape:connector-curvature="0" - transform="matrix(0.52823691,0.52823691,-0.52823691,0.52823691,773.22931,294.0656)" /> - <path - inkscape:connector-curvature="0" - id="path4275" - d="m -42.239747,1107.2336 0,17.6813" - style="fill:none;stroke:#e6e6e6;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - transform="matrix(0.52823691,0.52823691,-0.52823691,0.52823691,773.22931,294.0656)" /> - <path - style="fill:#e6e6e6;stroke:#e6e6e6;stroke-width:0.66930836;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" - d="m -43.348187,1128.4959 c 1.108441,-0.8952 1.929509,-0.3581 2.381097,0.045 -0.328428,1.1191 -1.190549,3.9391 -1.190549,3.9391 z" - id="path4279" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" - transform="matrix(0.52823691,0.52823691,-0.52823691,0.52823691,773.22931,294.0656)" /> - <rect - style="fill:#e6e6e6;fill-opacity:1;stroke:#e6e6e6" - id="rect4281" - width="5.1800866" - height="1.8614606" - x="-44.73621" - y="1105.3309" - rx="0.37616169" - ry="0.42804927" - transform="matrix(0.52823691,0.52823691,-0.52823691,0.52823691,773.22931,294.0656)" /> - <rect - style="fill:#1a1a1a;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - id="rect4290" - width="3.5355339" - height="1.8561553" - x="174.89275" - y="859.06403" - rx="1" - ry="1" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:none;stroke:#e6e6e6;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" - d="m 214.75589,862.65317 c 3.31942,-0.632 4.06019,-2.1721 5.3033,-4.08897 0.42304,-0.6524 -0.64726,-2.63586 0,-3.13491 0.10703,-0.0825 0.93192,0 1.06066,0 2.52315,0 1.41421,3.50161 1.41421,4.77048 0,0.2317 -0.47723,0.6815 -0.17677,0.6815 2.44972,0 2.94209,0.3603 4.41942,1.4993 0.0697,0.054 0.31741,3.8443 0.17677,3.9527 -0.26074,0.201 -0.49042,0.5145 -0.7071,0.6815 -0.13627,0.105 0.38563,0.7684 0.17677,1.0904 -0.17664,0.2724 -0.85358,0.8061 -1.23743,0.9541 -0.36233,0.1398 -0.89015,0 -1.23744,0.1363 -1.96875,0.759 -2.1166,-0.9523 -3.18198,-1.363 -0.34866,-0.1344 -0.63592,-0.1088 -1.06066,-0.2726 -0.99671,-0.3842 -3.88909,0.6704 -3.88909,-0.2726 0,-1.2852 -0.2556,-3.5996 -1.06066,-4.6342 z" - id="path4292" - inkscape:connector-curvature="0" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - inkscape:connector-curvature="0" - id="path4294" - d="m 205.42921,862.12677 c -3.31942,0.632 -4.06019,2.1721 -5.3033,4.089 -0.42304,0.6524 0.64726,2.6358 0,3.1349 -0.10703,0.082 -0.93192,0 -1.06066,0 -2.52315,0 -1.41421,-3.5016 -1.41421,-4.7705 0,-0.2317 0.47723,-0.6815 0.17677,-0.6815 -2.44972,0 -2.94209,-0.3603 -4.41942,-1.4993 -0.0697,-0.054 -0.31741,-3.84428 -0.17677,-3.95268 0.26074,-0.201 0.49042,-0.5145 0.7071,-0.6815 0.13627,-0.105 -0.38563,-0.7684 -0.17677,-1.0904 0.17664,-0.2724 0.85358,-0.8061 1.23743,-0.9541 0.36233,-0.1398 0.89015,0 1.23744,-0.1363 1.96875,-0.759 2.1166,0.9523 3.18198,1.363 0.34866,0.1344 0.63592,0.1088 1.06066,0.2726 0.99671,0.3842 3.88909,-0.6704 3.88909,0.2726 0,1.2852 0.2556,3.59958 1.06066,4.63418 z" - style="fill:none;stroke:#e6e6e6;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <g - id="g4683" - style="stroke:#808080"> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - sodipodi:type="arc" - style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="path4298" - sodipodi:cx="284.78726" - sodipodi:cy="220.62782" - sodipodi:rx="7.4246211" - sodipodi:ry="7.4246211" - d="m 292.21188,220.62782 c 0,4.10051 -3.32411,7.42462 -7.42462,7.42462 -4.1005,0 -7.42462,-3.32411 -7.42462,-7.42462 0,-4.1005 3.32412,-7.42462 7.42462,-7.42462 4.10051,0 7.42462,3.32412 7.42462,7.42462 z" - transform="translate(-204.73743,661.76269)" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline" - d="m 73.15626,883.15627 c 1.94168,0.712 4.31843,1.1563 6.90625,1.1563 2.58782,0 4.96457,-0.4443 6.90625,-1.1563" - id="path4300" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csc" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - sodipodi:nodetypes="csc" - inkscape:connector-curvature="0" - id="path4302" - d="m 80.45665,888.82867 c 0.71191,-1.9416 1.15625,-4.3184 1.15625,-6.9062 0,-2.5878 -0.44434,-4.9646 -1.15625,-6.9063" - style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline" /> - </g> - <g - id="g277" - style="stroke:#e6e6e6"> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - sodipodi:type="arc" - style="fill:none;stroke:#e6e6e6;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="path4306" - sodipodi:cx="284.78726" - sodipodi:cy="220.62782" - sodipodi:rx="7.4246211" - sodipodi:ry="7.4246211" - d="m 292.21188,220.62782 c 0,4.10051 -3.32411,7.42462 -7.42462,7.42462 -4.1005,0 -7.42462,-3.32411 -7.42462,-7.42462 0,-4.1005 3.32412,-7.42462 7.42462,-7.42462 4.10051,0 7.42462,3.32412 7.42462,7.42462 z" - transform="translate(-184.73743,661.76263)" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:connector-curvature="0" - id="path4308" - d="m 94.285536,887.89997 11.048544,-11.0485" - style="fill:none;stroke:#e6e6e6;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" /> - </g> - <rect - style="fill:#e6e6e6;stroke:none;display:inline" - id="rect4310" - width="3.3587573" - height="12.020815" - x="115.93771" - y="876.12292" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <rect - y="876.12292" - x="120.53392" - height="12.020815" - width="3.3587573" - id="rect4312" - style="fill:#e6e6e6;stroke:none;display:inline" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:#e6e6e6;stroke:none;display:inline" - d="m 134.32248,876.12297 11.31371,6.0104 -11.31371,6.0104 z" - id="rect4314" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - sodipodi:nodetypes="ccccccc" - inkscape:connector-curvature="0" - id="path4319" - d="m -44.467884,1107.2152 0,17.7252 1.161165,3.7983 c 1.200046,4.2782 1.065706,4.1105 2.322331,0 l 1.161165,-3.7983 0,-17.7252 z" - style="fill:none;stroke:#e6e6e6;stroke-width:0.66930836000000005;stroke-miterlimit:4;stroke-dasharray:none" - transform="matrix(0.52823691,0.52823691,-0.52823691,0.52823691,773.22931,313.68781)" /> - <path - inkscape:connector-curvature="0" - id="path4321" - d="m -44.467884,1124.9404 4.644661,0" - style="fill:none;stroke:#e6e6e6;stroke-width:0.66930836000000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - transform="matrix(0.52823691,0.52823691,-0.52823691,0.52823691,773.22931,313.68781)" /> - <path - style="fill:none;stroke:#e6e6e6;stroke-width:0.66930836000000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m -42.239747,1107.2336 0,17.6813" - id="path4323" - inkscape:connector-curvature="0" - transform="matrix(0.52823691,0.52823691,-0.52823691,0.52823691,773.22931,313.68781)" /> - <path - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" - id="path4325" - d="m -43.348187,1128.4959 c 1.108441,-0.8952 1.929509,-0.3581 2.381097,0.045 -0.328428,1.1191 -1.190549,3.9391 -1.190549,3.9391 z" - style="fill:#999999;stroke:#e6e6e6;stroke-width:0.66930836000000005;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" - transform="matrix(0.52823691,0.52823691,-0.52823691,0.52823691,773.22931,313.68781)" /> - <rect - ry="0.42804927" - rx="0.37616169" - y="1105.3309" - x="-44.73621" - height="1.8614606" - width="5.1800866" - id="rect4327" - style="fill:#999999;fill-opacity:1;stroke:#e6e6e6" - transform="matrix(0.52823691,0.52823691,-0.52823691,0.52823691,773.22931,313.68781)" /> - <path - style="fill:none;stroke:#e6e6e6;stroke-width:0.66930836;stroke-miterlimit:4;stroke-dasharray:none" - d="m -44.467884,1107.2152 0,17.7252 1.161165,3.7983 c 1.200046,4.2782 1.065706,4.1105 2.322331,0 l 1.161165,-3.7983 0,-17.7252 z" - id="path4331" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" - transform="matrix(0.24508333,0.24508333,-0.24508333,0.24508333,461.00011,612.37085)" /> - <path - style="fill:none;stroke:#e6e6e6;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m -44.467884,1124.9404 4.644661,0" - id="path4333" - inkscape:connector-curvature="0" - transform="matrix(0.24508333,0.24508333,-0.24508333,0.24508333,461.00011,612.37085)" /> - <path - inkscape:connector-curvature="0" - id="path4335" - d="m -42.239747,1107.2336 0,17.6813" - style="fill:none;stroke:#e6e6e6;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - transform="matrix(0.24508333,0.24508333,-0.24508333,0.24508333,461.00011,612.37085)" /> - <path - style="fill:#e6e6e6;stroke:#e6e6e6;stroke-width:0.66930836;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" - d="m -43.348187,1128.4959 c 1.108441,-0.8952 1.929509,-0.3581 2.381097,0.045 -0.328428,1.1191 -1.190549,3.9391 -1.190549,3.9391 z" - id="path4337" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" - transform="matrix(0.24508333,0.24508333,-0.24508333,0.24508333,461.00011,612.37085)" /> - <rect - style="fill:#e6e6e6;fill-opacity:1;stroke:#e6e6e6" - id="rect4339" - width="5.1800866" - height="1.8614606" - x="-44.73621" - y="1105.3309" - rx="0.37616169" - ry="0.42804927" - transform="matrix(0.24508333,0.24508333,-0.24508333,0.24508333,461.00011,612.37085)" /> - <path - inkscape:connector-curvature="0" - d="m 264.62704,45.67985 56.31152,-101.021534 0.2677,36.946034 118.51291,-0.267671 c 21.1765,-2.244605 39.74272,-10.852596 53.18801,-27.040291 C 449.99593,42.074998 437.6363,104.18491 348.60347,104.22236 l -27.39721,0 -0.2677,41.05114 -56.31152,-99.59365 z M 128.9798,105.11479 C 65.618201,85.84639 36.055796,7.7860213 7.07577,-47.220709 c 13.282679,12.076484 38.139773,29.363022 52.577167,29.364467 27.689982,0.06456 55.380063,0.116317 83.070083,0.174562 l 83.88712,0 -0.26776,122.43949 -0.26771,0.35698 -97.09487,0 z M 2.5,-79.206629 42.995596,-161.8012 3.5060915,-183.49253 l 118.3343785,0 57.2039,103.877161 -38.79429,-23.228801 c -12.44295,26.27544 -24.88589,52.550878 -37.32884,78.826316 C 88.601045,-24.268303 74.280847,-24.518751 59.960649,-24.769199 32.037317,-31.279427 12.61125,-53.254123 2.5,-79.206629 z m 395.45406,53.939396 -52.29561,-96.380927 105.66215,-63.98618 51.13531,102.449252 c 1.54832,24.517706 -38.03694,58.635841 -62.6066,58.370427 l -41.89525,-0.452572 z M 88.64259,-250.78088 l 53.98405,-80.90589 c 52.35957,-19.50079 82.68955,22.59846 101.8318,49.13587 l -50.86768,97.63029 -104.94817,-65.86027 z m 204.54178,43.54987 c -10.85783,-25.59753 -25.36515,-54.87764 -43.50654,-80.336 -16.24176,-22.7925 -35.86597,-42.67852 -50.7326,-51.5631 l 136.53974,-0.26767 c 24.52088,2.20137 36.43539,16.49668 49.43976,36.05358 l 19.63307,34.53651 30.34224,-19.3654 -57.11457,101.73554 -123.15347,0.26768 38.55237,-21.06114 z" - style="fill:#ececec;fill-opacity:1" - id="path11522" - transform="matrix(0.03334717,0,0,0.03334717,191.57984,885.59897)" /> - <path - style="fill:none;stroke:#e6e6e6;display:inline" - d="m 219.92452,876.86347 1.33532,1.5307 -5.05101,4.4063 4.00584,4.592 5.05101,-4.4063 1.29423,1.4837 1.19091,-7.757 z" - id="rect4425" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccc" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <rect - style="fill:#e6e6e6;fill-opacity:1;stroke:#e6e6e6;display:inline" - id="rect4564-9" - width="10.935946" - height="7.925663" - x="71.833412" - y="900.66992" - rx="1.9019035" - ry="2.3056474" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <rect - style="fill:none;stroke:#e6e6e6;stroke-width:0.69802254;display:inline" - id="rect4566-9" - width="7.7661061" - height="7.5413885" - x="73.447395" - y="896.3468" - rx="1.9019035" - ry="2.3056474" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <rect - ry="2.3056474" - rx="1.9019035" - y="900.66992" - x="92.208412" - height="7.925663" - width="10.935946" - id="rect4506" - style="fill:#e6e6e6;fill-opacity:1;stroke:#e6e6e6;display:inline" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:none;stroke:#e6e6e6;stroke-width:0.69802254;display:inline" - d="m 108.78126,899.75007 0,-1.0938 c 0,-1.2773 -0.8526,-2.3124 -1.90625,-2.3124 l -3.96875,0 c -1.05366,0 -1.90625,1.0351 -1.90625,2.3124 l 0,2.9376" - id="rect4508" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cssssc" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <g - id="g1060"> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - ry="2.9268293" - rx="2.9268293" - y="892.60608" - x="150.24391" - height="19.512196" - width="19.512196" - id="rect4514" - style="fill:#1a1a1a;stroke:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:#eeeeec;fill-opacity:1;stroke:none;display:inline" - id="rect4518" - width="10.935946" - height="7.925663" - x="151.83342" - y="900.66992" - rx="1.9019035" - ry="2.3056474" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#eeeeec;stroke-width:0.69802254;display:inline" - id="rect4520" - width="7.7661061" - height="7.5413885" - x="153.4474" - y="896.3468" - rx="1.9019035" - ry="2.3056474" /> - </g> - <g - id="g1065"> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:#1a1a1a;stroke:none;display:inline" - id="rect4516" - width="19.512196" - height="19.512196" - x="170.24391" - y="892.60608" - rx="2.9268293" - ry="2.9268293" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - ry="2.3056474" - rx="1.9019035" - y="900.66992" - x="172.20842" - height="7.925663" - width="10.935946" - id="rect4522" - style="fill:#eeeeec;fill-opacity:1;stroke:none;display:inline" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#eeeeec;stroke-width:0.69802254;display:inline" - d="m 188.78127,899.75007 0,-1.0938 c 0,-1.2773 -0.85259,-2.3124 -1.90625,-2.3124 l -3.96875,0 c -1.05365,0 -1.90625,1.0351 -1.90625,2.3124 l 0,2.9376" - id="path4524" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cssssc" /> - </g> - <path - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - d="m 61.2575,895.73577 c -0.85405,0.9453 -1.14575,2.2161 -0.88721,3.3884 l -8.17918,8.1791 c -0.14244,0.1425 -0.12201,0.3935 0.0507,0.5661 l 2.21807,2.2181 c 0.17268,0.1727 0.42791,0.1974 0.57035,0.055 l 8.13693,-8.1369 c 1.26093,0.3161 2.65155,-0.016 3.63762,-1.0013 0.66189,-0.6619 1.02334,-1.5095 1.09849,-2.3744 l -2.11666,2.1167 -3.2405,-0.8746 -0.87454,-3.2405 2.14201,-2.1419 c -0.88104,0.066 -1.74292,0.4331 -2.41663,1.1068 -0.0467,0.047 -0.0968,0.09 -0.13942,0.1395 z" - id="path4529" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccsssscscccccsc" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:none;stroke:#e6e6e6;stroke-width:0.80000001;stroke-miterlimit:4;stroke-dasharray:none;display:inline" - d="m 201.14016,895.80807 -8.25003,8.25 -0.94202,3.5156 2.58822,2.5882 3.10935,-0.8332 10.50754,-10.5075 -2e-5,-2.3881 -1.69404,-1.694 -1.94401,0 -9.97205,9.972 3e-5,1.972 0.61101,0.611 1.73597,0 9.36804,-9.368" - id="path3395" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccccccc" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <rect - style="fill:#e6e6e6;stroke:none;display:inline" - id="rect3397" - width="19.512196" - height="19.512196" - x="210.24391" - y="892.60608" - rx="2.9268293" - ry="2.9268293" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:none;stroke:#1a1a1a;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - d="m 214.67284,895.14537 c 7.11789,-1.5098 3.04383,2.9586 9.72807,1.6024 0.48786,-0.099 0.94287,0.3982 0.94287,0.8928 0,0 0,6.7482 0,6.9956 0,0.2473 -0.31338,0.7228 -0.94287,0.8928 -6.70194,1.3208 -2.58353,-3.1887 -9.72807,-1.6024 -0.39933,0.17 -0.94286,-0.3982 -0.94286,-0.8928 l 0,-6.9955 c 0,-0.4947 0.45501,-0.776 0.94286,-0.8929 z" - id="rect3409" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccscccssc" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <rect - style="fill:none;stroke:#1a1a1a;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - id="rect4190" - width="1.125" - height="16.3125" - x="212.62502" - y="894.73718" - ry="0.40000001" - rx="0.40000001" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - transform="translate(-224.73743,701.76263)" - d="m 292.21188,220.62782 c 0,4.10051 -3.32411,7.42462 -7.42462,7.42462 -4.1005,0 -7.42462,-3.32411 -7.42462,-7.42462 0,-4.1005 3.32412,-7.42462 7.42462,-7.42462 4.10051,0 7.42462,3.32412 7.42462,7.42462 z" - sodipodi:ry="7.4246211" - sodipodi:rx="7.4246211" - sodipodi:cy="220.62782" - sodipodi:cx="284.78726" - id="path4020" - style="fill:none;stroke:#e6e6e6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:#ececec;fill-opacity:1;stroke:#e6e6e6;stroke-width:1.62554049;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="path4022" - sodipodi:cx="284.78726" - sodipodi:cy="220.62782" - sodipodi:rx="7.4246211" - sodipodi:ry="7.4246211" - d="m 292.21188,220.62782 c 0,4.10051 -3.32411,7.42462 -7.42462,7.42462 -4.1005,0 -7.42462,-3.32411 -7.42462,-7.42462 0,-4.1005 3.32412,-7.42462 7.42462,-7.42462 4.10051,0 7.42462,3.32412 7.42462,7.42462 z" - transform="matrix(0.61517998,0,0,0.61517998,-115.14559,786.66463)" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - sodipodi:type="arc" - style="fill:none;stroke:#e6e6e6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="path4024" - sodipodi:cx="284.78726" - sodipodi:cy="220.62782" - sodipodi:rx="7.4246211" - sodipodi:ry="7.4246211" - d="m 292.21188,220.62782 c 0,4.10051 -3.32411,7.42462 -7.42462,7.42462 -4.1005,0 -7.42462,-3.32411 -7.42462,-7.42462 0,-4.1005 3.32412,-7.42462 7.42462,-7.42462 4.10051,0 7.42462,3.32412 7.42462,7.42462 z" - transform="translate(-204.73743,701.76269)" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect3141" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,955.6356)" /> - <text - xml:space="preserve" - style="font-size:17.09149551px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#f2f2f2;fill-opacity:1;stroke:none;font-family:FreeSans;-inkscape-font-specification:FreeSans Bold" - x="5.6234956" - y="979.64215" - id="text3151" - sodipodi:linespacing="100%"><tspan - sodipodi:role="line" - id="tspan3153" - x="5.6234956" - y="979.64215">?</tspan></text> - <text - sodipodi:linespacing="100%" - id="text3155" - y="979.64215" - x="27.623495" - style="font-size:17.09149551px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d3d7cf;fill-opacity:1;stroke:none;font-family:FreeSans;-inkscape-font-specification:FreeSans Bold" - xml:space="preserve"><tspan - y="979.64215" - x="27.623495" - id="tspan3157" - sodipodi:role="line">?</tspan></text> - <path - sodipodi:type="star" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#e6e6e6;stroke-width:1.20000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - id="path4061" - sodipodi:sides="5" - sodipodi:cx="133.6317" - sodipodi:cy="61.950726" - sodipodi:r1="8.4750214" - sodipodi:r2="4.2375107" - sodipodi:arg1="0.97074611" - sodipodi:arg2="1.5990646" - inkscape:flatsided="false" - inkscape:rounded="0" - inkscape:randomized="0" - d="m 138.41741,68.945222 -4.90548,-2.758679 -5.05353,2.47708 1.10779,-5.517867 -3.91747,-4.040728 5.59012,-0.651551 2.6324,-4.974387 2.34711,5.115187 5.54438,0.966388 -4.13954,3.812909 z" - transform="matrix(0.86880929,0,0,0.9052037,23.373259,866.40571)" - inkscape:transform-center-x="-0.064310184" - inkscape:transform-center-y="-0.6685783" /> - <path - inkscape:transform-center-y="-0.6685783" - inkscape:transform-center-x="-0.064310184" - transform="matrix(0.86880929,0,0,0.9052037,43.373259,866.40571)" - d="m 138.41741,68.945222 -4.90548,-2.758679 -5.05353,2.47708 1.10779,-5.517867 -3.91747,-4.040728 5.59012,-0.651551 2.6324,-4.974387 2.34711,5.115187 5.54438,0.966388 -4.13954,3.812909 z" - inkscape:randomized="0" - inkscape:rounded="0" - inkscape:flatsided="false" - sodipodi:arg2="1.5990646" - sodipodi:arg1="0.97074611" - sodipodi:r2="4.2375107" - sodipodi:r1="8.4750214" - sodipodi:cy="61.950726" - sodipodi:cx="133.6317" - sodipodi:sides="5" - id="path4063" - style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#e6e6e6;stroke-width:1.19979274;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - sodipodi:type="star" /> - <path - transform="matrix(0.83907455,0,0,0.82021694,132.45839,876.4664)" - inkscape:connector-curvature="0" - id="path4152" - d="m 53.921057,63.979016 -5.615027,-6.233401 9.206725,-9.241692 5.744016,0.08696 -0.101757,6.527264 z" - style="fill:#1a1a1a;fill-opacity:1" - sodipodi:nodetypes="cccccc" /> - <path - id="path4166" - transform="matrix(0.83907455,0,0,0.82021694,136.85379,871.82606)" - style="fill:#e6e6e6;fill-opacity:1" - d="m 54.67642,55.699012 2.077304,-0.01567 -0.06764,2.127228 -2.053363,0.03612 z m 3.043854,-0.97892 -5.97358,0.0021 -8.473421,8.656992 5.643707,5.967988 8.731922,-8.826384 z m 1.047484,5.977035 -9.907739,10.059911 -6.759792,-7.448518 9.288198,-9.605297 7.396851,-0.01484 z m -13.590285,2.754701 5.185415,-5.323903 3.948418,3.90828 -5.336087,5.379274 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccccccccccccccc" /> - <rect - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,1022.6356)" - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect214" - style="fill:#2e2f2e;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect216" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" - transform="matrix(0.43114968,0,0,0.43114968,-135.41936,1022.6356)" /> - <rect - transform="matrix(0.43114968,0,0,0.43114968,-135.41936,999.6356)" - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect218" - style="fill:#2e2f2e;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect224" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" - transform="matrix(0.43114968,0,0,0.43114968,-135.41936,933.6356)" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect220" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" - transform="matrix(0.43114968,0,0,0.43114968,-135.41936,977.6356)" /> - <path - sodipodi:type="arc" - style="fill:none;stroke:#f2f2f2;stroke-width:0.55552751;stroke-miterlimit:4;stroke-dasharray:none" - id="path231" - sodipodi:cx="56.797413" - sodipodi:cy="143.46553" - sodipodi:rx="5.5219707" - sodipodi:ry="5.2590199" - d="m 51.275442,143.46553 c 0,-2.90448 2.472271,-5.25902 5.521971,-5.25902 3.0497,0 5.521971,2.35454 5.521971,5.25902 l -5.521971,0 z" - transform="matrix(1.2380952,0,0,1.675,-15.523193,759.33575)" - sodipodi:start="3.1415927" - sodipodi:end="6.2831853" /> - <path - sodipodi:end="6.2831853" - sodipodi:start="3.1415927" - transform="matrix(0.4523809,0,0,0.775,29.234821,888.45473)" - d="m 51.275442,143.46553 c 0,-2.90448 2.472271,-5.25902 5.521971,-5.25902 3.0497,0 5.521971,2.35454 5.521971,5.25902 l -5.521971,0 z" - sodipodi:ry="5.2590199" - sodipodi:rx="5.5219707" - sodipodi:cy="143.46553" - sodipodi:cx="56.797413" - id="path1003" - style="fill:none;stroke:#f2f2f2;stroke-width:0.55552751;stroke-miterlimit:4;stroke-dasharray:none" - sodipodi:type="arc" /> - <path - sodipodi:end="6.2831853" - sodipodi:start="3.1415927" - transform="matrix(1.2380952,0,0,1.675,6.476807,759.33575)" - d="m 51.275442,143.46553 c 0,-2.90448 2.472271,-5.25902 5.521971,-5.25902 3.0497,0 5.521971,2.35454 5.521971,5.25902 l -5.521971,0 z" - sodipodi:ry="5.2590199" - sodipodi:rx="5.5219707" - sodipodi:cy="143.46553" - sodipodi:cx="56.797413" - id="path1026" - style="fill:none;stroke:#f2f2f2;stroke-width:0.55552751;stroke-miterlimit:4;stroke-dasharray:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:none;stroke:#f2f2f2;stroke-width:0.55552751;stroke-miterlimit:4;stroke-dasharray:none" - id="path1028" - sodipodi:cx="56.797413" - sodipodi:cy="143.46553" - sodipodi:rx="5.5219707" - sodipodi:ry="5.2590199" - d="m 51.275442,143.46553 c 0,-2.90448 2.472271,-5.25902 5.521971,-5.25902 3.0497,0 5.521971,2.35454 5.521971,5.25902 l -5.521971,0 z" - transform="matrix(0.4523809,0,0,0.775,51.234821,888.45473)" - sodipodi:start="3.1415927" - sodipodi:end="6.2831853" /> - <rect - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,977.6356)" - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect210" - style="fill:#2e2f2e;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" /> - <path - id="path1037" - transform="matrix(0.83752627,0,0,0.92659378,3.4546476,870.69518)" - style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:none;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;font-family:Verdana;-inkscape-font-specification:Verdana" - d="m 14.756588,131.15925 0,9.60545 -11.6032194,-0.0118 0,-9.58225 -2.73319221,0.79047 8.57645441,-3.98976 8.4702832,3.97497 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccc" /> - <path - sodipodi:nodetypes="cccccccc" - inkscape:connector-curvature="0" - d="m 14.756588,131.15925 0,9.60545 -11.6032194,-0.0118 0,-9.58225 -2.73319221,0.79047 8.57645441,-3.98976 8.4702832,3.97497 z" - style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:none;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;font-family:Verdana;-inkscape-font-specification:Verdana" - transform="matrix(0.83752627,0,0,0.92659378,25.454648,870.69518)" - id="path4158" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect212" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,999.6356)" /> - <path - style="fill:none;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 4.1190936,170.87651 1.316683,1.26576 1.7540206,0.003 5.5819788,-5.57043 3.523532,0.006 2.853557,-2.81689 0.0014,-1.68321 -1.169094,-1.16909 -2.365502,2.3822 -2.63185,-0.005 0.09078,-2.55314 2.365531,-2.36552 -1.277858,-1.27786 -1.648714,0.0359 -2.8505569,2.8535 0.00598,3.45613 -5.5530909,5.58201 z" - id="path4206" - inkscape:connector-curvature="0" - transform="matrix(0.90433934,-0.00156352,-0.00156352,0.90433934,0.70503743,868.45488)" - sodipodi:nodetypes="cccccccccccccccccc" /> - <path - sodipodi:nodetypes="cccccccccccccccccc" - transform="matrix(0.90433934,-0.00156352,-0.00156352,0.90433934,22.705037,868.45488)" - inkscape:connector-curvature="0" - id="path4208" - d="m 4.1190936,170.87651 1.316683,1.26576 1.7540206,0.003 5.5819788,-5.57043 3.523532,0.006 2.853557,-2.81689 0.0014,-1.68321 -1.169094,-1.16909 -2.365502,2.3822 -2.63185,-0.005 0.09078,-2.55314 2.365531,-2.36552 -1.277858,-1.27786 -1.648714,0.0359 -2.8505569,2.8535 0.00598,3.45613 -5.5530909,5.58201 z" - style="fill:none;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - sodipodi:type="arc" - style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - id="path4218" - sodipodi:cx="5.2590199" - sodipodi:cy="194.45924" - sodipodi:rx="2.0660436" - sodipodi:ry="1.5964882" - d="m 7.3250635,194.45924 c 0,0.88172 -0.9249993,1.59649 -2.0660436,1.59649 -1.1410444,0 -2.0660437,-0.71477 -2.0660437,-1.59649 0,-0.88171 0.9249993,-1.59648 2.0660437,-1.59648 1.1410443,0 2.0660436,0.71477 2.0660436,1.59648 z" - transform="matrix(0.93050058,0,0,0.90640134,0.75846434,870.02825)" /> - <use - x="0" - y="0" - xlink:href="#path4218" - id="use4224" - transform="translate(5.3024129,-11.783217)" - width="250" - height="200" /> - <use - x="0" - y="0" - xlink:href="#use4224" - id="use4226" - transform="translate(5.2368951,11.783217)" - width="250" - height="200" /> - <path - transform="matrix(0.93050058,0,0,0.90640134,6.0478791,864.58985)" - d="m 7.3250635,194.45924 c 0,0.88172 -0.9249993,1.59649 -2.0660436,1.59649 -1.1410444,0 -2.0660437,-0.71477 -2.0660437,-1.59649 0,-0.88171 0.9249993,-1.59648 2.0660437,-1.59648 1.1410443,0 2.0660436,0.71477 2.0660436,1.59648 z" - sodipodi:ry="1.5964882" - sodipodi:rx="2.0660436" - sodipodi:cy="194.45924" - sodipodi:cx="5.2590199" - id="path4228" - style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - sodipodi:type="arc" /> - <path - sodipodi:nodetypes="cc" - style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 10.902837,183.0346 0,3.66687" - id="path4230" - inkscape:connector-curvature="0" - transform="matrix(0.93050058,0,0,0.90640134,0.75846434,870.02825)" /> - <path - style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 9.2894123,189.68386 -2.3956906,3.56909" - id="path4232" - inkscape:connector-curvature="0" - transform="matrix(0.93050058,0,0,0.90640134,0.75846434,870.02825)" - sodipodi:nodetypes="cc" /> - <path - style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 12.46737,189.68386 2.493472,3.5202" - id="path4234" - inkscape:connector-curvature="0" - transform="matrix(0.93050058,0,0,0.90640134,0.75846434,870.02825)" - sodipodi:nodetypes="cc" /> - <path - style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 12.467368,182.74125 4.009116,9.925" - id="path4236" - inkscape:connector-curvature="0" - transform="matrix(0.93050058,0,0,0.90640134,0.75846434,870.02825)" - sodipodi:nodetypes="cc" /> - <path - style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 9.4849789,182.83904 -4.2046813,9.87611" - id="path4238" - inkscape:connector-curvature="0" - transform="matrix(0.93050058,0,0,0.90640134,0.75846434,870.02825)" - sodipodi:nodetypes="cc" /> - <path - style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 7.4315299,194.71969 7.0403961,0" - id="path4240" - inkscape:connector-curvature="0" - transform="matrix(0.93050058,0,0,0.90640134,0.75846434,870.02825)" - sodipodi:nodetypes="cc" /> - <path - transform="matrix(0.93050058,0,0,0.90640134,22.758464,870.02825)" - d="m 7.3250635,194.45924 c 0,0.88172 -0.9249993,1.59649 -2.0660436,1.59649 -1.1410444,0 -2.0660437,-0.71477 -2.0660437,-1.59649 0,-0.88171 0.9249993,-1.59648 2.0660437,-1.59648 1.1410443,0 2.0660436,0.71477 2.0660436,1.59648 z" - sodipodi:ry="1.5964882" - sodipodi:rx="2.0660436" - sodipodi:cy="194.45924" - sodipodi:cx="5.2590199" - id="path4282" - style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - sodipodi:type="arc" /> - <use - style="fill:#1a1a1a" - height="200" - width="250" - transform="translate(5.3024129,-11.783217)" - id="use4284" - xlink:href="#path4282" - y="0" - x="0" /> - <use - style="fill:#1a1a1a" - height="200" - width="250" - transform="translate(5.2368951,11.783217)" - id="use4286" - xlink:href="#use4284" - y="0" - x="0" /> - <path - sodipodi:type="arc" - style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - id="path4288" - sodipodi:cx="5.2590199" - sodipodi:cy="194.45924" - sodipodi:rx="2.0660436" - sodipodi:ry="1.5964882" - d="m 7.3250635,194.45924 c 0,0.88172 -0.9249993,1.59649 -2.0660436,1.59649 -1.1410444,0 -2.0660437,-0.71477 -2.0660437,-1.59649 0,-0.88171 0.9249993,-1.59648 2.0660437,-1.59648 1.1410443,0 2.0660436,0.71477 2.0660436,1.59648 z" - transform="matrix(0.93050058,0,0,0.90640134,28.047879,864.58985)" /> - <path - transform="matrix(0.93050058,0,0,0.90640134,22.758464,870.02825)" - inkscape:connector-curvature="0" - id="path4290" - d="m 10.902837,183.0346 0,3.66687" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - sodipodi:nodetypes="cc" /> - <path - sodipodi:nodetypes="cc" - transform="matrix(0.93050058,0,0,0.90640134,22.758464,870.02825)" - inkscape:connector-curvature="0" - id="path4293" - d="m 9.2894123,189.68386 -2.3956906,3.56909" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - sodipodi:nodetypes="cc" - transform="matrix(0.93050058,0,0,0.90640134,22.758464,870.02825)" - inkscape:connector-curvature="0" - id="path4295" - d="m 12.46737,189.68386 2.493472,3.5202" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - sodipodi:nodetypes="cc" - transform="matrix(0.93050058,0,0,0.90640134,22.758464,870.02825)" - inkscape:connector-curvature="0" - id="path4297" - d="m 12.467368,182.74125 4.009116,9.925" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - sodipodi:nodetypes="cc" - transform="matrix(0.93050058,0,0,0.90640134,22.758464,870.02825)" - inkscape:connector-curvature="0" - id="path4299" - d="m 9.4849789,182.83904 -4.2046813,9.87611" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - sodipodi:nodetypes="cc" - transform="matrix(0.93050058,0,0,0.90640134,22.758464,870.02825)" - inkscape:connector-curvature="0" - id="path4301" - d="m 7.4315299,194.71969 7.0403961,0" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - inkscape:connector-curvature="0" - transform="matrix(0.95268982,0,0,1.0934812,2.5939281,843.09296)" - style="fill:none;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0" - d="m 47.594131,94.030746 14.462306,0 0,10.255094 -14.462306,0 z" - id="rect4303" /> - <path - style="fill:none;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 47.666782,94.03851 7.145333,5.307564 7.035032,-5.261579 z" - id="path4305" - inkscape:connector-curvature="0" - transform="matrix(0.95268982,0,0,1.0934812,2.5939281,843.09296)" - sodipodi:nodetypes="cccc" /> - <path - id="path4315" - d="m 47.594131,94.030746 14.462306,0 0,10.255094 -14.462306,0 z" - style="fill:none;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0" - transform="matrix(0.95268982,0,0,1.0934812,24.593928,843.09296)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccc" - transform="matrix(0.95268982,0,0,1.0934812,24.593928,843.09296)" - inkscape:connector-curvature="0" - id="path4317" - d="m 47.666782,94.03851 7.145333,5.307564 7.035032,-5.261579 z" - style="fill:none;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <rect - transform="matrix(0.43114968,0,0,0.43114968,-135.41936,955.6356)" - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect222" - style="fill:#2e2f2e;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" /> - <text - xml:space="preserve" - style="font-size:17px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Verdana;-inkscape-font-specification:Verdana Bold" - x="49.504551" - y="129.16422" - id="text247" - transform="translate(5.2683173,850.36218)"><tspan - sodipodi:role="line" - id="tspan249" - x="49.504551" - y="129.16422" - style="font-weight:bold;-inkscape-font-specification:Verdana Bold">!</tspan></text> - <use - x="0" - y="0" - xlink:href="#text247" - id="use251" - transform="translate(22.268317,0)" - width="250" - height="200" /> - <path - sodipodi:type="star" - style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#1a1a1a;stroke-width:0.80864763;stroke-miterlimit:4;stroke-dasharray:none" - id="path252" - sodipodi:sides="3" - sodipodi:cx="195.63554" - sodipodi:cy="63.26548" - sodipodi:r1="7.7793064" - sodipodi:r2="15.558613" - sodipodi:arg1="2.1025204" - sodipodi:arg2="3.1497179" - inkscape:flatsided="true" - inkscape:rounded="0.2" - inkscape:randomized="0" - d="m 191.69128,69.97073 c -2.32277,-1.366333 -2.23518,-12.1453 0.10948,-13.473709 2.34466,-1.328408 11.63573,4.136926 11.61383,6.831668 -0.0219,2.694741 -9.40054,8.008375 -11.72331,6.642041 z" - transform="matrix(1.043244,0,0,0.93815683,-5.0151639,863.01152)" - inkscape:transform-center-x="-4.0006141" - inkscape:transform-center-y="-0.059313251" /> - <path - inkscape:transform-center-y="0.059308319" - inkscape:transform-center-x="4.0006111" - transform="matrix(-1.043244,0,0,-0.93815683,425.4058,981.67309)" - d="m 191.69128,69.97073 c -2.32277,-1.366333 -2.23518,-12.1453 0.10948,-13.473709 2.34466,-1.328408 11.63573,4.136926 11.61383,6.831668 -0.0219,2.694741 -9.40054,8.008375 -11.72331,6.642041 z" - inkscape:randomized="0" - inkscape:rounded="0.2" - inkscape:flatsided="true" - sodipodi:arg2="3.1497179" - sodipodi:arg1="2.1025204" - sodipodi:r2="15.558613" - sodipodi:r1="7.7793064" - sodipodi:cy="63.26548" - sodipodi:cx="195.63554" - sodipodi:sides="3" - id="path254" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#e6e6e6;stroke-width:0.80864763;stroke-miterlimit:4;stroke-dasharray:none" - sodipodi:type="star" /> - <g - id="g1070" - transform="matrix(1.1035285,0,0,1.1035285,-14.308807,-95.610044)"> - <path - sodipodi:nodetypes="cscsc" - inkscape:connector-curvature="0" - id="path262" - d="m 148.82687,49.85498 c 0,0 -3.94234,5.723921 -8.80546,5.723921 -4.86313,0 -8.80547,-5.723921 -8.80547,-5.723921 0,0 3.94234,-5.72392 8.80547,-5.72392 4.86312,0 8.80546,5.72392 8.80546,5.72392 z" - style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#1a1a1a;stroke-width:0.94912058;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - transform="matrix(0.79496097,0,0,0.9062729,26.90439,859.01012)" /> - <path - transform="matrix(0.89659499,0,0,0.89659499,12.90165,857.69139)" - d="m 144.56282,51.877872 c 0,2.665109 -2.1605,4.825606 -4.82561,4.825606 -2.66511,0 -4.8256,-2.160497 -4.8256,-4.825606 0,-2.665108 2.16049,-4.825605 4.8256,-4.825605 2.66511,0 4.82561,2.160497 4.82561,4.825605 z" - sodipodi:ry="4.8256054" - sodipodi:rx="4.8256054" - sodipodi:cy="51.877872" - sodipodi:cx="139.73721" - id="path1033" - style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#1a1a1a;stroke-width:0.86699998;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path1035" - sodipodi:cx="139.73721" - sodipodi:cy="51.877872" - sodipodi:rx="4.8256054" - sodipodi:ry="4.8256054" - d="m 144.56282,51.877872 c 0,2.665109 -2.1605,4.825606 -4.82561,4.825606 -2.66511,0 -4.8256,-2.160497 -4.8256,-4.825606 0,-2.665108 2.16049,-4.825605 4.8256,-4.825605 2.66511,0 4.82561,2.160497 4.82561,4.825605 z" - transform="matrix(0.37382862,0,0,0.37382862,85.950326,884.7403)" /> - </g> - <path - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" - d="m 51.71875,158.125 0,7.65625 10.1875,0 0,-7.65625 z" - style="fill:none" - transform="translate(1,852.36218)" - id="path293" /> - <path - id="path278" - transform="translate(1,852.36218)" - style="fill:#e6e6e6" - d="m 51.71875,158.125 0,7.65625 10.1875,0 0,-7.65625 z m 0.53125,0.625 9.03125,0 -0.03125,6.4375 -9,0 z m 0.71875,0.65625 0,5.03125 4.4375,0 -0.0625,-5.03125 z m 0.59375,0.625 3.25,0 0,2.5625 -0.8125,0 0,-1.9375 -1.727964,0 0,1.9375 -0.709536,0 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccccccccccccccccc" /> - <path - id="path4660" - transform="translate(-5,858.36218)" - style="fill:#1a1a1a;fill-opacity:1" - d="m 51.71875,158.125 0,7.65625 10.1875,0 0,-7.65625 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - sodipodi:nodetypes="cccccccccccccccccccccccc" - inkscape:connector-curvature="0" - d="m 51.71875,158.125 0,7.65625 10.1875,0 0,-7.65625 z m 0.53125,0.625 9.03125,0 -0.03125,6.4375 -9,0 z m 0.71875,0.65625 0,5.03125 4.4375,0 -0.0625,-5.03125 z m 0.59375,0.625 3.25,0 0,2.5625 -0.8125,0 0,-1.9375 -1.727964,0 0,1.9375 -0.709536,0 z" - style="fill:#e6e6e6" - transform="translate(-5,858.36218)" - id="path4662" /> - <path - id="path333" - transform="translate(23,852.36218)" - style="fill:none" - d="m 51.71875,158.125 0,7.65625 10.1875,0 0,-7.65625 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - sodipodi:nodetypes="cccccccccccccccccccccccc" - inkscape:connector-curvature="0" - d="m 51.71875,158.125 0,7.65625 10.1875,0 0,-7.65625 z m 0.53125,0.625 9.03125,0 -0.03125,6.4375 -9,0 z m 0.71875,0.65625 0,5.03125 4.4375,0 -0.0625,-5.03125 z m 0.59375,0.625 3.25,0 0,2.5625 -0.8125,0 0,-1.9375 -1.727964,0 0,1.9375 -0.709536,0 z" - style="fill:#e6e6e6" - transform="translate(23,852.36218)" - id="path335" /> - <path - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" - d="m 51.71875,158.125 0,7.65625 10.1875,0 0,-7.65625 z" - style="fill:#333333" - transform="translate(17,858.36218)" - id="path3865" /> - <path - id="path3867" - transform="translate(17,858.36218)" - style="fill:#e6e6e6" - d="m 51.71875,158.125 0,7.65625 10.1875,0 0,-7.65625 z m 0.53125,0.625 9.03125,0 -0.03125,6.4375 -9,0 z m 0.71875,0.65625 0,5.03125 4.4375,0 -0.0625,-5.03125 z m 0.59375,0.625 3.25,0 0,2.5625 -0.8125,0 0,-1.9375 -1.727964,0 0,1.9375 -0.709536,0 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccccccccccccccccc" /> - <path - sodipodi:type="arc" - style="fill:#e6e6e6;fill-opacity:1;stroke:none" - id="path274" - sodipodi:cx="559.67499" - sodipodi:cy="21.754047" - sodipodi:rx="0.88388348" - sodipodi:ry="0.88388348" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - transform="matrix(1.2829201,1.9081591,-1.9081591,1.2829201,-621.38007,-53.76762)" /> - <path - transform="matrix(0.96219008,1.4311194,-1.4311194,0.96219008,-446.0191,223.61485)" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - sodipodi:ry="0.88388348" - sodipodi:rx="0.88388348" - sodipodi:cy="21.754047" - sodipodi:cx="559.67499" - id="path276" - style="fill:#e6e6e6;fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:#e6e6e6;fill-opacity:1;stroke:none" - id="path279" - sodipodi:cx="559.67499" - sodipodi:cy="21.754047" - sodipodi:rx="0.88388348" - sodipodi:ry="0.88388348" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - transform="matrix(1.0080086,1.4992679,-1.4992679,1.0080086,-475.75938,173.44683)" /> - <path - style="fill:none;stroke:#e6e6e6;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 563.21055,31.653543 4.41942,-6.187185 -7.6014,-6.187184" - id="path281" - inkscape:connector-curvature="0" - transform="matrix(0.45818575,0.68148541,-0.68148541,0.45818575,-187.51596,643.71067)" /> - <path - transform="matrix(1.0996458,1.635565,-1.635565,1.0996458,-531.09792,102.68758)" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - sodipodi:ry="0.88388348" - sodipodi:rx="0.88388348" - sodipodi:cy="21.754047" - sodipodi:cx="559.67499" - id="path283" - style="fill:#e6e6e6;fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - style="fill:none;stroke:#e6e6e6;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 567.45319,25.466358 7.6014,-4.065864" - id="path285" - inkscape:connector-curvature="0" - transform="matrix(0.45818575,0.68148541,-0.68148541,0.45818575,-187.51596,643.71067)" /> - <g - transform="translate(-32.726207,8)" - id="use301"> - <path - sodipodi:type="arc" - style="fill:#e6e6e6;fill-opacity:1;stroke:none" - id="path3845" - sodipodi:cx="559.67499" - sodipodi:cy="21.754047" - sodipodi:rx="0.88388348" - sodipodi:ry="0.88388348" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - transform="matrix(1.2829201,1.9081591,-1.9081591,1.2829201,-566.65386,-61.76762)" /> - <path - transform="matrix(0.96219008,1.4311194,-1.4311194,0.96219008,-391.29289,215.61485)" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - sodipodi:ry="0.88388348" - sodipodi:rx="0.88388348" - sodipodi:cy="21.754047" - sodipodi:cx="559.67499" - id="path3847" - style="fill:#e6e6e6;fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:#e6e6e6;fill-opacity:1;stroke:none" - id="path3849" - sodipodi:cx="559.67499" - sodipodi:cy="21.754047" - sodipodi:rx="0.88388348" - sodipodi:ry="0.88388348" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - transform="matrix(1.0080086,1.4992679,-1.4992679,1.0080086,-421.03317,165.44683)" /> - <path - style="fill:none;stroke:#e6e6e6;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 563.21055,31.653543 4.41942,-6.187185 -7.6014,-6.187184" - id="path3851" - inkscape:connector-curvature="0" - transform="matrix(0.45818575,0.68148541,-0.68148541,0.45818575,-132.78975,635.71067)" /> - <path - transform="matrix(1.0996458,1.635565,-1.635565,1.0996458,-476.37171,94.687576)" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - sodipodi:ry="0.88388348" - sodipodi:rx="0.88388348" - sodipodi:cy="21.754047" - sodipodi:cx="559.67499" - id="path3853" - style="fill:#e6e6e6;fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - style="fill:none;stroke:#e6e6e6;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 567.45319,25.466358 7.6014,-4.065864" - id="path3855" - inkscape:connector-curvature="0" - transform="matrix(0.45818575,0.68148541,-0.68148541,0.45818575,-132.78975,635.71067)" /> - </g> - <g - id="g4823"> - <path - style="fill:#e6e6e6" - d="m 12,16 -12.00914477,0 0,-13.6988082 2.83893857,-2.12898488 11.8211932,0 0,14.04031008 z" - id="path4821" - inkscape:connector-curvature="0" - transform="translate(232.52235,913.88168)" - sodipodi:nodetypes="ccccccc" /> - <path - sodipodi:nodetypes="cccccccccccccszscc" - transform="translate(232.52235,913.88168)" - inkscape:connector-curvature="0" - id="path4819" - d="m -0.00914477,2.3011918 2.83893857,-2.12898488 11.8211932,0 0,14.04031008 L 13.73679,14.984131 13.640962,1.0093271 3.4856425,0.91349949 1.1272469,2.7572384 12,2.7572384 12,16 -0.00914477,16 z M 8.2958276,12.045759 c -1.8631354,-1.086398 0.045759,-2.6807932 0.045759,-3.6707932 0,-0.99 -0.6423808,-2.2112618 -2.2457592,-2.1833105 C 4.4924492,6.2196066 3.8500685,7.0875 3.8500685,8.4166667 c 0,1.3291666 2.1768916,1.6857063 -0.1958961,3.6876733 z" - style="fill:#1a1a1a" /> - </g> - <g - id="g4021"> - <rect - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect196-0" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064-7)" - transform="matrix(0.43114968,0,0,0.43114968,-113.62924,933.71148)" /> - <path - transform="matrix(0.26322611,0,0,0.26322611,-27.639493,937.40175)" - inkscape:original-d="M 484.55417,49.762303 492.5,40.933609 504.27158,48.879434" - inkscape:path-effect="#path-effect4050-9" - inkscape:connector-curvature="0" - id="path4072-5" - d="m 484.90604,52.679071 c 0,0 -0.72327,1.028211 -2.88202,1.697409 -0.63474,-0.494653 -1.23439,-1.034334 -1.79294,-1.613646 0.43889,-2.217071 1.3855,-3.044283 1.3855,-3.044283 l 2.04237,-1.648571 c -0.73879,-0.915258 -1.3342,-1.946011 -1.75793,-3.043257 l -2.44847,0.945549 c 0,0 -1.18951,0.40671 -3.32932,-0.320779 -0.22277,-0.773276 -0.39067,-1.56235 -0.50204,-2.359331 1.65823,-1.535673 2.91028,-1.648499 2.91028,-1.648499 l 2.62132,-0.133248 c -0.0597,-1.174706 0.0645,-2.358577 0.36658,-3.495332 l -2.53663,-0.674208 c 0,0 -1.20139,-0.37014 -2.50493,-2.216441 0.2743,-0.756533 0.60227,-1.4936 0.98062,-2.20383 2.24419,-0.267701 3.32343,0.376954 3.32343,0.376954 l 2.19901,1.432971 c 0.64217,-0.985455 1.43848,-1.870246 2.35108,-2.612309 l -1.65589,-2.03644 c 0,0 -0.75438,-1.005609 -0.72373,-3.265497 0.66659,-0.45082 1.36515,-0.854347 2.08871,-1.206542 1.97294,1.102524 2.46715,2.258424 2.46715,2.258424 l 0.93675,2.451844 c 1.09876,-0.419794 2.26306,-0.667544 3.43754,-0.731472 l -0.14265,-2.620822 c 0,0 -0.0192,-1.25697 1.3339,-3.067245 0.80426,0.02709 1.6066,0.111239 2.39899,0.251604 0.94809,2.051624 0.66849,3.277254 0.66849,3.277254 l -0.6833,2.534196 c 1.13566,0.306213 2.22322,0.790136 3.21097,1.428761 l 1.42508,-2.204138 c 0,0 0.72327,-1.028211 2.88202,-1.697409 0.63474,0.494653 1.23439,1.034334 1.79294,1.613646 -0.43889,2.217071 -1.3855,3.044283 -1.3855,3.044283 l -2.04237,1.648571 c 0.73879,0.915258 1.3342,1.946011 1.75793,3.043257 l 2.44847,-0.945549 c 0,0 1.18951,-0.40671 3.32932,0.320779 0.22277,0.773276 0.39067,1.56235 0.50204,2.359331 -1.65823,1.535673 -2.91028,1.648499 -2.91028,1.648499 l -2.62132,0.133248 c 0.0597,1.174706 -0.0645,2.358577 -0.36658,3.495332 l 2.53663,0.674208 c 0,0 1.20139,0.37014 2.50493,2.216441 -0.2743,0.756533 -0.60227,1.4936 -0.98062,2.20383 -2.24419,0.267701 -3.32343,-0.376954 -3.32343,-0.376954 l -2.19901,-1.432971 c -0.64217,0.985455 -1.43848,1.870246 -2.35108,2.612309 l 1.65589,2.03644 c 0,0 0.75438,1.005609 0.72373,3.265497 -0.66659,0.45082 -1.36515,0.854347 -2.08871,1.206542 -1.97294,-1.102524 -2.46715,-2.258424 -2.46715,-2.258424 l -0.93675,-2.451844 c -1.09876,0.419794 -2.26306,0.667544 -3.43754,0.731472 l 0.14265,2.620822 c 0,0 0.0192,1.25697 -1.3339,3.067245 -0.80426,-0.02709 -1.6066,-0.111239 -2.39899,-0.251604 -0.94809,-2.051624 -0.66849,-3.277254 -0.66849,-3.277254 l 0.6833,-2.534196 c -1.13566,-0.306213 -2.22322,-0.790136 -3.21097,-1.428761 l -1.42508,2.204138" - style="fill:none;stroke:#d3d7cf;stroke-width:1.66475451;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter4064-8)" /> - <path - style="fill:none;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 4.1190936,170.87651 1.316683,1.26576 1.7540206,0.003 5.5819788,-5.57043 3.523532,0.006 2.853557,-2.81689 0.0014,-1.68321 -1.169094,-1.16909 -2.365502,2.3822 -2.63185,-0.005 0.09078,-2.55314 2.365531,-2.36552 -1.277858,-1.27786 -1.648714,0.0359 -2.8505569,2.8535 0.00598,3.45613 -5.5530909,5.58201 z" - id="path4208-6" - inkscape:connector-curvature="0" - transform="matrix(0.55525134,-9.5997878e-4,-9.5997878e-4,0.55525134,88.473928,863.40819)" - sodipodi:nodetypes="cccccccccccccccccc" /> - </g> - <g - id="g4016"> - <rect - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect196-0-0" - style="fill:#2e2f2e;stroke:#d3d7cf;stroke-width:2.05356860000000019;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064-7-3);fill-opacity:1" - transform="matrix(0.43114968,0,0,0.43114968,-91.3641,933.9484)" /> - <path - transform="matrix(0.26322611,0,0,0.26322611,-5.37436,937.63865)" - inkscape:original-d="M 484.55417,49.762303 492.5,40.933609 504.27158,48.879434" - inkscape:path-effect="#path-effect4050-9-1" - inkscape:connector-curvature="0" - id="path4072-5-1" - d="m 484.90604,52.679071 c 0,0 -0.72327,1.028211 -2.88202,1.697409 -0.63474,-0.494653 -1.23439,-1.034334 -1.79294,-1.613646 0.43889,-2.217071 1.3855,-3.044283 1.3855,-3.044283 l 2.04237,-1.648571 c -0.73879,-0.915258 -1.3342,-1.946011 -1.75793,-3.043257 l -2.44847,0.945549 c 0,0 -1.18951,0.40671 -3.32932,-0.320779 -0.22277,-0.773276 -0.39067,-1.56235 -0.50204,-2.359331 1.65823,-1.535673 2.91028,-1.648499 2.91028,-1.648499 l 2.62132,-0.133248 c -0.0597,-1.174706 0.0645,-2.358577 0.36658,-3.495332 l -2.53663,-0.674208 c 0,0 -1.20139,-0.37014 -2.50493,-2.216441 0.2743,-0.756533 0.60227,-1.4936 0.98062,-2.20383 2.24419,-0.267701 3.32343,0.376954 3.32343,0.376954 l 2.19901,1.432971 c 0.64217,-0.985455 1.43848,-1.870246 2.35108,-2.612309 l -1.65589,-2.03644 c 0,0 -0.75438,-1.005609 -0.72373,-3.265497 0.66659,-0.45082 1.36515,-0.854347 2.08871,-1.206542 1.97294,1.102524 2.46715,2.258424 2.46715,2.258424 l 0.93675,2.451844 c 1.09876,-0.419794 2.26306,-0.667544 3.43754,-0.731472 l -0.14265,-2.620822 c 0,0 -0.0192,-1.25697 1.3339,-3.067245 0.80426,0.02709 1.6066,0.111239 2.39899,0.251604 0.94809,2.051624 0.66849,3.277254 0.66849,3.277254 l -0.6833,2.534196 c 1.13566,0.306213 2.22322,0.790136 3.21097,1.428761 l 1.42508,-2.204138 c 0,0 0.72327,-1.028211 2.88202,-1.697409 0.63474,0.494653 1.23439,1.034334 1.79294,1.613646 -0.43889,2.217071 -1.3855,3.044283 -1.3855,3.044283 l -2.04237,1.648571 c 0.73879,0.915258 1.3342,1.946011 1.75793,3.043257 l 2.44847,-0.945549 c 0,0 1.18951,-0.40671 3.32932,0.320779 0.22277,0.773276 0.39067,1.56235 0.50204,2.359331 -1.65823,1.535673 -2.91028,1.648499 -2.91028,1.648499 l -2.62132,0.133248 c 0.0597,1.174706 -0.0645,2.358577 -0.36658,3.495332 l 2.53663,0.674208 c 0,0 1.20139,0.37014 2.50493,2.216441 -0.2743,0.756533 -0.60227,1.4936 -0.98062,2.20383 -2.24419,0.267701 -3.32343,-0.376954 -3.32343,-0.376954 l -2.19901,-1.432971 c -0.64217,0.985455 -1.43848,1.870246 -2.35108,2.612309 l 1.65589,2.03644 c 0,0 0.75438,1.005609 0.72373,3.265497 -0.66659,0.45082 -1.36515,0.854347 -2.08871,1.206542 -1.97294,-1.102524 -2.46715,-2.258424 -2.46715,-2.258424 l -0.93675,-2.451844 c -1.09876,0.419794 -2.26306,0.667544 -3.43754,0.731472 l 0.14265,2.620822 c 0,0 0.0192,1.25697 -1.3339,3.067245 -0.80426,-0.02709 -1.6066,-0.111239 -2.39899,-0.251604 -0.94809,-2.051624 -0.66849,-3.277254 -0.66849,-3.277254 l 0.6833,-2.534196 c -1.13566,-0.306213 -2.22322,-0.790136 -3.21097,-1.428761 l -1.42508,2.204138" - style="fill:none;stroke:#d3d7cf;stroke-width:1.66475451;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter4064-8-9)" /> - <path - style="fill:none;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 4.1190936,170.87651 1.316683,1.26576 1.7540206,0.003 5.5819788,-5.57043 3.523532,0.006 2.853557,-2.81689 0.0014,-1.68321 -1.169094,-1.16909 -2.365502,2.3822 -2.63185,-0.005 0.09078,-2.55314 2.365531,-2.36552 -1.277858,-1.27786 -1.648714,0.0359 -2.8505569,2.8535 0.00598,3.45613 -5.5530909,5.58201 z" - id="path4208-6-0" - inkscape:connector-curvature="0" - transform="matrix(0.55525134,-9.5997878e-4,-9.5997878e-4,0.55525134,110.73906,863.64511)" - sodipodi:nodetypes="cccccccccccccccccc" /> - </g> - </g> -</svg> diff --git a/view/theme/dispy/dark/login-bg.gif b/view/theme/dispy/dark/login-bg.gif Binary files differdeleted file mode 100644 index cde836c89..000000000 --- a/view/theme/dispy/dark/login-bg.gif +++ /dev/null diff --git a/view/theme/dispy/dark/menu-user-pin.jpg b/view/theme/dispy/dark/menu-user-pin.jpg Binary files differdeleted file mode 100644 index 26449569f..000000000 --- a/view/theme/dispy/dark/menu-user-pin.jpg +++ /dev/null diff --git a/view/theme/dispy/dark/next.png b/view/theme/dispy/dark/next.png Binary files differdeleted file mode 100644 index 5e0067c4b..000000000 --- a/view/theme/dispy/dark/next.png +++ /dev/null diff --git a/view/theme/dispy/dark/notifications.png b/view/theme/dispy/dark/notifications.png Binary files differdeleted file mode 100644 index 66c432eac..000000000 --- a/view/theme/dispy/dark/notifications.png +++ /dev/null diff --git a/view/theme/dispy/dark/notifications.svg b/view/theme/dispy/dark/notifications.svg deleted file mode 100644 index 0ec2c0569..000000000 --- a/view/theme/dispy/dark/notifications.svg +++ /dev/null @@ -1,273 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - id="svg3486" - version="1.1" - inkscape:version="0.48+devel r" - width="148" - height="19" - sodipodi:docname="notifications.svg" - inkscape:export-filename="/var/www3/kisikew.org/portal/pub/fd/view/theme/dispy-dark/notifications.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <metadata - id="metadata3492"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs3490" /> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1041" - inkscape:window-height="643" - id="namedview3488" - showgrid="false" - inkscape:zoom="4.2687885" - inkscape:cx="64.235788" - inkscape:cy="18.27268" - inkscape:window-x="0" - inkscape:window-y="48" - inkscape:window-maximized="0" - inkscape:current-layer="svg3486" - width="0px" - height="0px" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <g - id="g4437" - transform="translate(0,-44)"> - <path - sodipodi:nodetypes="ccccc" - transform="translate(0,44)" - style="fill:#6c99c9" - d="M 34.398531,19 30.225818,10.411298 47.864407,1.3368391 57.625819,19.010154 z" - id="path3506" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccccccccccccccc" - transform="translate(0,44)" - style="fill:#4e7db5" - d="m 45.148088,5.1797115 -9.353484,4.7866764 6.895762,1.5144501 z m -2.0018,7.2466465 -8.105899,-1.97793 3.232895,6.44678 11.074578,-5.648894 -3.366977,-6.4432724 z M 46.4192,3.6690997 50.56253,11.552848 38.044003,18.006578 33.98857,10.057271 z" - id="path3502" - inkscape:connector-curvature="0" /> - </g> - <g - id="g4441" - transform="translate(0,-44)"> - <path - sodipodi:nodetypes="ccccc" - transform="translate(0,44)" - style="fill:#aa7ca5" - d="M 64.398531,19 60.225818,10.411298 77.725,2.013353 87.084493,18.988196 z" - id="path3504" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="sssssccccc" - transform="translate(-0.88048036,44.641441)" - style="fill:#75507b" - d="m 75,16 c -0.55,0 -1,-0.45 -1,-1 0,-0.55 0.45,-1 1,-1 0.55,0 1,0.45 1,1 0,0.55 -0.45,1 -1,1 z m -1.441718,-2.172038 c 0,0 -2.448135,-3.9460956 -3.558282,-6.0504682 0,-0.4276216 1.043961,-0.9072067 1.57461,-0.9072067 1.48457,2.2735627 3.276272,6.3043659 3.276272,6.3043659 -0.823179,-0.104873 -0.90154,-0.01483 -1.2926,0.653309 z" - id="path3498" - inkscape:connector-curvature="0" /> - </g> - <g - id="g4453" - transform="translate(0,-24)"> - <path - sodipodi:nodetypes="ccccc" - transform="translate(0,24)" - style="fill:#f4ac42;fill-opacity:1" - d="M 4.3985314,19 0.19544564,10.348783 18,1.8695178 27,19 z" - id="path3508" - inkscape:connector-curvature="0" /> - <g - transform="translate(0,-20)" - id="g4361"> - <path - sodipodi:type="arc" - style="fill:#e98007;fill-opacity:1;stroke:none" - id="path274" - sodipodi:cx="559.67499" - sodipodi:cy="21.754047" - sodipodi:rx="0.88388348" - sodipodi:ry="0.88388348" - d="m 560.55887,21.754047 a 0.88388348,0.88388348 0 1 1 -1.76777,0 0.88388348,0.88388348 0 1 1 1.76777,0 z" - transform="matrix(1.0481621,1.5589904,-1.5589904,1.0481621,-539.42292,-838.01094)" /> - <path - transform="matrix(0.78612158,1.1692428,-1.1692428,0.78612158,-396.15077,-611.38593)" - d="m 560.55887,21.754047 a 0.88388348,0.88388348 0 1 1 -1.76777,0 0.88388348,0.88388348 0 1 1 1.76777,0 z" - sodipodi:ry="0.88388348" - sodipodi:rx="0.88388348" - sodipodi:cy="21.754047" - sodipodi:cx="559.67499" - id="path276" - style="fill:#e98007;fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:#e98007;fill-opacity:1;stroke:none" - id="path279" - sodipodi:cx="559.67499" - sodipodi:cy="21.754047" - sodipodi:rx="0.88388348" - sodipodi:ry="0.88388348" - d="m 560.55887,21.754047 a 0.88388348,0.88388348 0 1 1 -1.76777,0 0.88388348,0.88388348 0 1 1 1.76777,0 z" - transform="matrix(0.8235559,1.224921,-1.224921,0.8235559,-420.44896,-652.37384)" /> - <path - style="fill:none;stroke:#e98007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 563.21055,31.653543 4.41942,-6.187185 -7.6014,-6.187184" - id="path281" - inkscape:connector-curvature="0" - transform="matrix(0.37434361,0.55678228,-0.55678228,0.37434361,-184.9504,-268.16228)" /> - <path - transform="matrix(0.89842466,1.3362775,-1.3362775,0.89842466,-465.66125,-710.18506)" - d="m 560.55887,21.754047 a 0.88388348,0.88388348 0 1 1 -1.76777,0 0.88388348,0.88388348 0 1 1 1.76777,0 z" - sodipodi:ry="0.88388348" - sodipodi:rx="0.88388348" - sodipodi:cy="21.754047" - sodipodi:cx="559.67499" - id="path283" - style="fill:#e98007;fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - style="fill:none;stroke:#e98007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 567.45319,25.466358 7.6014,-4.065864" - id="path285" - inkscape:connector-curvature="0" - transform="matrix(0.37434361,0.55678228,-0.55678228,0.37434361,-184.9504,-268.16228)" /> - </g> - </g> - <g - id="g4566" - transform="translate(0,-24)"> - <path - sodipodi:nodetypes="ccccc" - transform="translate(0,24)" - style="fill:#6fcb15" - d="M 94.398531,19 90.225818,10.411298 108.5,1.9724323 117,19 z" - id="path3500" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccc" - inkscape:connector-curvature="0" - d="m 14.756588,131.15925 0,9.60545 -11.6032194,-0.0118 0,-9.58225 m -0.039261,-0.0651 5.8825232,-3.13423 5.9219702,3.25106 z" - style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:none;stroke:#428107;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;font-family:Verdana;-inkscape-font-specification:Verdana" - transform="matrix(0.55727141,-0.25996788,0.2876144,0.61653494,59.024831,-44.715085)" - id="path1037" /> - </g> - <g - id="g4553" - transform="translate(0,-24)"> - <path - inkscape:connector-curvature="0" - id="path4471" - d="M 94.398531,19 90.225818,10.411298 108.5,1.9724323 117,19 z" - style="fill:#fb7b62;fill-opacity:1" - transform="translate(31,24)" - sodipodi:nodetypes="ccccc" /> - <path - transform="matrix(0.59287153,-0.28418321,0.25089012,0.52341448,79.780054,-59.357394)" - d="m 7.3250635,194.45924 a 2.0660436,1.5964882 0 1 1 -4.1320873,0 2.0660436,1.5964882 0 1 1 4.1320873,0 z" - sodipodi:ry="1.5964882" - sodipodi:rx="2.0660436" - sodipodi:cy="194.45924" - sodipodi:cx="5.2590199" - id="path4218" - style="fill:#c32405;fill-opacity:1;fill-rule:nonzero;stroke:#c32405;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - sodipodi:type="arc" /> - <use - height="200" - width="250" - transform="translate(0.11687856,-8.4237924)" - id="use4224" - xlink:href="#path4218" - y="0" - x="0" - style="fill:#999999;stroke:#666666" /> - <use - height="200" - width="250" - transform="translate(6.5982765,5.2049933)" - id="use4226" - xlink:href="#use4224" - y="0" - x="0" - style="fill:#999999;stroke:#c32405;stroke-opacity:1" /> - <path - sodipodi:type="arc" - style="fill:#c32405;fill-opacity:1;fill-rule:nonzero;stroke:#c32405;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - id="path4228" - sodipodi:cx="5.2590199" - sodipodi:cy="194.45924" - sodipodi:rx="2.0660436" - sodipodi:ry="1.5964882" - d="m 7.3250635,194.45924 a 2.0660436,1.5964882 0 1 1 -4.1320873,0 2.0660436,1.5964882 0 1 1 4.1320873,0 z" - transform="matrix(0.59287153,-0.28418321,0.25089012,0.52341448,81.644877,-64.113316)" /> - <path - transform="matrix(0.59287153,-0.28418321,0.25089012,0.52341448,79.780054,-59.357394)" - inkscape:connector-curvature="0" - id="path4230" - d="m 10.902837,183.0346 0,3.66687" - style="fill:none;stroke:#c32405;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - sodipodi:nodetypes="cc" /> - <path - sodipodi:nodetypes="cc" - transform="matrix(0.59287153,-0.28418321,0.25089012,0.52341448,79.780054,-59.357394)" - inkscape:connector-curvature="0" - id="path4232" - d="m 9.2894123,189.68386 -2.3956906,3.56909" - style="fill:none;stroke:#c32405;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - sodipodi:nodetypes="cc" - transform="matrix(0.59287153,-0.28418321,0.25089012,0.52341448,79.780054,-59.357394)" - inkscape:connector-curvature="0" - id="path4234" - d="m 12.46737,189.68386 2.493472,3.5202" - style="fill:none;stroke:#c32405;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - sodipodi:nodetypes="cc" - transform="matrix(0.59287153,-0.28418321,0.25089012,0.52341448,79.780054,-59.357394)" - inkscape:connector-curvature="0" - id="path4236" - d="m 12.467368,182.74125 4.009116,9.925" - style="fill:none;stroke:#c32405;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - sodipodi:nodetypes="cc" - transform="matrix(0.59287153,-0.28418321,0.25089012,0.52341448,79.780054,-59.357394)" - inkscape:connector-curvature="0" - id="path4238" - d="m 9.4849789,182.83904 -4.2046813,9.87611" - style="fill:none;stroke:#c32405;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - sodipodi:nodetypes="cc" - transform="matrix(0.59287153,-0.28418321,0.25089012,0.52341448,79.780054,-59.357394)" - inkscape:connector-curvature="0" - id="path4240" - d="m 7.4315299,194.71969 7.0403961,0" - style="fill:none;stroke:#c32405;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - </g> -</svg> diff --git a/view/theme/dispy/dark/photo-menu.jpg b/view/theme/dispy/dark/photo-menu.jpg Binary files differdeleted file mode 100644 index fde5eb535..000000000 --- a/view/theme/dispy/dark/photo-menu.jpg +++ /dev/null diff --git a/view/theme/dispy/dark/premium.png b/view/theme/dispy/dark/premium.png Binary files differdeleted file mode 100644 index d2855a4f5..000000000 --- a/view/theme/dispy/dark/premium.png +++ /dev/null diff --git a/view/theme/dispy/dark/prev.png b/view/theme/dispy/dark/prev.png Binary files differdeleted file mode 100644 index 10b10d74f..000000000 --- a/view/theme/dispy/dark/prev.png +++ /dev/null diff --git a/view/theme/dispy/dark/screenshot.jpg b/view/theme/dispy/dark/screenshot.jpg Binary files differdeleted file mode 100644 index f54873e8e..000000000 --- a/view/theme/dispy/dark/screenshot.jpg +++ /dev/null diff --git a/view/theme/dispy/dark/screenshot_small.jpg b/view/theme/dispy/dark/screenshot_small.jpg Binary files differdeleted file mode 100644 index 32d869331..000000000 --- a/view/theme/dispy/dark/screenshot_small.jpg +++ /dev/null diff --git a/view/theme/dispy/dark/star.png b/view/theme/dispy/dark/star.png Binary files differdeleted file mode 100644 index a327ba14e..000000000 --- a/view/theme/dispy/dark/star.png +++ /dev/null diff --git a/view/theme/dispy/dark/style.css b/view/theme/dispy/dark/style.css deleted file mode 100644 index 75aaa456b..000000000 --- a/view/theme/dispy/dark/style.css +++ /dev/null @@ -1,551 +0,0 @@ -html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;} -article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;} -body{line-height:1;} -ul,ol{margin:0px;padding:0px;list-style:none;list-style-position:inside;} -blockquote,q{quotes:none;} -blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;} -table{border-collapse:collapse;border-spacing:0;} -address{font-style:normal;} -a img,:link img,:visited img{border:none;} -q{quotes:"" "";} -article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} -audio,canvas,video,time{display:inline-block;*display:inline;*zoom:1;} -audio:not([controls]),[hidden]{display:none;} -html{font-size:100%;overflow-y:scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-o-text-size-adjust:100%;font-size-adjust:100%;} -body{margin:0;padding:0;font-size:14pt;line-height:1.1em;font-family:sans-serif;color:#eeeecc;background-color:#2e2f2e;} -button,input,select,textarea{color:#eeeecc;background-color:#2e2f2e;} -select{border:1px dotted #555555;padding:1px;margin:3px;color:#eeeecc;background:#2e2f2e;max-width:85%;min-width:85px;} -option{padding:1px;color:#eeeecc;background:#2e2f2e;}option[selected="selected"]{color:#2e2f2e;background:#eeeecc;} -tr:nth-child(even){background-color:#474947;} -:focus{outline:none;} -a:focus{outline:invert, dashed, thin;} -[disabled="disabled"]{background:#4e4f4e;color:#ddddbb;} -ins,mark{background-color:#2e302e;color:#fbfbf2;} -ins{text-decoration:none;} -mark{font-style:italic;font-weight:bold;} -pre,code,kbd,samp,.wall-item-body code{font-family:monospace, monospace;_font-family:monospace;font-size:1em;} -pre,.wall-item-body code{white-space:pre-wrap;white-space:pre;word-wrap:none;} -q{quotes:none;}q:before,q:after{content:"";content:none;} -em{font-style:italic;} -strong{font-weight:bold;} -strike{text-decoration:line-through;} -small{font-size:85%;} -sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;} -sub{bottom:-0.25em;} -sup{top:-0.5em;} -img{border:0 none;} -a{color:#88a9d2;text-decoration:none;margin-bottom:1px;}a:hover{color:#638ec4;border-bottom:1px dotted #638ec4;} -a:hover img{text-decoration:none;} -blockquote{background:#444444;color:#eeeecc;text-indent:5px;padding:5px;border:1px solid #9a9a9a;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;} -label{width:38%;display:inline-block;font-size:small;margin:0 10px 1em 0;border:1px solid #2e2f2e;padding:3px 5px;background:#eeeecc;color:#111111;-moz-box-shadow:3px 3px 5px 0px #111111;-o-box-shadow:3px 3px 5px 0px #111111;-webkit-box-shadow:3px 3px 5px 0px #111111;-ms-box-shadow:3px 3px 5px 0px #111111;box-shadow:3px 3px 5px 0px #111111;} -input{width:250px;height:25px;border:1px solid #999999;width:17em;}input[type="checkbox"],input[type="radio"]{width:15px;height:15px;margin:0;} -input[type="radio"]{margin:5px 0;} -input[type="submit"],input[type="button"]{background-color:#eeeeee;border:2px outset #b1b1b1;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;-moz-box-shadow:1px 3px 4px 0 #111111;-o-box-shadow:1px 3px 4px 0 #111111;-webkit-box-shadow:1px 3px 4px 0 #111111;-ms-box-shadow:1px 3px 4px 0 #111111;box-shadow:1px 3px 4px 0 #111111;color:#2e302e;cursor:pointer;font-weight:bold;width:auto;-moz-text-shadow:1px 1px #111111;-o-text-shadow:1px 1px #111111;-webkit-text-shadow:1px 1px #111111;-ms-text-shadow:1px 1px #111111;text-shadow:1px 1px #111111;} -input[type="submit"]:active,input[type="button"]:active{-moz-box-shadow:0 0 0 0 #111111;-o-box-shadow:0 0 0 0 #111111;-webkit-box-shadow:0 0 0 0 #111111;-ms-box-shadow:0 0 0 0 #111111;box-shadow:0 0 0 0 #111111;} -h1,h2,h3,h4,h5,h6{margin:10px 0px;font-weight:bold;border-bottom:1px solid #638ec4;} -h1{font-size:x-large;} -h2{font-size:large;} -h3{font-size:medium;} -h4{font-size:small;} -h5{font-size:x-small;} -h6{font-size:xx-small;} -.required{display:inline;color:red;font-size:16px;font-weight:bold;margin:3px;} -.fakelink,.lockview{color:#88a9d2;cursor:pointer;} -.fakelink:hover{color:#638ec4;} -.smalltext{font-size:0.7em;} -.action{margin:5px 0;} -.tool{margin:5px 0;list-style:none;} -#articlemain{width:100%;height:100%;margin:0 auto;} -.button{color:#eeeecc;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;padding:5px;cursor:pointer;}.button a{color:#eeeecc;font-weight:bold;} -#profile-listing-desc a{color:#eeeecc;font-weight:bold;} -[class$="-desc"],[id$="-desc"]{color:#eeeecc;background:#2e2f2e;border:2px outset #d4d580;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;margin:3px 10px 7px 0;padding:5px;font-weight:bold;font-size:smaller;} -#item-delete-selected-desc{float:left;font-size:x-small;margin-right:5px;}#item-delete-selected-desc:hover{text-decoration:underline;} -.intro-approve-as-friend-desc{margin-top:10px;} -.intro-desc{margin-bottom:20px;font-weight:bold;} -#group-edit-desc{margin:10px 0px;} -#settings-nickname-desc{background:#eeeecc;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;border:1px solid #eeeecc;padding:5px;color:#2e2f2e;} -.contactname,.contact-name{font-weight:bold;font-size:smaller;} -.contact-details{font-style:italic;font-size:smaller;} -.like-rotator{vertical-align:middle;text-align:center;margin:1px;} -#asidemain .field{overflow:hidden;width:200px;} -#login-extra-links{overflow:auto !important;padding-top:60px !important;width:100% !important;}#login-extra-links a{margin-right:20px;} -#login_standard{display:block !important;float:none !important;height:100% !important;position:relative !important;width:100% !important;}#login_standard .field label{width:200px !important;} -#login_standard input{margin:0 0 8px !important;width:210px !important;}#login_standard input[type="text"]{margin:0 0 8px !important;width:210px !important;} -#login-submit-wrapper{margin:0 !important;} -#login-submit-button{margin-left:0px !important;} -#asidemain #login_openid{position:relative !important;float:none !important;margin-left:0px !important;height:auto !important;width:200px !important;} -#login_openid #id_openid_url{width:180px !important;overflow:hidden !important;} -#login_openid label{width:180px !important;} -nav{height:60px;background-color:#1d1f1d;color:#eeeeee;position:relative;padding:20px 20px 10px 95px;}nav a{text-decoration:none;color:#eeeeee;border:0px;}nav a:hover{text-decoration:none;color:#eeeeee;border:0px;} -nav #banner{display:block;position:absolute;left:51px;top:25px;}nav #banner #logo-text a{font-size:40px;font-weight:bold;margin-left:3px;} -#site-location{font-weight:bold;font-style:italic;font-size:small;width:30em;position:relative;left:-3.5em;top:3em;} -ul#user-menu-popup{display:none;position:absolute;background-color:#555753;width:100%;padding:10px 0px;margin:3px 0 0;top:20px;left:0;font-size:small;line-height:1;-o-border-radius:0 0 5px 5px;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;-ms-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;-moz-box-shadow:5px 5px 10px 0px #111111;-o-box-shadow:5px 5px 10px 0px #111111;-webkit-box-shadow:5px 5px 10px 0px #111111;-ms-box-shadow:5px 5px 10px 0px #111111;box-shadow:5px 5px 10px 0px #111111;z-index:10000;}ul#user-menu-popup li{display:block;}ul#user-menu-popup li a{display:block;padding:5px;color:#eeeeee;background-color:#555753;}ul#user-menu-popup li a:hover{color:#2e2f2e;background-color:#eeeeee;} -ul#user-menu-popup li a.nav-sep{border-top:1px solid #2e302e;} -nav .nav-link{display:inline-block;width:22px;height:22px;overflow:hidden;margin:0px 5px 5px;text-indent:50px;background:transparent url(dark/icons.png) 0 0 no-repeat;} -#nav-admin-link{background-position:0 -154px;}#nav-admin-link:hover{background-position:-22px -154px;} -#nav-apps-link{background-position:0 -66px;}#nav-apps-link:hover{background-position:-22px -66px;} -#nav-community-link,#nav-contacts-link{background-position:0 -22px;}#nav-community-link:hover,#nav-contacts-link:hover{background-position:-22px -22px;} -#nav-directory-link{background-position:-44px -154px;}#nav-directory-link:hover{background-position:-66px -154px;} -#nav-help-link{background-position:0 -110px;}#nav-help-link:hover{background-position:-22px -110px;} -#nav-home-link{background-position:-44px -132px;}#nav-home-link:hover{background-position:-66px -132px;} -#nav-intro-link{background-position:0px -88px;}#nav-intro-link:hover{background-position:-22px -88px;} -#nav-login-link,#nav-logout-link{background-position:0 -88px;}#nav-login-link:hover,#nav-logout-link:hover{background-position:-22px -88px;} -#nav-manage-link{background-position:-88px -88px;}#nav-manage-link:hover{background-position:-110px -88px;} -#nav-messages-link{background-position:-44px -88px;}#nav-messages-link:hover{background-position:-66px -88px;} -#nav-notify-link,#nav-notifications-linkmenu{background-position:-44px -110px;} -#nav-notify-link:hover{background-position:-66px -110px;} -#nav-network-link{background-position:0px -177px;}#nav-network-link:hover{background-position:-22px -177px;} -#nav-search-link{background-position:0 -44px;}#nav-search-link:hover{background-position:-22px -44px;} -#jot-title,#profile-link,#profile-title,#profile-attach-wrapper,#profile-audio,#profile-link,#profile-location,#profile-nolocation,#profile-title,#profile-upload-wrapper,#profile-video,#profile-jot-submit,#wall-image-upload,#wall-file-upload,#wall-image-upload-div,#wall-file-upload-div,.icon,.hover,.focus,.pointer{cursor:pointer;} -div.jGrowl div.notice{background:#3320bc url("../../../images/icons/48/notice.png") no-repeat 5px center;color:white;padding-left:58px;margin-top:50px;} -div.jGrowl div.info{background:#1353b1 url("../../../images/icons/48/info.png") no-repeat 5px center;color:white;padding-left:58px;margin-top:50px;} -#nav-notifications-menu{margin:30px 0 0 -20px;width:275px;max-height:300px;overflow-y:auto;font-size:9pt;}#nav-notifications-menu img{float:left;margin-right:5px;} -#nav-notifications-menu .notif-when{font-size:0.8em;display:block;} -#nav-notifications-menu li{word-wrap:normal;border-bottom:1px solid black;}#nav-notifications-menu li:hover{color:black;} -#nav-notifications-menu a:hover{color:black;text-decoration:underline;} -nav #nav-notifications-linkmenu.on .icon.s22.notify,nav #nav-notifications-linkmenu.selected .icon.s22.notify{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAQAAABuvaSwAAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAAUJcAAFCXAZtv64UAAAHuSURBVCjPbZPbTlNBFIYHLixXRIhEQGNRMUopJAJyAyZ4Z2l8B+XwEBqKtjwOp8oDIAJKIJFUjdFIQCUYrRytdyb0459ht8wG9rrYs9b618y/TsYEH4ZK4qRYYIdDybZOI7TKakIfVhrJ8J2i5IBNyV93/kaaBuv3oV3MgwCTPKGHPkkPA0xRUMBrOgN4AP0o6BseEpF2m3es0qJTFQneyvMhgDsC9tZprnEcGuOPeMcDLUpW3jlLxlDBmJTFY6gLvsVv8tyh9G7U3Z6mwtCuJAoiECSh/w1+8otmTjLqF2KDNsNzRY1bruV0o6rFFtc9S5USh5RRWvAYv4xX9dYPS8ur1oBQC4Y99m2uHriRNda5ErLdU1l3jCI2xdJ3XOYLX6kP2W6K2OF54Et84jN154F31d6ukKOG92pSbcjWLRrbRhVGLTZeOtXqX46LoQSHhJo3jOo3ESrdBQbljIRKNyXUiKHNNSXhTdbZiUzyT/WJ23Zn3BBFy+2u4ZHc1eV2N7EkxAvbbqMRmZOSlbE0g/uajRgl6Iy8r1wpnaFTQ4ji+8XOEsuxYmdDWpJleXJ0+BPdoduL4p5Vavd5IOllmJfiWmSWu6d3pV4jteFWqaAGbLkdKSqtUXXUnN3DSvF8phfy/JfkxfOp9sVb2COz+hY/T0qkwwAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxMS0wOS0xNlQwOTozOTowMCswMjowMC9Oi90AAAAldEVYdGRhdGU6bW9kaWZ5ADIwMTEtMDktMTZUMDk6Mzk6MDArMDI6MDBeEzNhAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAABJRU5ErkJggg==");} -.show{display:block;} -#notifications{width:170px;height:20px;font-size:small;top:-19px;left:4px;position:absolute;} -#nav-floater{position:fixed;top:20px;right:1%;padding:5px;background:#1d1f1d;color:transparent;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;z-index:100;width:270px;height:60px;} -#nav-buttons{clear:both;list-style:none;padding:0px;margin:0px;height:25px;}#nav-buttons>li{padding:0;display:inline-block;margin:0px -4px 0px 0px;} -#nav-buttons-2{clear:both;list-style:none;padding:0px;margin:0px;left:136px;top:-20px;position:relative;width:6em;height:25px;}#nav-buttons-2>li{padding:0;display:inline-block;margin:0px -4px 0px 0px;} -.floaterflip{display:block;position:fixed;z-index:110;top:56px;right:19px;width:22px;height:22px;overflow:hidden;margin:0px;background:transparent url(dark/icons.png) -190px -60px no-repeat;} -.search-box{display:inline-block;margin:5px;position:fixed;right:0px;bottom:0px;z-index:100;background:#1d1f1d;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;} -#search-text,#mini-search-text{background:white;color:#2e2f2e;} -#search-text{border:1px solid #eeeeee;margin:5px 0;} -#mini-search-text{font-size:8pt;height:14px;width:10em;margin:5px;} -#scrollup{position:fixed;right:5px;bottom:40px;z-index:100;}#scrollup a:hover{text-decoration:none;border:0;} -#user-menu{-moz-box-shadow:5px 0 10px 0 #111111;-o-box-shadow:5px 0 10px 0 #111111;-webkit-box-shadow:5px 0 10px 0 #111111;-ms-box-shadow:5px 0 10px 0 #111111;box-shadow:5px 0 10px 0 #111111;display:block;width:35%;margin:5px 0 0 0;position:relative;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;background-color:#555753;background-image:url("data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEASABIAAD//gATQ3JlYXRlZCB3aXRoIEdJTVD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT/2wBDAQMEBAUEBQkFBQkUDQsNFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT/wAARCAAIAAwDASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAMH/8QAIhAAAQMEAgIDAAAAAAAAAAAAAQIDBAAFBhESIQdBMVFh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgP/xAAXEQEBAQEAAAAAAAAAAAAAAAABAAIR/9oADAMBAAIRAxEAPwCXiHO8dbsEi35BEhIehNlbUhxhBU82O+G9bKgToD2D+VlmZX9OWZBJuAiMxGlni0w0gJCED4HXv7pSi6eFML//2Q==");background-position:98% center;background-repeat:no-repeat;top:4px;left:7px;padding:2px;}#user-menu>a{vertical-align:top;outline:0 none;} -#user-menu-label{font-size:small;padding:0px 20px 10px 5px;height:10px;display:block;} -.nav-ajax-update,.nav-ajax-left{width:30px;height:19px;background:transparent url(dark/notifications.png) 0 0 no-repeat;color:#111111;font-weight:bold;font-size:0.8em;padding-top:0.2em;text-align:center;float:left;margin:0 -1px 0 3px;display:block;visibility:hidden;} -.nav-ajax-update.show,.nav-ajax-left.show{visibility:visible;} -#net-update{background-position:0px 0px;} -#mail-update{background-position:-30px 0;} -#notify-update{background-position:-60px 0px;} -#home-update{background-position:-90px 0px;} -#intro-update{background-position:-120px 0px;} -#lang-select-icon{cursor:pointer;position:fixed;left:28px;bottom:6px;z-index:10;} -#language-selector{position:fixed;bottom:2px;left:52px;z-index:10;} -.menu-popup{position:absolute;display:none;background:white;color:#2e2f2e;margin:0px;padding:0px;font-size:small;line-height:1.2;border:3px solid #88a9d2;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;z-index:100000;-moz-box-shadow:5px 5px 5px 0px #111111;-o-box-shadow:5px 5px 5px 0px #111111;-webkit-box-shadow:5px 5px 5px 0px #111111;-ms-box-shadow:5px 5px 5px 0px #111111;box-shadow:5px 5px 5px 0px #111111;}.menu-popup a{display:block;color:#2e2f2e;padding:5px 10px;text-decoration:none;}.menu-popup a:hover{color:#eeeecc;background-color:#88a9d2;} -.menu-popup .menu-sep{border-top:1px solid #4e4f4e;} -.menu-popup li{float:none;overflow:auto;height:auto;display:block;}.menu-popup li img{float:left;width:16px;height:16px;padding-right:5px;} -.menu-popup .empty{padding:5px;text-align:center;color:#9ea8ac;} -.notif-item{font-size:small;}.notif-item a{vertical-align:middle;} -.notif-image{width:32px;height:32px;padding:7px 7px 0px 0px;} -.notify-seen{background:#ddddbb;color:#eeeecc;} -.notify-unseen{color:#eeeecc;} -#sysmsg_info{position:fixed;bottom:0;-moz-box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;-o-box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;-webkit-box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;-ms-box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;padding:10px;background-color:#fcaf3e;border:2px solid #f8911b;border-bottom:0;padding-bottom:50px;z-index:1000;} -#sysmsg{position:fixed;bottom:0;-moz-box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;-o-box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;-webkit-box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;-ms-box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;padding:10px;background-color:#fcaf3e;border:2px solid #f8911b;border-bottom:0;padding-bottom:50px;z-index:1000;} -#sysmsg_info br,#sysmsg br{display:block;margin:2px 0px;border-top:1px solid #eeeecc;} -#asidemain{float:left;font-size:small;margin:1em;width:25%;display:inline;} -#asideright,#asideleft{display:none;} -.vcard .fn{font-size:1.5em;font-weight:bold;border-bottom:1px solid #638ec4;padding-bottom:3px;} -.vcard #profile-photo-wrapper{margin:20px 0;background-color:#555753;padding:5px;width:175px;height:175px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;-moz-box-shadow:3px 3px 10px 0 #111111;-o-box-shadow:3px 3px 10px 0 #111111;-webkit-box-shadow:3px 3px 10px 0 #111111;-ms-box-shadow:3px 3px 10px 0 #111111;box-shadow:3px 3px 10px 0 #111111;} -#asidemain h4{font-size:1.2em;} -#asidemain #viewcontacts{text-align:right;} -#asidemain #contact-block{width:99%;}#asidemain #contact-block .contact-block-content{width:99%;}#asidemain #contact-block .contact-block-content .contact-block-div{float:left;margin:0 5px 5px 0;width:50px;height:50px;padding:3px;position:relative;} -.aprofile dt{background:#eeeecc;color:#2e2f2e;font-weight:bold;-moz-box-shadow:3px 3px 5px 0px #111111;-o-box-shadow:3px 3px 5px 0px #111111;-webkit-box-shadow:3px 3px 5px 0px #111111;-ms-box-shadow:3px 3px 5px 0px #111111;box-shadow:3px 3px 5px 0px #111111;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;margin:15px 0 5px;padding-left:5px;} -#profile-extra-links ul{margin-left:0px;padding-left:0px;list-style:none;} -#dfrn-request-link{-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;color:#eeeecc;display:block;font-size:1.2em;padding:0.2em 0.5em;background-color:#3465a4;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAE4SURBVCiRpZKxLgRRFIa//64dKruZFRIlolBviFKiVHsHrRaFikTCC+hEQtRegMQDqDUKJOPOvauSMJmjYEU2M0viT071/+fLOTlHZkadQgjLkh1LPEoj661WKw5mXG034JxtAgtmrJoVK5WZYYCy1AVQSOYbjeSqMmRmQ8v755Ne77lb5w+d4HMNJopCT7X+bwDQZKfTyf4BIAHeawHe+/kQ/FGM+QagvpFl2VSM/tyMmV7PV14AYMQ5nUp0AULIp0HXzpVvSdLYMmNVAjNdAuNAUQHgxy/ZvEQTSMw0A33DxkIIi2ma3gwC9PKSzRWF2wbdpml62DfyPF9yjlNgAnQGLJjZnXON3Xa7ff8NGPbKQPNrbAOI0a9J2ilLEzAL7P0GqJJizF+BUeDhL2cclJnZPvAg6eADf+imKjSMX1wAAAAASUVORK5CYII=");background-repeat:no-repeat;background-position:95% center;} -#wallmessage-link{color:#eeeeee;display:block;font-size:1.2em;padding:0.2em 0.5em;} -.ttright{margin:0px;} -.contact-block-div{width:50px;height:50px;float:left;} -.contact-block-textdiv{width:150px;height:34px;float:left;} -#jot{margin:10px 0 20px 0px;width:100%;}#jot #jot-tools{margin:0px;padding:0px;width:100%;height:35px;overflow:none;}#jot #jot-tools span{float:left;margin:10px 20px 2px 0px;}#jot #jot-tools span a{display:block;} -#jot #jot-tools .perms{float:right;width:40px;} -#jot #jot-tools li.loading{float:right;background-color:white;width:20px;height:38px;vertical-align:center;text-align:center;border-top:2px solid #9eabb0;}#jot #jot-tools li.loading img{margin-top:10px;} -#jot #jot-title{border:1px solid #cdcdcd;margin:0 0 5px;width:90%;height:20px;font-weight:bold;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;vertical-align:middle;} -#jot-category{margin:5px 0;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;border:1px solid #9a9a9a;color:#a9a9a9;font-size:smaller;}#jot-category:focus{color:#eeeeee;} -#jot #character-counter{width:6%;height:15px;float:right;text-align:right;line-height:20px;padding:2px 20px 5px 0;} -#profile-jot-text_parent{-moz-box-shadow:5px 0 10px 0 #111111;-o-box-shadow:5px 0 10px 0 #111111;-webkit-box-shadow:5px 0 10px 0 #111111;-ms-box-shadow:5px 0 10px 0 #111111;box-shadow:5px 0 10px 0 #111111;} -#profile-jot-text_tbl{margin-bottom:10px;background:#777777;} -#profile-jot-text_ifr{width:99.900002% !important;} -#profile-jot-text_toolbargroup,.mceCenter tr{background:#777777;} -[id$="jot-text_ifr"]{color:#2e2f2e;background:#eeeecc;}[id$="jot-text_ifr"] .mceContentBody{color:#2e2f2e;background:#eeeecc;} -.defaultSkin tr.mceFirst{background:#777777;} -.defaultSkin td.mceFirst,.defaultSkin td.mceLast{background-color:#eeeecc;} -.defaultSkin span.mceIcon,.defaultSkin img.mceIcon,.defaultSkin .mceButtonDisabled .mceIcon{background-color:#eeeecc;} -#profile-attach-wrapper,#profile-audio-wrapper,#profile-link-wrapper,#profile-location-wrapper,#profile-nolocation-wrapper,#profile-title-wrapper,#profile-upload-wrapper,#profile-video-wrapper{float:left;margin:0 20px 0 0;} -#profile-rotator-wrapper{float:right;} -#profile-jot-email-wrapper{margin:10px 10% 0;border:1px solid #555753;border-bottom:0;} -#profile-jot-email-label{background-color:#555753;color:#eeeecc;padding:5px;} -#profile-jot-email{width:90%;margin:5px;} -#profile-jot-networks{margin:0 10%;border:1px solid #555753;border-top:0;border-bottom:0;padding:5px;} -#profile-jot-net{margin:5px 0;} -#jot-preview-link{margin:0 0 0 10px;border:0;text-decoration:none;float:right;} -.icon-text-preview{margin:0 0 -18px 0;display:block;width:20px;height:20px;background:url(dark/icons.png) no-repeat -128px -40px;border:0;text-decoration:none;float:right;cursor:pointer;} -#profile-jot-perms{float:right;color:#555753;width:20px;height:20px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;-moz-box-shadow:3px 3px 5px 0 #111111;-o-box-shadow:3px 3px 5px 0 #111111;-webkit-box-shadow:3px 3px 5px 0 #111111;-ms-box-shadow:3px 3px 5px 0 #111111;box-shadow:3px 3px 5px 0 #111111;border:2px outset #555753;overflow:hidden;margin:0 10px 0 10px;} -#profile-jot-plugin-wrapper{width:1px;margin:10px 0 0 0;float:right;} -#profile-jot-submit-wrapper{float:right;width:100%;margin:10px 0 0 0;padding:0;} -#profile-jot-submit{height:auto;background-color:#555753;color:#eeeeee;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;border:2px outset #2e3436;margin:0;float:right;-moz-text-shadow:1px 1px #111111;-o-text-shadow:1px 1px #111111;-webkit-text-shadow:1px 1px #111111;-ms-text-shadow:1px 1px #111111;text-shadow:1px 1px #111111;width:auto;}#profile-jot-submit:active{-moz-box-shadow:0 0 0 0 #111111;-o-box-shadow:0 0 0 0 #111111;-webkit-box-shadow:0 0 0 0 #111111;-ms-box-shadow:0 0 0 0 #111111;box-shadow:0 0 0 0 #111111;} -#jot-perms-icon{width:22px;height:22px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;overflow:hidden;background:#555753 url("dark/icons.png") -88px -40px;} -#group_allow_wrapper,#group_deny_wrapper,#acl-permit-outer-wrapper,#contact_allow_wrapper,#contact_deny_wrapper,#acl-deny-outer-wrapper{width:47%;} -#group_allow_wrapper,#group_deny_wrapper,#acl-permit-outer-wrapper{float:left;} -#contact_allow_wrapper,#contact_deny_wrapper,#acl-deny-outer-wrapper{float:right;} -#acl-permit-text{background-color:#555555;color:#eeeecc;padding:5px;float:left;} -#jot-public{background-color:#555555;color:#ff0000;padding:5px;float:left;} -#acl-deny-text{background-color:#555555;color:#eeeecc;padding:5px;float:left;} -#jot-title-desc{color:#cdcdcd;} -#profile-jot-desc{background:#2e2f2e;border:1px solid #eeeecc;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;color:#ff2000;margin:5px 0;} -#jot-title-wrapper{margin-bottom:5px;} -#jot-title-display{font-weight:bold;} -.jothidden{display:none;} -#jot-preview-content{background-color:#2e3436;color:#eeeecc;border:1px solid #2e2f2e;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;-moz-box-shadow:5px 0 10px 0px #111111;-o-box-shadow:5px 0 10px 0px #111111;-webkit-box-shadow:5px 0 10px 0px #111111;-ms-box-shadow:5px 0 10px 0px #111111;box-shadow:5px 0 10px 0px #111111;padding:3px 3px 6px 10px;}#jot-preview-content .wall-item-outside-wrapper{border:0;-o-border-radius:0px 0px 0px 0px;-webkit-border-radius:0px 0px 0px 0px;-moz-border-radius:0px 0px 0px 0px;-ms-border-radius:0px 0px 0px 0px;border-radius:0px 0px 0px 0px;-moz-box-shadow:0 0 0 0 #111111;-o-box-shadow:0 0 0 0 #111111;-webkit-box-shadow:0 0 0 0 #111111;-ms-box-shadow:0 0 0 0 #111111;box-shadow:0 0 0 0 #111111;} -#sectionmain{margin:1em;font-size:0.8em;min-width:475px;width:69%;float:left;display:inline;} -.tabs{margin:0px;padding:0px;list-style:none;list-style-position:inside;margin:10px 0;}.tabs li{display:inline;font-size:smaller;} -.tab{border:1px solid #638ec4;padding:4px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;}.tab:active,.tab:hover{background:#2e3436;color:#eeeecc;border:1px solid #638ec4;} -.tab a{border:0;text-decoration:none;} -.tab.active{background:#eeeecc;color:#2e2f2e;border:1px solid #638ec4;padding:4px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;}.tab.active:hover{background:#2e3436;color:#eeeecc;border:1px solid #638ec4;} -.tab.active a{color:#2e2f2e;text-decoration:none;} -.wall-item-outside-wrapper{border:1px solid #a9a9a9;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;-moz-box-shadow:6px 1px 10px -2px #111111;-o-box-shadow:6px 1px 10px -2px #111111;-webkit-box-shadow:6px 1px 10px -2px #111111;-ms-box-shadow:6px 1px 10px -2px #111111;box-shadow:6px 1px 10px -2px #111111;}.wall-item-outside-wrapper.comment{margin-top:5px;} -.wall-item-content-wrapper{position:relative;padding:0.75em;width:auto;} -.wall-item-outside-wrapper .wall-item-comment-wrapper{}.wall-item-outside-wrapper .wall-item-comment-wrapper .preview{border:0;-o-border-radius:0px;-webkit-border-radius:0px;-moz-border-radius:0px;-ms-border-radius:0px;border-radius:0px;} -.shiny{background:#2e3436;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;} -.wall-outside-wrapper .shiny{-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;} -.heart{color:red;} -.wall-item-content{overflow-x:auto;margin:0px 4em 1em 5px;} -[id^="thread-wrapper"],[class^="thread-wrapper"]{margin:1.2em 0 0 0;padding:0px;} -.wall-item-photo-menu{display:none;} -.wall-item-photo-menu-button{display:none;text-indent:-99999px;background:#555753 url(dark/menu-user-pin.jpg) no-repeat 75px center;position:absolute;overflow:hidden;width:90px;height:20px;top:85px;left:0;-o-border-radius:0 0 5px 5px;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;-ms-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;} -.wall-item-info{float:left;width:7em;position:relative;} -.wall-item-photo-wrapper{width:80px;height:80px;position:relative;padding:5px;background-color:#555753;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;} -[class^="wall-item-tools"] *{}[class^="wall-item-tools"] *>*{} -.wall-item-tools{float:right;opacity:0.4;-webkit-transition:all 0.75s ease-in-out;-moz-transition:all 0.75s ease-in-out;-o-transition:all 0.75s ease-in-out;-ms-transition:all 0.75s ease-in-out;transition:all 0.75s ease-in-out;}.wall-item-tools:hover{opacity:1;-webkit-transition:all 0.75s ease-in-out;-moz-transition:all 0.75s ease-in-out;-o-transition:all 0.75s ease-in-out;-ms-transition:all 0.75s ease-in-out;transition:all 0.75s ease-in-out;} -.wall-item-subtools1{width:30px;height:30px;list-style:none outside none;margin:18px 0 30px -20px;padding:0;} -.wall-item-subtools2{width:25px;height:25px;list-style:none outside none;margin:-78px 0 0 5px;padding:0;} -.wall-item-title{font-size:1.2em;font-weight:bold;margin-bottom:1.4em;} -.wall-item-body{margin:1em;text-align:left;overflow-x:auto;} -.wall-item-lock-wrapper{float:right;width:22px;height:22px;margin:0 -5px 0 0;opacity:1;} -.wall-item-dislike,.wall-item-like{clear:left;font-size:0.8em;color:#888b85;margin:5px 0 5px 10.2em;-webkit-transition:all 0.75s ease-in-out;-moz-transition:all 0.75s ease-in-out;-o-transition:all 0.75s ease-in-out;-ms-transition:all 0.75s ease-in-out;transition:all 0.75s ease-in-out;opacity:0.5;}.wall-item-dislike:hover,.wall-item-like:hover{opacity:1;} -.wall-item-author,.wall-item-actions-author,.wall-item-ago{color:#eeeecc;line-height:1;display:inline-block;font-size:x-small;margin:0.5em auto;font-weight:bold;} -.comment-edit-preview{width:auto;margin:auto auto auto -2em;}.comment-edit-preview.wall-item-author,.comment-edit-preview.wall-item-actions-author,.comment-edit-preview.wall-item-ago{font-size:smaller;} -.wall-item-location{margin-top:2em;width:6em;overflow:hidden;-moz-text-overflow:ellipsis;-ms-text-verflow:ellipsis;-o-text-overflow:ellipsis;-webkit-text-overflow:ellipsis;text-overflow:ellipsis;}.wall-item-location .icon{float:left;} -.wall-item-location>a,.wall-item-location .smalltext{margin-left:25px;font-size:0.7em;display:block;} -.wall-item-location>br{display:none;} -.wallwall .wwto{left:5px;margin:0;position:absolute;top:75px;z-index:10001;width:30px;height:30px;}.wallwall .wwto img{width:30px !important;height:30px !important;} -.wallwall .wall-item-photo-end{clear:both;} -.wall-item-arrowphoto-wrapper{position:absolute;left:35px;top:80px;z-index:10002;} -.wall-item-photo-menu{min-width:92px;font-size:0.75em;border:2px solid #555753;border-top:0px;background:#555753;position:absolute;left:-2px;top:101px;display:none;z-index:10003;-o-border-radius:0 5px 5px 5px;-webkit-border-radius:0 5px 5px 5px;-moz-border-radius:0 5px 5px 5px;-ms-border-radius:0 5px 5px 5px;border-radius:0 5px 5px 5px;}.wall-item-photo-menu li a{white-space:nowrap;display:block;padding:5px 6px;color:#eeeeee;}.wall-item-photo-menu li a:hover{color:#555753;background:#eeeeee;} -#connect-services-header,#extra-help-header{margin:1.5em 0 0 0;} -#connect-services,#extra-help{margin:0px;padding:0px;list-style:none;list-style-position:inside;margin:1em 0 0 0;}#connect-services li,#extra-help li{display:inline;} -.ccollapse-wrapper{font-size:0.9em;margin-left:5em;} -.hide-comments-outer{font-size:small;} -.wall-item-outside-wrapper.comment{margin-left:5em;}.wall-item-outside-wrapper.comment .wall-item-info{width:5em;} -.wall-item-outside-wrapper.comment .wall-item-photo{width:40px !important;height:40px !important;} -.wall-item-outside-wrapper.comment .wall-item-photo-wrapper{width:40px;height:40px;} -.wall-item-outside-wrapper.comment .wall-item-photo-menu-button{width:3.35em;top:3.2em;background-position:35px center;} -.wall-item-outside-wrapper.comment .wall-item-author{margin-left:0.2em;} -.wall-item-outside-wrapper.comment .wall-item-photo-menu{min-width:4.5em;top:5.5em;} -.comment-wwedit-wrapper{border:1px solid #eeeecc;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;margin:5px;} -.comment-edit-wrapper{border-top:1px #aaa solid;} -[class^="comment-edit-bb"]{margin:0px;padding:0px;list-style:none;list-style-position:inside;display:none;margin:-40px 0 5px 60px;width:75%;}[class^="comment-edit-bb"]>li{display:inline-block;margin:0 10px 0 0;visibility:none;} -.comment-wwedit-wrapper img,.comment-edit-wrapper img{width:20px;height:20px;} -.comment-edit-photo-link,.comment-edit-photo{margin-left:10px;} -.my-comment-photo{width:40px;height:40px;padding:5px;} -[class^="comment-edit-text"]{margin:5px 0 10px 20px;width:94%;} -.comment-edit-text-empty{height:20px;border:2px solid #c8bebe;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;color:#c8bebe;-webkit-transition:all 0.75s ease-in-out;-moz-transition:all 0.75s ease-in-out;-o-transition:all 0.75s ease-in-out;-ms-transition:all 0.75s ease-in-out;transition:all 0.75s ease-in-out;}.comment-edit-text-empty:hover{color:#999999;} -.comment-edit-text-full{height:10em;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;-webkit-transition:all 0.75s ease-in-out;-moz-transition:all 0.75s ease-in-out;-o-transition:all 0.75s ease-in-out;-ms-transition:all 0.75s ease-in-out;transition:all 0.75s ease-in-out;} -.comment-edit-submit-wrapper{width:90%;margin:5px 5px 10px 50px;text-align:right;} -.comment-edit-submit{height:22px;background-color:#555753;color:#eeeeee;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;border:0;} -.wall-item-body code{background-color:#444444;border-bottom:1px dashed #cccccc;border-left:5px solid #cccccc;border-top:1px dashed #cccccc;color:#eeeecc;display:block;overflow-x:auto;padding:5px 0 15px 10px;width:95%;}.wall-item-body code a{color:#adc4e0;} -div[id$="text"]{font-weight:bold;border-bottom:1px solid #cccccc;} -div[id$="wrapper"]{height:100%;}div[id$="wrapper"] br{clear:left;} -.profile-match-wrapper{float:left;margin:0 5px 40px 0;width:120px;height:120px;padding:3px;position:relative;} -.icon.drophide.profile-match-ignore{margin:0 6px 0 -3px;} -[id$="-end"],[class$="-end"]{clear:both;margin:0 0 10px 0;} -.profile-match-end{margin:0 0 5px 0;} -.profile-match-name{font-weight:bold;margin:auto auto auto 23px;} -.profile-match-connect{font-style:italic;margin:auto auto auto 23px;} -#advanced-profile-with{margin-left:200px;} -.photos{height:auto;overflow:auto;} -#photo-top-links{margin-bottom:30px;} -.photo-album-image-wrapper,.photo-top-image-wrapper{float:left;-moz-box-shadow:3px 3px 10px 0 #111111;-o-box-shadow:3px 3px 10px 0 #111111;-webkit-box-shadow:3px 3px 10px 0 #111111;-ms-box-shadow:3px 3px 10px 0 #111111;box-shadow:3px 3px 10px 0 #111111;background-color:#222222;color:#2e2f2e;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;padding-bottom:30px;position:relative;margin:0 10px 10px 0;} -#photo-photo{margin:auto auto 5em 20%;}#photo-photo img{max-width:50%;} -.photo-top-image-wrapper a:hover,#photo-photo a:hover,.photo-album-image-wrapper a:hover{border-bottom:0;} -.photo-top-photo,.photo-album-photo{-o-border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;-ms-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;} -.photo-top-album-name,.caption{position:absolute;bottom:0;padding:0 5px;} -#photo-prev-link,#photo-next-link{position:absolute;width:50px;height:200px;background:#ffffff center center no-repeat;opacity:0;-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;z-index:10;top:15em;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;}#photo-prev-link:hover,#photo-next-link:hover{opacity:0.6;-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;} -#photo-prev-link .icon,#photo-next-link .icon{display:none;} -#photo-prev-link{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAnCAMAAADTjiM/AAAAA3NCSVQICAjb4U/gAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAALpQTFRF////AAAAQEBAZmZmVVVVSUlJTU1NXV1dVVVVTk5OW1tbWlpaWFhPWFhQU1pTVVVVVlZSVVlRVlZTVFdUVFdUVVdTVFZSVldUVldSVldSVldTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVZUVVdTVVdTVVhSVVdTVVdTVVhSVVdTVVdTVVhSVVdTVVdTVVdTVVdTVVdTVVdTVVhTVVdTVVdTVVdTVVdT3XYY/AAAAD10Uk5TAAEEBQYHCgsMDQ4RHSAlP0FFR1hee3+JnqSqq6ytrq+wsbKztLW2t7y9vr/AwcLDxMXGx8jU1dng7O/3+TmOwVsAAADASURBVCjPddPXEoIwEAXQINh7Q8WKYu+95v9/S0dxZxNy83hgMpvdu0Jox642r25GVxGfys+5540sZV3jyY/lWeVxyDLg7AR/lhXOI+KZZeRFgvGQeMnY9olXScYD4jXnPvHGzNsU4x7xjnGsa+YO8T7NnukRHzgXiY/KNKiUkzqkZ8ivnDoKD/xfBvdbbXM9sH70Xtgf2E/YfzgvOF+YB5gf5cPcAfmsgTy3QP5vYF8akf36XvXIRhZPlPyLWxBvNENWsZXDKukAAAAASUVORK5CYII=");left:5%;} -#photo-next-link{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAnCAMAAADTjiM/AAAAA3NCSVQICAjb4U/gAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAKVQTFRF////gICAQEBAZmZmVVVVSUlJYGBgVVVVTU1NXV1dVVVVWVlZU1hTVlZSVlZTVlZTVVlRVVhSVFdUVlhTVVdTVFZTVVdTVldTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVhSVVdTVVdTVVdTVVdTVVdTVVdTVVdTVVdTVVdT8E3YQQAAADZ0Uk5TAAIEBQYHCAkKCwwUN0FER0hOW2uNjqWqq6ytrq+wsbKztLW2t7i5uru8vb6/wMHCxcjT3PP3B0dhfwAAANlJREFUKM910+cSgjAQRtEIomAXu4iIYge7ef9Hs+ZzN4b9eW4mk1kGIaqdU9wQf2Nf5XPSiu4d+Z6jp/n54/KghZ40h5ZymbFQGCCkLg3WKC+MEfYs2AHCrszCBGHLQ5gXpggbFooRwrrEwgxhxUOcE5w5wtJiYYHQZjt0EuUhX3r19vU7Y++ozgeMD7i/buYhYTcDj8gz3RQ8prwHB/aPyzvwhPLWzBtwSLi0Bk8pr8BR0cgzwiIycw0cUxZ9xXOH7VZ9vAVn4X840Vh4F9Pp1w/gZ92mpesDuLpM+1blc68AAAAASUVORK5CYII=");left:50%;} -#photo-prev-link a,#photo-next-link a{display:block;width:100%;height:100%;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;overflow:hidden;text-indent:-900000px;} -#photos-upload-spacer,#photos-upload-new-wrapper,#photos-upload-exist-wrapper{margin-bottom:1em;} -#photos-upload-existing-album-text,#photos-upload-newalbum-div{background-color:#555753;color:#eeeeee;padding:1px;} -#photos-upload-album-select,#photos-upload-newalbum{width:99%;} -#photos-upload-perms-menu{text-align:right;} -#photo-edit-link-wrap{margin-bottom:15px;} -#photo-edit-perms{width:auto;} -#photo-edit-rotate-label{width:38%;display:inline-block;font-size:small;margin:0 10px 1em 0;border:1px solid #2e2f2e;padding:3px 5px;background:#eeeecc;color:#111111;-moz-box-shadow:3px 3px 5px 0px #111111;-o-box-shadow:3px 3px 5px 0px #111111;-webkit-box-shadow:3px 3px 5px 0px #111111;-ms-box-shadow:3px 3px 5px 0px #111111;box-shadow:3px 3px 5px 0px #111111;} -#photo-like-div{float:left;margin:auto 0 0;width:2em;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;border:1px solid #eeeecc;} -.wall-item-like-buttons>*{display:inline;} -#photo-edit-delete-button{margin:auto auto auto 1em;} -#photo-edit-end{margin-bottom:35px;} -#photo-caption{font-size:110%;font-weight:bold;margin-top:15px;margin-bottom:15px;} -#wall-photo-container{margin:0 auto 1em 4em;width:90%;} -.prvmail-text{width:100%;} -#prvmail-subject{width:100%;color:#2e2f2e;background:#eeeecc;} -#prvmail-submit-wrapper{margin-top:10px;} -#prvmail-submit{float:right;margin-top:0;} -#prvmail-submit-wrapper div{margin-right:5px;float:left;} -.mail-list-outside-wrapper{margin-top:20px;} -.mail-list-sender{float:left;} -.mail-list-detail{margin-left:90px;} -.mail-list-sender-name{display:inline;font-size:1.1em;} -.mail-list-date{display:inline;font-size:0.9em;padding-left:10px;} -.mail-list-sender-name,.mail-list-date{font-style:italic;} -.mail-list-subject{font-size:1.2em;} -.mail-list-delete-wrapper{float:right;} -.mail-list-outside-wrapper-end{clear:both;border-bottom:1px #eeeecc dotted;} -.mail-conv-sender{float:left;margin:0px 5px 5px 0px;} -.mail-conv-sender-photo{width:32px;height:32px;} -.mail-conv-sender-name{float:left;} -.mail-conv-date{float:right;} -.mail-conv-subject{clear:right;font-weight:bold;font-size:1.2em;} -.mail-conv-body{clear:both;} -.mail-conv-delete-wrapper{margin-top:5px;} -.view-contact-wrapper,.contact-entry-wrapper{float:left;margin:0 5px 40px 0;width:120px;height:135px;padding:3px;position:relative;} -.contact-direction-wrapper{position:absolute;top:20px;} -.contact-edit-links{position:absolute;top:60px;} -.contact-entry-photo{margin-left:20px;} -.contact-entry-name{width:120px;font-weight:bold;font-size:small;} -.contact-entry-details{font-size:x-small;} -.contact-entry-photo{position:relative;} -.contact-entry-edit-links .icon{border:1px solid #babdb6;-o-border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;border-radius:3px;background-color:white;} -#contact-entry-url,[id^="contact-entry-url"],#contact-entry-network,[id^="contact-entry-network"]{font-size:smaller;} -#contact-entry-network,[id^="contact-entry-network"]{font-style:italic;} -#contact-edit-banner-name{font-size:1.5em;} -#contact-edit-photo-wrapper{position:relative;float:left;padding:20px;} -#contact-edit-direction-icon{position:absolute;top:60px;left:0;} -#contact-edit-nav-wrapper{margin-left:0px;} -#contact-edit-links{margin-top:23px;} -#contact-drop-links{margin-left:5px;} -#contact-edit-nav-wrapper .icon{border:1px solid #babdb6;-o-border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;border-radius:3px;} -#contact-edit-poll-wrapper{margin-left:0px;} -#contact-edit-last-update-text{margin-bottom:15px;} -#contact-edit-last-updated{font-weight:bold;} -#contact-edit-poll-text{display:inline;} -#contact-edit-end{clear:both;margin-bottom:65px;} -.contact-photo-menu-button{position:absolute;background:url("dark/photo-menu.jpg") top left no-repeat transparent;margin:0px;padding:0px;width:16px;height:16px;top:64px;left:0px;overflow:hidden;text-indent:40px;display:none;} -.contact-photo-menu{width:auto;border:2px solid #88a9d2;background:#2e2f2e;color:#eeeecc;position:absolute;font-size:smaller;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;left:0px;top:90px;display:none;z-index:10000;}.contact-photo-menu li a{display:block;padding:4px;color:#88a9d2;background:#eeeecc;line-height:1;}.contact-photo-menu li a:hover{background:#88a9d2;color:#eeeecc;text-decoration:none;} -#id_openid_url{background:url(dark/login-bg.gif) no-repeat;background-position:0 50%;padding-left:18px;} -#settings-default-perms{margin-bottom:20px;} -#register-form div,#profile-edit-form div{clear:both;} -.settings-block label{clear:left;} -.settings-block input{margin:10px 5px;} -#register-form label,#profile-edit-form label{width:23em;} -#register-form span,#profile-edit-form span{color:#555753;display:inline-block;margin-bottom:20px;} -#profile-edit-marital-label span{margin:-4px;} -.settings-submit-wrapper,.profile-edit-submit-wrapper{margin:0 0 30px;} -.profile-edit-side-div{display:none;} -#profiles-menu-trigger{margin:0px 0px 0px 25px;} -.profile-listing{float:left;margin:20px 20px 0px 0px;} -.icon-profile-edit{background:url("dark/icons.png") -150px 0px no-repeat;border:0;cursor:pointer;display:block;width:20px;height:20px;margin:0 0 -18px;text-decoration:none;top:113px;right:260px;} -#profile-edit-links ul{margin:0px;padding:0px;list-style:none;list-style-position:inside;margin:20px 0;} -.marital{margin-top:5px;} -#register-sitename{display:inline;font-weight:bold;} -#advanced-expire-popup{background:#2e2f2e;color:#eeeecc;} -#id_ssl_policy{width:374px;} -#theme-preview img{margin:10px 10px 10px 288px;} -.group-delete-wrapper{margin:-31px 50px 0 0;float:right;} -#group-edit-submit-wrapper{margin:0 0 10px 0;display:inline;} -#group-members,#prof-members{height:200px;overflow:auto;border:1px solid #555753;-o-border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;-ms-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;} -#group-all-contacts,#prof-all-contacts{height:200px;overflow:auto;border:1px solid #555753;-o-border-radius:0 0 5px 5px;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;-ms-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;} -#group-members h3,#group-all-contacts h3,#prof-members h3,#prof-all-contacts h3{color:#eeeeee;background-color:#555753;margin:0;padding:5px;} -#group-separator,#prof-separator{display:none;} -#cropimage-wrapper{float:left;} -#crop-image-form{clear:both;} -.intro-wrapper{margin-top:20px;} -.intro-fullname{font-size:1.1em;font-weight:bold;} -.intro-note{padding:10px;} -.intro-end{padding:30px;} -.intro-form{float:left;} -.intro-approve-form{clear:both;} -.intro-submit-approve,.intro-submit-ignore{margin-right:20px;} -.intro-submit-approve{margin-top:15px;} -.intro-approve-as-friend-label,.intro-approve-as-fan-label,.intro-approve-as-friend,.intro-approve-as-fan{float:left;} -.intro-form-end{clear:both;margin-bottom:10px;} -.intro-approve-as-end{clear:both;margin-bottom:10px;} -.clear{clear:both;} -.eventcal{float:left;font-size:20px;} -.event{background:#2e2f2e;} -.vevent{border:1px solid #cccccc;}.vevent .event-description,.vevent .event-location,.vevent .event-start{margin-left:10px;margin-right:10px;} -#new-event-link{margin-bottom:10px;} -.edit-event-link,.plink-event-link{} -.event-description:before{content:url('../../../images/calendar.png');margin-right:15px;} -.event-start,.event-end{margin-left:10px;width:330px;font-size:smaller;} -.event-start .dtstart,.event-end .dtend{float:right;} -.event-list-date{margin-bottom:10px;} -.prevcal,.nextcal{float:left;margin:64px 32px auto 32px;} -.calendar{font-family:monospace;} -.today{font-weight:bold;color:red;} -#event-start-text,#event-finish-text{margin-top:10px;margin-bottom:5px;} -#event-nofinish-checkbox,#event-nofinish-text,#event-adjust-checkbox,#event-adjust-text,#event-share-checkbox{float:left;} -#event-datetime-break{margin-bottom:10px;} -#event-nofinish-break,#event-adjust-break,#event-share-break{clear:both;} -#event-desc-text,#event-location-text{margin-top:10px;margin-bottom:5px;} -#event-submit{margin-top:10px;} -.body-tag{margin:10px 0;opacity:0.5;}.body-tag:hover{opacity:1.0 !important;} -.filesavetags,.categorytags{margin:20px 0;opacity:0.5;} -.filesavetags:hover,.categorytags:hover{margin:20px 0;opacity:1.0 !important;} -.item-select{opacity:0.1;margin:5px 0 0 6px !important;}.item-select:hover{opacity:1;} -.checkeditem{opacity:1;} -#item-delete-selected{margin:3em 5px;position:relative;left:4em;width:15em;overflow:auto;} -#item-delete-selected-icon{float:left;margin:11px 5px;} -.fc-state-highlight{background:#eeeecc;color:#2e2f2e;} -.directory-item{float:left;margin:0 5px 4px 0;padding:3px;width:180px;height:250px;position:relative;} -#group-sidebar{margin-bottom:10px;} -.categories-selected,.group-selected,.nets-selected,.fileas-selected{color:#2e2f2e;background:#eeeecc;color:#2e2f2e;border:1px solid #638ec4;padding:4px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;}.categories-selected:hover,.group-selected:hover,.nets-selected:hover,.fileas-selected:hover{background:#2e3436;color:#eeeecc;border:1px solid #638ec4;} -.categories-selected a,.group-selected a,.nets-selected a,.fileas-selected a{color:#2e2f2e;text-decoration:none;} -.groupsideedit{margin-right:10px;} -#sidebar-group-ul{padding-left:0;} -#sidebar-group-list{margin:0 0 5px 0;}#sidebar-group-list li{margin-top:10px;} -#sidebar-group-list .icon{display:inline-block;width:12px;height:12px;} -.sidebar-group-element{border:1px solid #638ec4;padding:4px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;}.sidebar-group-element:active,.sidebar-group-element:hover{background:#2e3436;color:#eeeecc;border:1px solid #638ec4;} -.sidebar-group-element a{border:0;text-decoration:none;} -#sidebar-new-group{margin:auto;display:inline-block;color:#eeeeee;text-decoration:none;text-align:center;} -#peoplefind-sidebar form{margin-bottom:10px;} -#sidebar-new-group:hover{} -#sidebar-new-group:active{position:relative;top:1px;} -#side-peoplefind-url{border:1px solid #999999;margin-right:3px;width:75%;} -.categories-ul,.nets-ul{margin:0px;padding:0px;list-style:none;list-style-position:inside;}.categories-ul li,.nets-ul li{margin:10px 0 0;} -.categories-link,.nets-link,.nets-all{border:1px solid #638ec4;padding:4px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;margin-left:0px;}.categories-link:active,.nets-link:active,.nets-all:active,.categories-link:hover,.nets-link:hover,.nets-all:hover{background:#2e3436;color:#eeeecc;border:1px solid #638ec4;} -.categories-link a,.nets-link a,.nets-all a{border:0;text-decoration:none;} -#netsearch-box{margin:20px 0px 30px;width:135px;}#netsearch-box #search-submit{margin:5px 5px 0px 0px;} -#pending-update{float:right;color:white;font-weight:bold;background-color:red;padding:0 0.3em;} -.admin.linklist{border:0;padding:0;} -.admin.link{margin:0px;padding:0px;list-style:none;list-style-position:inside;} -#adminpage{color:#eeeecc;background:#2e2f2e;margin:5px;padding:10px;font-size:smaller;}#adminpage dl{clear:left;margin-bottom:2px;padding-bottom:2px;border-bottom:1px solid #111111;} -#adminpage dt{width:250px;float:left;font-weight:bold;} -#adminpage dd{margin-left:250px;} -#adminpage h3{border-bottom:1px solid #cccccc;} -#adminpage .submit{clear:left;} -#adminpage #pluginslist{margin:0;padding:0;} -#adminpage .plugin{display:block;border:1px solid #888888;padding:1em;margin-bottom:5px;clear:left;} -#adminpage .toggleplugin{float:left;margin-right:1em;} -#adminpage table{width:100%;border-bottom:1px solid #111111;margin:5px 0;}#adminpage table th{font-weight:bold;text-align:left;} -#adminpage table td{padding:5px;vertical-align:middle;} -#adminpage table#users{padding:5px;}#adminpage table#users img{width:16px;height:16px;} -#adminpage table#users a{color:#eeeecc;text-decoration:underline;} -#adminpage td .icon{float:left;} -#adminpage .selectall{text-align:right;} -#users .name{color:#eeeecc;} -#users .tools{padding:5px 0;vertical-align:middle;} -.field{overflow:auto;} -.field .onoff{float:right;margin:0 330px 0 auto;width:80px;}.field .onoff a{display:block;border:1px solid #666666;padding:3px 6px 4px 10px;height:16px;text-decoration:none;} -.field .onoff .on,.field .onoff .off{background-image:url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEASABIAAD//gATQ3JlYXRlZCB3aXRoIEdJTVD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT/2wBDAQMEBAUEBQkFBQkUDQsNFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT/wAARCAAUACIDASIAAhEBAxEB/8QAGgABAQACAwAAAAAAAAAAAAAAAAQDBQEGCf/EACgQAAIBAwIFAwUAAAAAAAAAAAECAAMEERIUBRMxUpEhIoEjM1Nxkv/EABcBAAMBAAAAAAAAAAAAAAAAAAABAgT/xAAaEQEAAgMBAAAAAAAAAAAAAAAAAQIRMVES/9oADAMBAAIRAxEAPwD1ERKFNFVaNNVUYACgACcNVt1dEKUwzZwNI9cSDczDVdnuKDjomrPyJOQ2SXNq/L0rTPMzp9vXHWZfo/jT+RNFQV6e2yPt6s/Ms3EWQofhnDqjszWFqzMcljRUknxEn3ES/dup8xxPZ0hXtKFViQzorEDpkiZtqvc3mIkzs40bVe5vMbVe5vMREbrN3xy4t7utSVaZVHZQSDnAP7iIm+K1xpkm09f/2Q==');background-repeat:no-repeat;} -.field .onoff .on{background-position:42px 1px;background-color:#999999;color:#111111;text-align:left;} -.field .onoff .off{background-position:2px 1px;background-color:#cccccc;color:#333333;text-align:right;} -.hidden{display:none !important;} -.field textarea{width:80%;height:100px;} -.field_help{display:block;margin-left:297px;color:#b1b1b1;font-size:small;} -.field.radio .field_help{margin-left:297px;} -.popup{width:100%;height:100%;top:0px;left:0px;position:absolute;display:none;}.popup .background{background-color:#111111;opacity:0.5;width:100%;height:100%;position:absolute;top:0px;left:0px;} -.popup .panel{top:25%;left:25%;width:50%;height:50%;padding:1em;position:absolute;border:4px solid #000000;background-color:white;} -#panel{position:absolute;font-size:small;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;border:1px solid #eeeeee;background-color:#2e302e;color:#eeeecc;padding:1em;z-index:100;} -.pager{margin-top:60px;display:block;clear:both;text-align:center;font-size:small;font-weight:bold;}.pager span{padding:4px;margin:4px;} -.pager_current{background-color:#88a9d2;color:#2e2f2e;} -.grey,.gray{color:gray;} -.orange{color:orange;} -.red{color:red;} -.popup .panel .panel_text{display:block;overflow:auto;height:80%;} -.popup .panel .panel_in{width:100%;height:100%;position:relative;} -.popup .panel .panel_actions{width:100%;bottom:4px;left:0px;position:absolute;} -.panel_text .progress{width:50%;overflow:hidden;height:auto;border:1px solid #cccccc;margin-bottom:5px;}.panel_text .progress span{float:right;display:block;width:25%;background-color:#eeeeee;text-align:right;} -.oauthapp{height:auto;overflow:auto;border-bottom:2px solid #cccccc;padding-bottom:1em;margin-bottom:1em;}.oauthapp img{float:left;width:48px;height:48px;margin:10px;}.oauthapp img.noicon{background-image:url("../../../images/icons/48/plugin.png");background-position:center center;background-repeat:no-repeat;} -.oauthapp a{float:left;} -.iconspacer{display:block;width:16px;height:16px;} -.icon{display:block;width:20px;height:20px;background:transparent url("dark/icons.png") no-repeat;border:0;text-decoration:none;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;}.icon:hover{border:0;text-decoration:none;} -.editicon{display:inline-block;width:21px;height:21px;background:url("dark/editicons.png") no-repeat;border:0;text-decoration:none;} -.shadow{-moz-box-shadow:2px 2px 5px 2px #111111;-o-box-shadow:2px 2px 5px 2px #111111;-webkit-box-shadow:2px 2px 5px 2px #111111;-ms-box-shadow:2px 2px 5px 2px #111111;box-shadow:2px 2px 5px 2px #111111;}.shadow:active,.shadow:focus,.shadow:hover{-moz-box-shadow:0 0 0 0 #111111;-o-box-shadow:0 0 0 0 #111111;-webkit-box-shadow:0 0 0 0 #111111;-ms-box-shadow:0 0 0 0 #111111;box-shadow:0 0 0 0 #111111;} -.editicon:hover{border:0;} -.boldbb{background-position:0px 0px;}.boldbb:hover{background-position:-22px 0px;} -.italicbb{background-position:0px -22px;}.italicbb:hover{background-position:-22px -22px;} -.underlinebb{background-position:0px -44px;}.underlinebb:hover{background-position:-22px -44px;} -.quotebb{background-position:0px -66px;}.quotebb:hover{background-position:-22px -66px;} -.codebb{background-position:0px -88px;}.codebb:hover{background-position:-22px -88px;} -.imagebb{background-position:-44px 0px;}.imagebb:hover{background-position:-66px 0px;} -.urlbb{background-position:-44px -22px;}.urlbb:hover{background-position:-66px -22px;} -.videobb{background-position:-44px -44px;}.videobb:hover{background-position:-66px -44px;} -.icon.drop,.icon.drophide,.icon.delete{float:left;margin:0 2px;} -.icon.s22.delete{display:block;background-position:-110px 0;} -.icon.s22.text{padding:10px 0px 0px 25px;width:200px;} -.icon.text{text-indent:0px;} -.icon.s16{min-width:16px;height:16px;} -.wall-item-delete-wrapper.icon.delete,.wall-item-delete-wrapper.icon.drophide{margin:0;} -.s16 .add{background:url("../../../images/icons/16/add.png") no-repeat;} -.add{margin:0px 5px;} -.article{background-position:-50px 0;} -.audio{background-position:-70px 0;} -.block{background-position:-90px 0px;} -.drop,.delete{background-position:-110px 0;} -.drophide{background-position:-130px 0;} -.edit{background-position:-150px 0;} -.camera{background-position:-170px 0;} -.dislike{background-position:-190px 0;} -.file-as{background-position:-230px -60px;} -.like{background-position:-211px 0;} -.link{background-position:-230px 0;} -.globe,.location{background-position:-50px -20px;} -.noglobe,.nolocation{background-position:-70px -20px;} -.no{background-position:-90px -20px;} -.pause{background-position:-110px -20px;} -.play{background-position:-130px -20px;} -.pencil{background-position:-151px -18px;} -.small-pencil{background-position:-170px -20px;} -.recycle{background-position:-190px -20px;} -.remote-link{background-position:-210px -20px;} -.share{background-position:-230px -20px;} -.tools{background-position:-50px -40px;} -.lock{background-position:-70px -40px;} -.unlock{background-position:-88px -40px;} -.video{background-position:-110px -40px;} -.attach{background-position:-191px -40px;} -.language{background-position:-210px -40px;} -.starred{background-position:-130px -60px;} -.unstarred{background-position:-150px -60px;} -.tagged{background-position:-170px -60px;} -.on{background-position:-50px -60px;} -.off{background-position:-70px -60px;} -.prev{background-position:-90px -60px;} -.next{background-position:-110px -60px;} -.icon.dim{opacity:0.3;} -#pause{position:fixed;bottom:40px;right:30px;z-index:10;} -.border{border:1px solid #babdb6;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;}.border:hover{border:1px solid #babdb6;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;} -.attachtype{display:block;width:20px;height:23px;background-image:url(../../../images/content-types.png);} -.type-video{background-position:0px 0px;} -.type-image{background-position:-20px 0;} -.type-audio{background-position:-40px 0;} -.type-text{background-position:-60px 0px;} -.type-unkn{background-position:-80px 0;} -.cc-license{margin-top:100px;font-size:0.7em;} -footer{display:block;clear:both;text-align:center;} -#sectionfooter{margin:1em 0 1em 0;} -#profile-jot-text{height:20px;color:#eeeecc;background:#2e2f2e;border:1px solid #eeeecc;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;width:99.5%;} -#photo-edit-perms-select,#photos-upload-permissions-wrapper,#profile-jot-acl-wrapper{display:block !important;background:#2e2f2e;color:#eeeecc;} -#profile-jot-acl-wrapper{margin:0 10px;border:1px solid #555753;border-top:0;font-size:small;} -#acl-wrapper{width:660px;margin:0 auto;} -#acl-search{float:right;background:#ffffff url("../../../images/search_18.png") no-repeat right center;padding-right:20px;margin:6px;color:#111111;} -#acl-showall{float:left;display:block;width:auto;height:18px;background:#eeeecc url("../../../images/show_all_off.png") 8px 8px no-repeat;padding:7px 10px 7px 30px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;color:#999999;margin:5px 0;}#acl-showall.selected{color:black;background:#ff9900 url(../../../images/show_all_on.png) 8px 8px no-repeat;} -#acl-list{height:210px;border:1px solid #cccccc;clear:both;margin-top:30px;overflow:auto;} -.acl-list-item{border:1px solid #eeeecc;width:120px;height:110px;display:block;float:left;margin:3px 0 5px 5px;}.acl-list-item img{width:22px;height:22px;float:left;margin:5px 5px 20px;} -.acl-list-item p{height:12px;font-size:10px;margin:0 0 22px;padding:2px 0 1px;} -.acl-list-item a{background:#eeeecc 3px 3px no-repeat;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;width:55px;height:20px;clear:both;font-size:10px;display:block;color:#2e2f2e;margin:5px auto 0;padding:0 3px;text-align:center;vertical-align:middle;} -#acl-wrapper a:hover{text-decoration:none;color:#2e2f2e;border:0;} -.acl-button-show{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAFCAYAAABmWJ3mAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAABxSURBVAiZY/z//z8DDMyaNUuEgYEhk4GBwZ8JJrhv3z5DZmbmMwwMDOoMDAxpLKtWraqTl5d3fPv2rcn///9XpKWlpTIwMDCwfPr0SePWrVtmP378YPn//385zASmf//+Rf/8+XMpIyPj2bS0tHcwCQBWkiq6M5HGDgAAAABJRU5ErkJggg==');margin:0 auto;} -.acl-button-hide{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAACWSURBVAiZBcEhDsIwFAbg/72+VXQ7wPSCIlj8JMlmcKQGgdgRCCfpEz0HjgSDw3IA1AQC1QqSpXwfqeoZwHOaphsAqGpfVVVHIYQNM1+J6MLMOwA9gAOVUhBC6Ky1r7quv03TrMZxzAwAIjKIyCel9JvneQ8ApKprY8zdObfNOXMp5bEsyyDGmJaITt77NwDEGI/W2vYP0nYuQ/Tw9H4AAAAASUVORK5CYII=');margin:0 auto;} -.acl-button-show.selected{background:#9ade00 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAFCAYAAABmWJ3mAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAABXSURBVAiZTcyhDYNQGADh7xEGwGDxhD2qUWxAwIBgE9BdoxO03YaEEX7USzh5l1yKCJl0pBoT+uIhK3zRYk52Az5444w1FijxwoYOTT4UGPHHL9a4crgBhcYSpxKVgzIAAAAASUVORK5CYII=');color:#2e2f2e;} -.acl-button-hide.selected{background:#ff4141 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAACSSURBVAiZBcGhDoJQFAbg/z/3cGliJDOTszmLichGstkMPoTzvfA2N4vN6gMYCGhwMifMTY7fxyCy4zBcCrMjAFRk7p3LWAEzRwYT2StQgMwBrGlmOJCZV72Ok+QpcTyZ1/VHAEBEyiiKHq+2/d6bZgUADMCUIqeR94t338tAns2sVKea/sy2y667AUAgN+pc+gcI6S733PoZRAAAAABJRU5ErkJggg==');color:#2e2f2e;} -.acl-list-item.groupshow{border-color:#9ade00;} -.acl-list-item.grouphide{border-color:#ff4141;} -.acpopup{max-height:175px;max-width:42%;background-color:#555753;color:white;overflow:auto;z-index:100000;border:1px solid #cccccc;} -.acpopupitem{background-color:#555753;padding:4px;clear:left;}.acpopupitem img{float:left;margin-right:4px;} -.acpopupitem.selected{color:#2e302e;background-color:#eeeeee;} -.qcomment-wrapper{padding:0px;margin:5px 5px 5px 81%;} -.qcomment{opacity:0.5;}.qcomment:hover{opacity:1.0;} -#network-star-link{margin-top:10px;} -.network-star{float:left;margin-right:5px;}.network-star.icon.starred{display:inline-block;} -.fileas-ul{padding:0;} -#sidebar-page-list ul{padding:0;margin:5px 0;} -#sidebar-page-list li{list-style:none;} -#jappix_mini{margin-left:130px;position:fixed;bottom:0;right:175px !important;z-index:999;} -@media handheld and screen{body{font-size:15pt;}}@media only screen and (min-device-width:320px) and (max-device-width:480px){body{font-size:12pt;}}@media only screen and (min-width:321px){body{font-size:12pt;}}@media only screen and (max-width:320px){body{font-size:12pt;}}@media only screen and (min-device-width:768px) and (max-device-width:1024px){body{font-size:14pt;}}@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:landscape){body{font-size:14pt;}}@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:portrait){body{font-size:14pt;}}@media only screen and (min-width:1024px){body{font-size:14pt;}}@media only screen and (min-width:1520px){body{font-size:16pt;}}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){body{font-size:14pt;}} diff --git a/view/theme/dispy/dark/style.less b/view/theme/dispy/dark/style.less deleted file mode 100644 index 1304e48c1..000000000 --- a/view/theme/dispy/dark/style.less +++ /dev/null @@ -1,3230 +0,0 @@ -/* - * dispy dark - * Description: Dispy Dark: dark, sleek, functional - * author, maintainer: simon <http://simon.kisikew.org/> - * - * Author's notes: - * A few things of note here. The less file is our working copy, - * and the CSS is *generated* from it. The CSS is the one that's - * included in the HTML, and not the less one. This is to save - * bandwidth and processing time, by not including less.js. - */ - -@import "_base"; - -///* from html5boilerplate */ -///* these are to tell browsers they should be displayed a certain way */ -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -nav, -section { - display: block; -} -audio, -canvas, -video, -time { - display: inline-block; - *display: inline; - *zoom: 1; -} -audio:not([controls]), -[hidden] { - display: none; -} -///* -// * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units -// * 2. Force vertical scrollbar in non-IE -// * 3. Prevent iOS text size adjust on device orientation change, -// * without disabling user zoom: h5bp.com/g -// */ -html { - font-size: 100%; - overflow-y: scroll; - .font_size_adjust; -} -body { - margin: 0; - padding: 0; - .default_font; - color: @main_colour; - background-color: @bg_colour; -} -button, -input, -select, -textarea { - color: @main_colour; - background-color: @bg_colour; -} -select { - .borders(1px, dotted, darken(@main_alt_colour, 60%)); - padding: 1px; - margin: 3px; - color: @main_colour; - background: @bg_colour; - max-width: 85%; - min-width: 85px; -} -option { - padding: 1px; - color: @main_colour; - background: @bg_colour; - &[selected="selected"] { - color: @bg_colour; - background: @main_colour; - } -} -tr:nth-child(even) { - background-color: lighten(@bg_colour, 10%); -} -///* remember to define focus styles! */ -//outline Sets all the outline properties in one declaration -//outline-color Sets the color of an outline color_name,hex_number,rgb_number,invert,inherit -//outline-style Sets the style of an outline dotted,dashed,solid,double,groove,ridge,inset,outset,inherit -//outline-width Sets the width of an outline thin,medium,thick,length,inherit -:focus { - outline: none; -} -a:focus { - outline: invert, dashed, thin; -} -[disabled="disabled"] { - background: @med_bg_colour; - color: @disabled_colour; -} -///* remember to highlight inserts somehow! */ -ins, -mark { - background-color: @bg_alt_colour; - color: @lt_main_colour; -} -ins { - text-decoration: none; -} -mark { - font-style: italic; - font-weight: bold; -} -///* Redeclare monospace font family: h5bp.com/j */ -pre, -code, -kbd, -samp, -.wall-item-body code { - font-family: monospace, monospace; - _font-family: monospace; - font-size: 1em; -} -///* Improve readability of pre-formatted text in all browsers */ -pre, -.wall-item-body code { - .wrap; -} -q { - quotes: none; - &:before, &:after { - content: ""; - content: none; - } -} -em { - font-style: italic; -} -strong { - font-weight: bold; -} -strike { - text-decoration: line-through; -} -small { - font-size: 85%; -} -///* Position subscript and superscript content without affecting -// * line-height: h5bp.com/k */ -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} -sub { - bottom: -0.25em; -} -sup { - top: -0.5em; -} -img { - border: 0 none; -} -a { - color: @link_colour; - text-decoration: none; - margin-bottom: 1px; - &:hover { - color: @hover_colour; - border-bottom: 1px dotted @hover_colour; - } - &:hover img { - text-decoration: none; - } -} -blockquote { - background: darken(@main_alt_colour, 66.5%); - color: @main_colour; - text-indent: 5px; - padding: 5px; - .borders(1px, solid, darken(@main_alt_colour, 33%)); - .rounded_corners; -} -.label () { - width: 38%; - display: inline-block; - font-size: small; - margin: 0 10px 1em 0; - .borders(1px, solid, @bg_colour); - padding: 3px 5px; - background: @main_colour; - color: darken(@main_alt_colour, 86.5%); - .box_shadow(3px, 3px, 5px); -} -label { - .label; -} -input { - .box(250px, 25px); - .borders(1px, solid, darken(@main_alt_colour, 33.5%)); - width: 17em; - &[type="checkbox"], - &[type="radio"] { - .box(15px, 15px); - margin: 0; - } - &[type="radio"] { - margin: 5px 0; - } - &[type="submit"], - &[type="button"] { - background-color: @main_alt_colour; - .borders(2px, outset, darken(@main_alt_colour, 24%)); - .rounded_corners; - .box_shadow(1px, 3px, 4px, 0); - color: @bg_alt_colour; - cursor: pointer; - font-weight: bold; - width: auto; - .text_shadow; - } - &[type="submit"]:active, - &[type="button"]:active { - .box_shadow(0, 0, 0, 0); - } -} -h1, h2, h3, -h4, h5, h6 { - margin: 10px 0px; - font-weight: bold; - border-bottom: 1px solid @hover_colour; -} -h1 { - font-size: x-large; -} -h2 { - font-size: large; -} -h3 { - font-size: medium; -} -h4 { - font-size: small; -} -h5 { - font-size: x-small; -} -h6 { - font-size: xx-small; -} - -// -.required { - display: inline; - color: red; - font-size: 16px; - font-weight: bold; - margin: 3px; -} -.fakelink, .lockview { - color: @link_colour; - cursor: pointer; -} -.fakelink:hover { - color: @hover_colour; -} -.smalltext { - font-size: 0.7em; -} - - -/** - * global - */ -/* .tool .action */ -.action { - margin: 5px 0; -} -.tool { - margin: 5px 0; - list-style: none; -} -#articlemain { - .box(100%, 100%); - margin: 0 auto; -} -.button { - // .box(25%, auto); - // background: @menu_bg_colour; - color: @main_colour; - // .borders(2px, outset, darken(@menu_bg_colour, 20%)); - .rounded_corners; - padding: 5px; - // font-size: smaller; - cursor: pointer; - // &.active { - // .box_shadow(4px, 4px, 7px); - // } - a { - color: @main_colour; - // font-size: smaller; - font-weight: bold; - } -} -#profile-listing-desc { - a { - color: @main_colour; - font-weight: bold; - } -} -[class$="-desc"], -[id$="-desc"] { - color: @main_colour; - background: @bg_colour; - .borders(2px, outset, @dk_main_colour); - .rounded_corners; - // .box_shadow(3px, 3px, 5px); - margin: 3px 10px 7px 0; - padding: 5px; - font-weight: bold; - font-size: smaller; -} -#item-delete-selected-desc { - float: left; - font-size: x-small; - margin-right: 5px; - &:hover { - text-decoration: underline; - } -} -.intro-approve-as-friend-desc { - margin-top: 10px; -} -.intro-desc { - margin-bottom: 20px; - font-weight: bold; -} -#group-edit-desc { - margin: 10px 0px; -} -#settings-nickname-desc { - background: @main_colour; - .rounded_corners; - .borders; - padding: 5px; - color: @bg_colour; -} -.contactname, -.contact-name { - font-weight: bold; - font-size: smaller; -} -.contact-details { - font-style: italic; - font-size: smaller; -} -.like-rotator { - vertical-align: middle; - text-align: center; - margin: 1px; -} - - -/** - * login - */ -#asidemain .field { - overflow: hidden; - width: 200px; -} -#login-extra-links { - overflow: auto !important; - padding-top: 60px !important; - width: 100% !important; - a { - margin-right: 20px; - } -} -#login_standard { - display: block !important; - float: none !important; - height: 100% !important; - position: relative !important; - width: 100% !important; - .field label { - width: 200px !important; - } - input { - margin: 0 0 8px !important; - width: 210px !important; - &[type="text"] { - margin: 0 0 8px !important; - width: 210px !important; } - } -} -#login-submit-wrapper { - margin: 0 !important; -} -#login-submit-button { - margin-left: 0px !important; -} -#asidemain #login_openid { - position: relative !important; - float: none !important; - margin-left: 0px !important; - height: auto !important; - width: 200px !important; -} -#login_openid { - #id_openid_url { - width: 180px !important; - overflow: hidden !important; } - label { - width: 180px !important; - } -} - - -/** - * nav - */ -nav { - height: 60px; - background-color: @dk_bg_colour; - color: @main_alt_colour; - position: relative; - padding: 20px 20px 10px 95px; - a { - text-decoration: none; - color: @main_alt_colour; - border: 0px; - &:hover { - text-decoration: none; - color: @main_alt_colour; - border: 0px; } } - #banner { - display: block; - position: absolute; - left: 51px; - top: 25px; - #logo-text a { - font-size: 40px; - font-weight: bold; - margin-left: 3px; } } -} -#site-location { - font-weight: bold; - font-style: italic; - font-size: small; - width: 30em; - position: relative; - left: -3.5em; - top: 3em; -} -ul#user-menu-popup { - display: none; - position: absolute; - background-color: @menu_bg_colour; - width: 100%; - padding: 10px 0px; - margin: 3px 0 0; - top: 20px; - left: 0; - font-size: small; - line-height: 1; - .rounded_corners(0 0 5px 5px); - .box_shadow(5px, 5px, 10px, 0px); - z-index: 10000; - li { - display: block; - a { - display: block; - padding: 5px; - color: @main_alt_colour; - background-color: @menu_bg_colour; - &:hover { - color: @bg_colour; - background-color: @main_alt_colour; - } - &.nav-sep { - border-top: 1px solid @bg_alt_colour; } } } -} -nav .nav-link { - display: inline-block; - .box(22px, 22px); - overflow: hidden; - margin: 0px 5px 5px; - text-indent: 50px; - background: transparent url(dark/icons.png) 0 0 no-repeat; -} -#nav-admin-link { - background-position: 0 -154px; - &:hover { - background-position: -22px -154px; - } -} -#nav-apps-link { - background-position: 0 -66px; - &:hover { - background-position: -22px -66px; - } -} -#nav-community-link, -#nav-contacts-link { - background-position: 0 -22px; - &:hover { - background-position: -22px -22px; - } -} -#nav-directory-link { - background-position: -44px -154px; - &:hover { - background-position: -66px -154px; - } -} -#nav-help-link { - background-position: 0 -110px; - &:hover { - background-position: -22px -110px; - } -} -#nav-home-link { - background-position: -44px -132px; - &:hover { - background-position: -66px -132px; - } -} -#nav-intro-link { - background-position: 0px -88px; - &:hover { - background-position: -22px -88px; - } -} -#nav-login-link, -#nav-logout-link { - background-position: 0 -88px; - &:hover { - background-position: -22px -88px; - } -} -#nav-manage-link { - background-position: -88px -88px; - &:hover { - background-position: -110px -88px; - } -} -#nav-messages-link { - background-position: -44px -88px; - &:hover { - background-position: -66px -88px; - } -} -#nav-notify-link, -#nav-notifications-linkmenu { - background-position: -44px -110px; -} -#nav-notify-link:hover { - background-position: -66px -110px; -} -#nav-network-link { - background-position: 0px -177px; - &:hover { - background-position: -22px -177px; - } -} -#nav-search-link { - background-position: 0 -44px; - &:hover { - background-position: -22px -44px; - } -} -#jot-title, -#profile-link, -#profile-title, -#profile-attach-wrapper, -#profile-audio, -#profile-link, -#profile-location, -#profile-nolocation, -#profile-title, -#profile-upload-wrapper, -#profile-video, -#profile-jot-submit, -#wall-image-upload, -#wall-file-upload, -#wall-image-upload-div, -#wall-file-upload-div, -.icon, -.hover, -.focus, -.pointer { - cursor: pointer; -} -//* popup notifications */ -div.jGrowl div { - &.notice { - background: @notice url("../../../images/icons/48/notice.png") no-repeat 5px center; - color: white; - padding-left: 58px; - margin-top: 50px; - } - &.info { - background: @info url("../../../images/icons/48/info.png") no-repeat 5px center; - color: white; - padding-left: 58px; - margin-top: 50px; - } - // &.jGrowl-message { - - // } -} -#nav-notifications-menu { - margin: 30px 0 0 -20px; - width: 275px; - max-height: 300px; - overflow-y: auto; - font-size: 9pt; - img { - float: left; - margin-right: 5px; } - .notif-when { - font-size: 0.8em; - display: block; } - li { - word-wrap: normal; - border-bottom: 1px solid black; - &:hover { - color: black; } - } - a:hover { - color: black; - text-decoration: underline; - } -} -nav #nav-notifications-linkmenu { - &.on .icon.s22.notify, - &.selected .icon.s22.notify { - // background-image: url("../../../images/icons/22/notify_on.png"); - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAQAAABuvaSwAAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAAUJcAAFCXAZtv64UAAAHuSURBVCjPbZPbTlNBFIYHLixXRIhEQGNRMUopJAJyAyZ4Z2l8B+XwEBqKtjwOp8oDIAJKIJFUjdFIQCUYrRytdyb0459ht8wG9rrYs9b618y/TsYEH4ZK4qRYYIdDybZOI7TKakIfVhrJ8J2i5IBNyV93/kaaBuv3oV3MgwCTPKGHPkkPA0xRUMBrOgN4AP0o6BseEpF2m3es0qJTFQneyvMhgDsC9tZprnEcGuOPeMcDLUpW3jlLxlDBmJTFY6gLvsVv8tyh9G7U3Z6mwtCuJAoiECSh/w1+8otmTjLqF2KDNsNzRY1bruV0o6rFFtc9S5USh5RRWvAYv4xX9dYPS8ur1oBQC4Y99m2uHriRNda5ErLdU1l3jCI2xdJ3XOYLX6kP2W6K2OF54Et84jN154F31d6ukKOG92pSbcjWLRrbRhVGLTZeOtXqX46LoQSHhJo3jOo3ESrdBQbljIRKNyXUiKHNNSXhTdbZiUzyT/WJ23Zn3BBFy+2u4ZHc1eV2N7EkxAvbbqMRmZOSlbE0g/uajRgl6Iy8r1wpnaFTQ4ji+8XOEsuxYmdDWpJleXJ0+BPdoduL4p5Vavd5IOllmJfiWmSWu6d3pV4jteFWqaAGbLkdKSqtUXXUnN3DSvF8phfy/JfkxfOp9sVb2COz+hY/T0qkwwAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxMS0wOS0xNlQwOTozOTowMCswMjowMC9Oi90AAAAldEVYdGRhdGU6bW9kaWZ5ADIwMTEtMDktMTZUMDk6Mzk6MDArMDI6MDBeEzNhAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAABJRU5ErkJggg=="); - } -} -.show { - display: block; -} -#notifications { - .box(170px, 20px); - font-size: small; - top: -19px; - left: 4px; - position: absolute; -} -#nav-floater { - position: fixed; - top: 20px; - right: 1%; - padding: 5px; - background: @dk_bg_colour; - color: transparent; - .rounded_corners; - z-index: 100; - .box(270px, 60px); -} -#nav-buttons { - clear: both; - list-style: none; - padding: 0px; - margin: 0px; - height: 25px; - > li { - padding: 0; - display: inline-block; - margin: 0px -4px 0px 0px; - } -} -#nav-buttons-2 { - clear: both; - list-style: none; - padding: 0px; - margin: 0px; - left: 136px; - top: -20px; - position: relative; - .box(6em, 25px); - > li { - padding: 0; - display: inline-block; - margin: 0px -4px 0px 0px; - } -} -.floaterflip { - display: block; - position: fixed; - z-index: 110; - top: 56px; - right: 19px; - .box(22px, 22px); - overflow: hidden; - margin: 0px; - background: transparent url(dark/icons.png) -190px -60px no-repeat; -} -.search-box { - display: inline-block; - margin: 5px; - position: fixed; - right: 0px; - bottom: 0px; - z-index: 100; - background: @dk_bg_colour; - .rounded_corners; -} -#search-text, -#mini-search-text { - background: white; - color: @bg_colour; -} -#search-text { - .borders(1px, solid, @main_alt_colour); - margin: 5px 0; -} -#mini-search-text { - font-size: 8pt; - height: 14px; - width: 10em; - margin: 5px; -} -#scrollup { - position: fixed; - right: 5px; - bottom: 40px; - z-index: 100; - a:hover { - text-decoration: none; - border: 0; - } -} -#user-menu { - .box_shadow(5px, 0, 10px, 0); - display: block; - width: 35%; - margin: 5px 0 0 0; - position: relative; - .rounded_corners; - background-color: @menu_bg_colour; - background-image: url("data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEASABIAAD//gATQ3JlYXRlZCB3aXRoIEdJTVD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT/2wBDAQMEBAUEBQkFBQkUDQsNFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT/wAARCAAIAAwDASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAMH/8QAIhAAAQMEAgIDAAAAAAAAAAAAAQIDBAAFBhESIQdBMVFh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgP/xAAXEQEBAQEAAAAAAAAAAAAAAAABAAIR/9oADAMBAAIRAxEAPwCXiHO8dbsEi35BEhIehNlbUhxhBU82O+G9bKgToD2D+VlmZX9OWZBJuAiMxGlni0w0gJCED4HXv7pSi6eFML//2Q=="); - background-position: 98% center; - background-repeat: no-repeat; -/* clear: both;*/ - top: 4px; - left: 7px; - padding: 2px; - > a { - vertical-align: top; - outline: 0 none; - } -} -#user-menu-label { - font-size: small; - padding: 0px 20px 10px 5px; - height: 10px; - display: block; -} -.nav-ajax-update, -.nav-ajax-left { - .box(30px, 19px); - background: transparent url(dark/notifications.png) 0 0 no-repeat; - color: @shadow_colour; - font-weight: bold; - font-size: 0.8em; - padding-top: 0.2em; - text-align: center; - float: left; - margin: 0 -1px 0 3px; - display: block; - visibility: hidden; -} -.nav-ajax-update.show, -.nav-ajax-left.show { - visibility: visible; -} -#net-update { - background-position: 0px 0px; -} -#mail-update { - background-position: -30px 0; -} -#notify-update { - background-position: -60px 0px; -} -#home-update { - background-position: -90px 0px; -} -#intro-update { - background-position: -120px 0px; -} -#lang-select-icon { - cursor: pointer; - position: fixed; - left: 28px; - bottom: 6px; - z-index: 10; -} -#language-selector { - position: fixed; - bottom: 2px; - left: 52px; - z-index: 10; -} -.menu-popup { - position: absolute; - display: none; - // width: 11em; - background: white; - color: @bg_colour; - margin: 0px; - padding: 0px; - font-size: small; - line-height: 1.2; - .borders(3px, solid, @link_colour); - .rounded_corners; - z-index: 100000; - .box_shadow; - a { - display: block; - color: @bg_colour; - padding: 5px 10px; - text-decoration: none; - &:hover { - color: @main_colour; - background-color: @link_colour; - } - } - .menu-sep { - border-top: 1px solid @med_bg_colour; - } - li { - float: none; - overflow: auto; - height: auto; - display: block; - img { - float: left; - .box(16px, 16px); - padding-right: 5px; - } - } - .empty { - padding: 5px; - text-align: center; - color: lighten(@shiny_colour, 45%); - } -} -.notif-item { - font-size: small; - a { - vertical-align: middle; - } -} -.notif-image { - .box(32px, 32px); - padding: 7px 7px 0px 0px; -} -.notify-seen { - background: @disabled_colour; - color: @main_colour; -} -.notify-unseen { - color: @main_colour; -} - - -/** - * sysmsg - */ -#sysmsg_info { - position: fixed; - bottom: 0; - .box_shadow(@main_shadow); - padding: 10px; - background-color: @lt_orange; - .borders(2px, solid, @orange); - border-bottom: 0; - padding-bottom: 50px; - z-index: 1000; -} -#sysmsg { - position: fixed; - bottom: 0; - .box_shadow(@main_shadow); - padding: 10px; - background-color: @lt_orange; - .borders(2px, solid, @orange); - border-bottom: 0; - padding-bottom: 50px; - z-index: 1000; -} -#sysmsg_info br, -#sysmsg br { - display: block; - margin: 2px 0px; - border-top: 1px solid @main_colour; -} - - -/** - * aside - */ -#asidemain { - float: left; - font-size: small; - margin: 1em; - width: 25%; - display: inline; -} -/* for now, disappear these */ -#asideright, #asideleft { - display: none; -} -.vcard { - .fn { - font-size: 1.5em; - font-weight: bold; - border-bottom: 1px solid @hover_colour; - padding-bottom: 3px; - } - #profile-photo-wrapper { - margin: 20px 0; - background-color: @menu_bg_colour; - padding: 5px; - .box(175px, 175px); - .rounded_corners; - .box_shadow(3px, 3px, 10px, 0); - } -} -#asidemain { - h4 { - font-size: 1.2em; } - #viewcontacts { - text-align: right; - } - #contact-block { - width: 99%; - .contact-block-content { - width: 99%; - .contact-block-div { - float: left; - margin: 0 5px 5px 0; - .box(50px, 50px); - padding: 3px; - position: relative; } } } -} -.aprofile dt { - background: @main_colour; - color: @bg_colour; - font-weight: bold; - .box_shadow(3px, 3px, 5px); - .rounded_corners; - margin: 15px 0 5px; - padding-left: 5px; -} -#profile-extra-links ul { - margin-left: 0px; - padding-left: 0px; - list-style: none; -} -#dfrn-request-link { - .rounded_corners; - color: @main_colour; - display: block; - font-size: 1.2em; - padding: 0.2em 0.5em; - background-color: @friendica_blue; - // background-image: url(icons/connect.png); - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAE4SURBVCiRpZKxLgRRFIa//64dKruZFRIlolBviFKiVHsHrRaFikTCC+hEQtRegMQDqDUKJOPOvauSMJmjYEU2M0viT071/+fLOTlHZkadQgjLkh1LPEoj661WKw5mXG034JxtAgtmrJoVK5WZYYCy1AVQSOYbjeSqMmRmQ8v755Ne77lb5w+d4HMNJopCT7X+bwDQZKfTyf4BIAHeawHe+/kQ/FGM+QagvpFl2VSM/tyMmV7PV14AYMQ5nUp0AULIp0HXzpVvSdLYMmNVAjNdAuNAUQHgxy/ZvEQTSMw0A33DxkIIi2ma3gwC9PKSzRWF2wbdpml62DfyPF9yjlNgAnQGLJjZnXON3Xa7ff8NGPbKQPNrbAOI0a9J2ilLEzAL7P0GqJJizF+BUeDhL2cclJnZPvAg6eADf+imKjSMX1wAAAAASUVORK5CYII="); - background-repeat: no-repeat; - background-position: 95% center; -} -#wallmessage-link { - ///*background: #3465A4 url(dark/connect.png) no-repeat 95% center;*/ - ///*border-radius: 5px 5px 5px 5px;*/ - color: @main_alt_colour; - display: block; - font-size: 1.2em; - padding: 0.2em 0.5em; -} -.ttright { - margin: 0px; -} - - -/** - * contacts block - */ -.contact-block-div { - .box(50px, 50px); - float: left; -} -.contact-block-textdiv { - .box(150px, 34px); - float: left; -} - - -/** - * jot - */ -#jot { - margin: 10px 0 20px 0px; - width: 100%; - #jot-tools { - margin: 0px; - padding: 0px; - .box(100%, 35px); - overflow: none; - span { - float: left; - margin: 10px 20px 2px 0px; - a { - display: block; - } - } - .perms { - float: right; - width: 40px; - } - li.loading { - float: right; - background-color: white; - .box(20px, 38px); - vertical-align: center; - text-align: center; - border-top: 2px solid #9eabb0; - img { - margin-top: 10px; - } - } - } - #jot-title { - .borders(1px, solid, darken(@main_alt_colour, 13%)); - margin: 0 0 5px; - .box(90%, 20px); - font-weight: bold; - .rounded_corners; - vertical-align: middle; - } -} -#jot-category { - margin: 5px 0; - .rounded_corners; - .borders(1px, solid, darken(@main_alt_colour, 33%)); - color: darken(@main_alt_colour, 27%); - font-size: smaller; - &:focus { - color: @main_alt_colour; - } -} -#jot #character-counter { - .box(6%, 15px); - float: right; - text-align: right; - line-height: 20px; - padding: 2px 20px 5px 0; -} -#profile-jot-text_parent { - .box_shadow(5px, 0, 10px, 0); -} -#profile-jot-text_tbl { - margin-bottom: 10px; - background: darken(@main_alt_colour, 46.8%); -} -#profile-jot-text_ifr { - width: 99.900002% !important; -} -#profile-jot-text_toolbargroup, .mceCenter tr { - background: darken(@main_alt_colour, 46.8%); -} -[id$="jot-text_ifr"] { - // width: 99.900002% !important; - color: @bg_colour; - background: @main_colour; - .mceContentBody { - color: @bg_colour; - background: @main_colour; - } -} -.defaultSkin { - tr.mceFirst { - background: darken(@main_alt_colour, 46.8%); - } - td { - &.mceFirst, &.mceLast { - background-color: @main_colour; - } - } - span.mceIcon, img.mceIcon, .mceButtonDisabled .mceIcon { - background-color: @main_colour; - } -} -#profile-attach-wrapper, -#profile-audio-wrapper, -#profile-link-wrapper, -#profile-location-wrapper, -#profile-nolocation-wrapper, -#profile-title-wrapper, -#profile-upload-wrapper, -#profile-video-wrapper { - float: left; - margin: 0 20px 0 0; -} -#profile-rotator-wrapper { - float: right; -} -#profile-jot-email-wrapper { - margin: 10px 10% 0; - .borders(1px, solid, @menu_bg_colour); - border-bottom: 0; -} -#profile-jot-email-label { - background-color: @menu_bg_colour; - color: @main_colour; - padding: 5px; -} -#profile-jot-email { - width: 90%; - margin: 5px; -} -#profile-jot-networks { - margin: 0 10%; - border: 1px solid @menu_bg_colour; - border-top: 0; - border-bottom: 0; - padding: 5px; -} -#profile-jot-net { - margin: 5px 0; -} -#jot-preview-link { - margin: 0 0 0 10px; - border: 0; - text-decoration: none; - float: right; -} -.icon-text-preview { - margin: 0 0 -18px 0; - display: block; - .box(20px, 20px); - background: url(dark/icons.png) no-repeat -128px -40px; - border: 0; - text-decoration: none; - float: right; - cursor: pointer; -} -#profile-jot-perms { - float: right; - color: @menu_bg_colour; - .box(20px, 20px); - .rounded_corners; - .box_shadow(3px, 3px, 5px, 0); - .borders(2px, outset, @menu_bg_colour); - overflow: hidden; - margin: 0 10px 0 10px; -} -#profile-jot-plugin-wrapper { - width: 1px; - margin: 10px 0 0 0; - float: right; -} -#profile-jot-submit-wrapper { - float: right; - width: 100%; - margin: 10px 0 0 0; - padding: 0; -} -#profile-jot-submit { - height: auto; - background-color: @menu_bg_colour; - color: @main_alt_colour; - .rounded_corners; - .borders(2px, outset, @shiny_colour); - margin: 0; - float: right; - .text_shadow; - width: auto; - &:active { - .box_shadow(0, 0, 0, 0); - } -} -#jot-perms-icon { - .box(22px, 22px); - .rounded_corners; - overflow: hidden; - background: @menu_bg_colour url("dark/icons.png") -88px -40px; -} -#group_allow_wrapper, -#group_deny_wrapper, -#acl-permit-outer-wrapper, -#contact_allow_wrapper, -#contact_deny_wrapper, -#acl-deny-outer-wrapper { - width: 47%; -} -#group_allow_wrapper, -#group_deny_wrapper, -#acl-permit-outer-wrapper { - float: left; -} -#contact_allow_wrapper, -#contact_deny_wrapper, -#acl-deny-outer-wrapper { - float: right; -} -#acl-permit-text { - background-color: darken(@main_alt_colour, 60%); - color: @main_colour; - padding: 5px; - float: left; -} -#jot-public { - background-color: darken(@main_alt_colour, 60%); - color: @alert; - padding: 5px; - float: left; -} -#acl-deny-text { - background-color: darken(@main_alt_colour, 60%); - color: @main_colour; - padding: 5px; - float: left; -} -#jot-title-desc { - color: darken(@main_alt_colour, 13%); -} -#profile-jot-desc { - background: @bg_colour; - .borders; - .rounded_corners; - color: @red_orange; - margin: 5px 0; -} -#jot-title-wrapper { - margin-bottom: 5px; -} -#jot-title-display { - font-weight: bold; -} -.jothidden { - display: none; -} -#jot-preview-content { - background-color: @shiny_colour; - color: @main_colour; - .borders(1px, solid, @bg_colour); - .rounded_corners; - .box_shadow(5px, 0, 10px); - padding: 3px 3px 6px 10px; - .wall-item-outside-wrapper { - border: 0; - .rounded_corners(0px 0px 0px 0px); - .box_shadow(0, 0, 0, 0); - } -} - - -/** - * section - */ -#sectionmain { - margin: 1em; - font-size: 0.8em; - min-width: 475px; - width: 69%; - float: left; - display: inline; -} - - -/** - * tabs - */ -.tabs { - .list_reset; - margin: 10px 0; - li { - display: inline; - font-size: smaller; - } -} -.multibutton () { - .borders(1px, solid, @hover_colour); - padding: 4px; - .rounded_corners; - &:active, - &:hover { - background: @shiny_colour; - color: @main_colour; - .borders(1px, solid, @hover_colour); - } - a { - border: 0; - text-decoration: none; - } -} -.multibutton_active () { - background: @main_colour; - color: @bg_colour; - .borders(1px, solid, @hover_colour); - padding: 4px; - .rounded_corners; - &:hover { - background: @shiny_colour; - color: @main_colour; - .borders(1px, solid, @hover_colour); - } - a { - color: @bg_colour; - text-decoration: none; - } -} -.tab { - .multibutton; -} -.tab { - &.active { - .multibutton_active; - } -} - - -/** - * items - */ -.wall-item-outside-wrapper { - .borders(1px, solid, darken(@main_alt_colour, 27%)); - .rounded_corners; - .box_shadow(6px, 1px, 10px, -2px);//@lt_shadow_colour - &.comment { - margin-top: 5px; - } -} -.wall-item-content-wrapper { - position: relative; - padding: 0.75em; - width: auto; -} -.wall-item-outside-wrapper .wall-item-comment-wrapper { - /*margin-left: 90px;*/ - .preview { - border: 0; - .rounded_corners(0px); - } -} -.shiny { - background: @shiny_colour; - .rounded_corners; -} -.wall-outside-wrapper .shiny { - .rounded_corners; -} -.heart { - color: red; -} -.wall-item-content { - overflow-x: auto; - margin: 0px 4em 1em 5px; -} -[id^="thread-wrapper"], -[class^="thread-wrapper"] { - margin: 1.2em 0 0 0; - padding: 0px; -} -.wall-item-photo-menu { - display: none; -} -.wall-item-photo-menu-button { - display: none; - text-indent: -99999px; - background: @menu_bg_colour url(dark/menu-user-pin.jpg) no-repeat 75px center; - position: absolute; - overflow: hidden; - .box(90px, 20px); - top: 85px; - left: 0; - .rounded_corners(0 0 5px 5px); -} -.wall-item-info { - float: left; - width: 7em; - position: relative; -} -.wall-item-photo-wrapper { - .box(80px, 80px); - position: relative; - padding: 5px; - background-color: @menu_bg_colour; - .rounded_corners; -} -[class^="wall-item-tools"] * { - /*margin: 0 0 5px 0;*/ - > * { - /*margin: 0 0 5px 0;*/ - } -} -.wall-item-tools { - float: right; - opacity: 0.4; - .transition; - &:hover { - opacity: 1; - .transition; - } -} -.wall-item-subtools1 { - .box(30px, 30px); - list-style: none outside none; - margin: 18px 0 30px -20px; - padding: 0; -} -.wall-item-subtools2 { - .box(25px, 25px); - list-style: none outside none; - margin: -78px 0 0 5px; - padding: 0; -} -.wall-item-title { - font-size: 1.2em; - font-weight: bold; - margin-bottom: 1.4em; -} -.wall-item-body { - margin: 1em; - text-align: left; - overflow-x: auto; -} -.wall-item-lock-wrapper { - float: right; - .box(22px, 22px); - margin: 0 -5px 0 0; - opacity: 1; -} -.wall-item-dislike, -.wall-item-like { - clear: left; - font-size: 0.8em; - color: lighten(@menu_bg_colour, 20%); - margin: 5px 0 5px 10.2em; - .transition; - opacity: 0.5; - &:hover { - opacity: 1; - } -} -.wall-item-author, -.wall-item-actions-author, -.wall-item-ago { - color: @main_colour; - line-height: 1; - display: inline-block; - font-size: x-small; - margin: 0.5em auto; - font-weight: bold; -} -.comment-edit-preview { - width: auto; - margin: auto auto auto -2em; - &.wall-item-author, - &.wall-item-actions-author, - &.wall-item-ago { - font-size: smaller; - } -} -.wall-item-location { - margin-top: 2em; - width: 6em; - overflow: hidden; - .text_overflow; - .icon { - float: left; - } - > a, - .smalltext { - margin-left: 25px; - font-size: 0.7em; - display: block; - } - > br { - display: none; - } -} -.wallwall { - .wwto { - left: 5px; - margin: 0; - position: absolute; - top: 75px; - z-index: 10001; - .box(30px, 30px); - img { - width: 30px !important; - height: 30px !important; - } - } - .wall-item-photo-end { - clear: both; - } -} -.wall-item-arrowphoto-wrapper { - position: absolute; - left: 35px; - top: 80px; - z-index: 10002; -} -.wall-item-photo-menu { - min-width: 92px; - font-size: 0.75em; - .borders(2px, solid, @menu_bg_colour); - border-top: 0px; - background: @menu_bg_colour; - position: absolute; - left: -2px; - top: 101px; - display: none; - z-index: 10003; - .rounded_corners(0 5px 5px 5px); - li a { - white-space: nowrap; - display: block; - padding: 5px 6px; - color: @main_alt_colour; - &:hover { - color: @menu_bg_colour; - background: @main_alt_colour; - } - } -} -#connect-services-header, -#extra-help-header { - margin: 1.5em 0 0 0; -} -#connect-services, -#extra-help { - .list_reset; - margin: 1em 0 0 0; - li { - display: inline; - } -} - - -/** - * comment - */ -.ccollapse-wrapper { - font-size: 0.9em; - margin-left: 5em; -} -.hide-comments-outer { - font-size: small; -} -.wall-item-outside-wrapper.comment { - margin-left: 5em; - .wall-item-info { - width: 5em; - } - .wall-item-photo { - width: 40px !important; - height: 40px !important; - } - .wall-item-photo-wrapper { - .box(40px, 40px); - } - .wall-item-photo-menu-button { - width: 3.35em; - top: 3.2em; - background-position: 35px center; - } - .wall-item-author { - margin-left: 0.2em; - } - .wall-item-photo-menu { - min-width: 4.5em; - top: 5.5em; - } -} -.comment-wwedit-wrapper { - .borders(1px, solid, @main_colour); - .rounded_corners; - margin: 5px; -} -.comment-edit-wrapper { - border-top: 1px #aaa solid; -} -[class^="comment-edit-bb"] { - .list_reset; - display: none; - margin: -40px 0 5px 60px; - width: 75%; - > li { - display: inline-block; - margin: 0 10px 0 0; - visibility: none; - } -} -.comment-wwedit-wrapper img, -.comment-edit-wrapper img { - .box; -} -.comment-edit-photo-link, -.comment-edit-photo { - margin-left: 10px; -} -.my-comment-photo { - .box(40px, 40px); - padding: 5px; -} -[class^="comment-edit-text"] { - margin: 5px 0 10px 20px; - width: 94%; -} -.comment-edit-text-empty { - height: 20px; - .med_borders; - .rounded_corners; - color: @med_border_colour; - .transition; - &:hover { - color: darken(@main_alt_colour, 33.5%); - } -} -.comment-edit-text-full { - height: 10em; - .rounded_corners; - .transition; -} -.comment-edit-submit-wrapper { - width: 90%; - margin: 5px 5px 10px 50px; - text-align: right; -} -.comment-edit-submit { - height: 22px; - background-color: @menu_bg_colour; - color: @main_alt_colour; - .rounded_corners; - border: 0; -} - - -/** - * item text style - */ -.wall-item-body code { - background-color: darken(@main_alt_colour, 66.5%); - border-bottom: 1px dashed darken(@main_alt_colour, 13.5%); - border-left: 5px solid darken(@main_alt_colour, 13.5%); - border-top: 1px dashed darken(@main_alt_colour, 13.5%); - color: @main_colour; - display: block; - overflow-x: auto; - padding: 5px 0 15px 10px; - width: 95%; - a { - color: @lt_link_colour; - } -} - - -/** - * profile - */ -div { - &[id$="text"] { - font-weight: bold; - border-bottom: 1px solid darken(@main_alt_colour, 13.5%); - } - &[id$="wrapper"] { - height: 100%; - br { - clear: left; - } - } -} -.profile-match-wrapper { - float: left; - margin: 0 5px 40px 0; - .box(120px, 120px); - padding: 3px; - position: relative; -} -.icon.drophide.profile-match-ignore { - margin: 0 6px 0 -3px; -} -.profile-match-photo { - -} -[id$="-end"], [class$="-end"] { - clear: both; - margin: 0 0 10px 0; -} -.profile-match-end { - margin: 0 0 5px 0; -} -.profile-match-name { - font-weight: bold; - margin: auto auto auto 23px; -} -.profile-match-connect { - font-style: italic; - margin: auto auto auto 23px; -} -#advanced-profile-with { - margin-left: 200px; -} - - -/** - * photos - */ -.photos { - height: auto; - overflow: auto; -} -#photo-top-links { - margin-bottom: 30px; -} -.photo-album-image-wrapper, -.photo-top-image-wrapper { - float: left; - .box_shadow(3px, 3px, 10px, 0); - background-color: darken(@main_alt_colour, 80%); - color: @bg_colour; - .rounded_corners; - padding-bottom: 30px; - position: relative; - margin: 0 10px 10px 0; -} -#photo-photo { - margin: auto auto 5em 20%; - img { - max-width: 50%; - } -} -.photo-top-image-wrapper a:hover, -#photo-photo a:hover, -.photo-album-image-wrapper a:hover { - border-bottom: 0; -} -.photo-top-photo, -.photo-album-photo { - .rounded_corners(5px 5px 0 0); -} -.photo-top-album-name, -.caption { - position: absolute; - bottom: 0; - padding: 0 5px; -} -#photo-prev-link, -#photo-next-link { - position: absolute; - // .box(30%, 100%); - .box(50px, 200px); - background: white center center no-repeat; - opacity: 0; - .transition(all, 0.5s); - z-index: 10; - top: 15em; - .rounded_corners; - &:hover { - opacity: 0.6; - .transition(all, 0.5s); - } - .icon { - display: none; - } -} -#photo-prev-link { - // background-image: url(dark/prev.png); - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAnCAMAAADTjiM/AAAAA3NCSVQICAjb4U/gAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAALpQTFRF////AAAAQEBAZmZmVVVVSUlJTU1NXV1dVVVVTk5OW1tbWlpaWFhPWFhQU1pTVVVVVlZSVVlRVlZTVFdUVFdUVVdTVFZSVldUVldSVldSVldTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVZUVVdTVVdTVVhSVVdTVVdTVVhSVVdTVVdTVVhSVVdTVVdTVVdTVVdTVVdTVVdTVVhTVVdTVVdTVVdTVVdT3XYY/AAAAD10Uk5TAAEEBQYHCgsMDQ4RHSAlP0FFR1hee3+JnqSqq6ytrq+wsbKztLW2t7y9vr/AwcLDxMXGx8jU1dng7O/3+TmOwVsAAADASURBVCjPddPXEoIwEAXQINh7Q8WKYu+95v9/S0dxZxNy83hgMpvdu0Jox642r25GVxGfys+5540sZV3jyY/lWeVxyDLg7AR/lhXOI+KZZeRFgvGQeMnY9olXScYD4jXnPvHGzNsU4x7xjnGsa+YO8T7NnukRHzgXiY/KNKiUkzqkZ8ivnDoKD/xfBvdbbXM9sH70Xtgf2E/YfzgvOF+YB5gf5cPcAfmsgTy3QP5vYF8akf36XvXIRhZPlPyLWxBvNENWsZXDKukAAAAASUVORK5CYII="); - left: 5%; -} -#photo-next-link { - // background-image: url(dark/next.png); - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAnCAMAAADTjiM/AAAAA3NCSVQICAjb4U/gAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAKVQTFRF////gICAQEBAZmZmVVVVSUlJYGBgVVVVTU1NXV1dVVVVWVlZU1hTVlZSVlZTVlZTVVlRVVhSVFdUVlhTVVdTVFZTVVdTVldTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVhSVVdTVVdTVVdTVVdTVVdTVVdTVVdTVVdTVVdT8E3YQQAAADZ0Uk5TAAIEBQYHCAkKCwwUN0FER0hOW2uNjqWqq6ytrq+wsbKztLW2t7i5uru8vb6/wMHCxcjT3PP3B0dhfwAAANlJREFUKM910+cSgjAQRtEIomAXu4iIYge7ef9Hs+ZzN4b9eW4mk1kGIaqdU9wQf2Nf5XPSiu4d+Z6jp/n54/KghZ40h5ZymbFQGCCkLg3WKC+MEfYs2AHCrszCBGHLQ5gXpggbFooRwrrEwgxhxUOcE5w5wtJiYYHQZjt0EuUhX3r19vU7Y++ozgeMD7i/buYhYTcDj8gz3RQ8prwHB/aPyzvwhPLWzBtwSLi0Bk8pr8BR0cgzwiIycw0cUxZ9xXOH7VZ9vAVn4X840Vh4F9Pp1w/gZ92mpesDuLpM+1blc68AAAAASUVORK5CYII="); - left: 50%; -} -#photo-prev-link a, -#photo-next-link a { - display: block; - .box(100%, 100%); - .rounded_corners; - overflow: hidden; - text-indent: -900000px; -} -#photos-upload-spacer, -#photos-upload-new-wrapper, -#photos-upload-exist-wrapper { - margin-bottom: 1em; -} -#photos-upload-existing-album-text, -#photos-upload-newalbum-div { - background-color: @menu_bg_colour; - color: @main_alt_colour; - padding: 1px; -} -#photos-upload-album-select, -#photos-upload-newalbum { - width: 99%; -} -#photos-upload-perms-menu { - text-align: right; -} -#photo-edit-caption, -#photo-edit-newtag, -#photo-edit-albumname { - -} -#photo-edit-link-wrap { - margin-bottom: 15px; -} -#photo-edit-caption, -#photo-edit-newtag { - -} -#photo-edit-perms { - width: auto; -} -#photo-edit-rotate-label { - .label; -} -#photo-like-div { - float: left; - margin: auto 0 0; - width: 2em; - .rounded_corners; - .borders; -} -.wall-item-like-buttons { - > * { - display: inline; - } -} -#photo-edit-delete-button { - margin: auto auto auto 1em; -} -#photo-edit-end { - margin-bottom: 35px; -} -#photo-caption { - font-size: 110%; - font-weight: bold; - margin-top: 15px; - margin-bottom: 15px; -} -#wall-photo-container { - margin: 0 auto 1em 4em; - width: 90%; -} - - -/** - * message - */ -.prvmail-text { - width: 100%; -} -#prvmail-subject { - width: 100%; - color: @bg_colour; - background: @main_colour; -} -#prvmail-submit-wrapper { - margin-top: 10px; -} -#prvmail-submit { - float: right; - margin-top: 0; -} -#prvmail-submit-wrapper div { - margin-right: 5px; - float: left; -} -.mail-list-outside-wrapper { - margin-top: 20px; -} -.mail-list-sender { - float: left; -} -.mail-list-detail { - margin-left: 90px; -} -.mail-list-sender-name { - display: inline; - font-size: 1.1em; -} -.mail-list-date { - display: inline; - font-size: 0.9em; - padding-left: 10px; -} -.mail-list-sender-name, -.mail-list-date { - font-style: italic; -} -.mail-list-subject { - font-size: 1.2em; -} -.mail-list-delete-wrapper { - float: right; -} -.mail-list-outside-wrapper-end { - clear: both; - border-bottom: 1px @main_colour dotted; -} -.mail-conv-sender { - float: left; - margin: 0px 5px 5px 0px; -} -.mail-conv-sender-photo { - .box(32px, 32px) -} -.mail-conv-sender-name { - float: left; -} -.mail-conv-date { - float: right; -} -.mail-conv-subject { - clear: right; - font-weight: bold; - font-size: 1.2em; -} -.mail-conv-body { - clear: both; -} -.mail-conv-delete-wrapper { - margin-top: 5px; -} - - -/** - * contacts - */ -.view-contact-wrapper, -.contact-entry-wrapper { - float: left; - margin: 0 5px 40px 0; - .box(120px, 135px); - padding: 3px; - position: relative; -} -.contact-direction-wrapper { - position: absolute; - top: 20px; -} -.contact-edit-links { - position: absolute; - top: 60px; -} -.contact-entry-photo-wrapper {} -.contact-entry-photo { - margin-left: 20px; -} -.contact-entry-name { - width: 120px; - font-weight: bold; - font-size: small; -} -.contact-entry-details { - font-size: x-small; -} -.contact-entry-photo { - position: relative; -} -.contact-entry-edit-links .icon { - .borders(1px, solid, #babdb6); - .rounded_corners(3px); - background-color: white; -} -#contact-entry-url, -[id^="contact-entry-url"], -#contact-entry-network, -[id^="contact-entry-network"] { - font-size: smaller; -} -#contact-entry-network, -[id^="contact-entry-network"] { - font-style: italic; -} -#contact-edit-banner-name { - font-size: 1.5em; -} - -#contact-edit-photo-wrapper { - position: relative; - float: left; - padding: 20px; -} -#contact-edit-direction-icon { - position: absolute; - top: 60px; - left: 0; -} -#contact-edit-nav-wrapper { - margin-left: 0px; -} -#contact-edit-links { - margin-top: 23px; -} -#contact-drop-links { - margin-left: 5px; -} -#contact-edit-nav-wrapper .icon { - .borders(1px, solid, #babdb6); - .rounded_corners(3px); -} -#contact-edit-poll-wrapper { - margin-left: 0px; -} -#contact-edit-last-update-text { - margin-bottom: 15px; -} -#contact-edit-last-updated { - font-weight: bold; -} -#contact-edit-poll-text { - display: inline; -} -#contact-edit-end { - clear: both; - margin-bottom: 65px; -} -.contact-photo-menu-button { - position: absolute; - background: url("dark/photo-menu.jpg") top left no-repeat transparent; - margin: 0px; - padding: 0px; - .box(16px, 16px); - top: 64px; - left: 0px; - overflow: hidden; - text-indent: 40px; - display: none; -} -.contact-photo-menu { - width: auto; - .borders(2px, solid, @link_colour); - background: @bg_colour; - color: @main_colour; - position: absolute; - font-size: smaller; - .rounded_corners; - left: 0px; - top: 90px; - display: none; - z-index: 10000; - li a { - display: block; - padding: 4px; - color: @link_colour; - background: @main_colour; - line-height: 1; - &:hover { - background: @link_colour; - color: @main_colour; - text-decoration: none; - } - } -} - - -/** - * register, settings & profile forms - */ -.openid {} -#id_openid_url { - background: url(dark/login-bg.gif) no-repeat; - background-position: 0 50%; - padding-left: 18px; -} -#settings-default-perms { - margin-bottom: 20px; -} -#register-form div, #profile-edit-form div { - clear: both; -} -.settings-block { - label { - clear: left; - } - input { - margin: 10px 5px; - } -} -#register-form label, -#profile-edit-form label { - width: 23em; -} -#register-form span, -#profile-edit-form span { - color: @menu_bg_colour; - display: inline-block; - margin-bottom: 20px; -} -#profile-edit-marital-label span { - margin: -4px; -} -.settings-submit-wrapper, -.profile-edit-submit-wrapper { - margin: 0 0 30px; -} -.profile-edit-side-div { - display: none; -} -#profiles-menu-trigger { - margin: 0px 0px 0px 25px; -} -.profile-listing { - float: left; - margin: 20px 20px 0px 0px; -} -.icon-profile-edit { - background: url("dark/icons.png") -150px 0px no-repeat; - border: 0; - cursor: pointer; - display: block; - .box(20px, 20px); - margin: 0 0 -18px; - text-decoration: none; - top: 113px; - right: 260px; -} -#profile-edit-links ul { - .list_reset; - margin: 20px 0; -} -.marital { - margin-top: 5px; -} -#register-sitename { - display: inline; - font-weight: bold; -} -#advanced-expire-popup { - background: @bg_colour; - color: @main_colour; -} -#id_ssl_policy { - width: 374px; -} -#theme-preview img { - margin: 10px 10px 10px 288px; -} - - -/** - * contacts selector - */ -.group-delete-wrapper { - margin: -31px 50px 0 0; - float: right; -} -/*.group-delete-icon { - margin: 0 0 0 10px; -}*/ -#group-edit-submit-wrapper { - margin: 0 0 10px 0; - display: inline; -} -#group-members, #prof-members { - height: 200px; - overflow: auto; - .borders(1px, solid, @menu_bg_colour); - .rounded_corners(5px 5px 0 0); -} -#group-all-contacts, #prof-all-contacts { - height: 200px; - overflow: auto; - .borders(1px, solid, @menu_bg_colour); - .rounded_corners(0 0 5px 5px); -} -#group-members h3, -#group-all-contacts h3, -#prof-members h3, -#prof-all-contacts h3 { - color: @main_alt_colour; - background-color: @menu_bg_colour; - margin: 0; - padding: 5px; -} -#group-separator, #prof-separator { - display: none; -} - - -/** - * profile - */ -#cropimage-wrapper { - float: left; -} -#crop-image-form { - clear: both; -} - - -/** - * intros - */ -.intro-wrapper { - margin-top: 20px; -} -.intro-fullname { - font-size: 1.1em; - font-weight: bold; -} -.intro-note { - padding: 10px; -} -.intro-end { - padding: 30px; -} -.intro-form { - float: left; -} -.intro-approve-form { - clear: both; -} -.intro-submit-approve, -.intro-submit-ignore { - margin-right: 20px; -} -.intro-submit-approve { - margin-top: 15px; -} -.intro-approve-as-friend-label, -.intro-approve-as-fan-label, -.intro-approve-as-friend, -.intro-approve-as-fan { - float: left; -} -.intro-form-end { - clear: both; - margin-bottom: 10px; -} -.intro-approve-as-end { - clear: both; - margin-bottom: 10px; -} -.clear { - clear: both; -} - - -/** - * events - */ -.eventcal { - float: left; - font-size: 20px; -} -.event { - background: @bg_colour; -} -.vevent { - border: 1px solid darken(@main_alt_colour, 13.5%); - .event-description, - .event-location, - .event-start { - margin-left: 10px; - margin-right: 10px; - } -} -#new-event-link { - margin-bottom: 10px; -} -.edit-event-link, -.plink-event-link { - /*float: left; */ - /*margin-top: 4px; */ - /*margin-right: 4px;*/ - /*margin-bottom: 15px;*/ -} -.event-description:before { - content: url('../../../images/calendar.png'); - margin-right: 15px; -} -.event-start, -.event-end { - margin-left: 10px; - width: 330px; - font-size: smaller; -} -.event-start .dtstart, -.event-end .dtend { - float: right; -} -.event-list-date { - margin-bottom: 10px; -} -.prevcal, .nextcal { - float: left; - margin: 64px 32px auto 32px; -} -.calendar { - font-family: monospace; -} -.today { - font-weight: bold; - color: red; -} -#event-start-text, -#event-finish-text { - margin-top: 10px; - margin-bottom: 5px; -} -#event-nofinish-checkbox, -#event-nofinish-text, -#event-adjust-checkbox, -#event-adjust-text, -#event-share-checkbox { - float: left; -} -#event-datetime-break { - margin-bottom: 10px; -} -#event-nofinish-break, -#event-adjust-break, -#event-share-break { - clear: both; -} -#event-desc-text, -#event-location-text { - margin-top: 10px; - margin-bottom: 5px; -} -#event-submit { - margin-top: 10px; -} -.body-tag { - margin: 10px 0; - opacity: 0.5; - &:hover { - opacity: 1.0 !important; - } -} -.filesavetags, -.categorytags { - margin: 20px 0; - opacity: 0.5; -} -.filesavetags:hover, -.categorytags:hover { - margin: 20px 0; - opacity: 1.0 !important; -} -.item-select { - opacity: 0.1; - margin: 5px 0 0 6px !important; - &:hover { - opacity: 1; - } -} -.checkeditem { - opacity: 1; -} -#item-delete-selected { - margin: 3em 5px; - position: relative; - left: 4em; - width: 15em; - overflow: auto; -} -#item-delete-selected-icon { - float: left; - margin: 11px 5px; -} -.fc-state-highlight { - background: @main_colour; - color: @bg_colour; -} - - -/** - * directory - */ -.directory-item { - float: left; - margin: 0 5px 4px 0; - padding: 3px; - width: 180px; - height: 250px; - position: relative; -} - - -/** - * sidebar - */ -#group-sidebar { - margin-bottom: 10px; -} -.categories-selected, -.group-selected, -.nets-selected, -.fileas-selected { - // padding: 4px; - color: @bg_colour; - // background: @main_colour; - // .borders(1px, solid, @link_colour); - .multibutton_active; -} -.categories-selected:hover, -.group-selected:hover, -.nets-selected:hover, -.fileas-selected:hover { -// padding: 4px; - // color: @bg_colour; -// background: @bg_colour; -// .borders(1px, solid, @link_colour); -} -.groupsideedit { - margin-right: 10px; -} -#sidebar-group-ul { - padding-left: 0; -} -#sidebar-group-list { - margin: 0 0 5px 0; - li { - margin-top: 10px; - } - .icon { - display: inline-block; - .box(12px, 12px); - } -} -.sidebar-group-element { - .multibutton; - .rounded_corners; -} -#sidebar-new-group { - margin: auto; - display: inline-block; - color: @main_alt_colour; - text-decoration: none; - text-align: center; -} -#peoplefind-sidebar form { - margin-bottom: 10px; -} -#sidebar-new-group { - &:hover { - /*background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) );*/ - /*background: -moz-linear-gradient( center top, #b20202 5%, #d60808 100% );*/ - /*background-color: #b20202;*/ - } - &:active { - position: relative; - top: 1px; - } -} -#side-peoplefind-url { - .borders(1px, solid, darken(@main_alt_colour, 33.5%)); - margin-right: 3px; - width: 75%; -} -.categories-ul, -.nets-ul { - .list_reset; - li { - margin: 10px 0 0; - } -} -.categories-link, -.nets-link, -.nets-all { - .multibutton; - .rounded_corners; - margin-left: 0px; -} -#netsearch-box { - margin: 20px 0px 30px; - width: 135px; - #search-submit { - margin: 5px 5px 0px 0px; - } -} - - -/** - * admin - */ -#pending-update { - float: right; - color: white; - font-weight: bold; - background-color: red; - padding: 0 0.3em; -} -.admin { - &.linklist { - border: 0; - padding: 0; - } - &.link { - .list_reset; - } -} -#adminpage { - color: @main_colour; - background: @bg_colour; - margin: 5px; - padding: 10px; - font-size: smaller; - dl { - clear: left; - margin-bottom: 2px; - padding-bottom: 2px; - border-bottom: 1px solid @shadow_colour; - } - dt { - width: 250px; - float: left; - font-weight: bold; - } - dd { - margin-left: 250px; - } - h3 { - border-bottom: 1px solid darken(@main_alt_colour, 13.5%); - } - .submit { - clear: left; - } - #pluginslist { - margin: 0; - padding: 0; - } - .plugin { - display: block; - .borders(1px, solid, darken(@main_alt_colour, 40%)); - padding: 1em; - margin-bottom: 5px; - clear: left; - } - .toggleplugin { - float: left; - margin-right: 1em; - } - table { - width: 100%; - border-bottom: 1px solid @shadow_colour; - margin: 5px 0; - th { - font-weight: bold; - text-align: left; - } - td { - padding: 5px; - vertical-align: middle; - } - &#users { - padding: 5px; - img { - .box(16px, 16px); - } - a { - color: @main_colour; - text-decoration: underline; - } - } - } - td .icon { - float: left; - } - .selectall { - text-align: right; - } -} -#users .name { - color: @main_colour; -} -#users .tools { - padding: 5px 0; - vertical-align: middle; -} - - -/** - * form fields - */ -.field { - overflow: auto; -} -.field .onoff { - float: right; - margin: 0 330px 0 auto; - width: 80px; - a { - display: block; - .borders(1px, solid, darken(@main_alt_colour, 53.5%)); - padding: 3px 6px 4px 10px; - height: 16px; - text-decoration: none; - } - .on, .off { - background-image: url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEASABIAAD//gATQ3JlYXRlZCB3aXRoIEdJTVD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT/2wBDAQMEBAUEBQkFBQkUDQsNFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT/wAARCAAUACIDASIAAhEBAxEB/8QAGgABAQACAwAAAAAAAAAAAAAAAAQDBQEGCf/EACgQAAIBAwIFAwUAAAAAAAAAAAECAAMEERIUBRMxUpEhIoEjM1Nxkv/EABcBAAMBAAAAAAAAAAAAAAAAAAABAgT/xAAaEQEAAgMBAAAAAAAAAAAAAAAAAQIRMVES/9oADAMBAAIRAxEAPwD1ERKFNFVaNNVUYACgACcNVt1dEKUwzZwNI9cSDczDVdnuKDjomrPyJOQ2SXNq/L0rTPMzp9vXHWZfo/jT+RNFQV6e2yPt6s/Ms3EWQofhnDqjszWFqzMcljRUknxEn3ES/dup8xxPZ0hXtKFViQzorEDpkiZtqvc3mIkzs40bVe5vMbVe5vMREbrN3xy4t7utSVaZVHZQSDnAP7iIm+K1xpkm09f/2Q=='); - background-repeat: no-repeat; - } - .on { - background-position: 42px 1px; - background-color: darken(@main_alt_colour, 33.5%); - color: darken(@main_alt_colour, 86.5%); - text-align: left; - } - .off { - background-position: 2px 1px; - background-color: darken(@main_alt_colour, 13.5%); - color: darken(@main_alt_colour, 73.5%); - text-align: right; - } -} -.hidden { - display: none !important; -} -.field textarea { - .box(80%, 100px); -} -.field_help { - display: block; - margin-left: 297px; - color: darken(@main_alt_colour, 24%); - font-size: small; -} -.field.radio .field_help { - margin-left: 297px; -} - - -/* - * update - */ -.popup { - .box(100%, 100%); - top: 0px; - left: 0px; - position: absolute; - display: none; - .background { - background-color: darken(@main_alt_colour, 86.5%); - opacity: 0.5; - .box(100%, 100%); - position: absolute; - top: 0px; - left: 0px; - } - .panel { - top: 25%; - left: 25%; - .box(50%, 50%); - padding: 1em; - position: absolute; - .borders(4px, solid, black); - background-color: white; - } -} -#panel { - position: absolute; - font-size: small; - .rounded_corners; - .borders(1px, solid, @main_alt_colour); - background-color: @bg_alt_colour; - color: @main_colour; - padding: 1em; - z-index: 100; -} -.pager { - margin-top: 60px; - display: block; - clear: both; - text-align: center; - font-size: small; - font-weight: bold; - span { - padding: 4px; - margin: 4px; - } -} -.pager_current { - background-color: @link_colour; - color: @bg_colour; -} -.grey, -.gray { - color: gray; -} -.orange { - color: orange; -} -.red { - color: red; -} -.popup .panel { - .panel_text { - display: block; - overflow: auto; - height: 80%; - } - .panel_in { - .box(100%, 100%); - position: relative; - } - .panel_actions { - width: 100%; - bottom: 4px; - left: 0px; - position: absolute; - } -} -.panel_text .progress { - width: 50%; - overflow: hidden; - height: auto; - .borders(1px, solid, darken(@main_alt_colour, 13.5%)); - margin-bottom: 5px; - span { - float: right; - display: block; - width: 25%; - background-color: @main_alt_colour; - text-align: right; - } -} - - -/** - * OAuth - */ -.oauthapp { - height: auto; - overflow: auto; - border-bottom: 2px solid darken(@main_alt_colour, 13.5%); - padding-bottom: 1em; - margin-bottom: 1em; - img { - float: left; - .box(48px, 48px); - margin: 10px; - &.noicon { - background-image: url("../../../images/icons/48/plugin.png"); - background-position: center center; - background-repeat: no-repeat; - } - } - a { - float: left; - } -} - - -/** - * icons - */ -.iconspacer { - display: block; - .box(16px, 16px); -} -.icon { - display: block; - .box; - background: transparent url("dark/icons.png") no-repeat; - border: 0; - text-decoration: none; - .rounded_corners; - &:hover { - border: 0; - text-decoration: none; - } -} -.editicon { - display: inline-block; - .box(21px, 21px); - background: url("dark/editicons.png") no-repeat; - border: 0; - text-decoration: none; -} -.shadow { - .box_shadow(2px, 2px, 5px, 2px); - &:active, &:focus, &:hover { - .box_shadow(0, 0, 0, 0); - } -} -.editicon:hover { - border: 0; -} -.boldbb { - background-position: 0px 0px; - &:hover { - background-position: -22px 0px; } -} -.italicbb { - background-position: 0px -22px; - &:hover { - background-position: -22px -22px; } -} -.underlinebb { - background-position: 0px -44px; - &:hover { - background-position: -22px -44px; } -} -.quotebb { - background-position: 0px -66px; - &:hover { - background-position: -22px -66px; } -} -.codebb { - background-position: 0px -88px; - &:hover { - background-position: -22px -88px; } -} -.imagebb { - background-position: -44px 0px; - &:hover { - background-position: -66px 0px; } -} -.urlbb { - background-position: -44px -22px; - &:hover { - background-position: -66px -22px; } -} -.videobb { - background-position: -44px -44px; - &:hover { - background-position: -66px -44px; } -} -.icon { - &.drop, &.drophide, &.delete { - float: left; - margin: 0 2px; - } - &.s22 { - &.delete { - display: block; - background-position: -110px 0; - } - &.text { - padding: 10px 0px 0px 25px; - width: 200px; - } - } - &.text { - text-indent: 0px; - } - &.s16 { - min-width: 16px; - height: 16px; - } -} -// special case for wall items -.wall-item-delete-wrapper.icon.delete, -.wall-item-delete-wrapper.icon.drophide { - margin: 0; -} -.s16 .add { - background: url("../../../images/icons/16/add.png") no-repeat; -} -.add { - margin: 0px 5px; -} -.article { - background-position: -50px 0; -} -.audio { - background-position: -70px 0; -} -.block { - background-position: -90px 0px; -} -.drop, .delete { - background-position: -110px 0; -} -.drophide { - background-position: -130px 0; -} -.edit { - background-position: -150px 0; -} -.camera { - background-position: -170px 0; -} -.dislike { - background-position: -190px 0; -} -.file-as { - background-position: -230px -60px; -} -.like { - background-position: -211px 0; -} -.link { - background-position: -230px 0; -} -.globe, -.location { - background-position: -50px -20px; -} -.noglobe, -.nolocation { - background-position: -70px -20px; -} -.no { - background-position: -90px -20px; -} -.pause { - background-position: -110px -20px; -} -.play { - background-position: -130px -20px; -} -.pencil { - background-position: -151px -18px; -} -.small-pencil { - background-position: -170px -20px; -} -.recycle { - background-position: -190px -20px; -} -.remote-link { - background-position: -210px -20px; -} -.share { - background-position: -230px -20px; -} -.tools { - background-position: -50px -40px; -} -.lock { - background-position: -70px -40px; -} -.unlock { - background-position: -88px -40px; -} -.video { - background-position: -110px -40px; -} -.attach { - background-position: -191px -40px; -} -.language { - background-position: -210px -40px; -} -.starred { - background-position: -130px -60px; -} -.unstarred { - background-position: -150px -60px; -} -.tagged { - background-position: -170px -60px; -} -.on { - background-position: -50px -60px; -} -.off { - background-position: -70px -60px; -} -.prev { - background-position: -90px -60px; -} -.next { - background-position: -110px -60px; -} -.icon.dim { - opacity: 0.3; -} -#pause { - position: fixed; - bottom: 40px; - right: 30px; - z-index: 10; -} -.border { - .borders(1px, solid, @border2); - .rounded_corners; - &:hover { - .borders(1px, solid, @border2); - .rounded_corners; - } -} -.attachtype { - display: block; - .box(20px, 23px); - background-image: url(../../../images/content-types.png); -} -.type-video { - background-position: 0px 0px; -} -.type-image { - background-position: -20px 0; -} -.type-audio { - background-position: -40px 0; -} -.type-text { - background-position: -60px 0px; -} -.type-unkn { - background-position: -80px 0; -} - - -/** - * footer - */ -.cc-license { - margin-top: 100px; - font-size: 0.7em; -} -footer { - display: block; - clear: both; -} -#sectionfooter { - margin: 1em 0 1em 0; -} -#profile-jot-text { - height: 20px; - color: @main_colour; - background: @bg_colour; - .borders; - .rounded_corners; - width: 99.5%; -} - - -/** - * acl - */ -#photo-edit-perms-select, -#photos-upload-permissions-wrapper, -#profile-jot-acl-wrapper { - display: block !important; - background: @bg_colour; - color: @main_colour; -} -#profile-jot-acl-wrapper { - margin: 0 10px; - .borders(1px, solid, @menu_bg_colour); - border-top: 0; - font-size: small; - // .box_shadow; -} -#acl-wrapper { - width: 660px; - margin: 0 auto; -} -#acl-search { - float: right; - background: white url("../../../images/search_18.png") no-repeat right center; - padding-right: 20px; - margin: 6px; - color: @shadow_colour; -} -#acl-showall { - float: left; - display: block; - .box(auto, 18px); - background: @main_colour url("../../../images/show_all_off.png") 8px 8px no-repeat; - padding: 7px 10px 7px 30px; - .rounded_corners; - color: darken(@main_alt_colour, 33.5%); - margin: 5px 0; - &.selected { - color: black; - background: #ff9900 url(../../../images/show_all_on.png) 8px 8px no-repeat; - } -} -#acl-list { - height: 210px; - .borders(1px, solid, darken(@main_alt_colour, 13.5%); - clear: both; - margin-top: 30px; - overflow: auto; -} -/*#acl-list-content { -}*/ -.acl-list-item { - .borders; - .box(120px, 110px); - display: block; - float: left; - margin: 3px 0 5px 5px; - img { - .box(22px, 22px); - float: left; - margin: 5px 5px 20px; - } - p { - height: 12px; - font-size: 10px; - margin: 0 0 22px; - padding: 2px 0 1px; - } - a { - background: @main_colour 3px 3px no-repeat; - .rounded_corners; - .box(55px, 20px); - clear: both; - font-size: 10px; - display: block; - color: @bg_colour; - margin: 5px auto 0; - padding: 0 3px; - text-align: center; - vertical-align: middle; - } -} -#acl-wrapper a:hover { - text-decoration: none; - color: @bg_colour; - border: 0; -} -//data URI: -// data:[<MIME-type>][;charset=<encoding>][;base64],<data> -.acl-button-show { - // background-image: url('../../../images/show_off.png'); - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAFCAYAAABmWJ3mAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAABxSURBVAiZY/z//z8DDMyaNUuEgYEhk4GBwZ8JJrhv3z5DZmbmMwwMDOoMDAxpLKtWraqTl5d3fPv2rcn///9XpKWlpTIwMDCwfPr0SePWrVtmP378YPn//385zASmf//+Rf/8+XMpIyPj2bS0tHcwCQBWkiq6M5HGDgAAAABJRU5ErkJggg=='); - margin: 0 auto; -} -.acl-button-hide { - // background-image: url('../../../images/hide_off.png'); - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAACWSURBVAiZBcEhDsIwFAbg/72+VXQ7wPSCIlj8JMlmcKQGgdgRCCfpEz0HjgSDw3IA1AQC1QqSpXwfqeoZwHOaphsAqGpfVVVHIYQNM1+J6MLMOwA9gAOVUhBC6Ky1r7quv03TrMZxzAwAIjKIyCel9JvneQ8ApKprY8zdObfNOXMp5bEsyyDGmJaITt77NwDEGI/W2vYP0nYuQ/Tw9H4AAAAASUVORK5CYII='); - margin: 0 auto; -} -.acl-button-show.selected { - // background: #9ade00 url(../../../images/show_on.png); - background: #9ade00 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAFCAYAAABmWJ3mAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAABXSURBVAiZTcyhDYNQGADh7xEGwGDxhD2qUWxAwIBgE9BdoxO03YaEEX7USzh5l1yKCJl0pBoT+uIhK3zRYk52Az5444w1FijxwoYOTT4UGPHHL9a4crgBhcYSpxKVgzIAAAAASUVORK5CYII='); - color: @bg_colour; -} -.acl-button-hide.selected { - // background: #ff4141 url(../../../images/hide_on.png); - background: #ff4141 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAACSSURBVAiZBcGhDoJQFAbg/z/3cGliJDOTszmLichGstkMPoTzvfA2N4vN6gMYCGhwMifMTY7fxyCy4zBcCrMjAFRk7p3LWAEzRwYT2StQgMwBrGlmOJCZV72Ok+QpcTyZ1/VHAEBEyiiKHq+2/d6bZgUADMCUIqeR94t338tAns2sVKea/sy2y667AUAgN+pc+gcI6S733PoZRAAAAABJRU5ErkJggg=='); - color: @bg_colour; -} -.acl-list-item { - &.groupshow { - border-color: @group_show; - } - &.grouphide { - border-color: @group_hide; - } -} -/** /acl **/ - - -/* autocomplete popup */ -.acpopup { - max-height: 175px; - max-width: 42%; - background-color: @menu_bg_colour; - color: white; - overflow: auto; - z-index: 100000; - border: 1px solid darken(@main_alt_colour, 13.5%); -} -.acpopupitem { - background-color: @menu_bg_colour; - padding: 4px; - clear: left; - img { - float: left; - margin-right: 4px; - } - &.selected { - color: @bg_alt_colour; - background-color: @main_alt_colour; - } -} -.qcomment-wrapper { - padding: 0px; - margin: 5px 5px 5px 81%; -} -.qcomment { - opacity: 0.5; - &:hover { - opacity: 1.0; - } -} -#network-star-link { - margin-top: 10px; -} -.network-star { - float: left; - margin-right: 5px; - &.icon.starred { - display: inline-block; - } -} -#fileas-sidebar {} - -.fileas-ul { - padding: 0; -} - - -/* - * addons theming - */ -#sidebar-page-list { - ul { - padding: 0; - margin: 5px 0; - } - li { - list-style: none; - } -} -#jappix_mini { - margin-left: 130px; - position: fixed; - bottom: 0; - /* override the jappix css */ - right: 175px !important; - z-index: 999; -} - -@import "../css/media"; diff --git a/view/theme/dispy/dark/tag.png b/view/theme/dispy/dark/tag.png Binary files differdeleted file mode 100644 index 9b5a7223e..000000000 --- a/view/theme/dispy/dark/tag.png +++ /dev/null diff --git a/view/theme/dispy/dark/theme.php b/view/theme/dispy/dark/theme.php deleted file mode 100644 index f73a12765..000000000 --- a/view/theme/dispy/dark/theme.php +++ /dev/null @@ -1,29 +0,0 @@ -<?php - -/* - * Name: Dispy Dark - * Description: Dispy Dark: Dark, Spartan, Sleek, and Functional - * Author: Simon <http://simon.kisikew.org/> - * Maintainer: Simon <http://simon.kisikew.org/> - * Screenshot: <a href="screenshot.jpg">Screenshot</a> - */ - -$a = get_app(); -$a->theme_info = array( - 'family' => 'dispy', - 'name' => 'dark', -); - -function dispy_dark_init(&$a) { - /** @purpose set some theme defaults - */ - $cssFile = null; - $colour = 'dark'; - $colour_path = "/dark/"; - - // set css - if (!is_null($cssFile)) { - $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile); - } -} - diff --git a/view/theme/dispy/default.php b/view/theme/dispy/default.php deleted file mode 100644 index c3e6c9119..000000000 --- a/view/theme/dispy/default.php +++ /dev/null @@ -1,44 +0,0 @@ -<!DOCTYPE html> -<html> -<head> - <title><?php if(x($page,'title')) echo $page['title']; ?></title> - <script>var baseurl="<?php echo $a->get_baseurl() ?>";</script> - <?php if(x($page,'htmlhead')) echo $page['htmlhead']; ?> -</head> -<body> - <header> - <?php if(x($page, 'header')) echo $page['header']; ?> - </header> - <article id="articlemain"> - <header id="articleheader"> - <?php if(x($page, 'articleheader')) echo $page['articleheader']; ?> - </header> - <?php if(x($page,'nav')) echo $page['nav']; ?> - <aside id="asideleft"> - <?php if(x($page,'aside_left')) echo $page['aside_left']; ?> - <?php if(x($page,'aside_left_bottom')) echo $page['aside_left_bottom']; ?> - </aside> - <section id="sectionmain"> - <?php if(x($page,'content')) echo $page['content']; ?> - <footer id="sectionfooter"> - </footer> - </section> - <aside id="asidemain"> - <?php if(x($page,'aside')) echo $page['aside']; ?> - <?php if(x($page,'aside_bottom')) echo $page['aside_bottom']; ?> - </aside> - <aside id="asideright"> - <?php if(x($page,'aside_right')) echo $page['aside_right']; ?> - <?php if(x($page,'aside_right_bottom')) echo $page['aside_right_bottom']; ?> - </aside> - <footer id="articlefooter"> - <?php if(x($page, 'articlefooter')) echo $page['articlefooter']; ?> - </footer> - </article> - <footer id="footer"> - <?php if(x($page, 'footer')) echo $page['footer']; ?> - </footer> - <?php if (x($page, 'bottom')) echo $page['bottom']; ?> -</body> -</html> - diff --git a/view/theme/dispy/group_side.tpl b/view/theme/dispy/group_side.tpl deleted file mode 100644 index be8e23de0..000000000 --- a/view/theme/dispy/group_side.tpl +++ /dev/null @@ -1,29 +0,0 @@ -<div id="group-sidebar" class="widget"> -<h3 class="label">$title</h3> - -<div id="sidebar-group-list"> - <ul id="sidebar-group-ul"> - {{ for $groups as $group }} - <li class="sidebar-group-li"> - <a href="$group.href" class="sidebar-group-element {{ if $group.selected }}group-selected{{ else }}group-other{{ endif }}">$group.text</a> - {{ if $group.edit }} - <a class="groupsideedit" - href="$group.edit.href" title="$group.edit.title"><span class="icon small-pencil"></span></a> - {{ endif }} - {{ if $group.cid }} - <input type="checkbox" - class="{{ if $group.selected }}ticked{{ else }}unticked {{ endif }} action" - onclick="contactgroupChangeMember('$group.id','$group.cid');return true;" - {{ if $group.ismember }}checked="checked"{{ endif }} - /> - {{ endif }} - </li> - {{ endfor }} - </ul> - </div> - <div id="sidebar-new-group"> - <a href="group/new" title="$createtext"><span class="action text add">$createtext</span></a> - </div> -</div> - - diff --git a/view/theme/dispy/head.tpl b/view/theme/dispy/head.tpl deleted file mode 100644 index 4f24bac8f..000000000 --- a/view/theme/dispy/head.tpl +++ /dev/null @@ -1,93 +0,0 @@ -<meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> -<meta charset="UTF-8" /> -<base href="$baseurl/" /> -<meta name="generator" content="$generator" /> -<link rel="stylesheet" href="$baseurl/library/fancybox/jquery.fancybox-1.3.4.css" type="text/css" media="screen" /> -<link rel="stylesheet" href="$baseurl/library/tiptip/tipTip.css" type="text/css" media="screen" /> -<link rel="stylesheet" href="$baseurl/library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" /> -<link rel="stylesheet" type="text/css" href="$stylesheet" media="all" /> -<link rel="shortcut icon" href="$baseurl/images/friendica-32.png" /> -<link rel="search" - href="$baseurl/opensearch" - type="application/opensearchdescription+xml" - title="Search in Friendica" /> - -<!--[if IE]> -<script type="text/javascript" src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script> -<![endif]--> -<script type="text/javascript" src="$baseurl/js/jquery.js"></script> -<script type="text/javascript" src="$baseurl/js/jquery.textinputs.js"></script> -<script type="text/javascript" src="$baseurl/js/fk.autocomplete.js"></script> -<script type="text/javascript" src="$baseurl/library/fancybox/jquery.fancybox-1.3.4.pack.js"></script> -<script type="text/javascript" src="$baseurl/library/tiptip/jquery.tipTip.minified.js"></script> -<script type="text/javascript" src="$baseurl/library/jgrowl/jquery.jgrowl_minimized.js"></script> -<script type="text/javascript" src="$baseurl/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script> -<script type="text/javascript" src="$baseurl/js/acl.js"></script> -<script type="text/javascript" src="$baseurl/js/webtoolkit.base64.js"></script> -<script type="text/javascript" src="$baseurl/js/main.js"></script> -<!-- in dispy --> -<script> - var updateInterval = $update_interval; - - function confirmDelete() { return confirm("$delitem"); } - function commentOpen(obj,id) { - if(obj.value == '$comment') { - obj.value = ''; - $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); - $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); - openMenu("comment-edit-submit-wrapper-" + id); - } - } - function commentClose(obj,id) { - if(obj.value == '') { - obj.value = '$comment'; - $("#comment-edit-text-" + id).removeClass("comment-edit-text-full"); - $("#comment-edit-text-" + id).addClass("comment-edit-text-empty"); - closeMenu("comment-edit-submit-wrapper-" + id); - } - } - - - function commentInsert(obj,id) { - var tmpStr = $("#comment-edit-text-" + id).val(); - if(tmpStr == '$comment') { - tmpStr = ''; - $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); - $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); - openMenu("comment-edit-submit-wrapper-" + id); - } - var ins = $(obj).html(); - ins = ins.replace('<','<'); - ins = ins.replace('>','>'); - ins = ins.replace('&','&'); - ins = ins.replace('"','"'); - $("#comment-edit-text-" + id).val(tmpStr + ins); - } - - function qCommentInsert(obj,id) { - var tmpStr = $("#comment-edit-text-" + id).val(); - if(tmpStr == '$comment') { - tmpStr = ''; - $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); - $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); - openMenu("comment-edit-submit-wrapper-" + id); - } - var ins = $(obj).val(); - ins = ins.replace('<','<'); - ins = ins.replace('>','>'); - ins = ins.replace('&','&'); - ins = ins.replace('"','"'); - $("#comment-edit-text-" + id).val(tmpStr + ins); - } - - function showHideComments(id) { - if( $('#collapsed-comments-' + id).is(':visible')) { - $('#collapsed-comments-' + id).hide(); - $('#hide-comments-' + id).html('$showmore'); - } - else { - $('#collapsed-comments-' + id).show(); - $('#hide-comments-' + id).html('$showfewer'); - } - } -</script> diff --git a/view/theme/dispy/header.tpl b/view/theme/dispy/header.tpl deleted file mode 100644 index e69de29bb..000000000 --- a/view/theme/dispy/header.tpl +++ /dev/null diff --git a/view/theme/dispy/icons/StatusNet.png b/view/theme/dispy/icons/StatusNet.png Binary files differdeleted file mode 100644 index 1b5f9a677..000000000 --- a/view/theme/dispy/icons/StatusNet.png +++ /dev/null diff --git a/view/theme/dispy/icons/connect.png b/view/theme/dispy/icons/connect.png Binary files differdeleted file mode 100644 index b76fc13dc..000000000 --- a/view/theme/dispy/icons/connect.png +++ /dev/null diff --git a/view/theme/dispy/icons/email.png b/view/theme/dispy/icons/email.png Binary files differdeleted file mode 100644 index 349f5a91e..000000000 --- a/view/theme/dispy/icons/email.png +++ /dev/null diff --git a/view/theme/dispy/icons/facebook.png b/view/theme/dispy/icons/facebook.png Binary files differdeleted file mode 100644 index be04f2b52..000000000 --- a/view/theme/dispy/icons/facebook.png +++ /dev/null diff --git a/view/theme/dispy/icons/livejournal.png b/view/theme/dispy/icons/livejournal.png Binary files differdeleted file mode 100644 index 5ba5f7f7d..000000000 --- a/view/theme/dispy/icons/livejournal.png +++ /dev/null diff --git a/view/theme/dispy/icons/posterous.png b/view/theme/dispy/icons/posterous.png Binary files differdeleted file mode 100644 index 0d25e01b8..000000000 --- a/view/theme/dispy/icons/posterous.png +++ /dev/null diff --git a/view/theme/dispy/icons/scroll_top.png b/view/theme/dispy/icons/scroll_top.png Binary files differdeleted file mode 100644 index fa6736086..000000000 --- a/view/theme/dispy/icons/scroll_top.png +++ /dev/null diff --git a/view/theme/dispy/icons/tumblr.png b/view/theme/dispy/icons/tumblr.png Binary files differdeleted file mode 100644 index 054cd119d..000000000 --- a/view/theme/dispy/icons/tumblr.png +++ /dev/null diff --git a/view/theme/dispy/icons/twitter.png b/view/theme/dispy/icons/twitter.png Binary files differdeleted file mode 100644 index 4a068451e..000000000 --- a/view/theme/dispy/icons/twitter.png +++ /dev/null diff --git a/view/theme/dispy/icons/wordpress.png b/view/theme/dispy/icons/wordpress.png Binary files differdeleted file mode 100644 index 4ee872b74..000000000 --- a/view/theme/dispy/icons/wordpress.png +++ /dev/null diff --git a/view/theme/dispy/jot-header.tpl b/view/theme/dispy/jot-header.tpl deleted file mode 100644 index 0be480df2..000000000 --- a/view/theme/dispy/jot-header.tpl +++ /dev/null @@ -1,345 +0,0 @@ -<script type="text/javascript"> -var editor=false; -var textlen = 0; -var plaintext = '$editselect'; - -function initEditor(cb) { - if (editor==false) { - $("#profile-jot-text-loading").show(); - if(plaintext == 'none') { - $("#profile-jot-text-loading").hide(); - $("#profile-jot-text").css({ 'height': 200, 'color': '#000' }); - $("#profile-jot-text").contact_autocomplete(baseurl+"/acl"); - editor = true; - $("a#jot-perms-icon").fancybox({ - 'transitionIn' : 'elastic', - 'transitionOut' : 'elastic' - }); - $(".jothidden").show(); - if (typeof cb!="undefined") cb(); - return; - } - tinyMCE.init({ - theme : "advanced", - mode : "specific_textareas", - editor_selector: $editselect, - auto_focus: "profile-jot-text", - plugins : "bbcode,paste,fullscreen,autoresize,inlinepopups,contextmenu,style", - theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code,fullscreen,charmap", - theme_advanced_buttons2 : "", - theme_advanced_buttons3 : "", - theme_advanced_toolbar_location : "top", - theme_advanced_toolbar_align : "center", - theme_advanced_blockformats : "blockquote,code", - gecko_spellcheck : true, - paste_text_sticky : true, - entity_encoding : "raw", - add_unload_trigger : false, - remove_linebreaks : false, - force_p_newlines : false, - force_br_newlines : true, - forced_root_block : '', - convert_urls: false, - content_css: "$baseurl/view/custom_tinymce.css", - theme_advanced_path : false, - file_browser_callback : "fcFileBrowser", - setup : function(ed) { - cPopup = null; - ed.onKeyDown.add(function(ed,e) { - if(cPopup !== null) - cPopup.onkey(e); - }); - - ed.onKeyUp.add(function(ed, e) { - var txt = tinyMCE.activeEditor.getContent(); - match = txt.match(/@([^ \n]+)$/); - if(match!==null) { - if(cPopup === null) { - cPopup = new ACPopup(this,baseurl+"/acl"); - } - if(cPopup.ready && match[1]!==cPopup.searchText) cPopup.search(match[1]); - if(! cPopup.ready) cPopup = null; - } - else { - if(cPopup !== null) { cPopup.close(); cPopup = null; } - } - - textlen = txt.length; - if(textlen != 0 && $('#jot-perms-icon').is('.unlock')) { - $('#profile-jot-desc').html(ispublic); - } - else { - $('#profile-jot-desc').html(' '); - } - - //Character count - - if(textlen <= 140) { - $('#character-counter').removeClass('red'); - $('#character-counter').removeClass('orange'); - $('#character-counter').addClass('grey'); - } - if((textlen > 140) && (textlen <= 420)) { - $('#character-counter').removeClass('grey'); - $('#character-counter').removeClass('red'); - $('#character-counter').addClass('orange'); - } - if(textlen > 420) { - $('#character-counter').removeClass('grey'); - $('#character-counter').removeClass('orange'); - $('#character-counter').addClass('red'); - } - $('#character-counter').text(textlen); - }); - - ed.onInit.add(function(ed) { - ed.pasteAsPlainText = true; - $("#profile-jot-text-loading").hide(); - $(".jothidden").show(); - if (typeof cb!="undefined") cb(); - }); - } - }); - editor = true; - // setup acl popup - $("a#jot-perms-icon").fancybox({ - 'transitionIn' : 'elastic', - 'transitionOut' : 'elastic' - }); - } else { - if (typeof cb!="undefined") cb(); - } -} - -function enableOnUser(){ - if (editor) return; - $(this).val(""); - initEditor(); -} - -</script> -<script type="text/javascript" src="$baseurl/js/ajaxupload.js"></script> -<script type="text/javascript"> - var ispublic = '$ispublic'; - var addtitle = '$addtitle'; - - $(document).ready(function() { - - /* enable tinymce on focus and click */ - $("#profile-jot-text").focus(enableOnUser); - $("#profile-jot-text").click(enableOnUser); - /* enable character counter */ - $("#profile-jot-text").focus(charCounter); - $("#profile-jot-text").click(charCounter); - - var uploader = new window.AjaxUpload( - 'wall-image-upload', - { action: 'wall_upload/$nickname', - name: 'userfile', - onSubmit: function(file,ext) { $('#profile-rotator').show(); }, - onComplete: function(file,response) { - addeditortext(response); - $('#profile-rotator').hide(); - } - } - ); - var file_uploader = new window.AjaxUpload( - 'wall-file-upload', - { action: 'wall_attach/$nickname', - name: 'userfile', - onSubmit: function(file,ext) { $('#profile-rotator').show(); }, - onComplete: function(file,response) { - addeditortext(response); - $('#profile-rotator').hide(); - } - } - ); - }); - - function deleteCheckedItems() { - var checkedstr = ''; - - $('.item-select').each( function() { - if($(this).is(':checked')) { - if(checkedstr.length != 0) { - checkedstr = checkedstr + ',' + $(this).val(); - } - else { - checkedstr = $(this).val(); - } - } - }); - $.post('item', { dropitems: checkedstr }, function(data) { - window.location.reload(); - }); - } - - function jotGetLink() { - reply = prompt("$linkurl"); - if(reply && reply.length) { - reply = bin2hex(reply); - $('#profile-rotator').show(); - $.get('parse_url?binurl=' + reply, function(data) { - addeditortext(data); - $('#profile-rotator').hide(); - }); - } - } - - function jotVideoURL() { - reply = prompt("$vidurl"); - if(reply && reply.length) { - addeditortext('[video]' + reply + '[/video]'); - } - } - - function jotAudioURL() { - reply = prompt("$audurl"); - if(reply && reply.length) { - addeditortext('[audio]' + reply + '[/audio]'); - } - } - - - function jotGetLocation() { - reply = prompt("$whereareu", $('#jot-location').val()); - if(reply && reply.length) { - $('#jot-location').val(reply); - } - } - - function jotShare(id) { - if ($('#jot-popup').length != 0) $('#jot-popup').show(); - - $('#like-rotator-' + id).show(); - $.get('share/' + id, function(data) { - if (!editor) $("#profile-jot-text").val(""); - initEditor(function(){ - addeditortext(data); - $('#like-rotator-' + id).hide(); - $(window).scrollTop(0); - }); - - }); - } - - function linkdropper(event) { - var linkFound = event.dataTransfer.types.contains("text/uri-list"); - if(linkFound) - event.preventDefault(); - } - - function linkdrop(event) { - var reply = event.dataTransfer.getData("text/uri-list"); - event.target.textContent = reply; - event.preventDefault(); - if(reply && reply.length) { - reply = bin2hex(reply); - $('#profile-rotator').show(); - $.get('parse_url?binurl=' + reply, function(data) { - if (!editor) $("#profile-jot-text").val(""); - initEditor(function(){ - addeditortext(data); - $('#profile-rotator').hide(); - }); - }); - } - } - - function itemTag(id) { - reply = prompt("$term"); - if(reply && reply.length) { - reply = reply.replace('#',''); - if(reply.length) { - - commentBusy = true; - $('body').css('cursor', 'wait'); - - $.get('tagger/' + id + '?term=' + reply); - if(timer) clearTimeout(timer); - timer = setTimeout(NavUpdate,3000); - liking = 1; - } - } - } - - function itemFiler(id) { - - var bordercolor = $("input").css("border-color"); - - $.get('filer/', function(data){ - $.fancybox(data); - $("#id_term").keypress(function(){ - $(this).css("border-color",bordercolor); - }) - $("#select_term").change(function(){ - $("#id_term").css("border-color",bordercolor); - }) - - $("#filer_save").click(function(e){ - e.preventDefault(); - reply = $("#id_term").val(); - if(reply && reply.length) { - commentBusy = true; - $('body').css('cursor', 'wait'); - $.get('filer/' + id + '?term=' + reply); - if(timer) clearTimeout(timer); - timer = setTimeout(NavUpdate,3000); - liking = 1; - $.fancybox.close(); - } else { - $("#id_term").css("border-color","#FF0000"); - } - return false; - }); - }); - - } - - function jotClearLocation() { - $('#jot-coord').val(''); - $('#profile-nolocation-wrapper').hide(); - } - - function addeditortext(data) { - if(plaintext == 'none') { - var currentText = $("#profile-jot-text").val(); - $("#profile-jot-text").val(currentText + data); - } - else - tinyMCE.execCommand('mceInsertRawHTML',false,data); - } - - $geotag - - function charCounter() { - // character count part deux - //$(this).val().length is not a function Line 282(3) - $('#profile-jot-text').keyup(function() { - var textlen = 0; - var maxLen1 = 140; - var maxLen2 = 420; - - $('#character-counter').removeClass('jothidden'); - - textLen = $(this).val().length; - if(textLen <= maxLen1) { - $('#character-counter').removeClass('red'); - $('#character-counter').removeClass('orange'); - $('#character-counter').addClass('grey'); - } - if((textLen > maxLen1) && (textlen <= maxLen2)) { - $('#character-counter').removeClass('grey'); - $('#character-counter').removeClass('red'); - $('#character-counter').addClass('orange'); - } - if(textLen > maxLen2) { - $('#character-counter').removeClass('grey'); - $('#character-counter').removeClass('orange'); - $('#character-counter').addClass('red'); - } - $('#character-counter').text( textLen ); - }); - $('#profile-jot-text').keyup(); - } -</script> diff --git a/view/theme/dispy/jot.tpl b/view/theme/dispy/jot.tpl deleted file mode 100644 index 12969dd03..000000000 --- a/view/theme/dispy/jot.tpl +++ /dev/null @@ -1,76 +0,0 @@ -<form id="profile-jot-form" action="$action" method="post"> - <div id="jot"> - <div id="profile-jot-desc" class="jothidden"> </div> - - <input type="hidden" name="type" value="$ptyp" /> - <input type="hidden" name="profile_uid" value="$profile_uid" /> - <input type="hidden" name="return" value="$return_path" /> - <input type="hidden" name="location" id="jot-location" value="$defloc" /> - <input type="hidden" name="coord" id="jot-coord" value="" /> - <input type="hidden" name="post_id" value="$post_id" /> - <input type="hidden" name="preview" id="jot-preview" value="0" /> - <div id="jot-title-wrap"><input name="title" id="jot-title" type="text" placeholder="$placeholdertitle" value="$title" class="jothidden" style="display:none" /></div> - <div id="character-counter" class="grey jothidden"></div> - <div id="jot-category-wrap"><input name="category" id="jot-category" type="text" placeholder="$placeholdercategory" value="$category" class="jothidden" style="display:none" /></div> - <textarea rows="5" cols="64" class="profile-jot-text" id="profile-jot-text" name="body">{{ if $content }}$content{{ else }}$share{{ endif }} - </textarea> - -<div id="profile-jot-submit-wrapper" class="jothidden"> -<div id="jot-tools" class="jothidden" style="display:none"> - <div id="profile-jot-submit-wrapper" class="jothidden"> - - <div id="profile-upload-wrapper" style="display: $visitor;"> - <div id="wall-image-upload-div"><a href="#" onclick="return false;" id="wall-image-upload" class="icon camera" title="$upload"></a></div> - </div> - <div id="profile-attach-wrapper" style="display: $visitor;"> - <div id="wall-file-upload-div"><a href="#" onclick="return false;" id="wall-file-upload" class="icon attach" title="$attach"></a></div> - </div> - - <div id="profile-link-wrapper" style="display: $visitor;" ondragenter="linkdropper(event);" ondragover="linkdropper(event);" ondrop="linkdrop(event);"> - <a id="profile-link" class="icon link" ondragenter="return linkdropper(event);" ondragover="return linkdropper(event);" ondrop="linkdrop(event);" onclick="jotGetLink(); return false;" title="$weblink"></a> - </div> - <div id="profile-video-wrapper" style="display: $visitor;"> - <a id="profile-video" class="icon video" onclick="jotVideoURL();return false;" title="$video"></a> - </div> - <div id="profile-audio-wrapper" style="display: $visitor;"> - <a id="profile-audio" class="icon audio" onclick="jotAudioURL();return false;" title="$audio"></a> - </div> - <div id="profile-location-wrapper" style="display: $visitor;"> - <a id="profile-location" class="icon globe" onclick="jotGetLocation();return false;" title="$setloc"></a> - </div> - <div id="profile-nolocation-wrapper" style="display: none;"> - <a id="profile-nolocation" class="icon noglobe" onclick="jotClearLocation();return false;" title="$noloc"></a> - </div> - - <div id="profile-jot-plugin-wrapper"> - $jotplugins - </div> - - <a class="icon-text-preview pointer"></a><a id="jot-preview-link" class="pointer" onclick="preview_post(); return false;" title="$preview">$preview</a> - <input type="submit" id="profile-jot-submit" name="submit" value="$share" /> - <div id="profile-jot-perms" class="profile-jot-perms"> - <a id="jot-perms-icon" href="#profile-jot-acl-wrapper" class="icon $lockstate $bang" title="$permset"></a> - </div> - <span id="profile-rotator" class="loading" style="display: none"><img src="images/rotator.gif" alt="$wait" title="$wait" /></span> - </div> - - </div> <!-- /#profile-jot-submit-wrapper --> -</div> <!-- /#jot-tools --> - - <div id="jot-preview-content" style="display:none;"></div> - - <div style="display: none;"> - <div id="profile-jot-acl-wrapper" style="width:auto;height:auto;overflow:auto;"> - $acl - <hr style="clear:both" /> - <div id="profile-jot-email-label">$emailcc</div><input type="text" name="emailcc" id="profile-jot-email" title="$emtitle" /> - <div id="profile-jot-email-end"></div> - $jotnets - </div> - </div> -</div> - -<div id="profile-jot-end"></div> -</form> -</div> - {{ if $content }}<script>initEditor();</script>{{ endif }} diff --git a/view/theme/dispy/js/jquery.autogrow.textarea.js b/view/theme/dispy/js/jquery.autogrow.textarea.js deleted file mode 100644 index 806e34f51..000000000 --- a/view/theme/dispy/js/jquery.autogrow.textarea.js +++ /dev/null @@ -1,46 +0,0 @@ -(function($) { - - /* - * Auto-growing textareas; technique ripped from Facebook - */ - $.fn.autogrow = function(options) { - - this.filter('textarea').each(function() { - - var $this = $(this), - minHeight = $this.height(), - lineHeight = $this.css('lineHeight'); - - var shadow = $('<div></div>').css({ - position: 'absolute', - top: -10000, - left: -10000, - width: $(this).width(), - fontSize: $this.css('fontSize'), - fontFamily: $this.css('fontFamily'), - lineHeight: $this.css('lineHeight'), - resize: 'none' - }).appendTo(document.body); - - var update = function() { - - var val = this.value.replace(/</g, '<') - .replace(/>/g, '>') - .replace(/&/g, '&') - .replace(/\n/g, '<br/>'); - - shadow.html(val); - $(this).css('height', Math.max(shadow.height() + 20, minHeight)); - } - - $(this).change(update).keyup(update).keydown(update); - - update.apply(this); - - }); - - return this; - - } - -})(jQuery);
\ No newline at end of file diff --git a/view/theme/dispy/js/modernizr.custom.2.5.3.js b/view/theme/dispy/js/modernizr.custom.2.5.3.js deleted file mode 100644 index 2502348b1..000000000 --- a/view/theme/dispy/js/modernizr.custom.2.5.3.js +++ /dev/null @@ -1,989 +0,0 @@ -/* Modernizr 2.5.3 (Custom Build) | MIT & BSD
- * Build: http://www.modernizr.com/download/#-fontface-backgroundsize-borderimage-borderradius-boxshadow-flexbox-flexbox_legacy-hsla-multiplebgs-opacity-rgba-textshadow-cssanimations-csscolumns-generatedcontent-cssgradients-cssreflections-csstransforms-csstransforms3d-csstransitions-applicationcache-canvas-canvastext-draganddrop-hashchange-history-audio-video-indexeddb-input-inputtypes-localstorage-postmessage-sessionstorage-websockets-websqldatabase-webworkers-geolocation-inlinesvg-smil-svg-svgclippaths-touch-printshiv-mq-teststyles-testprop-testallprops-hasevent-prefixes-domprefixes-load
- */
-;
-
-
-
-window.Modernizr = (function( window, document, undefined ) {
-
- var version = '2.5.3',
-
- Modernizr = {},
-
-
- docElement = document.documentElement,
-
- mod = 'modernizr',
- modElem = document.createElement(mod),
- mStyle = modElem.style,
-
- inputElem = document.createElement('input') ,
-
- smile = ':)',
-
- toString = {}.toString,
-
- prefixes = ' -webkit- -moz- -o- -ms- '.split(' '),
-
-
-
- omPrefixes = 'Webkit Moz O ms',
-
- cssomPrefixes = omPrefixes.split(' '),
-
- domPrefixes = omPrefixes.toLowerCase().split(' '),
-
- ns = {'svg': 'http://www.w3.org/2000/svg'},
-
- tests = {},
- inputs = {},
- attrs = {},
-
- classes = [],
-
- slice = classes.slice,
-
- featureName,
-
-
- injectElementWithStyles = function( rule, callback, nodes, testnames ) {
-
- var style, ret, node,
- div = document.createElement('div'),
- body = document.body,
- fakeBody = body ? body : document.createElement('body');
-
- if ( parseInt(nodes, 10) ) {
- while ( nodes-- ) {
- node = document.createElement('div');
- node.id = testnames ? testnames[nodes] : mod + (nodes + 1);
- div.appendChild(node);
- }
- }
-
- style = ['­','<style>', rule, '</style>'].join('');
- div.id = mod;
- (body ? div : fakeBody).innerHTML += style;
- fakeBody.appendChild(div);
- if(!body){
- fakeBody.style.background = "";
- docElement.appendChild(fakeBody);
- }
-
- ret = callback(div, rule);
- !body ? fakeBody.parentNode.removeChild(fakeBody) : div.parentNode.removeChild(div);
-
- return !!ret;
-
- },
-
- testMediaQuery = function( mq ) {
-
- var matchMedia = window.matchMedia || window.msMatchMedia;
- if ( matchMedia ) {
- return matchMedia(mq).matches;
- }
-
- var bool;
-
- injectElementWithStyles('@media ' + mq + ' { #' + mod + ' { position: absolute; } }', function( node ) {
- bool = (window.getComputedStyle ?
- getComputedStyle(node, null) :
- node.currentStyle)['position'] == 'absolute';
- });
-
- return bool;
-
- },
-
-
- isEventSupported = (function() {
-
- var TAGNAMES = {
- 'select': 'input', 'change': 'input',
- 'submit': 'form', 'reset': 'form',
- 'error': 'img', 'load': 'img', 'abort': 'img'
- };
-
- function isEventSupported( eventName, element ) {
-
- element = element || document.createElement(TAGNAMES[eventName] || 'div');
- eventName = 'on' + eventName;
-
- var isSupported = eventName in element;
-
- if ( !isSupported ) {
- if ( !element.setAttribute ) {
- element = document.createElement('div');
- }
- if ( element.setAttribute && element.removeAttribute ) {
- element.setAttribute(eventName, '');
- isSupported = is(element[eventName], 'function');
-
- if ( !is(element[eventName], 'undefined') ) {
- element[eventName] = undefined;
- }
- element.removeAttribute(eventName);
- }
- }
-
- element = null;
- return isSupported;
- }
- return isEventSupported;
- })(),
-
-
- _hasOwnProperty = ({}).hasOwnProperty, hasOwnProperty;
-
- if ( !is(_hasOwnProperty, 'undefined') && !is(_hasOwnProperty.call, 'undefined') ) {
- hasOwnProperty = function (object, property) {
- return _hasOwnProperty.call(object, property);
- };
- }
- else {
- hasOwnProperty = function (object, property) {
- return ((property in object) && is(object.constructor.prototype[property], 'undefined'));
- };
- }
-
-
- if (!Function.prototype.bind) {
- Function.prototype.bind = function bind(that) {
-
- var target = this;
-
- if (typeof target != "function") {
- throw new TypeError();
- }
-
- var args = slice.call(arguments, 1),
- bound = function () {
-
- if (this instanceof bound) {
-
- var F = function(){};
- F.prototype = target.prototype;
- var self = new F;
-
- var result = target.apply(
- self,
- args.concat(slice.call(arguments))
- );
- if (Object(result) === result) {
- return result;
- }
- return self;
-
- } else {
-
- return target.apply(
- that,
- args.concat(slice.call(arguments))
- );
-
- }
-
- };
-
- return bound;
- };
- }
-
- function setCss( str ) {
- mStyle.cssText = str;
- }
-
- function setCssAll( str1, str2 ) {
- return setCss(prefixes.join(str1 + ';') + ( str2 || '' ));
- }
-
- function is( obj, type ) {
- return typeof obj === type;
- }
-
- function contains( str, substr ) {
- return !!~('' + str).indexOf(substr);
- }
-
- function testProps( props, prefixed ) {
- for ( var i in props ) {
- if ( mStyle[ props[i] ] !== undefined ) {
- return prefixed == 'pfx' ? props[i] : true;
- }
- }
- return false;
- }
-
- function testDOMProps( props, obj, elem ) {
- for ( var i in props ) {
- var item = obj[props[i]];
- if ( item !== undefined) {
-
- if (elem === false) return props[i];
-
- if (is(item, 'function')){
- return item.bind(elem || obj);
- }
-
- return item;
- }
- }
- return false;
- }
-
- function testPropsAll( prop, prefixed, elem ) {
-
- var ucProp = prop.charAt(0).toUpperCase() + prop.substr(1),
- props = (prop + ' ' + cssomPrefixes.join(ucProp + ' ') + ucProp).split(' ');
-
- if(is(prefixed, "string") || is(prefixed, "undefined")) {
- return testProps(props, prefixed);
-
- } else {
- props = (prop + ' ' + (domPrefixes).join(ucProp + ' ') + ucProp).split(' ');
- return testDOMProps(props, prefixed, elem);
- }
- }
-
- var testBundle = (function( styles, tests ) {
- var style = styles.join(''),
- len = tests.length;
-
- injectElementWithStyles(style, function( node, rule ) {
- var style = document.styleSheets[document.styleSheets.length - 1],
- cssText = style ? (style.cssRules && style.cssRules[0] ? style.cssRules[0].cssText : style.cssText || '') : '',
- children = node.childNodes, hash = {};
-
- while ( len-- ) {
- hash[children[len].id] = children[len];
- }
-
- Modernizr['touch'] = ('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch || (hash['touch'] && hash['touch'].offsetTop) === 9;
- Modernizr['csstransforms3d'] = (hash['csstransforms3d'] && hash['csstransforms3d'].offsetLeft) === 9 && hash['csstransforms3d'].offsetHeight === 3; Modernizr['generatedcontent'] = (hash['generatedcontent'] && hash['generatedcontent'].offsetHeight) >= 1; Modernizr['fontface'] = /src/i.test(cssText) &&
- cssText.indexOf(rule.split(' ')[0]) === 0; }, len, tests);
-
- })([
- '@font-face {font-family:"font";src:url("https://")}' ,['@media (',prefixes.join('touch-enabled),('),mod,')',
- '{#touch{top:9px;position:absolute}}'].join('') ,['@media (',prefixes.join('transform-3d),('),mod,')',
- '{#csstransforms3d{left:9px;position:absolute;height:3px;}}'].join('')
-
- ,['#generatedcontent:after{content:"',smile,'";visibility:hidden}'].join('')
- ],
- [
- 'fontface' ,'touch' ,'csstransforms3d'
- ,'generatedcontent'
-
- ]); tests['flexbox'] = function() {
- return testPropsAll('flexOrder');
- };
-
-
- tests['flexbox-legacy'] = function() {
- return testPropsAll('boxDirection');
- };
-
-
- tests['canvas'] = function() {
- var elem = document.createElement('canvas');
- return !!(elem.getContext && elem.getContext('2d'));
- };
-
- tests['canvastext'] = function() {
- return !!(Modernizr['canvas'] && is(document.createElement('canvas').getContext('2d').fillText, 'function'));
- }; tests['touch'] = function() {
- return Modernizr['touch'];
- };
-
- tests['geolocation'] = function() {
- return !!navigator.geolocation;
- };
-
- tests['postmessage'] = function() {
- return !!window.postMessage;
- };
-
-
- tests['websqldatabase'] = function() {
- return !!window.openDatabase;
- };
-
- tests['indexedDB'] = function() {
- return !!testPropsAll("indexedDB",window);
- };
-
- tests['hashchange'] = function() {
- return isEventSupported('hashchange', window) && (document.documentMode === undefined || document.documentMode > 7);
- };
-
- tests['history'] = function() {
- return !!(window.history && history.pushState);
- };
-
- tests['draganddrop'] = function() {
- var div = document.createElement('div');
- return ('draggable' in div) || ('ondragstart' in div && 'ondrop' in div);
- };
-
- tests['websockets'] = function() {
- for ( var i = -1, len = cssomPrefixes.length; ++i < len; ){
- if ( window[cssomPrefixes[i] + 'WebSocket'] ){
- return true;
- }
- }
- return 'WebSocket' in window;
- };
-
-
- tests['rgba'] = function() {
- setCss('background-color:rgba(150,255,150,.5)');
-
- return contains(mStyle.backgroundColor, 'rgba');
- };
-
- tests['hsla'] = function() {
- setCss('background-color:hsla(120,40%,100%,.5)');
-
- return contains(mStyle.backgroundColor, 'rgba') || contains(mStyle.backgroundColor, 'hsla');
- };
-
- tests['multiplebgs'] = function() {
- setCss('background:url(https://),url(https://),red url(https://)');
-
- return /(url\s*\(.*?){3}/.test(mStyle.background);
- };
- tests['backgroundsize'] = function() {
- return testPropsAll('backgroundSize');
- };
-
- tests['borderimage'] = function() {
- return testPropsAll('borderImage');
- };
-
-
-
- tests['borderradius'] = function() {
- return testPropsAll('borderRadius');
- };
-
- tests['boxshadow'] = function() {
- return testPropsAll('boxShadow');
- };
-
- tests['textshadow'] = function() {
- return document.createElement('div').style.textShadow === '';
- };
-
-
- tests['opacity'] = function() {
- setCssAll('opacity:.55');
-
- return /^0.55$/.test(mStyle.opacity);
- };
-
-
- tests['cssanimations'] = function() {
- return testPropsAll('animationName');
- };
-
-
- tests['csscolumns'] = function() {
- return testPropsAll('columnCount');
- };
-
-
- tests['cssgradients'] = function() {
- var str1 = 'background-image:',
- str2 = 'gradient(linear,left top,right bottom,from(#9f9),to(white));',
- str3 = 'linear-gradient(left top,#9f9, white);';
-
- setCss(
- (str1 + '-webkit- '.split(' ').join(str2 + str1)
- + prefixes.join(str3 + str1)).slice(0, -str1.length)
- );
-
- return contains(mStyle.backgroundImage, 'gradient');
- };
-
-
- tests['cssreflections'] = function() {
- return testPropsAll('boxReflect');
- };
-
-
- tests['csstransforms'] = function() {
- return !!testPropsAll('transform');
- };
-
-
- tests['csstransforms3d'] = function() {
-
- var ret = !!testPropsAll('perspective');
-
- if ( ret && 'webkitPerspective' in docElement.style ) {
-
- ret = Modernizr['csstransforms3d'];
- }
- return ret;
- };
-
-
- tests['csstransitions'] = function() {
- return testPropsAll('transition');
- };
-
-
-
- tests['fontface'] = function() {
- return Modernizr['fontface'];
- };
-
- tests['generatedcontent'] = function() {
- return Modernizr['generatedcontent'];
- };
- tests['video'] = function() {
- var elem = document.createElement('video'),
- bool = false;
-
- try {
- if ( bool = !!elem.canPlayType ) {
- bool = new Boolean(bool);
- bool.ogg = elem.canPlayType('video/ogg; codecs="theora"') .replace(/^no$/,'');
-
- bool.h264 = elem.canPlayType('video/mp4; codecs="avc1.42E01E"') .replace(/^no$/,'');
-
- bool.webm = elem.canPlayType('video/webm; codecs="vp8, vorbis"').replace(/^no$/,'');
- }
-
- } catch(e) { }
-
- return bool;
- };
-
- tests['audio'] = function() {
- var elem = document.createElement('audio'),
- bool = false;
-
- try {
- if ( bool = !!elem.canPlayType ) {
- bool = new Boolean(bool);
- bool.ogg = elem.canPlayType('audio/ogg; codecs="vorbis"').replace(/^no$/,'');
- bool.mp3 = elem.canPlayType('audio/mpeg;') .replace(/^no$/,'');
-
- bool.wav = elem.canPlayType('audio/wav; codecs="1"') .replace(/^no$/,'');
- bool.m4a = ( elem.canPlayType('audio/x-m4a;') ||
- elem.canPlayType('audio/aac;')) .replace(/^no$/,'');
- }
- } catch(e) { }
-
- return bool;
- };
-
-
- tests['localstorage'] = function() {
- try {
- localStorage.setItem(mod, mod);
- localStorage.removeItem(mod);
- return true;
- } catch(e) {
- return false;
- }
- };
-
- tests['sessionstorage'] = function() {
- try {
- sessionStorage.setItem(mod, mod);
- sessionStorage.removeItem(mod);
- return true;
- } catch(e) {
- return false;
- }
- };
-
-
- tests['webworkers'] = function() {
- return !!window.Worker;
- };
-
-
- tests['applicationcache'] = function() {
- return !!window.applicationCache;
- };
-
-
- tests['svg'] = function() {
- return !!document.createElementNS && !!document.createElementNS(ns.svg, 'svg').createSVGRect;
- };
-
- tests['inlinesvg'] = function() {
- var div = document.createElement('div');
- div.innerHTML = '<svg/>';
- return (div.firstChild && div.firstChild.namespaceURI) == ns.svg;
- };
-
- tests['smil'] = function() {
- return !!document.createElementNS && /SVGAnimate/.test(toString.call(document.createElementNS(ns.svg, 'animate')));
- };
-
-
- tests['svgclippaths'] = function() {
- return !!document.createElementNS && /SVGClipPath/.test(toString.call(document.createElementNS(ns.svg, 'clipPath')));
- };
-
- function webforms() {
- Modernizr['input'] = (function( props ) {
- for ( var i = 0, len = props.length; i < len; i++ ) {
- attrs[ props[i] ] = !!(props[i] in inputElem);
- }
- if (attrs.list){
- attrs.list = !!(document.createElement('datalist') && window.HTMLDataListElement);
- }
- return attrs;
- })('autocomplete autofocus list placeholder max min multiple pattern required step'.split(' '));
- Modernizr['inputtypes'] = (function(props) {
-
- for ( var i = 0, bool, inputElemType, defaultView, len = props.length; i < len; i++ ) {
-
- inputElem.setAttribute('type', inputElemType = props[i]);
- bool = inputElem.type !== 'text';
-
- if ( bool ) {
-
- inputElem.value = smile;
- inputElem.style.cssText = 'position:absolute;visibility:hidden;';
-
- if ( /^range$/.test(inputElemType) && inputElem.style.WebkitAppearance !== undefined ) {
-
- docElement.appendChild(inputElem);
- defaultView = document.defaultView;
-
- bool = defaultView.getComputedStyle &&
- defaultView.getComputedStyle(inputElem, null).WebkitAppearance !== 'textfield' &&
- (inputElem.offsetHeight !== 0);
-
- docElement.removeChild(inputElem);
-
- } else if ( /^(search|tel)$/.test(inputElemType) ){
- } else if ( /^(url|email)$/.test(inputElemType) ) {
- bool = inputElem.checkValidity && inputElem.checkValidity() === false;
-
- } else if ( /^color$/.test(inputElemType) ) {
- docElement.appendChild(inputElem);
- docElement.offsetWidth;
- bool = inputElem.value != smile;
- docElement.removeChild(inputElem);
-
- } else {
- bool = inputElem.value != smile;
- }
- }
-
- inputs[ props[i] ] = !!bool;
- }
- return inputs;
- })('search tel url email datetime date month week time datetime-local number range color'.split(' '));
- }
- for ( var feature in tests ) {
- if ( hasOwnProperty(tests, feature) ) {
- featureName = feature.toLowerCase();
- Modernizr[featureName] = tests[feature]();
-
- classes.push((Modernizr[featureName] ? '' : 'no-') + featureName);
- }
- }
-
- Modernizr.input || webforms(); setCss('');
- modElem = inputElem = null;
-
-
- Modernizr._version = version;
-
- Modernizr._prefixes = prefixes;
- Modernizr._domPrefixes = domPrefixes;
- Modernizr._cssomPrefixes = cssomPrefixes;
-
- Modernizr.mq = testMediaQuery;
-
- Modernizr.hasEvent = isEventSupported;
-
- Modernizr.testProp = function(prop){
- return testProps([prop]);
- };
-
- Modernizr.testAllProps = testPropsAll;
-
-
- Modernizr.testStyles = injectElementWithStyles;
- return Modernizr;
-
-})(this, this.document);
-/*! HTML5 Shiv v3.4 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed */
-;(function(window, document) {
-
- /** Preset options */
- var options = window.html5 || {};
-
- /** Used to skip problem elements */
- var reSkip = /^<|^(?:button|form|map|select|textarea)$/i;
-
- /** Detect whether the browser supports default html5 styles */
- var supportsHtml5Styles;
-
- /** Detect whether the browser supports unknown elements */
- var supportsUnknownElements;
-
- (function() {
- var a = document.createElement('a');
-
- a.innerHTML = '<xyz></xyz>';
-
- //if the hidden property is implemented we can assume, that the browser supports HTML5 Styles
- supportsHtml5Styles = ('hidden' in a);
- supportsUnknownElements = a.childNodes.length == 1 || (function() {
- // assign a false positive if unable to shiv
- try {
- (document.createElement)('a');
- } catch(e) {
- return true;
- }
- var frag = document.createDocumentFragment();
- return (
- typeof frag.cloneNode == 'undefined' ||
- typeof frag.createDocumentFragment == 'undefined' ||
- typeof frag.createElement == 'undefined'
- );
- }());
-
- }());
-
- /*--------------------------------------------------------------------------*/
-
- /**
- * Creates a style sheet with the given CSS text and adds it to the document.
- * @private
- * @param {Document} ownerDocument The document.
- * @param {String} cssText The CSS text.
- * @returns {StyleSheet} The style element.
- */
- function addStyleSheet(ownerDocument, cssText) {
- var p = ownerDocument.createElement('p'),
- parent = ownerDocument.getElementsByTagName('head')[0] || ownerDocument.documentElement;
-
- p.innerHTML = 'x<style>' + cssText + '</style>';
- return parent.insertBefore(p.lastChild, parent.firstChild);
- }
-
- /**
- * Returns the value of `html5.elements` as an array.
- * @private
- * @returns {Array} An array of shived element node names.
- */
- function getElements() {
- var elements = html5.elements;
- return typeof elements == 'string' ? elements.split(' ') : elements;
- }
-
- /**
- * Shivs the `createElement` and `createDocumentFragment` methods of the document.
- * @private
- * @param {Document|DocumentFragment} ownerDocument The document.
- */
- function shivMethods(ownerDocument) {
- var cache = {},
- docCreateElement = ownerDocument.createElement,
- docCreateFragment = ownerDocument.createDocumentFragment,
- frag = docCreateFragment();
-
- ownerDocument.createElement = function(nodeName) {
- // Avoid adding some elements to fragments in IE < 9 because
- // * Attributes like `name` or `type` cannot be set/changed once an element
- // is inserted into a document/fragment
- // * Link elements with `src` attributes that are inaccessible, as with
- // a 403 response, will cause the tab/window to crash
- // * Script elements appended to fragments will execute when their `src`
- // or `text` property is set
- var node = (cache[nodeName] || (cache[nodeName] = docCreateElement(nodeName))).cloneNode();
- return html5.shivMethods && node.canHaveChildren && !reSkip.test(nodeName) ? frag.appendChild(node) : node;
- };
-
- ownerDocument.createDocumentFragment = Function('h,f', 'return function(){' +
- 'var n=f.cloneNode(),c=n.createElement;' +
- 'h.shivMethods&&(' +
- // unroll the `createElement` calls
- getElements().join().replace(/\w+/g, function(nodeName) {
- cache[nodeName] = docCreateElement(nodeName);
- frag.createElement(nodeName);
- return 'c("' + nodeName + '")';
- }) +
- ');return n}'
- )(html5, frag);
- }
-
- /*--------------------------------------------------------------------------*/
-
- /**
- * Shivs the given document.
- * @memberOf html5
- * @param {Document} ownerDocument The document to shiv.
- * @returns {Document} The shived document.
- */
- function shivDocument(ownerDocument) {
- var shived;
- if (ownerDocument.documentShived) {
- return ownerDocument;
- }
- if (html5.shivCSS && !supportsHtml5Styles) {
- shived = !!addStyleSheet(ownerDocument,
- // corrects block display not defined in IE6/7/8/9
- 'article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}' +
- // corrects audio display not defined in IE6/7/8/9
- 'audio{display:none}' +
- // corrects canvas and video display not defined in IE6/7/8/9
- 'canvas,video{display:inline-block;*display:inline;*zoom:1}' +
- // corrects 'hidden' attribute and audio[controls] display not present in IE7/8/9
- '[hidden]{display:none}audio[controls]{display:inline-block;*display:inline;*zoom:1}' +
- // adds styling not present in IE6/7/8/9
- 'mark{background:#FF0;color:#000}'
- );
- }
- if (!supportsUnknownElements) {
- shived = !shivMethods(ownerDocument);
- }
- if (shived) {
- ownerDocument.documentShived = shived;
- }
- return ownerDocument;
- }
-
- /*--------------------------------------------------------------------------*/
-
- /**
- * The `html5` object is exposed so that more elements can be shived and
- * existing shiving can be detected on iframes.
- * @type Object
- * @example
- *
- * // options can be changed before the script is included
- * html5 = { 'elements': 'mark section', 'shivCSS': false, 'shivMethods': false };
- */
- var html5 = {
-
- /**
- * An array or space separated string of node names of the elements to shiv.
- * @memberOf html5
- * @type Array|String
- */
- 'elements': options.elements || 'abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video',
-
- /**
- * A flag to indicate that the HTML5 style sheet should be inserted.
- * @memberOf html5
- * @type Boolean
- */
- 'shivCSS': !(options.shivCSS === false),
-
- /**
- * A flag to indicate that the document's `createElement` and `createDocumentFragment`
- * methods should be overwritten.
- * @memberOf html5
- * @type Boolean
- */
- 'shivMethods': !(options.shivMethods === false),
-
- /**
- * A string to describe the type of `html5` object ("default" or "default print").
- * @memberOf html5
- * @type String
- */
- 'type': 'default',
-
- // shivs the document according to the specified `html5` object options
- 'shivDocument': shivDocument
- };
-
- /*--------------------------------------------------------------------------*/
-
- // expose html5
- window.html5 = html5;
-
- // shiv the document
- shivDocument(document);
-
- /*------------------------------- Print Shiv -------------------------------*/
-
- /** Used to filter media types */
- var reMedia = /^$|\b(?:all|print)\b/;
-
- /** Used to namespace printable elements */
- var shivNamespace = 'html5shiv';
-
- /** Detect whether the browser supports shivable style sheets */
- var supportsShivableSheets = !supportsUnknownElements && (function() {
- // assign a false negative if unable to shiv
- var docEl = document.documentElement;
- return !(
- typeof document.namespaces == 'undefined' ||
- typeof document.parentWindow == 'undefined' ||
- typeof docEl.applyElement == 'undefined' ||
- typeof docEl.removeNode == 'undefined' ||
- typeof window.attachEvent == 'undefined'
- );
- }());
-
- /*--------------------------------------------------------------------------*/
-
- /**
- * Wraps all HTML5 elements in the given document with printable elements.
- * (eg. the "header" element is wrapped with the "html5shiv:header" element)
- * @private
- * @param {Document} ownerDocument The document.
- * @returns {Array} An array wrappers added.
- */
- function addWrappers(ownerDocument) {
- var node,
- nodes = ownerDocument.getElementsByTagName('*'),
- index = nodes.length,
- reElements = RegExp('^(?:' + getElements().join('|') + ')$', 'i'),
- result = [];
-
- while (index--) {
- node = nodes[index];
- if (reElements.test(node.nodeName)) {
- result.push(node.applyElement(createWrapper(node)));
- }
- }
- return result;
- }
-
- /**
- * Creates a printable wrapper for the given element.
- * @private
- * @param {Element} element The element.
- * @returns {Element} The wrapper.
- */
- function createWrapper(element) {
- var node,
- nodes = element.attributes,
- index = nodes.length,
- wrapper = element.ownerDocument.createElement(shivNamespace + ':' + element.nodeName);
-
- // copy element attributes to the wrapper
- while (index--) {
- node = nodes[index];
- node.specified && wrapper.setAttribute(node.nodeName, node.nodeValue);
- }
- // copy element styles to the wrapper
- wrapper.style.cssText = element.style.cssText;
- return wrapper;
- }
-
- /**
- * Shivs the given CSS text.
- * (eg. header{} becomes html5shiv\:header{})
- * @private
- * @param {String} cssText The CSS text to shiv.
- * @returns {String} The shived CSS text.
- */
- function shivCssText(cssText) {
- var pair,
- parts = cssText.split('{'),
- index = parts.length,
- reElements = RegExp('(^|[\\s,>+~])(' + getElements().join('|') + ')(?=[[\\s,>+~#.:]|$)', 'gi'),
- replacement = '$1' + shivNamespace + '\\:$2';
-
- while (index--) {
- pair = parts[index] = parts[index].split('}');
- pair[pair.length - 1] = pair[pair.length - 1].replace(reElements, replacement);
- parts[index] = pair.join('}');
- }
- return parts.join('{');
- }
-
- /**
- * Removes the given wrappers, leaving the original elements.
- * @private
- * @params {Array} wrappers An array of printable wrappers.
- */
- function removeWrappers(wrappers) {
- var index = wrappers.length;
- while (index--) {
- wrappers[index].removeNode();
- }
- }
-
- /*--------------------------------------------------------------------------*/
-
- /**
- * Shivs the given document for print.
- * @memberOf html5
- * @param {Document} ownerDocument The document to shiv.
- * @returns {Document} The shived document.
- */
- function shivPrint(ownerDocument) {
- var shivedSheet,
- wrappers,
- namespaces = ownerDocument.namespaces,
- ownerWindow = ownerDocument.parentWindow;
-
- if (!supportsShivableSheets || ownerDocument.printShived) {
- return ownerDocument;
- }
- if (typeof namespaces[shivNamespace] == 'undefined') {
- namespaces.add(shivNamespace);
- }
-
- ownerWindow.attachEvent('onbeforeprint', function() {
- var imports,
- length,
- sheet,
- collection = ownerDocument.styleSheets,
- cssText = [],
- index = collection.length,
- sheets = Array(index);
-
- // convert styleSheets collection to an array
- while (index--) {
- sheets[index] = collection[index];
- }
- // concat all style sheet CSS text
- while ((sheet = sheets.pop())) {
- // IE does not enforce a same origin policy for external style sheets
- if (!sheet.disabled && reMedia.test(sheet.media)) {
- for (imports = sheet.imports, index = 0, length = imports.length; index < length; index++) {
- sheets.push(imports[index]);
- }
- try {
- cssText.push(sheet.cssText);
- } catch(er){}
- }
- }
- // wrap all HTML5 elements with printable elements and add the shived style sheet
- cssText = shivCssText(cssText.reverse().join(''));
- wrappers = addWrappers(ownerDocument);
- shivedSheet = addStyleSheet(ownerDocument, cssText);
- });
-
- ownerWindow.attachEvent('onafterprint', function() {
- // remove wrappers, leaving the original elements, and remove the shived style sheet
- removeWrappers(wrappers);
- shivedSheet.removeNode(true);
- });
-
- ownerDocument.printShived = true;
- return ownerDocument;
- }
-
- /*--------------------------------------------------------------------------*/
-
- // expose API
- html5.type += ' print';
- html5.shivPrint = shivPrint;
-
- // shiv for print
- shivPrint(document);
-
-}(this, document));/*yepnope1.5.3|WTFPL*/
-(function(a,b,c){function d(a){return o.call(a)=="[object Function]"}function e(a){return typeof a=="string"}function f(){}function g(a){return!a||a=="loaded"||a=="complete"||a=="uninitialized"}function h(){var a=p.shift();q=1,a?a.t?m(function(){(a.t=="c"?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){a!="img"&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l={},o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};y[c]===1&&(r=1,y[c]=[],l=b.createElement(a)),a=="object"?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),a!="img"&&(r||y[c]===2?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i(b=="c"?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),p.length==1&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&o.call(a.opera)=="[object Opera]",l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return o.call(a)=="[object Array]"},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f<d;f++)g=a[f].split("="),(e=z[g.shift()])&&(c=e(c,g));for(f=0;f<b;f++)c=x[f](c);return c}function g(a,e,f,g,i){var j=b(a),l=j.autoCallback;j.url.split(".").pop().split("?").shift(),j.bypass||(e&&(e=d(e)?e:e[a]||e[g]||e[a.split("/").pop().split("?")[0]]||h),j.instead?j.instead(a,e,f,g,i):(y[j.url]?j.noexec=!0:y[j.url]=1,f.load(j.url,j.forceCSS||!j.forceJS&&"css"==j.url.split(".").pop().split("?").shift()?"c":c,j.noexec,j.attrs,j.timeout),(d(e)||d(l))&&f.load(function(){k(),e&&e(j.origUrl,i,g),l&&l(j.origUrl,i,g),y[j.url]=2})))}function i(a,b){function c(a,c){if(a){if(e(a))c||(j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}),g(a,j,b,0,h);else if(Object(a)===a)for(n in m=function(){var b=0,c;for(c in a)a.hasOwnProperty(c)&&b++;return b}(),a)a.hasOwnProperty(n)&&(!c&&!--m&&(d(j)?j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}:j[n]=function(a){return function(){var b=[].slice.call(arguments);a&&a.apply(this,b),l()}}(k[n])),g(a[n],j,b,n,h))}else!c&&l()}var h=!!a.test,i=a.load||a.both,j=a.callback||f,k=j,l=a.complete||f,m,n;c(h?a.yep:a.nope,!!i),i&&c(i)}var j,l,m=this.yepnope.loader;if(e(a))g(a,0,m,0);else if(w(a))for(j=0;j<a.length;j++)l=a[j],e(l)?g(l,0,m,0):w(l)?B(l):Object(l)===l&&i(l,m);else Object(a)===a&&i(a,m)},B.addPrefix=function(a,b){z[a]=b},B.addFilter=function(a){x.push(a)},B.errorTimeout=1e4,b.readyState==null&&b.addEventListener&&(b.readyState="loading",b.addEventListener("DOMContentLoaded",A=function(){b.removeEventListener("DOMContentLoaded",A,0),b.readyState="complete"},0)),a.yepnope=k(),a.yepnope.executeStack=h,a.yepnope.injectJs=function(a,c,d,e,i,j){var k=b.createElement("script"),l,o,e=e||B.errorTimeout;k.src=a;for(o in d)k.setAttribute(o,d[o]);c=j?h:c||f,k.onreadystatechange=k.onload=function(){!l&&g(k.readyState)&&(l=1,c(),k.onload=k.onreadystatechange=null)},m(function(){l||(l=1,c(1))},e),i?k.onload():n.parentNode.insertBefore(k,n)},a.yepnope.injectCss=function(a,c,d,e,g,i){var e=b.createElement("link"),j,c=i?h:c||f;e.href=a,e.rel="stylesheet",e.type="text/css";for(j in d)e.setAttribute(j,d[j]);g||(n.parentNode.insertBefore(e,n),m(c,0))}})(this,document);
-Modernizr.load=function(){yepnope.apply(window,[].slice.call(arguments,0));};
-;
\ No newline at end of file diff --git a/view/theme/dispy/js/modernizr.custom.2.5.3.min.js b/view/theme/dispy/js/modernizr.custom.2.5.3.min.js deleted file mode 100644 index 1ce20bdb8..000000000 --- a/view/theme/dispy/js/modernizr.custom.2.5.3.min.js +++ /dev/null @@ -1,4 +0,0 @@ -/* Modernizr 2.5.3 (Custom Build) | MIT & BSD
- * Build: http://www.modernizr.com/download/#-fontface-backgroundsize-borderimage-borderradius-boxshadow-flexbox-flexbox_legacy-hsla-multiplebgs-opacity-rgba-textshadow-cssanimations-csscolumns-generatedcontent-cssgradients-cssreflections-csstransforms-csstransforms3d-csstransitions-applicationcache-canvas-canvastext-draganddrop-hashchange-history-audio-video-indexeddb-input-inputtypes-localstorage-postmessage-sessionstorage-websockets-websqldatabase-webworkers-geolocation-inlinesvg-smil-svg-svgclippaths-touch-printshiv-mq-teststyles-testprop-testallprops-hasevent-prefixes-domprefixes-load
- */
-;window.Modernizr=function(a,b,c){function C(a){i.cssText=a}function D(a,b){return C(m.join(a+";")+(b||""))}function E(a,b){return typeof a===b}function F(a,b){return!!~(""+a).indexOf(b)}function G(a,b){for(var d in a)if(i[a[d]]!==c)return b=="pfx"?a[d]:!0;return!1}function H(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:E(f,"function")?f.bind(d||b):f}return!1}function I(a,b,c){var d=a.charAt(0).toUpperCase()+a.substr(1),e=(a+" "+o.join(d+" ")+d).split(" ");return E(b,"string")||E(b,"undefined")?G(e,b):(e=(a+" "+p.join(d+" ")+d).split(" "),H(e,b,c))}function K(){e.input=function(c){for(var d=0,e=c.length;d<e;d++)t[c[d]]=c[d]in j;return t.list&&(t.list=!!b.createElement("datalist")&&!!a.HTMLDataListElement),t}("autocomplete autofocus list placeholder max min multiple pattern required step".split(" ")),e.inputtypes=function(a){for(var d=0,e,g,h,i=a.length;d<i;d++)j.setAttribute("type",g=a[d]),e=j.type!=="text",e&&(j.value=k,j.style.cssText="position:absolute;visibility:hidden;",/^range$/.test(g)&&j.style.WebkitAppearance!==c?(f.appendChild(j),h=b.defaultView,e=h.getComputedStyle&&h.getComputedStyle(j,null).WebkitAppearance!=="textfield"&&j.offsetHeight!==0,f.removeChild(j)):/^(search|tel)$/.test(g)||(/^(url|email)$/.test(g)?e=j.checkValidity&&j.checkValidity()===!1:/^color$/.test(g)?(f.appendChild(j),f.offsetWidth,e=j.value!=k,f.removeChild(j)):e=j.value!=k)),s[a[d]]=!!e;return s}("search tel url email datetime date month week time datetime-local number range color".split(" "))}var d="2.5.3",e={},f=b.documentElement,g="modernizr",h=b.createElement(g),i=h.style,j=b.createElement("input"),k=":)",l={}.toString,m=" -webkit- -moz- -o- -ms- ".split(" "),n="Webkit Moz O ms",o=n.split(" "),p=n.toLowerCase().split(" "),q={svg:"http://www.w3.org/2000/svg"},r={},s={},t={},u=[],v=u.slice,w,x=function(a,c,d,e){var h,i,j,k=b.createElement("div"),l=b.body,m=l?l:b.createElement("body");if(parseInt(d,10))while(d--)j=b.createElement("div"),j.id=e?e[d]:g+(d+1),k.appendChild(j);return h=["­","<style>",a,"</style>"].join(""),k.id=g,(l?k:m).innerHTML+=h,m.appendChild(k),l||(m.style.background="",f.appendChild(m)),i=c(k,a),l?k.parentNode.removeChild(k):m.parentNode.removeChild(m),!!i},y=function(b){var c=a.matchMedia||a.msMatchMedia;if(c)return c(b).matches;var d;return x("@media "+b+" { #"+g+" { position: absolute; } }",function(b){d=(a.getComputedStyle?getComputedStyle(b,null):b.currentStyle)["position"]=="absolute"}),d},z=function(){function d(d,e){e=e||b.createElement(a[d]||"div"),d="on"+d;var f=d in e;return f||(e.setAttribute||(e=b.createElement("div")),e.setAttribute&&e.removeAttribute&&(e.setAttribute(d,""),f=E(e[d],"function"),E(e[d],"undefined")||(e[d]=c),e.removeAttribute(d))),e=null,f}var a={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return d}(),A={}.hasOwnProperty,B;!E(A,"undefined")&&!E(A.call,"undefined")?B=function(a,b){return A.call(a,b)}:B=function(a,b){return b in a&&E(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=v.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(v.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(v.call(arguments)))};return e});var J=function(c,d){var f=c.join(""),g=d.length;x(f,function(c,d){var f=b.styleSheets[b.styleSheets.length-1],h=f?f.cssRules&&f.cssRules[0]?f.cssRules[0].cssText:f.cssText||"":"",i=c.childNodes,j={};while(g--)j[i[g].id]=i[g];e.touch="ontouchstart"in a||a.DocumentTouch&&b instanceof DocumentTouch||(j.touch&&j.touch.offsetTop)===9,e.csstransforms3d=(j.csstransforms3d&&j.csstransforms3d.offsetLeft)===9&&j.csstransforms3d.offsetHeight===3,e.generatedcontent=(j.generatedcontent&&j.generatedcontent.offsetHeight)>=1,e.fontface=/src/i.test(h)&&h.indexOf(d.split(" ")[0])===0},g,d)}(['@font-face {font-family:"font";src:url("https://")}',["@media (",m.join("touch-enabled),("),g,")","{#touch{top:9px;position:absolute}}"].join(""),["@media (",m.join("transform-3d),("),g,")","{#csstransforms3d{left:9px;position:absolute;height:3px;}}"].join(""),['#generatedcontent:after{content:"',k,'";visibility:hidden}'].join("")],["fontface","touch","csstransforms3d","generatedcontent"]);r.flexbox=function(){return I("flexOrder")},r["flexbox-legacy"]=function(){return I("boxDirection")},r.canvas=function(){var a=b.createElement("canvas");return!!a.getContext&&!!a.getContext("2d")},r.canvastext=function(){return!!e.canvas&&!!E(b.createElement("canvas").getContext("2d").fillText,"function")},r.touch=function(){return e.touch},r.geolocation=function(){return!!navigator.geolocation},r.postmessage=function(){return!!a.postMessage},r.websqldatabase=function(){return!!a.openDatabase},r.indexedDB=function(){return!!I("indexedDB",a)},r.hashchange=function(){return z("hashchange",a)&&(b.documentMode===c||b.documentMode>7)},r.history=function(){return!!a.history&&!!history.pushState},r.draganddrop=function(){var a=b.createElement("div");return"draggable"in a||"ondragstart"in a&&"ondrop"in a},r.websockets=function(){for(var b=-1,c=o.length;++b<c;)if(a[o[b]+"WebSocket"])return!0;return"WebSocket"in a},r.rgba=function(){return C("background-color:rgba(150,255,150,.5)"),F(i.backgroundColor,"rgba")},r.hsla=function(){return C("background-color:hsla(120,40%,100%,.5)"),F(i.backgroundColor,"rgba")||F(i.backgroundColor,"hsla")},r.multiplebgs=function(){return C("background:url(https://),url(https://),red url(https://)"),/(url\s*\(.*?){3}/.test(i.background)},r.backgroundsize=function(){return I("backgroundSize")},r.borderimage=function(){return I("borderImage")},r.borderradius=function(){return I("borderRadius")},r.boxshadow=function(){return I("boxShadow")},r.textshadow=function(){return b.createElement("div").style.textShadow===""},r.opacity=function(){return D("opacity:.55"),/^0.55$/.test(i.opacity)},r.cssanimations=function(){return I("animationName")},r.csscolumns=function(){return I("columnCount")},r.cssgradients=function(){var a="background-image:",b="gradient(linear,left top,right bottom,from(#9f9),to(white));",c="linear-gradient(left top,#9f9, white);";return C((a+"-webkit- ".split(" ").join(b+a)+m.join(c+a)).slice(0,-a.length)),F(i.backgroundImage,"gradient")},r.cssreflections=function(){return I("boxReflect")},r.csstransforms=function(){return!!I("transform")},r.csstransforms3d=function(){var a=!!I("perspective");return a&&"webkitPerspective"in f.style&&(a=e.csstransforms3d),a},r.csstransitions=function(){return I("transition")},r.fontface=function(){return e.fontface},r.generatedcontent=function(){return e.generatedcontent},r.video=function(){var a=b.createElement("video"),c=!1;try{if(c=!!a.canPlayType)c=new Boolean(c),c.ogg=a.canPlayType('video/ogg; codecs="theora"').replace(/^no$/,""),c.h264=a.canPlayType('video/mp4; codecs="avc1.42E01E"').replace(/^no$/,""),c.webm=a.canPlayType('video/webm; codecs="vp8, vorbis"').replace(/^no$/,"")}catch(d){}return c},r.audio=function(){var a=b.createElement("audio"),c=!1;try{if(c=!!a.canPlayType)c=new Boolean(c),c.ogg=a.canPlayType('audio/ogg; codecs="vorbis"').replace(/^no$/,""),c.mp3=a.canPlayType("audio/mpeg;").replace(/^no$/,""),c.wav=a.canPlayType('audio/wav; codecs="1"').replace(/^no$/,""),c.m4a=(a.canPlayType("audio/x-m4a;")||a.canPlayType("audio/aac;")).replace(/^no$/,"")}catch(d){}return c},r.localstorage=function(){try{return localStorage.setItem(g,g),localStorage.removeItem(g),!0}catch(a){return!1}},r.sessionstorage=function(){try{return sessionStorage.setItem(g,g),sessionStorage.removeItem(g),!0}catch(a){return!1}},r.webworkers=function(){return!!a.Worker},r.applicationcache=function(){return!!a.applicationCache},r.svg=function(){return!!b.createElementNS&&!!b.createElementNS(q.svg,"svg").createSVGRect},r.inlinesvg=function(){var a=b.createElement("div");return a.innerHTML="<svg/>",(a.firstChild&&a.firstChild.namespaceURI)==q.svg},r.smil=function(){return!!b.createElementNS&&/SVGAnimate/.test(l.call(b.createElementNS(q.svg,"animate")))},r.svgclippaths=function(){return!!b.createElementNS&&/SVGClipPath/.test(l.call(b.createElementNS(q.svg,"clipPath")))};for(var L in r)B(r,L)&&(w=L.toLowerCase(),e[w]=r[L](),u.push((e[w]?"":"no-")+w));return e.input||K(),C(""),h=j=null,e._version=d,e._prefixes=m,e._domPrefixes=p,e._cssomPrefixes=o,e.mq=y,e.hasEvent=z,e.testProp=function(a){return G([a])},e.testAllProps=I,e.testStyles=x,e}(this,this.document),function(a,b){function g(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x<style>"+b+"</style>",d.insertBefore(c.lastChild,d.firstChild)}function h(){var a=k.elements;return typeof a=="string"?a.split(" "):a}function i(a){var b={},c=a.createElement,e=a.createDocumentFragment,f=e();a.createElement=function(a){var e=(b[a]||(b[a]=c(a))).cloneNode();return k.shivMethods&&e.canHaveChildren&&!d.test(a)?f.appendChild(e):e},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+h().join().replace(/\w+/g,function(a){return b[a]=c(a),f.createElement(a),'c("'+a+'")'})+");return n}")(k,f)}function j(a){var b;return a.documentShived?a:(k.shivCSS&&!e&&(b=!!g(a,"article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio{display:none}canvas,video{display:inline-block;*display:inline;*zoom:1}[hidden]{display:none}audio[controls]{display:inline-block;*display:inline;*zoom:1}mark{background:#FF0;color:#000}")),f||(b=!i(a)),b&&(a.documentShived=b),a)}function o(a){var b,c=a.getElementsByTagName("*"),d=c.length,e=RegExp("^(?:"+h().join("|")+")$","i"),f=[];while(d--)b=c[d],e.test(b.nodeName)&&f.push(b.applyElement(p(b)));return f}function p(a){var b,c=a.attributes,d=c.length,e=a.ownerDocument.createElement(m+":"+a.nodeName);while(d--)b=c[d],b.specified&&e.setAttribute(b.nodeName,b.nodeValue);return e.style.cssText=a.style.cssText,e}function q(a){var b,c=a.split("{"),d=c.length,e=RegExp("(^|[\\s,>+~])("+h().join("|")+")(?=[[\\s,>+~#.:]|$)","gi"),f="$1"+m+"\\:$2";while(d--)b=c[d]=c[d].split("}"),b[b.length-1]=b[b.length-1].replace(e,f),c[d]=b.join("}");return c.join("{")}function r(a){var b=a.length;while(b--)a[b].removeNode()}function s(a){var b,c,d=a.namespaces,e=a.parentWindow;return!n||a.printShived?a:(typeof d[m]=="undefined"&&d.add(m),e.attachEvent("onbeforeprint",function(){var d,e,f,h=a.styleSheets,i=[],j=h.length,k=Array(j);while(j--)k[j]=h[j];while(f=k.pop())if(!f.disabled&&l.test(f.media)){for(d=f.imports,j=0,e=d.length;j<e;j++)k.push(d[j]);try{i.push(f.cssText)}catch(m){}}i=q(i.reverse().join("")),c=o(a),b=g(a,i)}),e.attachEvent("onafterprint",function(){r(c),b.removeNode(!0)}),a.printShived=!0,a)}var c=a.html5||{},d=/^<|^(?:button|form|map|select|textarea)$/i,e,f;(function(){var a=b.createElement("a");a.innerHTML="<xyz></xyz>",e="hidden"in a,f=a.childNodes.length==1||function(){try{b.createElement("a")}catch(a){return!0}var c=b.createDocumentFragment();return typeof c.cloneNode=="undefined"||typeof c.createDocumentFragment=="undefined"||typeof c.createElement=="undefined"}()})();var k={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:j};a.html5=k,j(b);var l=/^$|\b(?:all|print)\b/,m="html5shiv",n=!f&&function(){var c=b.documentElement;return typeof b.namespaces!="undefined"&&typeof b.parentWindow!="undefined"&&typeof c.applyElement!="undefined"&&typeof c.removeNode!="undefined"&&typeof a.attachEvent!="undefined"}();k.type+=" print",k.shivPrint=s,s(b)}(this,document),function(a,b,c){function d(a){return o.call(a)=="[object Function]"}function e(a){return typeof a=="string"}function f(){}function g(a){return!a||a=="loaded"||a=="complete"||a=="uninitialized"}function h(){var a=p.shift();q=1,a?a.t?m(function(){(a.t=="c"?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){a!="img"&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l={},o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};y[c]===1&&(r=1,y[c]=[],l=b.createElement(a)),a=="object"?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),a!="img"&&(r||y[c]===2?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i(b=="c"?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),p.length==1&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&o.call(a.opera)=="[object Opera]",l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return o.call(a)=="[object Array]"},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f<d;f++)g=a[f].split("="),(e=z[g.shift()])&&(c=e(c,g));for(f=0;f<b;f++)c=x[f](c);return c}function g(a,e,f,g,i){var j=b(a),l=j.autoCallback;j.url.split(".").pop().split("?").shift(),j.bypass||(e&&(e=d(e)?e:e[a]||e[g]||e[a.split("/").pop().split("?")[0]]||h),j.instead?j.instead(a,e,f,g,i):(y[j.url]?j.noexec=!0:y[j.url]=1,f.load(j.url,j.forceCSS||!j.forceJS&&"css"==j.url.split(".").pop().split("?").shift()?"c":c,j.noexec,j.attrs,j.timeout),(d(e)||d(l))&&f.load(function(){k(),e&&e(j.origUrl,i,g),l&&l(j.origUrl,i,g),y[j.url]=2})))}function i(a,b){function c(a,c){if(a){if(e(a))c||(j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}),g(a,j,b,0,h);else if(Object(a)===a)for(n in m=function(){var b=0,c;for(c in a)a.hasOwnProperty(c)&&b++;return b}(),a)a.hasOwnProperty(n)&&(!c&&!--m&&(d(j)?j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}:j[n]=function(a){return function(){var b=[].slice.call(arguments);a&&a.apply(this,b),l()}}(k[n])),g(a[n],j,b,n,h))}else!c&&l()}var h=!!a.test,i=a.load||a.both,j=a.callback||f,k=j,l=a.complete||f,m,n;c(h?a.yep:a.nope,!!i),i&&c(i)}var j,l,m=this.yepnope.loader;if(e(a))g(a,0,m,0);else if(w(a))for(j=0;j<a.length;j++)l=a[j],e(l)?g(l,0,m,0):w(l)?B(l):Object(l)===l&&i(l,m);else Object(a)===a&&i(a,m)},B.addPrefix=function(a,b){z[a]=b},B.addFilter=function(a){x.push(a)},B.errorTimeout=1e4,b.readyState==null&&b.addEventListener&&(b.readyState="loading",b.addEventListener("DOMContentLoaded",A=function(){b.removeEventListener("DOMContentLoaded",A,0),b.readyState="complete"},0)),a.yepnope=k(),a.yepnope.executeStack=h,a.yepnope.injectJs=function(a,c,d,e,i,j){var k=b.createElement("script"),l,o,e=e||B.errorTimeout;k.src=a;for(o in d)k.setAttribute(o,d[o]);c=j?h:c||f,k.onreadystatechange=k.onload=function(){!l&&g(k.readyState)&&(l=1,c(),k.onload=k.onreadystatechange=null)},m(function(){l||(l=1,c(1))},e),i?k.onload():n.parentNode.insertBefore(k,n)},a.yepnope.injectCss=function(a,c,d,e,g,i){var e=b.createElement("link"),j,c=i?h:c||f;e.href=a,e.rel="stylesheet",e.type="text/css";for(j in d)e.setAttribute(j,d[j]);g||(n.parentNode.insertBefore(e,n),m(c,0))}}(this,document),Modernizr.load=function(){yepnope.apply(window,[].slice.call(arguments,0))};
\ No newline at end of file diff --git a/view/theme/dispy/lang_selector.tpl b/view/theme/dispy/lang_selector.tpl deleted file mode 100644 index e777a0a86..000000000 --- a/view/theme/dispy/lang_selector.tpl +++ /dev/null @@ -1,10 +0,0 @@ -<div id="lang-select-icon" class="icon s22 language" title="$title" onclick="openClose('language-selector');" ></div> -<div id="language-selector" style="display: none;" > - <form action="#" method="post" > - <select name="system_language" onchange="this.form.submit();" > - {{ for $langs.0 as $v=>$l }} - <option value="$v" {{if $v==$langs.1}}selected="selected"{{endif}}>$l</option> - {{ endfor }} - </select> - </form> -</div> diff --git a/view/theme/dispy/light/_base.less b/view/theme/dispy/light/_base.less deleted file mode 100644 index c605dc702..000000000 --- a/view/theme/dispy/light/_base.less +++ /dev/null @@ -1,183 +0,0 @@ -// _base.less -// -// the base file for dispy's light "sub-theme". -// -// Notes: -// this is used to define mixins (think of them as functions) -// and variables. the mixins are the ".foo () {}" things, vars are -// like "@bar". -// -// (BTW, this will make it a LOT easier to maintain.) -// -// Dev. Note: the // style comments don't show up at all when -// you "compile" the css (with `lessc`), but css (/**/) comments -// do. i use them to our advantage :). - -// import our reset styles first -@import "../css/reset"; - -//* backgrounds */ -@dk_bg_colour: #2e3436; -@bg_colour: #eeeeec; -@bg_alt_colour: #2e302e; -@med_bg_colour: #4e4f4e; -@menu_bg_colour: #555753; - -//* font colour, aka color: */ -@lt_main_colour: lighten(@bg_colour, 10%); -@main_colour: #111; -@dk_main_colour: darken(@bg_colour, 10%); -@main_alt_colour: #999999; -// darken(@main_alt_colour, 6.5%) > #888888 -// //#9eabb0 -// darken(@main_alt_colour, 10%) > #777777 -// darken(@main_alt_colour, 20%) > #666666 -// darken(@main_alt_colour, 26.8%) > #555555 -// darken(@main_alt_colour, 33.5%) > #444444 -// darken(@main_alt_colour, 40%) > #333333 -// -// lighten(@main_alt_colour, 26.5%) > #dddddd -// lighten(@main_alt_colour, 20%) > #cccccc -// lighten(@main_alt_colour, 13.5%) > #bbbbbb -// lighten(@main_alt_colour, 6.5%) > #aaaaaa -// lighten(@main_alt_colour, 30%) -@disabled_colour: #dddddd; -@shiny_colour: #f2f2c3; -@red_orange: #ff2000; -@orange: #f8911b; -@lt_orange: #fcaf3e; -@shadow_colour: @main_colour; -@lt_shadow_colour: #888888; -@friendica_blue: #3465a4; -@border2: #babdb6; -@group_show: #9ade00; -@group_hide: #ff4141; -@notice: #511919; -@info: #364e59; -@alert: #ff0000; - -//* links */ -// yes our link colour is "friendica blue" ;) -@link_colour: @friendica_blue; -@dk_link_colour: darken(@link_colour, 10%); -@lt_link_colour: lighten(@link_colour, 10%); -//@hover_colour: #729fcf; -@hover_colour: @dk_link_colour; - -// other colours -@med_border_colour: #babdd6; - -//* box shadows */ -@menu_shadow: 5px 0 10px 0 @shadow_colour; -@main_shadow: 3px 3px 3px 10px 0 @shadow_colour; - -// default here was @main_shadow -.box_shadow(@h: 5px, @v: 5px, @blur: 5px, @spread: 0px, @colour: @shadow_colour) { - -moz-box-shadow: @h @v @blur @spread @colour; - -o-box-shadow: @h @v @blur @spread @colour; - -webkit-box-shadow: @h @v @blur @spread @colour; - -ms-box-shadow: @h @v @blur @spread @colour; - box-shadow: @h @v @blur @spread @colour; -} -//* http://css-tricks.com/snippets/css/css-box-shadow/ -//* box-shadow: -//* 1. The horizontal offset of the shadow, positive means -//* the shadow will be on the right of the box, a negative -//* offset will put the shadow on the left of the box. -//* 2. The vertical offset of the shadow, a negative one -//* means the box-shadow will be above the box, a -//* positive one means the shadow will be below the box. -//* 3. The blur radius (optional), if set to 0 the shadow -//* will be sharp, the higher the number, the more blurred -//* it will be. -//* 4. The spread radius (optional), positive values increase -//* the size of the shadow, negative values decrease the size. -//* Default is 0 (the shadow is same size as blur). -//* 5. Colo[u]r -//*/ - -//* text-shadow */ -.text_shadow (@h: 1px, @v: 1px, @c: @shadow_colour) { - -moz-text-shadow: @h @v @c; - -o-text-shadow: @h @v @c; - -webkit-text-shadow: @h @v @c; - -ms-text-shadow: @h @v @c; - text-shadow: @h @v @c; -} -//* transitions */ -.transition (@type: all, @dur: 0.75s, @effect: ease-in-out) { - -webkit-transition: @arguments; - -moz-transition: @arguments; - -o-transition: @arguments; - -ms-transition: @arguments; - transition: @arguments; -} - -//* borders */ -.borders (@size: 1px, @style: solid, @colour: @main_colour) { - border: @size @style @colour; -} -.med_borders (@sz: 2px, @st: solid, @c: @med_border_colour) { - border: @sz @st @c; -} -//* rounded box corners */ -.rounded_corners (@r: 5px) { - -o-border-radius: @r; - -webkit-border-radius: @r; - -moz-border-radius: @r; - -ms-border-radius: @r; - border-radius: @r; -} -.text_overflow (@t: ellipsis) { - -moz-text-overflow: @t; - -ms-text-verflow: @t; - -o-text-overflow: @t; - -webkit-text-overflow: @t; - text-overflow: @t; -} -.lin_gradient(@x1: left, @x2: right, @y1: top, @y2: bottom, @c1: @bg_colour, @c2: @dk_bg_colour) { - // w3c - background: linear-gradient(@x1 @y2, @c1, @c2); - // webkit - // -webkit-gradient(<type>, <point> [, <radius>]?, <point> [, <radius>]? [, <stop>]*) - background: -webkit-gradient(linear, @x1 @y1, @x2 @y2, from(@c1), to(@c2)); - // mozilla - // -moz-linear-gradient([<point> || <angle>,]? <stop>, <stop> [, <stop>]) - background: -moz-linear-gradient(@x1 @y2, @c1, @c2); - // opera - //background: -o-linear-gradient([<point> || <angle>,]? <stop>, <stop> [, <stop>]); - background: -o-linear-gradient(@x1, @c1, @c2); -} -//* pre wrap */ -.wrap () { - white-space: pre-wrap; - white-space: pre; - word-wrap: none; -} -//* font size sizing */ -.default_font () { - font-size: 14pt; - line-height: 1.1em; - font-family: sans-serif; -} -.font_size_adjust () { - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; - -o-text-size-adjust: 100%; - font-size-adjust: 100%; -} - -//* reset ul, ol */ -.list_reset () { - margin: 0px; - padding: 0px; - list-style: none; - list-style-position: inside; -} - -//* box size: width, height */ -.box (@w: 20px, @h: 20px) { - width: @w; - height: @h; -} - diff --git a/view/theme/dispy/light/editicons.png b/view/theme/dispy/light/editicons.png Binary files differdeleted file mode 100644 index 41eafbb15..000000000 --- a/view/theme/dispy/light/editicons.png +++ /dev/null diff --git a/view/theme/dispy/light/editicons.svg b/view/theme/dispy/light/editicons.svg deleted file mode 100644 index 2691d24b4..000000000 --- a/view/theme/dispy/light/editicons.svg +++ /dev/null @@ -1,725 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="250" - height="200" - contentStyleType="text/css" - contentScriptType="text/ecmascript" - sodipodi:docname="editicons.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - version="1.1" - id="svg1" - inkscape:version="0.48+devel r" - inkscape:export-filename="/var/www3/kisikew.org/portal/pub/fd/view/theme/dispy/editicons.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <title - id="title4806">editicons</title> - <defs - id="defs4" /> - <sodipodi:namedview - id="base" - pagecolor="#8a8a8a" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="0" - inkscape:zoom="2.6353376" - inkscape:cx="71.888976" - inkscape:cy="165.17294" - inkscape:document-units="px" - inkscape:current-layer="svg1" - showgrid="false" - inkscape:window-width="1100" - inkscape:window-height="740" - inkscape:window-x="34" - inkscape:window-y="42" - inkscape:window-maximized="0" - inkscape:showpageshadow="false" - width="0px" - height="0px" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title>editicons</dc:title> - <dc:contributor> - <cc:Agent> - <dc:title>Simon L'nu</dc:title> - </cc:Agent> - </dc:contributor> - <dc:date>2012-04-20</dc:date> - <dc:creator> - <cc:Agent> - <dc:title>Simon L'nu</dc:title> - </cc:Agent> - </dc:creator> - <dc:publisher> - <cc:Agent> - <dc:title>Simon L'nu</dc:title> - </cc:Agent> - </dc:publisher> - <dc:subject> - <rdf:Bag> - <rdf:li /> - </rdf:Bag> - </dc:subject> - <dc:description> - <dc:title>DESCRIPTION</dc:title> - </dc:description> - <cc:license - rdf:resource="http://artlibre.org/licence/lal" /> - <dc:language>en-CA</dc:language> - </cc:Work> - <cc:License - rdf:about="http://artlibre.org/licence/lal"> - <cc:permits - rdf:resource="http://creativecommons.org/ns#Reproduction" /> - <cc:permits - rdf:resource="http://creativecommons.org/ns#Distribution" /> - <cc:permits - rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> - <cc:requires - rdf:resource="http://creativecommons.org/ns#ShareAlike" /> - <cc:requires - rdf:resource="http://creativecommons.org/ns#Notice" /> - <cc:requires - rdf:resource="http://creativecommons.org/ns#Attribution" /> - </cc:License> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0.43349891,-524.43349)" /> - <rect - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4713" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(-42.805152,-66.847069)" /> - <text - xml:space="preserve" - style="font-size:22px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Verdana;-inkscape-font-specification:Verdana Bold" - x="79.591835" - y="91.591835" - id="text4709" - transform="translate(-46.16293,-73.825339)"><tspan - sodipodi:role="line" - id="tspan4711" - x="79.591835" - y="91.591835" - style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#e6e6e6;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold">B</tspan></text> - <rect - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4721" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(-42.805152,21.152934)" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4725" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(-64.805152,-66.847066)" /> - <rect - transform="translate(-64.805152,-44.847066)" - ry="3" - rx="3" - y="68.413567" - x="66.405151" - height="20" - width="20" - id="rect4727" - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4729" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(-64.805152,-22.84707)" /> - <rect - transform="translate(-64.805152,-0.8470705)" - ry="3" - rx="3" - y="68.413567" - x="66.405151" - height="20" - width="20" - id="rect4731" - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4733" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(-64.805152,21.15293)" /> - <rect - transform="translate(1.194848,-66.847066)" - ry="3" - rx="3" - y="68.413567" - x="66.405151" - height="20" - width="20" - id="rect4735" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" /> - <rect - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4737" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(1.194848,-44.847066)" /> - <rect - transform="translate(1.194848,-22.84707)" - ry="3" - rx="3" - y="68.413567" - x="66.405151" - height="20" - width="20" - id="rect4739" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" /> - <rect - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4741" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(1.194848,-0.8470705)" /> - <rect - transform="translate(1.194848,21.15293)" - ry="3" - rx="3" - y="68.413567" - x="66.405151" - height="20" - width="20" - id="rect4743" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4745" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(-20.805152,-66.847066)" /> - <rect - transform="translate(-20.805152,-44.847066)" - ry="3" - rx="3" - y="68.413567" - x="66.405151" - height="20" - width="20" - id="rect4747" - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4749" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(-20.805152,-22.84707)" /> - <rect - transform="translate(-20.805152,-0.84707)" - ry="3" - rx="3" - y="68.413567" - x="66.405151" - height="20" - width="20" - id="rect4751" - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" /> - <rect - style="fill:#2e2f2e;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4753" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(-20.805152,21.15293)" /> - <rect - transform="translate(-42.805152,-44.847069)" - ry="3" - rx="3" - y="68.413567" - x="66.405151" - height="20" - width="20" - id="rect4715" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" /> - <text - xml:space="preserve" - style="font-size:20px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#ececec;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold" - x="4.7811713" - y="28.940323" - id="text4774" - transform="translate(28.806399,11)"><tspan - sodipodi:role="line" - id="tspan4776" - x="4.7811713" - y="28.940323" - style="font-size:18px">I</tspan></text> - <rect - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" - id="rect4717" - width="20" - height="20" - x="66.405151" - y="68.413567" - rx="3" - ry="3" - transform="translate(-42.805152,-22.847069)" /> - <text - xml:space="preserve" - style="font-size:20px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#ececec;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold" - x="6.4507866" - y="61.118362" - id="text4778" - transform="translate(27,1)"><tspan - sodipodi:role="line" - id="tspan4780" - x="6.4507866" - y="61.118362" - style="font-size:18px">U</tspan></text> - <rect - transform="translate(-42.805152,-0.8470699)" - ry="3" - rx="3" - y="68.413567" - x="66.405151" - height="20" - width="20" - id="rect4719" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#ececec;stroke-opacity:1" /> - <text - xml:space="preserve" - style="font-size:20px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#ececec;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold" - x="4.28688" - y="81.765083" - id="text4782" - transform="translate(29,0.7234271)"><tspan - sodipodi:role="line" - id="tspan4784" - x="4.28688" - y="81.765083" - style="font-size:18px">Q</tspan></text> - <g - id="g1783" - transform="translate(66.197715,-88)"> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - ry="2.9268293" - rx="2.9268293" - y="858.11218" - x="173.12502" - height="9" - width="14.5" - id="rect4387-8" - style="fill:#666666;stroke:#ececec;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - transform="translate(-168.97273,-762.7948)" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - transform="matrix(1.1489362,0,0,1.1489362,-455.1097,-153.28349)" - d="m 411.5,220.26843 c 0,1.50153 -1.20323,2.71875 -2.6875,2.71875 -1.48427,0 -2.6875,-1.21722 -2.6875,-2.71875 0,-1.50152 1.20323,-2.71875 2.6875,-2.71875 1.48427,0 2.6875,1.21723 2.6875,2.71875 z" - sodipodi:ry="2.71875" - sodipodi:rx="2.6875" - sodipodi:cy="220.26843" - sodipodi:cx="408.8125" - id="path4391-3" - style="fill:#1a1a1a;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - sodipodi:type="arc" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - ry="1" - rx="1" - y="859.06403" - x="174.89275" - height="1.8561553" - width="3.5355339" - id="rect4290" - style="fill:#1a1a1a;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - transform="translate(-168.97273,-762.7948)" /> - </g> - <g - transform="translate(-43.063391,-846.33726)" - id="g1037"> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - sodipodi:nodetypes="csccccscc" - inkscape:connector-curvature="0" - id="rect4428-4" - d="m 118.03127,895.15627 0,0.3125 c 0,1.2601 -0.0643,3.4345 -0.35937,5.75 l -1.5625,1e-4 c -0.80183,0.011 -1.64766,4.0737 -1.60938,8.0625 l 8.25,0 c -0.057,-5.5479 1.56902,-11.5211 1.75,-5.6563 0.21453,6.9525 1.74237,-5.1823 1.75,-8.4687 z" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:connector-curvature="0" - id="path4440-4" - d="m 124.78127,905.73727 -1.9375,-0.063" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path4442-9" - d="m 117.59377,901.20597 6.4375,0" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="908.11218" - x="115.28126" - height="0.375" - width="1.0625" - id="rect4446-9" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4448-3" - width="1.0625" - height="0.375" - x="115.34376" - y="906.51843" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="904.89343" - x="115.50001" - height="0.375" - width="1.0625" - id="rect4450-6" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4452-0" - width="1.0625" - height="0.375" - x="115.81251" - y="903.42468" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="902.17468" - x="116.21876" - height="0.375" - width="1.0625" - id="rect4454-5" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4456-0" - width="1.0625" - height="0.375" - x="118.50001" - y="900.17468" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="898.70593" - x="118.68751" - height="0.375" - width="1.0625" - id="rect4458-2" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4460-9" - width="1.0625" - height="0.375" - x="118.75001" - y="897.20593" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="895.79968" - x="118.75001" - height="0.375" - width="1.0625" - id="rect4462-4" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4464-3" - width="1.0625" - height="0.375" - x="120.84376" - y="908.11218" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="906.51843" - x="120.90627" - height="0.375" - width="1.0625" - id="rect4466-5" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4468-1" - width="1.0625" - height="0.375" - x="121.06252" - y="904.89343" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="903.42468" - x="121.37502" - height="0.375" - width="1.0625" - id="rect4470-7" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4472-4" - width="1.0625" - height="0.375" - x="121.78127" - y="902.17468" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="900.17468" - x="124.06252" - height="0.375" - width="1.0625" - id="rect4474-3" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4476-1" - width="1.0625" - height="0.375" - x="124.25002" - y="898.70593" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="897.20593" - x="124.31252" - height="0.375" - width="1.0625" - id="rect4478-4" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#e6e6e6;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4480-6" - width="1.0625" - height="0.375" - x="124.31252" - y="895.79968" /> - </g> - <g - id="g1790" - transform="translate(22,22)"> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:connector-curvature="0" - id="rect4397-0" - d="m 242.44524,860.13287 c -0.98011,0 -1.77562,0.6006 -1.77562,1.3586 l 0,1.5632 c 0,0.7581 0.79551,1.3733 1.77562,1.3733 l 4.53349,0 c 0.98012,0 1.77562,-0.6152 1.77562,-1.3733 l 0,-1.5632 c 0,-0.758 -0.7955,-1.3586 -1.77562,-1.3586 l -4.53349,0 z m 0.41557,1.0372 3.70235,0 c 0.51967,0 0.94448,0.2879 0.94448,0.6574 l 0,0.8912 c 0,0.3695 -0.42481,0.672 -0.94448,0.672 l -3.70235,0 c -0.51966,0 -0.94447,-0.3025 -0.94447,-0.672 l 0,-0.8912 c 0,-0.3695 0.42481,-0.6574 0.94447,-0.6574 z" - style="fill:#1a1a1a;fill-opacity:1;stroke:#e6e6e6;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - transform="matrix(0.87398418,0,0,1,-154.20273,-850.767)" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:#1a1a1a;fill-opacity:1;stroke:#e6e6e6;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - d="m 232.97199,860.13287 c -0.98011,0 -1.77562,0.6006 -1.77562,1.3586 l 0,1.5632 c 0,0.7581 0.79551,1.3733 1.77562,1.3733 l 4.53349,0 c 0.98012,0 1.77562,-0.6152 1.77562,-1.3733 l 0,-1.5632 c 0,-0.758 -0.7955,-1.3586 -1.77562,-1.3586 l -4.53349,0 z m 0.41557,1.0372 3.70236,0 c 0.51966,0 0.94447,0.2879 0.94447,0.6574 l 0,0.8912 c 0,0.3695 -0.42481,0.672 -0.94447,0.672 l -3.70236,0 c -0.51966,0 -0.94447,-0.3025 -0.94447,-0.672 l 0,-0.8912 c 0,-0.3695 0.42481,-0.6574 0.94447,-0.6574 z" - id="path4418-4" - inkscape:connector-curvature="0" - transform="matrix(0.87398418,0,0,1,-154.20273,-850.767)" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - ry="0.81812328" - rx="1.0135853" - y="861.57312" - x="236.7028" - height="1.6362466" - width="6.7246785" - id="rect4395-0" - style="fill:#1a1a1a;fill-opacity:1;stroke:#e6e6e6;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - transform="matrix(0.87398418,0,0,1,-154.20273,-850.767)" /> - </g> - <use - x="0" - y="0" - xlink:href="#text4709" - id="use1769" - transform="translate(-22,0)" - width="250" - height="200" /> - <use - x="0" - y="0" - xlink:href="#text4774" - id="use1771" - transform="translate(-22,0)" - width="250" - height="200" /> - <use - x="0" - y="0" - xlink:href="#text4778" - id="use1773" - transform="translate(-22,0)" - width="250" - height="200" /> - <use - x="0" - y="0" - xlink:href="#text4782" - id="use1775" - transform="translate(-22,0)" - width="250" - height="200" /> - <use - x="0" - y="0" - xlink:href="#g1783" - id="use1788" - width="250" - height="200" - transform="translate(-22,0)" /> - <use - x="0" - y="0" - xlink:href="#g1037" - id="use1795" - width="250" - height="200" - transform="translate(-22,0)" /> - <use - x="0" - y="0" - xlink:href="#g1790" - id="use1797" - width="250" - height="200" - transform="translate(-22,0)" /> - <text - xml:space="preserve" - style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold" - x="6.5049949" - y="106.76174" - id="text1799" - transform="translate(26,-1)"><tspan - sodipodi:role="line" - id="tspan1801" - x="6.5049949" - y="106.76174" - style="fill:#ececec;fill-opacity:1">C</tspan></text> - <use - x="0" - y="0" - xlink:href="#text1799" - id="use1803" - transform="translate(-22,0)" - width="250" - height="200" /> -</svg> diff --git a/view/theme/dispy/light/icons.png b/view/theme/dispy/light/icons.png Binary files differdeleted file mode 100644 index 5c2eab36e..000000000 --- a/view/theme/dispy/light/icons.png +++ /dev/null diff --git a/view/theme/dispy/light/icons.svg b/view/theme/dispy/light/icons.svg deleted file mode 100644 index 1531edc19..000000000 --- a/view/theme/dispy/light/icons.svg +++ /dev/null @@ -1,2296 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="250" - height="200" - id="svg3403" - version="1.1" - inkscape:version="0.48.3.1 r9886" - sodipodi:docname="icons.svg" - inkscape:export-filename="/var/www3/kisikew.org/portal/pub/fd/view/theme/dispy/light/icons.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs3405"> - <filter - color-interpolation-filters="sRGB" - inkscape:collect="always" - id="filter4064"> - <feBlend - inkscape:collect="always" - mode="lighten" - in2="BackgroundImage" - id="feBlend4066" /> - </filter> - <inkscape:path-effect - effect="gears" - id="path-effect4050" - is_visible="true" - teeth="10" - phi="10" /> - <inkscape:path-effect - effect="gears" - id="path-effect3436" - is_visible="true" - teeth="10" - phi="10" /> - <filter - color-interpolation-filters="sRGB" - inkscape:collect="always" - id="filter4064-7-3"> - <feBlend - inkscape:collect="always" - mode="lighten" - in2="BackgroundImage" - id="feBlend4066-9-2" /> - </filter> - <inkscape:path-effect - effect="gears" - id="path-effect4050-9-1" - is_visible="true" - teeth="10" - phi="10" /> - <filter - color-interpolation-filters="sRGB" - inkscape:collect="always" - id="filter4064-8-9"> - <feBlend - inkscape:collect="always" - mode="lighten" - in2="BackgroundImage" - id="feBlend4066-4-4" /> - </filter> - <filter - color-interpolation-filters="sRGB" - inkscape:collect="always" - id="filter4064-7-3-9"> - <feBlend - inkscape:collect="always" - mode="lighten" - in2="BackgroundImage" - id="feBlend4066-9-2-0" /> - </filter> - <inkscape:path-effect - effect="gears" - id="path-effect4050-9-1-5" - is_visible="true" - teeth="10" - phi="10" /> - <filter - color-interpolation-filters="sRGB" - inkscape:collect="always" - id="filter4064-8-9-6"> - <feBlend - inkscape:collect="always" - mode="lighten" - in2="BackgroundImage" - id="feBlend4066-4-4-7" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.9403009" - inkscape:cx="76.608548" - inkscape:cy="117.37905" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:snap-global="false" - inkscape:window-width="1148" - inkscape:window-height="792" - inkscape:window-x="0" - inkscape:window-y="24" - inkscape:window-maximized="0"> - <inkscape:grid - type="xygrid" - id="grid4016" - empspacing="5" - visible="true" - enabled="false" - snapvisiblegridlinesonly="false" - spacingx="20px" - spacingy="20px" - dotted="false" - units="px" - originx="50px" - originy="200px" /> - <inkscape:grid - type="xygrid" - id="grid4018" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="false" - color="#ff0000" - opacity="0.1254902" - empcolor="#ff0000" - empopacity="0.25098039" - originy="200px" - spacingx="22px" - spacingy="22px" /> - </sodipodi:namedview> - <metadata - id="metadata3408"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-852.36218)"> - <rect - style="fill:#2e3436;fill-opacity:1;stroke:none;display:inline" - id="rect4007" - width="44" - height="132" - x="1.5883562e-17" - y="852.36218" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - transform="matrix(1,0,0,1.5151515,0,-439.09566)" /> - <g - id="ico_dir" - transform="matrix(0.43114968,0,0,0.43114968,-178.47604,867.63556)" - style="fill:#333333;stroke:#e6e6e6;display:inline" - inkscape:label="#g3846"> - <rect - ry="6" - rx="6" - y="18.790752" - x="417.14285" - height="44.285713" - width="44.285713" - id="rect3820" - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - inkscape:connector-curvature="0" - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 449.12191,27.281249 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z" - id="path3830" /> - <path - id="path3832" - d="m 431.26477,26.924106 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z" - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path3822" - d="M 439.46875,29.78125 C 437.00319,29.78125 435,31.784443 435,34.25 c 0,2.465557 2.00319,4.46875 4.46875,4.46875 2.46556,0 4.46875,-2.003193 4.46875,-4.46875 0,-2.465557 -2.00319,-4.46875 -4.46875,-4.46875 z m 0,8.9375 c -6.2132,0 -11.25,6.862234 -11.25,15.34375 0,0.239102 0.0233,0.482318 0.0313,0.71875 l 22.4375,0 c 0.008,-0.236432 0.0313,-0.479648 0.0313,-0.71875 0,-8.481516 -5.0368,-15.34375 -11.25,-15.34375 z" - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> - <g - id="ico_search" - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,889.63556)" - style="fill:#333333;stroke:#e6e6e6;display:inline" - inkscape:label="#g3852"> - <rect - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect3837" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" /> - <path - inkscape:connector-curvature="0" - id="path3839" - d="m 477.97758,26.469174 c -3.64342,3.88426 -3.47037,9.984211 0.41389,13.627637 3.52011,3.301856 8.87059,3.441123 12.55302,0.54905 -0.17428,0.682501 0.0188,1.431563 0.57086,1.949383 l 13.7666,12.913032 c 0.80813,0.75802 2.06896,0.717682 2.82698,-0.09044 l 0.68414,-0.729357 c 0.75802,-0.808126 0.71768,-2.06896 -0.0904,-2.82698 l -13.7666,-12.913032 c -0.55205,-0.51782 -1.31192,-0.66264 -1.98188,-0.445086 2.65077,-3.859767 2.16978,-9.190402 -1.35033,-12.492258 -3.88426,-3.643426 -9.9828,-3.426204 -13.62623,0.458055 z" - style="fill:none;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - transform="translate(-0.21428562,-0.35714286)" - d="m 492.49999,33.612183 c 0,4.043513 -3.27792,7.321428 -7.32143,7.321428 -4.04352,0 -7.32143,-3.277915 -7.32143,-7.321428 0,-4.043514 3.27791,-7.321429 7.32143,-7.321429 4.04351,0 7.32143,3.277915 7.32143,7.321429 z" - sodipodi:ry="7.3214288" - sodipodi:rx="7.3214288" - sodipodi:cy="33.612183" - sodipodi:cx="485.17856" - id="path3844" - style="fill:none;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - sodipodi:type="arc" /> - </g> - <g - inkscape:label="#g3852" - style="fill:#333333;stroke:#e6e6e6;display:inline" - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,845.63556)" - id="ico_logout"> - <rect - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect3995" - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - style="fill:#333333;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.31938004" - d="M 504.69787,28.735741 480.30214,53.131477" - id="path4003" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path4005" - d="M 504.69787,53.131473 480.30214,28.735746" - style="fill:#333333;fill-opacity:1;stroke:#e6e6e6;stroke-width:2.31938004" /> - </g> - <g - inkscape:label="#g3846" - style="fill:#1a1a1a;stroke:#d3d7cf;display:inline" - transform="matrix(0.43114968,0,0,0.43114968,-156.47604,867.63556)" - id="ico_dir_on"> - <rect - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect4011" - width="44.285713" - height="44.285713" - x="417.14285" - y="18.790752" - rx="6" - ry="6" /> - <path - id="path4013" - d="m 449.12191,27.281249 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 431.26477,26.924106 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z" - id="path4015" /> - <path - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="M 439.46875,29.78125 C 437.00319,29.78125 435,31.784443 435,34.25 c 0,2.465557 2.00319,4.46875 4.46875,4.46875 2.46556,0 4.46875,-2.003193 4.46875,-4.46875 0,-2.465557 -2.00319,-4.46875 -4.46875,-4.46875 z m 0,8.9375 c -6.2132,0 -11.25,6.862234 -11.25,15.34375 0,0.239102 0.0233,0.482318 0.0313,0.71875 l 22.4375,0 c 0.008,-0.236432 0.0313,-0.479648 0.0313,-0.71875 0,-8.481516 -5.0368,-15.34375 -11.25,-15.34375 z" - id="path4017" - inkscape:connector-curvature="0" /> - </g> - <g - inkscape:label="#g3852" - style="fill:#1a1a1a;stroke:#d3d7cf;display:inline" - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,889.63556)" - id="ico_search_on"> - <rect - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect4021" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - style="fill:none;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 477.97758,26.469174 c -3.64342,3.88426 -3.47037,9.984211 0.41389,13.627637 3.52011,3.301856 8.87059,3.441123 12.55302,0.54905 -0.17428,0.682501 0.0188,1.431563 0.57086,1.949383 l 13.7666,12.913032 c 0.80813,0.75802 2.06896,0.717682 2.82698,-0.09044 l 0.68414,-0.729357 c 0.75802,-0.808126 0.71768,-2.06896 -0.0904,-2.82698 l -13.7666,-12.913032 c -0.55205,-0.51782 -1.31192,-0.66264 -1.98188,-0.445086 2.65077,-3.859767 2.16978,-9.190402 -1.35033,-12.492258 -3.88426,-3.643426 -9.9828,-3.426204 -13.62623,0.458055 z" - id="path4023" - inkscape:connector-curvature="0" /> - <path - sodipodi:type="arc" - style="fill:none;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="path4025" - sodipodi:cx="485.17856" - sodipodi:cy="33.612183" - sodipodi:rx="7.3214288" - sodipodi:ry="7.3214288" - d="m 492.49999,33.612183 c 0,4.043513 -3.27792,7.321428 -7.32143,7.321428 -4.04352,0 -7.32143,-3.277915 -7.32143,-7.321428 0,-4.043514 3.27791,-7.321429 7.32143,-7.321429 4.04351,0 7.32143,3.277915 7.32143,7.321429 z" - transform="translate(-0.21428562,-0.35714286)" /> - </g> - <g - id="ico_logout_on" - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,845.63556)" - style="fill:#1a1a1a;stroke:#d3d7cf;display:inline" - inkscape:label="#g3852"> - <rect - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect4029" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" /> - <path - inkscape:connector-curvature="0" - id="path4031" - d="M 504.69787,28.735741 480.30214,53.131477" - style="fill:#1a1a1a;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.31938004" /> - <path - style="fill:#1a1a1a;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.31938004" - d="M 504.69787,53.131473 480.30214,28.735746" - id="path4033" - inkscape:connector-curvature="0" /> - </g> - <g - inkscape:label="#g3852" - style="fill:#333333;stroke:#e6e6e6;display:inline;filter:url(#filter4064)" - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,911.63556)" - id="g4040"> - <rect - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect4042" - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - style="fill:#333333;fill-opacity:1;stroke:#e6e6e6;stroke-width:1.66475451;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 484.90604,52.679071 c 0,0 -0.72327,1.028211 -2.88202,1.697409 -0.63474,-0.494653 -1.23439,-1.034334 -1.79294,-1.613646 0.43889,-2.217071 1.3855,-3.044283 1.3855,-3.044283 l 2.04237,-1.648571 c -0.73879,-0.915258 -1.3342,-1.946011 -1.75793,-3.043257 l -2.44847,0.945549 c 0,0 -1.18951,0.40671 -3.32932,-0.320779 -0.22277,-0.773276 -0.39067,-1.56235 -0.50204,-2.359331 1.65823,-1.535673 2.91028,-1.648499 2.91028,-1.648499 l 2.62132,-0.133248 c -0.0597,-1.174706 0.0645,-2.358577 0.36658,-3.495332 l -2.53663,-0.674208 c 0,0 -1.20139,-0.37014 -2.50493,-2.216441 0.2743,-0.756533 0.60227,-1.4936 0.98062,-2.20383 2.24419,-0.267701 3.32343,0.376954 3.32343,0.376954 l 2.19901,1.432971 c 0.64217,-0.985455 1.43848,-1.870246 2.35108,-2.612309 l -1.65589,-2.03644 c 0,0 -0.75438,-1.005609 -0.72373,-3.265497 0.66659,-0.45082 1.36515,-0.854347 2.08871,-1.206542 1.97294,1.102524 2.46715,2.258424 2.46715,2.258424 l 0.93675,2.451844 c 1.09876,-0.419794 2.26306,-0.667544 3.43754,-0.731472 l -0.14265,-2.620822 c 0,0 -0.0192,-1.25697 1.3339,-3.067245 0.80426,0.02709 1.6066,0.111239 2.39899,0.251604 0.94809,2.051624 0.66849,3.277254 0.66849,3.277254 l -0.6833,2.534196 c 1.13566,0.306213 2.22322,0.790136 3.21097,1.428761 l 1.42508,-2.204138 c 0,0 0.72327,-1.028211 2.88202,-1.697409 0.63474,0.494653 1.23439,1.034334 1.79294,1.613646 -0.43889,2.217071 -1.3855,3.044283 -1.3855,3.044283 l -2.04237,1.648571 c 0.73879,0.915258 1.3342,1.946011 1.75793,3.043257 l 2.44847,-0.945549 c 0,0 1.18951,-0.40671 3.32932,0.320779 0.22277,0.773276 0.39067,1.56235 0.50204,2.359331 -1.65823,1.535673 -2.91028,1.648499 -2.91028,1.648499 l -2.62132,0.133248 c 0.0597,1.174706 -0.0645,2.358577 -0.36658,3.495332 l 2.53663,0.674208 c 0,0 1.20139,0.37014 2.50493,2.216441 -0.2743,0.756533 -0.60227,1.4936 -0.98062,2.20383 -2.24419,0.267701 -3.32343,-0.376954 -3.32343,-0.376954 l -2.19901,-1.432971 c -0.64217,0.985455 -1.43848,1.870246 -2.35108,2.612309 l 1.65589,2.03644 c 0,0 0.75438,1.005609 0.72373,3.265497 -0.66659,0.45082 -1.36515,0.854347 -2.08871,1.206542 -1.97294,-1.102524 -2.46715,-2.258424 -2.46715,-2.258424 l -0.93675,-2.451844 c -1.09876,0.419794 -2.26306,0.667544 -3.43754,0.731472 l 0.14265,2.620822 c 0,0 0.0192,1.25697 -1.3339,3.067245 -0.80426,-0.02709 -1.6066,-0.111239 -2.39899,-0.251604 -0.94809,-2.051624 -0.66849,-3.277254 -0.66849,-3.277254 l 0.6833,-2.534196 c -1.13566,-0.306213 -2.22322,-0.790136 -3.21097,-1.428761 l -1.42508,2.204138" - id="path4048" - inkscape:connector-curvature="0" - inkscape:path-effect="#path-effect4050" - inkscape:original-d="M 484.55417,49.762303 492.5,40.933609 504.27158,48.879434" /> - </g> - <g - id="g4068" - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,911.63556)" - style="fill:#1a1a1a;stroke:#d3d7cf;display:inline;filter:url(#filter4064)" - inkscape:label="#g3852"> - <rect - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect4070" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" /> - <path - inkscape:original-d="M 484.55417,49.762303 492.5,40.933609 504.27158,48.879434" - inkscape:path-effect="#path-effect4050" - inkscape:connector-curvature="0" - id="path4072" - d="m 484.90604,52.679071 c 0,0 -0.72327,1.028211 -2.88202,1.697409 -0.63474,-0.494653 -1.23439,-1.034334 -1.79294,-1.613646 0.43889,-2.217071 1.3855,-3.044283 1.3855,-3.044283 l 2.04237,-1.648571 c -0.73879,-0.915258 -1.3342,-1.946011 -1.75793,-3.043257 l -2.44847,0.945549 c 0,0 -1.18951,0.40671 -3.32932,-0.320779 -0.22277,-0.773276 -0.39067,-1.56235 -0.50204,-2.359331 1.65823,-1.535673 2.91028,-1.648499 2.91028,-1.648499 l 2.62132,-0.133248 c -0.0597,-1.174706 0.0645,-2.358577 0.36658,-3.495332 l -2.53663,-0.674208 c 0,0 -1.20139,-0.37014 -2.50493,-2.216441 0.2743,-0.756533 0.60227,-1.4936 0.98062,-2.20383 2.24419,-0.267701 3.32343,0.376954 3.32343,0.376954 l 2.19901,1.432971 c 0.64217,-0.985455 1.43848,-1.870246 2.35108,-2.612309 l -1.65589,-2.03644 c 0,0 -0.75438,-1.005609 -0.72373,-3.265497 0.66659,-0.45082 1.36515,-0.854347 2.08871,-1.206542 1.97294,1.102524 2.46715,2.258424 2.46715,2.258424 l 0.93675,2.451844 c 1.09876,-0.419794 2.26306,-0.667544 3.43754,-0.731472 l -0.14265,-2.620822 c 0,0 -0.0192,-1.25697 1.3339,-3.067245 0.80426,0.02709 1.6066,0.111239 2.39899,0.251604 0.94809,2.051624 0.66849,3.277254 0.66849,3.277254 l -0.6833,2.534196 c 1.13566,0.306213 2.22322,0.790136 3.21097,1.428761 l 1.42508,-2.204138 c 0,0 0.72327,-1.028211 2.88202,-1.697409 0.63474,0.494653 1.23439,1.034334 1.79294,1.613646 -0.43889,2.217071 -1.3855,3.044283 -1.3855,3.044283 l -2.04237,1.648571 c 0.73879,0.915258 1.3342,1.946011 1.75793,3.043257 l 2.44847,-0.945549 c 0,0 1.18951,-0.40671 3.32932,0.320779 0.22277,0.773276 0.39067,1.56235 0.50204,2.359331 -1.65823,1.535673 -2.91028,1.648499 -2.91028,1.648499 l -2.62132,0.133248 c 0.0597,1.174706 -0.0645,2.358577 -0.36658,3.495332 l 2.53663,0.674208 c 0,0 1.20139,0.37014 2.50493,2.216441 -0.2743,0.756533 -0.60227,1.4936 -0.98062,2.20383 -2.24419,0.267701 -3.32343,-0.376954 -3.32343,-0.376954 l -2.19901,-1.432971 c -0.64217,0.985455 -1.43848,1.870246 -2.35108,2.612309 l 1.65589,2.03644 c 0,0 0.75438,1.005609 0.72373,3.265497 -0.66659,0.45082 -1.36515,0.854347 -2.08871,1.206542 -1.97294,-1.102524 -2.46715,-2.258424 -2.46715,-2.258424 l -0.93675,-2.451844 c -1.09876,0.419794 -2.26306,0.667544 -3.43754,0.731472 l 0.14265,2.620822 c 0,0 0.0192,1.25697 -1.3339,3.067245 -0.80426,-0.02709 -1.6066,-0.111239 -2.39899,-0.251604 -0.94809,-2.051624 -0.66849,-3.277254 -0.66849,-3.277254 l 0.6833,-2.534196 c -1.13566,-0.306213 -2.22322,-0.790136 -3.21097,-1.428761 l -1.42508,2.204138" - style="fill:#1a1a1a;fill-opacity:1;stroke:#d3d7cf;stroke-width:1.66475451;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - </g> - <g - id="g4074" - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,933.6356)" - style="fill:#333333;stroke:#e6e6e6;display:inline;filter:url(#filter4064)" - inkscape:label="#g3852"> - <rect - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - id="rect4076" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" /> - <path - style="fill:none;fill-opacity:1;stroke:#e6e6e6;stroke-width:0.79446769;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - d="m 871.875,46.1875 c -1.86715,0.0095 -3.39179,1.39545 -3.65625,3.1875 -0.13267,-0.238038 -0.39472,-0.407705 -0.6875,-0.40625 L 860.21875,49 c -0.42864,0.0022 -0.75216,0.352585 -0.75,0.78125 l 0,0.375 c 0.002,0.428643 0.35273,0.783324 0.78125,0.78125 l 0.71875,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.04661 -0.0143,-0.115964 -0.0313,-0.15625 l 1.25,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.05736 -0.006,-0.140333 -0.0313,-0.1875 l 2.1875,0 c 0.29284,-0.0015 0.55725,-0.166865 0.6875,-0.40625 0.28274,1.789274 1.85161,3.165775 3.71875,3.15625 2.0603,-0.01052 3.69802,-1.720959 3.6875,-3.78125 -0.0105,-2.060291 -1.68969,-3.698024 -3.75,-3.6875 z" - transform="matrix(2.3193801,0,0,2.3193801,-1519.671,-74.824492)" - id="path3839-4" - inkscape:connector-curvature="0" /> - </g> - <rect - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect4108" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,933.6356)" /> - <path - inkscape:connector-curvature="0" - style="fill:none;fill-opacity:1;stroke:#d3d7cf;stroke-width:0.794;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;filter:url(#filter4064)" - d="m 871.875,46.1875 c -1.86715,0.0095 -3.39179,1.39545 -3.65625,3.1875 -0.13267,-0.238038 -0.39472,-0.407705 -0.6875,-0.40625 L 860.21875,49 c -0.42864,0.0022 -0.75216,0.352585 -0.75,0.78125 l 0,0.375 c 0.002,0.428643 0.35273,0.783324 0.78125,0.78125 l 0.71875,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.04661 -0.0143,-0.115964 -0.0313,-0.15625 l 1.25,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.05736 -0.006,-0.140333 -0.0313,-0.1875 l 2.1875,0 c 0.29284,-0.0015 0.55725,-0.166865 0.6875,-0.40625 0.28274,1.789274 1.85161,3.165775 3.71875,3.15625 2.0603,-0.01052 3.69802,-1.720959 3.6875,-3.78125 -0.0105,-2.060291 -1.68969,-3.698024 -3.75,-3.6875 z" - transform="translate(-834.62503,901.37504)" - id="path4110" /> - <g - id="g4031-9" - transform="matrix(0.45818575,0.68148541,-0.68148541,0.45818575,-2.7897502,485.71067)" - style="display:inline" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <path - sodipodi:type="arc" - style="fill:#1a1a1a;fill-opacity:1;stroke:none" - id="path4002-3" - sodipodi:cx="559.67499" - sodipodi:cy="21.754047" - sodipodi:rx="0.88388348" - sodipodi:ry="0.88388348" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - transform="matrix(2.8,0,0,2.8,-999.63682,-35.444974)" /> - <path - transform="matrix(2.1,0,0,2.1,-600.17454,-24.194616)" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - sodipodi:ry="0.88388348" - sodipodi:rx="0.88388348" - sodipodi:cy="21.754047" - sodipodi:cx="559.67499" - id="path4004-9" - style="fill:#1a1a1a;fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:#1a1a1a;fill-opacity:1;stroke:none" - id="path4006-4" - sodipodi:cx="559.67499" - sodipodi:cy="21.754047" - sodipodi:rx="0.88388348" - sodipodi:ry="0.88388348" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - transform="matrix(2.2,0,0,2.2,-671.07968,-28.226177)" /> - <path - style="fill:none;stroke:#1a1a1a;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 563.21055,31.653543 4.41942,-6.187185 -7.6014,-6.187184" - id="path4010-56" - inkscape:connector-curvature="0" /> - <path - transform="matrix(2.4,0,0,2.4,-780.18625,-20.379394)" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - sodipodi:ry="0.88388348" - sodipodi:rx="0.88388348" - sodipodi:cy="21.754047" - sodipodi:cx="559.67499" - id="path4008-8" - style="fill:#1a1a1a;fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - style="fill:none;stroke:#1a1a1a;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 567.45319,25.466358 7.6014,-4.065864" - id="path4012-5" - inkscape:connector-curvature="0" /> - </g> - <path - style="fill:none;stroke:#1a1a1a;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - d="m 218.00001,881.25007 -5.8125,0 0,9.1875 10.53125,0 0,-5.2187" - id="rect4432" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <rect - style="fill:#666666;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4387-8" - width="14.5" - height="9" - x="173.12502" - y="858.11218" - rx="2.9268293" - ry="2.9268293" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - sodipodi:type="arc" - style="fill:#e6e6e6;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="path4391-3" - sodipodi:cx="408.8125" - sodipodi:cy="220.26843" - sodipodi:rx="2.6875" - sodipodi:ry="2.71875" - d="m 411.5,220.26843 c 0,1.50153 -1.20323,2.71875 -2.6875,2.71875 -1.48427,0 -2.6875,-1.21722 -2.6875,-2.71875 0,-1.50152 1.20323,-2.71875 2.6875,-2.71875 1.48427,0 2.6875,1.21723 2.6875,2.71875 z" - transform="matrix(1.1489362,0,0,1.1489362,-286.13697,609.51131)" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:#ffffff;fill-opacity:1;stroke:#1a1a1a;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - d="m 242.44524,860.13287 c -0.98011,0 -1.77562,0.6006 -1.77562,1.3586 l 0,1.5632 c 0,0.7581 0.79551,1.3733 1.77562,1.3733 l 4.53349,0 c 0.98012,0 1.77562,-0.6152 1.77562,-1.3733 l 0,-1.5632 c 0,-0.758 -0.7955,-1.3586 -1.77562,-1.3586 l -4.53349,0 z m 0.41557,1.0372 3.70235,0 c 0.51967,0 0.94448,0.2879 0.94448,0.6574 l 0,0.8912 c 0,0.3695 -0.42481,0.672 -0.94448,0.672 l -3.70235,0 c -0.51966,0 -0.94447,-0.3025 -0.94447,-0.672 l 0,-0.8912 c 0,-0.3695 0.42481,-0.6574 0.94447,-0.6574 z" - id="rect4397-0" - inkscape:connector-curvature="0" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - inkscape:connector-curvature="0" - id="path4418-4" - d="m 232.97199,860.13287 c -0.98011,0 -1.77562,0.6006 -1.77562,1.3586 l 0,1.5632 c 0,0.7581 0.79551,1.3733 1.77562,1.3733 l 4.53349,0 c 0.98012,0 1.77562,-0.6152 1.77562,-1.3733 l 0,-1.5632 c 0,-0.758 -0.7955,-1.3586 -1.77562,-1.3586 l -4.53349,0 z m 0.41557,1.0372 3.70236,0 c 0.51966,0 0.94447,0.2879 0.94447,0.6574 l 0,0.8912 c 0,0.3695 -0.42481,0.672 -0.94447,0.672 l -3.70236,0 c -0.51966,0 -0.94447,-0.3025 -0.94447,-0.672 l 0,-0.8912 c 0,-0.3695 0.42481,-0.6574 0.94447,-0.6574 z" - style="fill:#ffffff;fill-opacity:1;stroke:#1a1a1a;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <rect - style="fill:#ffffff;fill-opacity:1;stroke:#1a1a1a;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4395-0" - width="6.7246785" - height="1.6362466" - x="236.7028" - y="861.57312" - rx="1.0135853" - ry="0.81812328" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <g - id="g1037"> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - sodipodi:nodetypes="csccccscc" - inkscape:connector-curvature="0" - id="rect4428-4" - d="m 118.03127,895.15627 0,0.3125 c 0,1.2601 -0.0643,3.4345 -0.35937,5.75 l -1.5625,1e-4 c -0.80183,0.011 -1.64766,4.0737 -1.60938,8.0625 l 8.25,0 c -0.057,-5.5479 1.56902,-11.5211 1.75,-5.6563 0.21453,6.9525 1.74237,-5.1823 1.75,-8.4687 z" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:connector-curvature="0" - id="path4440-4" - d="m 124.78127,905.73727 -1.9375,-0.063" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path4442-9" - d="m 117.59377,901.20597 6.4375,0" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="908.11218" - x="115.28126" - height="0.375" - width="1.0625" - id="rect4446-9" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4448-3" - width="1.0625" - height="0.375" - x="115.34376" - y="906.51843" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="904.89343" - x="115.50001" - height="0.375" - width="1.0625" - id="rect4450-6" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4452-0" - width="1.0625" - height="0.375" - x="115.81251" - y="903.42468" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="902.17468" - x="116.21876" - height="0.375" - width="1.0625" - id="rect4454-5" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4456-0" - width="1.0625" - height="0.375" - x="118.50001" - y="900.17468" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="898.70593" - x="118.68751" - height="0.375" - width="1.0625" - id="rect4458-2" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4460-9" - width="1.0625" - height="0.375" - x="118.75001" - y="897.20593" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="895.79968" - x="118.75001" - height="0.375" - width="1.0625" - id="rect4462-4" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4464-3" - width="1.0625" - height="0.375" - x="120.84376" - y="908.11218" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="906.51843" - x="120.90627" - height="0.375" - width="1.0625" - id="rect4466-5" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4468-1" - width="1.0625" - height="0.375" - x="121.06252" - y="904.89343" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="903.42468" - x="121.37502" - height="0.375" - width="1.0625" - id="rect4470-7" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4472-4" - width="1.0625" - height="0.375" - x="121.78127" - y="902.17468" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="900.17468" - x="124.06252" - height="0.375" - width="1.0625" - id="rect4474-3" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4476-1" - width="1.0625" - height="0.375" - x="124.25002" - y="898.70593" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="897.20593" - x="124.31252" - height="0.375" - width="1.0625" - id="rect4478-4" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="rect4480-6" - width="1.0625" - height="0.375" - x="124.31252" - y="895.79968" /> - </g> - <g - style="stroke:#1a1a1a;display:inline" - id="g4507-4" - transform="matrix(0.92823291,-0.48059851,0.48059851,0.92823291,-312.89954,806.76727)" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <path - sodipodi:nodetypes="csc" - inkscape:connector-curvature="0" - id="path4491-2" - d="m 310.75659,223.79453 c 0.76095,-0.8373 1.2453,-2.02269 1.2453,-3.35786 0,-1.33796 -0.48156,-2.54257 -1.2453,-3.38009" - style="fill:none;stroke:#1a1a1a;stroke-width:0.35579938;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - style="fill:none;stroke:#1a1a1a;stroke-width:0.47089946;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 311.49266,224.75938 c 1.00712,-1.10816 1.64816,-2.67702 1.64816,-4.44411 0,-1.77079 -0.63735,-3.36509 -1.64816,-4.47354" - id="path4496-2" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csc" /> - <path - sodipodi:nodetypes="csc" - inkscape:connector-curvature="0" - id="path4498-6" - d="m 312.78041,226.18348 c 1.3429,-1.47763 2.19766,-3.56956 2.19766,-5.9258 0,-2.36118 -0.84984,-4.48703 -2.19766,-5.96505" - style="fill:none;stroke:#1a1a1a;stroke-width:0.62789989;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - <path - sodipodi:nodetypes="ccccccc" - inkscape:connector-curvature="0" - id="path4500-4" - d="m 309.34375,224.125 0,-7.375 -3.78125,2.07812 -3.4375,-0.10937 0,3.46875 3.4375,-0.125 z" - style="fill:none;stroke:#1a1a1a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> - <g - id="g1373" - style="stroke:#1a1a1a"> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - transform="translate(-224.73743,661.76263)" - d="m 292.21188,220.62782 c 0,4.10051 -3.32411,7.42462 -7.42462,7.42462 -4.1005,0 -7.42462,-3.32411 -7.42462,-7.42462 0,-4.1005 3.32412,-7.42462 7.42462,-7.42462 4.10051,0 7.42462,3.32412 7.42462,7.42462 z" - sodipodi:ry="7.4246211" - sodipodi:rx="7.4246211" - sodipodi:cy="220.62782" - sodipodi:cx="284.78726" - id="path4515-2" - style="fill:none;stroke:#1a1a1a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - sodipodi:type="arc" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - sodipodi:nodetypes="csc" - inkscape:connector-curvature="0" - id="path4517-8" - d="m 53.15626,883.15627 c 1.94168,0.712 4.31843,1.1563 6.90625,1.1563 2.58782,0 4.96457,-0.4443 6.90625,-1.1563" - style="fill:none;stroke:#1a1a1a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#1a1a1a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline" - d="m 60.45665,888.82867 c 0.71191,-1.9416 1.15625,-4.3184 1.15625,-6.9062 0,-2.5878 -0.44434,-4.9646 -1.15625,-6.9063" - id="path4528-8" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csc" /> - </g> - <text - xml:space="preserve" - style="font-size:3.72799897px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#1a1a1a;fill-opacity:1;stroke:none;display:inline;font-family:Liberation Sans;-inkscape-font-specification:Liberation Sans" - x="51.803352" - y="859.21899" - id="text4532-2" - sodipodi:linespacing="100%" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"><tspan - sodipodi:role="line" - id="tspan4534-8" - x="51.803352" - y="859.21899" - style="font-weight:bold;fill:#1a1a1a;-inkscape-font-specification:Liberation Sans Bold">Lorem Ip</tspan></text> - <path - style="fill:#1a1a1a;fill-opacity:1;stroke:#1a1a1a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline" - d="m 52.25001,862.61227 15.25,0" - id="path4536-8" - inkscape:connector-curvature="0" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - inkscape:connector-curvature="0" - id="path4538-8" - d="m 52.25001,864.86227 15.25,0" - style="fill:#1a1a1a;fill-opacity:1;stroke:#1a1a1a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:#1a1a1a;fill-opacity:1;stroke:#1a1a1a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline" - d="m 52.25001,867.11227 15.25,0" - id="path4540-6" - inkscape:connector-curvature="0" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:none;stroke:#1a1a1a;stroke-width:0.82322329;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - d="m 242.49116,907.21887 5.125,-5.125 -5.125,-5.0937" - id="rect4544-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccc" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - sodipodi:nodetypes="ccc" - inkscape:connector-curvature="0" - id="path4549-8" - d="m 237.98183,907.21887 -5.125,-5.125 5.125,-5.0937" - style="fill:none;stroke:#1a1a1a;stroke-width:0.82322329;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <g - id="g4173"> - <path - sodipodi:type="star" - style="fill:#1a1a1a;fill-opacity:1;stroke:#1a1a1a" - id="path4802" - sodipodi:sides="8" - sodipodi:cx="98.48214" - sodipodi:cy="-10.267858" - sodipodi:r1="9.1071424" - sodipodi:r2="8.4139032" - sodipodi:arg1="-1.5707963" - sodipodi:arg2="-1.1780972" - inkscape:flatsided="true" - inkscape:rounded="0" - inkscape:randomized="0" - d="m 98.48214,-19.375 6.43972,2.66742 2.66742,6.439723 -2.66742,6.4397218 -6.439721,2.6674201 -6.439722,-2.6674204 -2.66742,-6.4397225 2.667421,-6.439722 z" - transform="matrix(0.92307692,0.3846154,-0.3846154,0.92307692,5.144234,833.96249)" /> - <path - transform="matrix(0.74691191,0.31121331,-0.31121331,0.74691191,23.247023,839.38239)" - d="m 98.48214,-19.375 6.43972,2.66742 2.66742,6.439723 -2.66742,6.4397218 -6.439721,2.6674201 -6.439722,-2.6674204 -2.66742,-6.4397225 2.667421,-6.439722 z" - inkscape:randomized="0" - inkscape:rounded="0" - inkscape:flatsided="true" - sodipodi:arg2="-1.1780972" - sodipodi:arg1="-1.5707963" - sodipodi:r2="8.4139032" - sodipodi:r1="9.1071424" - sodipodi:cy="-10.267858" - sodipodi:cx="98.48214" - sodipodi:sides="8" - id="path4804" - style="fill:none;stroke:#d3d7cf;stroke-width:2.47171569;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - sodipodi:type="star" /> - </g> - <path - sodipodi:nodetypes="ccc" - inkscape:connector-curvature="0" - id="rect4806" - d="m 53.26552,1056.9525 -5.5,6.2008 5.5,6.2009" - style="fill:none;stroke:#1a1a1a;stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - transform="translate(49.48448,-140.79121)" /> - <path - sodipodi:nodetypes="ccc" - inkscape:connector-curvature="0" - style="fill:none;stroke:#1a1a1a;stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 67.781143,1069.3407 5.46875,-6.2009 -5.46875,-6.1736" - id="path4812" - transform="translate(49.48448,-140.79121)" /> - <path - style="fill:#1a1a1a;fill-opacity:1;stroke:none;display:inline" - id="path4257" - d="m 115.39024,855.00555 c 0.0904,0.0266 0.18708,0.0371 0.27111,0.0797 0.24682,0.12501 0.80382,0.53514 1.00046,0.67918 0.72548,0.53142 1.43751,1.08068 2.14837,1.63134 1.22364,0.99003 2.36274,2.09287 3.41202,3.2665 0.43117,0.4822 1.01205,1.207 1.42675,1.7166 0.97898,1.2314 2.022,2.4234 2.86791,3.7533 0.20576,0.2994 0.39551,0.6797 0.65579,0.9028 -0.10862,-0.1107 -0.10877,-0.099 0.0344,-0.01 0.19118,0.1291 -1.63528,2.8328 -1.82646,2.7036 l 0,0 c -0.18814,-0.022 -0.0511,0 -0.37755,-0.1793 -0.55628,-0.365 -1.09599,-0.7525 -1.61517,-1.1691 -1.27322,-1.0021 -2.36476,-2.2048 -3.47982,-3.3749 -1.53016,-1.5621 -3.0115,-3.1717 -4.57958,-4.6966 -0.94249,-1.01074 -1.92636,-2.0326 -2.54392,-3.28422 -0.14292,-0.18424 2.46273,-2.20539 2.60565,-2.02115 z" - inkscape:connector-curvature="0" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:#1a1a1a;fill-opacity:1;stroke:none;display:inline" - id="path4259" - d="m 112.109,867.43007 c 0.0548,-0.091 0.10266,-0.1866 0.16432,-0.2731 0.23235,-0.3261 0.52565,-0.6137 0.79275,-0.9102 0.42229,-0.4689 0.38553,-0.4337 0.82852,-0.9537 1.44214,-1.6363 3.06836,-3.0981 4.69856,-4.5425 1.63203,-1.40989 3.17698,-2.9167 4.78859,-4.3486 0.46305,-0.4369 0.97793,-0.80137 1.52221,-1.12653 0.15824,-0.21119 3.14491,2.0267 2.98666,2.23789 l 0,0 c -0.2952,0.52243 -0.62275,1.02042 -1.01852,1.47475 -0.88192,1.11919 -1.78212,2.22369 -2.79371,3.23049 -0.29346,0.2921 -0.60222,0.5684 -0.90606,0.8497 -0.31321,0.2899 -0.63003,0.5759 -0.94504,0.8639 -1.67153,1.4209 -3.37366,2.8163 -5.22715,3.9963 -0.49876,0.3405 -0.57121,0.3777 -1.0203,0.7266 -0.39341,0.3057 -0.75974,0.6889 -1.26518,0.7962 -0.14292,0.1842 -2.74857,-1.8369 -2.60565,-2.0212 z" - inkscape:connector-curvature="0" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - inkscape:connector-curvature="0" - d="m 135.39024,855.00555 c 0.0904,0.027 0.18708,0.037 0.27111,0.08 0.24682,0.125 0.80382,0.5352 1.00046,0.6792 0.72548,0.5314 1.43751,1.0807 2.14837,1.6314 1.22364,0.99 2.36274,2.0928 3.41202,3.26652 0.43117,0.4822 1.01205,1.207 1.42675,1.7166 0.97898,1.2314 2.022,2.4234 2.86791,3.7533 0.20576,0.2994 0.39551,0.6797 0.65579,0.9028 -0.10862,-0.1107 -0.10877,-0.099 0.0344,-0.01 0.19118,0.1291 -1.63528,2.8328 -1.82646,2.7036 l 0,0 c -0.18814,-0.022 -0.0511,0 -0.37755,-0.1793 -0.55628,-0.365 -1.09599,-0.7525 -1.61517,-1.1691 -1.27322,-1.0021 -2.36476,-2.2048 -3.47982,-3.3749 -1.53016,-1.5621 -3.0115,-3.1717 -4.57958,-4.6966 -0.94249,-1.01082 -1.92636,-2.03262 -2.54392,-3.28432 -0.14292,-0.1842 2.46273,-2.2054 2.60565,-2.0211 z" - id="path4263" - style="fill:#666666;fill-opacity:1;stroke:none;display:inline" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - inkscape:connector-curvature="0" - d="m 132.109,867.43017 c 0.0548,-0.091 0.10266,-0.1866 0.16432,-0.2731 0.23235,-0.3261 0.52565,-0.6137 0.79275,-0.9102 0.42229,-0.4689 0.38553,-0.4337 0.82852,-0.9537 1.44214,-1.6363 3.06836,-3.0981 4.69856,-4.5425 1.63203,-1.40992 3.17698,-2.91672 4.78859,-4.34862 0.46305,-0.4369 0.97793,-0.8014 1.52221,-1.1266 0.15824,-0.2112 3.14491,2.0267 2.98666,2.2379 l 0,0 c -0.2952,0.5224 -0.62275,1.0204 -1.01852,1.4748 -0.88192,1.11922 -1.78212,2.22372 -2.79371,3.23052 -0.29346,0.2921 -0.60222,0.5684 -0.90606,0.8497 -0.31321,0.2899 -0.63003,0.5759 -0.94504,0.8639 -1.67153,1.4209 -3.37366,2.8163 -5.22715,3.9963 -0.49876,0.3405 -0.57121,0.3777 -1.0203,0.7266 -0.39341,0.3057 -0.75974,0.6889 -1.26518,0.7962 -0.14292,0.1842 -2.74857,-1.8369 -2.60565,-2.0212 z" - id="path4265" - style="fill:#666666;fill-opacity:1;stroke:none;display:inline" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <g - style="stroke:#1a1a1a;display:inline" - id="g4283" - transform="matrix(0.52823691,0.52823691,-0.52823691,0.52823691,773.22931,294.0656)" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <path - sodipodi:nodetypes="ccccccc" - inkscape:connector-curvature="0" - id="path4269" - d="m -44.467884,1107.2152 0,17.7252 1.161165,3.7983 c 1.200046,4.2782 1.065706,4.1105 2.322331,0 l 1.161165,-3.7983 0,-17.7252 z" - style="fill:none;stroke:#1a1a1a;stroke-width:0.66930836;stroke-miterlimit:4;stroke-dasharray:none" /> - <path - inkscape:connector-curvature="0" - id="path4271" - d="m -44.467884,1124.9404 4.644661,0" - style="fill:none;stroke:#1a1a1a;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - style="fill:none;stroke:#1a1a1a;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m -42.239747,1107.2336 0,17.6813" - id="path4275" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" - id="path4279" - d="m -43.348187,1128.4959 c 1.108441,-0.8952 1.929509,-0.3581 2.381097,0.045 -0.328428,1.1191 -1.190549,3.9391 -1.190549,3.9391 z" - style="fill:#1a1a1a;stroke:#1a1a1a;stroke-width:0.66930836;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" /> - <rect - ry="0.42804927" - rx="0.37616169" - y="1105.3309" - x="-44.73621" - height="1.8614606" - width="5.1800866" - id="rect4281" - style="fill:#1a1a1a;fill-opacity:1;stroke:#1a1a1a" /> - </g> - <rect - style="fill:#e6e6e6;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - id="rect4290" - width="3.5355339" - height="1.8561553" - x="174.89275" - y="859.06403" - rx="1" - ry="1" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:none;stroke:#1a1a1a;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" - d="m 214.75589,862.65317 c 3.31942,-0.632 4.06019,-2.1721 5.3033,-4.08897 0.42304,-0.6524 -0.64726,-2.63586 0,-3.13491 0.10703,-0.0825 0.93192,0 1.06066,0 2.52315,0 1.41421,3.50161 1.41421,4.77048 0,0.2317 -0.47723,0.6815 -0.17677,0.6815 2.44972,0 2.94209,0.3603 4.41942,1.4993 0.0697,0.054 0.31741,3.8443 0.17677,3.9527 -0.26074,0.201 -0.49042,0.5145 -0.7071,0.6815 -0.13627,0.105 0.38563,0.7684 0.17677,1.0904 -0.17664,0.2724 -0.85358,0.8061 -1.23743,0.9541 -0.36233,0.1398 -0.89015,0 -1.23744,0.1363 -1.96875,0.759 -2.1166,-0.9523 -3.18198,-1.363 -0.34866,-0.1344 -0.63592,-0.1088 -1.06066,-0.2726 -0.99671,-0.3842 -3.88909,0.6704 -3.88909,-0.2726 0,-1.2852 -0.2556,-3.5996 -1.06066,-4.6342 z" - id="path4292" - inkscape:connector-curvature="0" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - inkscape:connector-curvature="0" - id="path4294" - d="m 205.42921,862.12677 c -3.31942,0.632 -4.06019,2.1721 -5.3033,4.089 -0.42304,0.6524 0.64726,2.6358 0,3.1349 -0.10703,0.082 -0.93192,0 -1.06066,0 -2.52315,0 -1.41421,-3.5016 -1.41421,-4.7705 0,-0.2317 0.47723,-0.6815 0.17677,-0.6815 -2.44972,0 -2.94209,-0.3603 -4.41942,-1.4993 -0.0697,-0.054 -0.31741,-3.84428 -0.17677,-3.95268 0.26074,-0.201 0.49042,-0.5145 0.7071,-0.6815 0.13627,-0.105 -0.38563,-0.7684 -0.17677,-1.0904 0.17664,-0.2724 0.85358,-0.8061 1.23743,-0.9541 0.36233,-0.1398 0.89015,0 1.23744,-0.1363 1.96875,-0.759 2.1166,0.9523 3.18198,1.363 0.34866,0.1344 0.63592,0.1088 1.06066,0.2726 0.99671,0.3842 3.88909,-0.6704 3.88909,0.2726 0,1.2852 0.2556,3.59958 1.06066,4.63418 z" - style="fill:none;stroke:#1a1a1a;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <g - id="g1378"> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - sodipodi:type="arc" - style="fill:none;stroke:#666666;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="path4298" - sodipodi:cx="284.78726" - sodipodi:cy="220.62782" - sodipodi:rx="7.4246211" - sodipodi:ry="7.4246211" - d="m 292.21188,220.62782 c 0,4.10051 -3.32411,7.42462 -7.42462,7.42462 -4.1005,0 -7.42462,-3.32411 -7.42462,-7.42462 0,-4.1005 3.32412,-7.42462 7.42462,-7.42462 4.10051,0 7.42462,3.32412 7.42462,7.42462 z" - transform="translate(-204.73743,661.76269)" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#666666;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline" - d="m 73.15626,883.15627 c 1.94168,0.712 4.31843,1.1563 6.90625,1.1563 2.58782,0 4.96457,-0.4443 6.90625,-1.1563" - id="path4300" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csc" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - sodipodi:nodetypes="csc" - inkscape:connector-curvature="0" - id="path4302" - d="m 80.45665,888.82867 c 0.71191,-1.9416 1.15625,-4.3184 1.15625,-6.9062 0,-2.5878 -0.44434,-4.9646 -1.15625,-6.9063" - style="fill:none;stroke:#666666;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline" /> - </g> - <g - id="g277"> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - sodipodi:type="arc" - style="fill:none;stroke:#1a1a1a;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="path4306" - sodipodi:cx="284.78726" - sodipodi:cy="220.62782" - sodipodi:rx="7.4246211" - sodipodi:ry="7.4246211" - d="m 292.21188,220.62782 c 0,4.10051 -3.32411,7.42462 -7.42462,7.42462 -4.1005,0 -7.42462,-3.32411 -7.42462,-7.42462 0,-4.1005 3.32412,-7.42462 7.42462,-7.42462 4.10051,0 7.42462,3.32412 7.42462,7.42462 z" - transform="translate(-184.73743,661.76263)" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:connector-curvature="0" - id="path4308" - d="m 94.285536,887.89997 11.048544,-11.0485" - style="fill:none;stroke:#1a1a1a;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" /> - </g> - <g - id="g273"> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - y="876.12292" - x="115.93771" - height="12.020815" - width="3.3587573" - id="rect4310" - style="fill:#1a1a1a;stroke:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:#1a1a1a;stroke:none;display:inline" - id="rect4312" - width="3.3587573" - height="12.020815" - x="120.53392" - y="876.12292" /> - </g> - <path - style="fill:#1a1a1a;stroke:none;display:inline" - d="m 134.32248,876.12297 11.31371,6.0104 -11.31371,6.0104 z" - id="rect4314" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <g - style="stroke:#1a1a1a;display:inline" - transform="matrix(0.52823691,0.52823691,-0.52823691,0.52823691,773.22931,313.68781)" - id="g4317" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <path - style="fill:none;stroke:#1a1a1a;stroke-width:0.66930836;stroke-miterlimit:4;stroke-dasharray:none" - d="m -44.467884,1107.2152 0,17.7252 1.161165,3.7983 c 1.200046,4.2782 1.065706,4.1105 2.322331,0 l 1.161165,-3.7983 0,-17.7252 z" - id="path4319" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - <path - style="fill:none;stroke:#1a1a1a;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m -44.467884,1124.9404 4.644661,0" - id="path4321" - inkscape:connector-curvature="0" /> - <path - inkscape:connector-curvature="0" - id="path4323" - d="m -42.239747,1107.2336 0,17.6813" - style="fill:none;stroke:#1a1a1a;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - style="fill:#1a1a1a;stroke:#1a1a1a;stroke-width:0.66930836;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" - d="m -43.348187,1128.4959 c 1.108441,-0.8952 1.929509,-0.3581 2.381097,0.045 -0.328428,1.1191 -1.190549,3.9391 -1.190549,3.9391 z" - id="path4325" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <rect - style="fill:#1a1a1a;fill-opacity:1;stroke:#1a1a1a" - id="rect4327" - width="5.1800866" - height="1.8614606" - x="-44.73621" - y="1105.3309" - rx="0.37616169" - ry="0.42804927" /> - </g> - <g - style="stroke:#1a1a1a;display:inline" - id="g4329" - transform="matrix(0.24508333,0.24508333,-0.24508333,0.24508333,461.00011,612.37085)" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <path - sodipodi:nodetypes="ccccccc" - inkscape:connector-curvature="0" - id="path4331" - d="m -44.467884,1107.2152 0,17.7252 1.161165,3.7983 c 1.200046,4.2782 1.065706,4.1105 2.322331,0 l 1.161165,-3.7983 0,-17.7252 z" - style="fill:none;stroke:#1a1a1a;stroke-width:0.66930836;stroke-miterlimit:4;stroke-dasharray:none" /> - <path - inkscape:connector-curvature="0" - id="path4333" - d="m -44.467884,1124.9404 4.644661,0" - style="fill:none;stroke:#1a1a1a;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - style="fill:none;stroke:#1a1a1a;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m -42.239747,1107.2336 0,17.6813" - id="path4335" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" - id="path4337" - d="m -43.348187,1128.4959 c 1.108441,-0.8952 1.929509,-0.3581 2.381097,0.045 -0.328428,1.1191 -1.190549,3.9391 -1.190549,3.9391 z" - style="fill:#1a1a1a;stroke:#1a1a1a;stroke-width:0.66930836;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" /> - <rect - ry="0.42804927" - rx="0.37616169" - y="1105.3309" - x="-44.73621" - height="1.8614606" - width="5.1800866" - id="rect4339" - style="fill:#1a1a1a;fill-opacity:1;stroke:#1a1a1a" /> - </g> - <g - id="layer1-2" - transform="matrix(0.03334717,0,0,0.03334717,191.57984,885.59897)" - style="fill:#1a1a1a;display:inline" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <path - id="path11522" - style="fill:#1a1a1a;fill-opacity:1" - d="m 264.62704,45.67985 56.31152,-101.021534 0.2677,36.946034 118.51291,-0.267671 c 21.1765,-2.244605 39.74272,-10.852596 53.18801,-27.040291 C 449.99593,42.074998 437.6363,104.18491 348.60347,104.22236 l -27.39721,0 -0.2677,41.05114 -56.31152,-99.59365 z M 128.9798,105.11479 C 65.618201,85.84639 36.055796,7.7860213 7.07577,-47.220709 c 13.282679,12.076484 38.139773,29.363022 52.577167,29.364467 27.689982,0.06456 55.380063,0.116317 83.070083,0.174562 l 83.88712,0 -0.26776,122.43949 -0.26771,0.35698 -97.09487,0 z M 2.5,-79.206629 42.995596,-161.8012 3.5060915,-183.49253 l 118.3343785,0 57.2039,103.877161 -38.79429,-23.228801 c -12.44295,26.27544 -24.88589,52.550878 -37.32884,78.826316 C 88.601045,-24.268303 74.280847,-24.518751 59.960649,-24.769199 32.037317,-31.279427 12.61125,-53.254123 2.5,-79.206629 z m 395.45406,53.939396 -52.29561,-96.380927 105.66215,-63.98618 51.13531,102.449252 c 1.54832,24.517706 -38.03694,58.635841 -62.6066,58.370427 l -41.89525,-0.452572 z M 88.64259,-250.78088 l 53.98405,-80.90589 c 52.35957,-19.50079 82.68955,22.59846 101.8318,49.13587 l -50.86768,97.63029 -104.94817,-65.86027 z m 204.54178,43.54987 c -10.85783,-25.59753 -25.36515,-54.87764 -43.50654,-80.336 -16.24176,-22.7925 -35.86597,-42.67852 -50.7326,-51.5631 l 136.53974,-0.26767 c 24.52088,2.20137 36.43539,16.49668 49.43976,36.05358 l 19.63307,34.53651 30.34224,-19.3654 -57.11457,101.73554 -123.15347,0.26768 38.55237,-21.06114 z" - inkscape:connector-curvature="0" /> - </g> - <path - style="fill:none;stroke:#1a1a1a;display:inline" - d="m 219.92452,876.86347 1.33532,1.5307 -5.05101,4.4063 4.00584,4.592 5.05101,-4.4063 1.29423,1.4837 1.19091,-7.757 z" - id="rect4425" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccc" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <g - id="g269"> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - ry="2.3056474" - rx="1.9019035" - y="900.66992" - x="71.833412" - height="7.925663" - width="10.935946" - id="rect4564-9" - style="fill:#1a1a1a;fill-opacity:1;stroke:#1a1a1a;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - ry="2.3056474" - rx="1.9019035" - y="896.3468" - x="73.447395" - height="7.5413885" - width="7.7661061" - id="rect4566-9" - style="fill:none;stroke:#1a1a1a;stroke-width:0.69802254;display:inline" /> - </g> - <g - id="g265"> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:#1a1a1a;fill-opacity:1;stroke:#1a1a1a;display:inline" - id="rect4506" - width="10.935946" - height="7.925663" - x="92.208412" - y="900.66992" - rx="1.9019035" - ry="2.3056474" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - sodipodi:nodetypes="cssssc" - inkscape:connector-curvature="0" - id="rect4508" - d="m 108.78126,899.75007 0,-1.0938 c 0,-1.2773 -0.8526,-2.3124 -1.90625,-2.3124 l -3.96875,0 c -1.05366,0 -1.90625,1.0351 -1.90625,2.3124 l 0,2.9376" - style="fill:none;stroke:#1a1a1a;stroke-width:0.69802254;display:inline" /> - </g> - <g - id="g1060"> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - ry="2.9268293" - rx="2.9268293" - y="892.60608" - x="150.24391" - height="19.512196" - width="19.512196" - id="rect4514" - style="fill:#1a1a1a;stroke:none;display:inline" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:#eeeeec;fill-opacity:1;stroke:none;display:inline" - id="rect4518" - width="10.935946" - height="7.925663" - x="151.83342" - y="900.66992" - rx="1.9019035" - ry="2.3056474" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#eeeeec;stroke-width:0.69802254;display:inline" - id="rect4520" - width="7.7661061" - height="7.5413885" - x="153.4474" - y="896.3468" - rx="1.9019035" - ry="2.3056474" /> - </g> - <g - id="g1065"> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:#1a1a1a;stroke:none;display:inline" - id="rect4516" - width="19.512196" - height="19.512196" - x="170.24391" - y="892.60608" - rx="2.9268293" - ry="2.9268293" /> - <rect - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - ry="2.3056474" - rx="1.9019035" - y="900.66992" - x="172.20842" - height="7.925663" - width="10.935946" - id="rect4522" - style="fill:#eeeeec;fill-opacity:1;stroke:none;display:inline" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - style="fill:none;stroke:#eeeeec;stroke-width:0.69802254;display:inline" - d="m 188.78127,899.75007 0,-1.0938 c 0,-1.2773 -0.85259,-2.3124 -1.90625,-2.3124 l -3.96875,0 c -1.05365,0 -1.90625,1.0351 -1.90625,2.3124 l 0,2.9376" - id="path4524" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cssssc" /> - </g> - <path - style="fill:none;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - d="m 61.2575,895.73577 c -0.85405,0.9453 -1.14575,2.2161 -0.88721,3.3884 l -8.17918,8.1791 c -0.14244,0.1425 -0.12201,0.3935 0.0507,0.5661 l 2.21807,2.2181 c 0.17268,0.1727 0.42791,0.1974 0.57035,0.055 l 8.13693,-8.1369 c 1.26093,0.3161 2.65155,-0.016 3.63762,-1.0013 0.66189,-0.6619 1.02334,-1.5095 1.09849,-2.3744 l -2.11666,2.1167 -3.2405,-0.8746 -0.87454,-3.2405 2.14201,-2.1419 c -0.88104,0.066 -1.74292,0.4331 -2.41663,1.1068 -0.0467,0.047 -0.0968,0.09 -0.13942,0.1395 z" - id="path4529" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccsssscscccccsc" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:none;stroke:#1a1a1a;stroke-width:0.80000001;stroke-miterlimit:4;stroke-dasharray:none;display:inline" - d="m 201.14016,895.80807 -8.25003,8.25 -0.94202,3.5156 2.58822,2.5882 3.10935,-0.8332 10.50754,-10.5075 -2e-5,-2.3881 -1.69404,-1.694 -1.94401,0 -9.97205,9.972 3e-5,1.972 0.61101,0.611 1.73597,0 9.36804,-9.368" - id="path3395" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccccccc" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <rect - style="fill:#333333;stroke:none;display:inline" - id="rect3397" - width="19.512196" - height="19.512196" - x="210.24391" - y="892.60608" - rx="2.9268293" - ry="2.9268293" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - style="fill:none;stroke:#eeeeec;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - d="m 214.67284,895.14537 c 7.11789,-1.5098 3.04383,2.9586 9.72807,1.6024 0.48786,-0.099 0.94287,0.3982 0.94287,0.8928 0,0 0,6.7482 0,6.9956 0,0.2473 -0.31338,0.7228 -0.94287,0.8928 -6.70194,1.3208 -2.58353,-3.1887 -9.72807,-1.6024 -0.39933,0.17 -0.94286,-0.3982 -0.94286,-0.8928 l 0,-6.9955 c 0,-0.4947 0.45501,-0.776 0.94286,-0.8929 z" - id="rect3409" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccscccssc" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <rect - style="fill:none;stroke:#eeeeec;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - id="rect4190" - width="1.125" - height="16.3125" - x="212.62502" - y="894.73718" - ry="0.40000001" - rx="0.40000001" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - transform="translate(-224.73743,701.76263)" - d="m 292.21188,220.62782 c 0,4.10051 -3.32411,7.42462 -7.42462,7.42462 -4.1005,0 -7.42462,-3.32411 -7.42462,-7.42462 0,-4.1005 3.32412,-7.42462 7.42462,-7.42462 4.10051,0 7.42462,3.32412 7.42462,7.42462 z" - sodipodi:ry="7.4246211" - sodipodi:rx="7.4246211" - sodipodi:cy="220.62782" - sodipodi:cx="284.78726" - id="path4020" - style="fill:none;stroke:#1a1a1a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:#1a1a1a;fill-opacity:1;stroke:#1a1a1a;stroke-width:1.62554049;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="path4022" - sodipodi:cx="284.78726" - sodipodi:cy="220.62782" - sodipodi:rx="7.4246211" - sodipodi:ry="7.4246211" - d="m 292.21188,220.62782 c 0,4.10051 -3.32411,7.42462 -7.42462,7.42462 -4.1005,0 -7.42462,-3.32411 -7.42462,-7.42462 0,-4.1005 3.32412,-7.42462 7.42462,-7.42462 4.10051,0 7.42462,3.32412 7.42462,7.42462 z" - transform="matrix(0.61517998,0,0,0.61517998,-115.14559,786.66463)" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png" - sodipodi:type="arc" - style="fill:none;stroke:#1a1a1a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - id="path4024" - sodipodi:cx="284.78726" - sodipodi:cy="220.62782" - sodipodi:rx="7.4246211" - sodipodi:ry="7.4246211" - d="m 292.21188,220.62782 c 0,4.10051 -3.32411,7.42462 -7.42462,7.42462 -4.1005,0 -7.42462,-3.32411 -7.42462,-7.42462 0,-4.1005 3.32412,-7.42462 7.42462,-7.42462 4.10051,0 7.42462,3.32412 7.42462,7.42462 z" - transform="translate(-204.73743,701.76269)" /> - <g - id="g226"> - <rect - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,955.6356)" - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect3141" - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" /> - <text - sodipodi:linespacing="100%" - id="text3151" - y="979.64215" - x="5.6234956" - style="font-size:17.09149551px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#f2f2f2;fill-opacity:1;stroke:none;font-family:FreeSans;-inkscape-font-specification:FreeSans Bold" - xml:space="preserve"><tspan - y="979.64215" - x="5.6234956" - id="tspan3153" - sodipodi:role="line">?</tspan></text> - </g> - <g - id="g204"> - <rect - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,955.6356)" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect3147" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" /> - <text - xml:space="preserve" - style="font-size:17.09149551px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d3d7cf;fill-opacity:1;stroke:none;font-family:FreeSans;-inkscape-font-specification:FreeSans Bold" - x="27.623495" - y="979.64215" - id="text3155" - sodipodi:linespacing="100%"><tspan - sodipodi:role="line" - id="tspan3157" - x="27.623495" - y="979.64215">?</tspan></text> - </g> - <path - sodipodi:type="star" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#b3b3b3;stroke-width:1.20000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - id="path4061" - sodipodi:sides="5" - sodipodi:cx="133.6317" - sodipodi:cy="61.950726" - sodipodi:r1="8.4750214" - sodipodi:r2="4.2375107" - sodipodi:arg1="0.97074611" - sodipodi:arg2="1.5990646" - inkscape:flatsided="false" - inkscape:rounded="0" - inkscape:randomized="0" - d="m 138.41741,68.945222 -4.90548,-2.758679 -5.05353,2.47708 1.10779,-5.517867 -3.91747,-4.040728 5.59012,-0.651551 2.6324,-4.974387 2.34711,5.115187 5.54438,0.966388 -4.13954,3.812909 z" - transform="matrix(0.86880929,0,0,0.9052037,23.373259,866.40571)" - inkscape:transform-center-x="-0.064310184" - inkscape:transform-center-y="-0.6685783" /> - <path - inkscape:transform-center-y="-0.6685783" - inkscape:transform-center-x="-0.064310184" - transform="matrix(0.86880929,0,0,0.9052037,43.373259,866.40571)" - d="m 138.41741,68.945222 -4.90548,-2.758679 -5.05353,2.47708 1.10779,-5.517867 -3.91747,-4.040728 5.59012,-0.651551 2.6324,-4.974387 2.34711,5.115187 5.54438,0.966388 -4.13954,3.812909 z" - inkscape:randomized="0" - inkscape:rounded="0" - inkscape:flatsided="false" - sodipodi:arg2="1.5990646" - sodipodi:arg1="0.97074611" - sodipodi:r2="4.2375107" - sodipodi:r1="8.4750214" - sodipodi:cy="61.950726" - sodipodi:cx="133.6317" - sodipodi:sides="5" - id="path4063" - style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#b3b3b3;stroke-width:1.19979274;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - sodipodi:type="star" /> - <g - id="g4177" - transform="translate(0,0.22992881)"> - <path - sodipodi:nodetypes="cccccc" - style="fill:#cccccc;fill-opacity:1" - d="m 53.921057,63.979016 -5.615027,-6.233401 9.206725,-9.241692 5.744016,0.08696 -0.101757,6.527264 z" - id="path4152" - inkscape:connector-curvature="0" - transform="matrix(0.83907455,0,0,0.82021694,132.45839,876.23647)" /> - <path - sodipodi:nodetypes="cccccccccccccccccccccc" - inkscape:connector-curvature="0" - d="m 54.67642,55.699012 2.077304,-0.01567 -0.06764,2.127228 -2.053363,0.03612 z m 3.043854,-0.97892 -5.97358,0.0021 -8.473421,8.656992 5.643707,5.967988 8.731922,-8.826384 z m 1.047484,5.977035 -9.907739,10.059911 -6.759792,-7.448518 9.288198,-9.605297 7.396851,-0.01484 z m -13.590285,2.754701 5.185415,-5.323903 3.948418,3.90828 -5.336087,5.379274 z" - style="fill:#1a1a1a;fill-opacity:1" - transform="matrix(0.83907455,0,0,0.82021694,136.85379,871.59613)" - id="path4166" /> - </g> - <rect - transform="matrix(1.9980186,0,0,0.84848485,44,217.14578)" - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons.png" - y="852.36218" - x="1.5883562e-17" - height="132" - width="44" - id="rect185" - style="fill:#2e3436;fill-opacity:1;stroke:none;display:inline" /> - <rect - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,1022.6356)" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect192" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" /> - <rect - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect194" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - transform="matrix(0.43114968,0,0,0.43114968,-135.41936,1022.6356)" /> - <rect - transform="matrix(0.43114968,0,0,0.43114968,-135.41936,999.6356)" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect196" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" /> - <rect - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect202" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - transform="matrix(0.43114968,0,0,0.43114968,-135.41936,933.6356)" /> - <rect - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,1022.6356)" - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect214" - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" /> - <rect - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect216" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" - transform="matrix(0.43114968,0,0,0.43114968,-157.41936,1022.6356)" /> - <rect - transform="matrix(0.43114968,0,0,0.43114968,-157.41936,999.6356)" - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect218" - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" /> - <rect - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect224" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" - transform="matrix(0.43114968,0,0,0.43114968,-157.41936,933.6356)" /> - <g - id="g1005"> - <desc - id="desc1016">alternate housing ;)</desc> - <title - id="title1014">wikuom/wigwam</title> - <rect - transform="matrix(0.43114968,0,0,0.43114968,-157.41936,977.6356)" - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect220" - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" /> - <path - sodipodi:end="6.2831853" - sodipodi:start="3.1415927" - transform="matrix(1.2380952,0,0,1.675,-15.523193,759.33575)" - d="m 51.275442,143.46553 c 0,-2.90448 2.472271,-5.25902 5.521971,-5.25902 3.0497,0 5.521971,2.35454 5.521971,5.25902 l -5.521971,0 z" - sodipodi:ry="5.2590199" - sodipodi:rx="5.5219707" - sodipodi:cy="143.46553" - sodipodi:cx="56.797413" - id="path231" - style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5555275;stroke-miterlimit:4;stroke-dasharray:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.55552751;stroke-miterlimit:4;stroke-dasharray:none" - id="path1003" - sodipodi:cx="56.797413" - sodipodi:cy="143.46553" - sodipodi:rx="5.5219707" - sodipodi:ry="5.2590199" - d="m 51.275442,143.46553 c 0,-2.90448 2.472271,-5.25902 5.521971,-5.25902 3.0497,0 5.521971,2.35454 5.521971,5.25902 l -5.521971,0 z" - transform="matrix(0.4523809,0,0,0.775,29.234821,888.45473)" - sodipodi:start="3.1415927" - sodipodi:end="6.2831853" /> - </g> - <g - id="g1018" - transform="translate(22,0)" - style="fill:#1a1a1a"> - <desc - id="desc1020">alternate housing ;)</desc> - <title - id="title1022">wikuom/wigwam</title> - <rect - style="fill:#1a1a1a;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect1024" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" - transform="matrix(0.43114968,0,0,0.43114968,-157.41936,977.6356)" /> - <path - sodipodi:type="arc" - style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.55552751;stroke-miterlimit:4;stroke-dasharray:none" - id="path1026" - sodipodi:cx="56.797413" - sodipodi:cy="143.46553" - sodipodi:rx="5.5219707" - sodipodi:ry="5.2590199" - d="m 51.275442,143.46553 c 0,-2.90448 2.472271,-5.25902 5.521971,-5.25902 3.0497,0 5.521971,2.35454 5.521971,5.25902 l -5.521971,0 z" - transform="matrix(1.2380952,0,0,1.675,-15.523193,759.33575)" - sodipodi:start="3.1415927" - sodipodi:end="6.2831853" /> - <path - sodipodi:end="6.2831853" - sodipodi:start="3.1415927" - transform="matrix(0.4523809,0,0,0.775,29.234821,888.45473)" - d="m 51.275442,143.46553 c 0,-2.90448 2.472271,-5.25902 5.521971,-5.25902 3.0497,0 5.521971,2.35454 5.521971,5.25902 l -5.521971,0 z" - sodipodi:ry="5.2590199" - sodipodi:rx="5.5219707" - sodipodi:cy="143.46553" - sodipodi:cx="56.797413" - id="path1028" - style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.55552751;stroke-miterlimit:4;stroke-dasharray:none" - sodipodi:type="arc" /> - </g> - <g - id="g4160"> - <rect - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect210" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,977.6356)" /> - <path - sodipodi:nodetypes="cccccccc" - inkscape:connector-curvature="0" - d="m 14.756588,131.15925 0,9.60545 -11.6032194,-0.0118 0,-9.58225 -2.73319221,0.79047 8.57645441,-3.98976 8.4702832,3.97497 z" - style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;font-family:Verdana;-inkscape-font-specification:Verdana" - transform="matrix(0.83752627,0,0,0.92659378,3.4546476,870.69518)" - id="path1037" /> - </g> - <g - id="g4164"> - <rect - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect188" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,977.6356)" /> - <path - id="path4158" - transform="matrix(0.83752627,0,0,0.92659378,25.454648,870.69518)" - style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;font-family:Verdana;-inkscape-font-specification:Verdana" - d="m 14.756588,131.15925 0,9.60545 -11.6032194,-0.0118 0,-9.58225 -2.73319221,0.79047 8.57645441,-3.98976 8.4702832,3.97497 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccc" /> - </g> - <g - id="g4210"> - <rect - transform="matrix(0.43114968,0,0,0.43114968,-201.41936,999.6356)" - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect212" - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" /> - <path - sodipodi:nodetypes="cccccccccccccccccc" - transform="matrix(0.90433934,-0.00156352,-0.00156352,0.90433934,0.70503743,868.45488)" - inkscape:connector-curvature="0" - id="path4206" - d="m 4.1190936,170.87651 1.316683,1.26576 1.7540206,0.003 5.5819788,-5.57043 3.523532,0.006 2.853557,-2.81689 0.0014,-1.68321 -1.169094,-1.16909 -2.365502,2.3822 -2.63185,-0.005 0.09078,-2.55314 2.365531,-2.36552 -1.277858,-1.27786 -1.648714,0.0359 -2.8505569,2.8535 0.00598,3.45613 -5.5530909,5.58201 z" - style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - </g> - <g - id="g4214"> - <rect - transform="matrix(0.43114968,0,0,0.43114968,-179.41936,999.6356)" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect190" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" /> - <path - style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 4.1190936,170.87651 1.316683,1.26576 1.7540206,0.003 5.5819788,-5.57043 3.523532,0.006 2.853557,-2.81689 0.0014,-1.68321 -1.169094,-1.16909 -2.365502,2.3822 -2.63185,-0.005 0.09078,-2.55314 2.365531,-2.36552 -1.277858,-1.27786 -1.648714,0.0359 -2.8505569,2.8535 0.00598,3.45613 -5.5530909,5.58201 z" - id="path4208" - inkscape:connector-curvature="0" - transform="matrix(0.90433934,-0.00156352,-0.00156352,0.90433934,22.705037,868.45488)" - sodipodi:nodetypes="cccccccccccccccccc" /> - </g> - <g - id="g4242" - transform="matrix(0.93050058,0,0,0.90640134,0.75846434,97.446032)"> - <path - transform="translate(0,852.36218)" - d="m 7.3250635,194.45924 c 0,0.88172 -0.9249993,1.59649 -2.0660436,1.59649 -1.1410444,0 -2.0660437,-0.71477 -2.0660437,-1.59649 0,-0.88171 0.9249993,-1.59648 2.0660437,-1.59648 1.1410443,0 2.0660436,0.71477 2.0660436,1.59648 z" - sodipodi:ry="1.5964882" - sodipodi:rx="2.0660436" - sodipodi:cy="194.45924" - sodipodi:cx="5.2590199" - id="path4218" - style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - sodipodi:type="arc" /> - <use - height="200" - width="250" - transform="translate(5.698452,-13)" - id="use4224" - xlink:href="#path4218" - y="0" - x="0" /> - <use - height="200" - width="250" - transform="translate(5.6280407,13)" - id="use4226" - xlink:href="#use4224" - y="0" - x="0" /> - <path - sodipodi:type="arc" - style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - id="path4228" - sodipodi:cx="5.2590199" - sodipodi:cy="194.45924" - sodipodi:rx="2.0660436" - sodipodi:ry="1.5964882" - d="m 7.3250635,194.45924 c 0,0.88172 -0.9249993,1.59649 -2.0660436,1.59649 -1.1410444,0 -2.0660437,-0.71477 -2.0660437,-1.59649 0,-0.88171 0.9249993,-1.59648 2.0660437,-1.59648 1.1410443,0 2.0660436,0.71477 2.0660436,1.59648 z" - transform="translate(5.684483,846.36218)" /> - <path - transform="translate(0,852.36218)" - inkscape:connector-curvature="0" - id="path4230" - d="m 10.902837,183.0346 0,3.66687" - style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - sodipodi:nodetypes="cc" /> - <path - sodipodi:nodetypes="cc" - transform="translate(0,852.36218)" - inkscape:connector-curvature="0" - id="path4232" - d="m 9.2894123,189.68386 -2.3956906,3.56909" - style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - sodipodi:nodetypes="cc" - transform="translate(0,852.36218)" - inkscape:connector-curvature="0" - id="path4234" - d="m 12.46737,189.68386 2.493472,3.5202" - style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - sodipodi:nodetypes="cc" - transform="translate(0,852.36218)" - inkscape:connector-curvature="0" - id="path4236" - d="m 12.467368,182.74125 4.009116,9.925" - style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - sodipodi:nodetypes="cc" - transform="translate(0,852.36218)" - inkscape:connector-curvature="0" - id="path4238" - d="m 9.4849789,182.83904 -4.2046813,9.87611" - style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - sodipodi:nodetypes="cc" - transform="translate(0,852.36218)" - inkscape:connector-curvature="0" - id="path4240" - d="m 7.4315299,194.71969 7.0403961,0" - style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - </g> - <g - transform="matrix(0.93050058,0,0,0.90640134,22.758464,97.446032)" - id="g4280" - style="fill:#1a1a1a"> - <path - sodipodi:type="arc" - style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - id="path4282" - sodipodi:cx="5.2590199" - sodipodi:cy="194.45924" - sodipodi:rx="2.0660436" - sodipodi:ry="1.5964882" - d="m 7.3250635,194.45924 c 0,0.88172 -0.9249993,1.59649 -2.0660436,1.59649 -1.1410444,0 -2.0660437,-0.71477 -2.0660437,-1.59649 0,-0.88171 0.9249993,-1.59648 2.0660437,-1.59648 1.1410443,0 2.0660436,0.71477 2.0660436,1.59648 z" - transform="translate(0,852.36218)" /> - <use - x="0" - y="0" - xlink:href="#path4282" - id="use4284" - transform="translate(5.698452,-13)" - width="250" - height="200" - style="fill:#1a1a1a" /> - <use - x="0" - y="0" - xlink:href="#use4284" - id="use4286" - transform="translate(5.6280407,13)" - width="250" - height="200" - style="fill:#1a1a1a" /> - <path - transform="translate(5.684483,846.36218)" - d="m 7.3250635,194.45924 c 0,0.88172 -0.9249993,1.59649 -2.0660436,1.59649 -1.1410444,0 -2.0660437,-0.71477 -2.0660437,-1.59649 0,-0.88171 0.9249993,-1.59648 2.0660437,-1.59648 1.1410443,0 2.0660436,0.71477 2.0660436,1.59648 z" - sodipodi:ry="1.5964882" - sodipodi:rx="2.0660436" - sodipodi:cy="194.45924" - sodipodi:cx="5.2590199" - id="path4288" - style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - sodipodi:type="arc" /> - <path - sodipodi:nodetypes="cc" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 10.902837,183.0346 0,3.66687" - id="path4290" - inkscape:connector-curvature="0" - transform="translate(0,852.36218)" /> - <path - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 9.2894123,189.68386 -2.3956906,3.56909" - id="path4293" - inkscape:connector-curvature="0" - transform="translate(0,852.36218)" - sodipodi:nodetypes="cc" /> - <path - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 12.46737,189.68386 2.493472,3.5202" - id="path4295" - inkscape:connector-curvature="0" - transform="translate(0,852.36218)" - sodipodi:nodetypes="cc" /> - <path - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 12.467368,182.74125 4.009116,9.925" - id="path4297" - inkscape:connector-curvature="0" - transform="translate(0,852.36218)" - sodipodi:nodetypes="cc" /> - <path - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 9.4849789,182.83904 -4.2046813,9.87611" - id="path4299" - inkscape:connector-curvature="0" - transform="translate(0,852.36218)" - sodipodi:nodetypes="cc" /> - <path - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 7.4315299,194.71969 7.0403961,0" - id="path4301" - inkscape:connector-curvature="0" - transform="translate(0,852.36218)" - sodipodi:nodetypes="cc" /> - </g> - <g - id="g4309" - transform="matrix(0.95268982,0,0,1.0934812,2.5939281,-88.949056)"> - <path - id="rect4303" - d="m 47.594131,94.030746 14.462306,0 0,10.255094 -14.462306,0 z" - style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0" - transform="translate(0,852.36218)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccc" - transform="translate(0,852.36218)" - inkscape:connector-curvature="0" - id="path4305" - d="m 47.666782,94.03851 7.145333,5.307564 7.035032,-5.261579 z" - style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - </g> - <g - transform="matrix(0.95268982,0,0,1.0934812,24.593928,-88.949056)" - id="g4313" - style="fill:#1a1a1a"> - <path - inkscape:connector-curvature="0" - transform="translate(0,852.36218)" - style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0" - d="m 47.594131,94.030746 14.462306,0 0,10.255094 -14.462306,0 z" - id="path4315" /> - <path - style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 47.666782,94.03851 7.145333,5.307564 7.035032,-5.261579 z" - id="path4317" - inkscape:connector-curvature="0" - transform="translate(0,852.36218)" - sodipodi:nodetypes="cccc" /> - </g> - <g - id="g257"> - <rect - style="fill:#333333;stroke:#e6e6e6;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - id="rect222" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" - transform="matrix(0.43114968,0,0,0.43114968,-157.41936,955.6356)" /> - <text - transform="translate(5.2683173,850.36218)" - id="text247" - y="129.16422" - x="49.504551" - style="font-size:17px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Verdana;-inkscape-font-specification:Verdana Bold" - xml:space="preserve"><tspan - style="font-weight:bold;-inkscape-font-specification:Verdana Bold" - y="129.16422" - x="49.504551" - id="tspan249" - sodipodi:role="line">!</tspan></text> - </g> - <g - id="g253"> - <rect - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect200" - style="fill:#1a1a1a;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064)" - transform="matrix(0.43114968,0,0,0.43114968,-135.41936,955.6356)" /> - <use - height="200" - width="250" - transform="translate(22.268317,0)" - id="use251" - xlink:href="#text247" - y="0" - x="0" /> - </g> - <path - sodipodi:type="star" - style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#1a1a1a;stroke-width:0.80864763;stroke-miterlimit:4;stroke-dasharray:none" - id="path252" - sodipodi:sides="3" - sodipodi:cx="195.63554" - sodipodi:cy="63.26548" - sodipodi:r1="7.7793064" - sodipodi:r2="15.558613" - sodipodi:arg1="2.1025204" - sodipodi:arg2="3.1497179" - inkscape:flatsided="true" - inkscape:rounded="0.2" - inkscape:randomized="0" - d="m 191.69128,69.97073 c -2.32277,-1.366333 -2.23518,-12.1453 0.10948,-13.473709 2.34466,-1.328408 11.63573,4.136926 11.61383,6.831668 -0.0219,2.694741 -9.40054,8.008375 -11.72331,6.642041 z" - transform="matrix(1.043244,0,0,0.93815683,-5.0151639,863.01152)" - inkscape:transform-center-x="-4.0006141" - inkscape:transform-center-y="-0.059313251" /> - <path - inkscape:transform-center-y="0.059308319" - inkscape:transform-center-x="4.0006111" - transform="matrix(-1.043244,0,0,-0.93815683,425.4058,981.67309)" - d="m 191.69128,69.97073 c -2.32277,-1.366333 -2.23518,-12.1453 0.10948,-13.473709 2.34466,-1.328408 11.63573,4.136926 11.61383,6.831668 -0.0219,2.694741 -9.40054,8.008375 -11.72331,6.642041 z" - inkscape:randomized="0" - inkscape:rounded="0.2" - inkscape:flatsided="true" - sodipodi:arg2="3.1497179" - sodipodi:arg1="2.1025204" - sodipodi:r2="15.558613" - sodipodi:r1="7.7793064" - sodipodi:cy="63.26548" - sodipodi:cx="195.63554" - sodipodi:sides="3" - id="path254" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:#e6e6e6;stroke-width:0.80864763;stroke-miterlimit:4;stroke-dasharray:none" - sodipodi:type="star" /> - <g - id="g1070" - transform="matrix(1.1035285,0,0,1.1035285,-14.308807,-95.610044)"> - <path - sodipodi:nodetypes="cscsc" - inkscape:connector-curvature="0" - id="path262" - d="m 148.82687,49.85498 c 0,0 -3.94234,5.723921 -8.80546,5.723921 -4.86313,0 -8.80547,-5.723921 -8.80547,-5.723921 0,0 3.94234,-5.72392 8.80547,-5.72392 4.86312,0 8.80546,5.72392 8.80546,5.72392 z" - style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#1a1a1a;stroke-width:0.94912058;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - transform="matrix(0.79496097,0,0,0.9062729,26.90439,859.01012)" /> - <path - transform="matrix(0.89659499,0,0,0.89659499,12.90165,857.69139)" - d="m 144.56282,51.877872 c 0,2.665109 -2.1605,4.825606 -4.82561,4.825606 -2.66511,0 -4.8256,-2.160497 -4.8256,-4.825606 0,-2.665108 2.16049,-4.825605 4.8256,-4.825605 2.66511,0 4.82561,2.160497 4.82561,4.825605 z" - sodipodi:ry="4.8256054" - sodipodi:rx="4.8256054" - sodipodi:cy="51.877872" - sodipodi:cx="139.73721" - id="path1033" - style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#1a1a1a;stroke-width:0.86699998;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path1035" - sodipodi:cx="139.73721" - sodipodi:cy="51.877872" - sodipodi:rx="4.8256054" - sodipodi:ry="4.8256054" - d="m 144.56282,51.877872 c 0,2.665109 -2.1605,4.825606 -4.82561,4.825606 -2.66511,0 -4.8256,-2.160497 -4.8256,-4.825606 0,-2.665108 2.16049,-4.825605 4.8256,-4.825605 2.66511,0 4.82561,2.160497 4.82561,4.825605 z" - transform="matrix(0.37382862,0,0,0.37382862,85.950326,884.7403)" /> - </g> - <g - id="g321"> - <g - id="g315"> - <path - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" - d="m 51.71875,158.125 0,7.65625 10.1875,0 0,-7.65625 z" - style="fill:#333333" - transform="translate(1,852.36218)" - id="path293" /> - <path - id="path278" - transform="translate(1,852.36218)" - style="fill:#e6e6e6" - d="m 51.71875,158.125 0,7.65625 10.1875,0 0,-7.65625 z m 0.53125,0.625 9.03125,0 -0.03125,6.4375 -9,0 z m 0.71875,0.65625 0,5.03125 4.4375,0 -0.0625,-5.03125 z m 0.59375,0.625 3.25,0 0,2.5625 -0.8125,0 0,-1.9375 -1.727964,0 0,1.9375 -0.709536,0 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccccccccccccccccc" /> - </g> - <use - height="200" - width="250" - transform="translate(-6,6)" - id="use319" - xlink:href="#g315" - y="0" - x="0" /> - </g> - <g - id="g353"> - <path - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" - d="m 51.71875,158.125 0,7.65625 10.1875,0 0,-7.65625 z" - style="fill:#1a1a1a" - transform="translate(23,852.36218)" - id="path333" /> - <path - id="path335" - transform="translate(23,852.36218)" - style="fill:#e6e6e6" - d="m 51.71875,158.125 0,7.65625 10.1875,0 0,-7.65625 z m 0.53125,0.625 9.03125,0 -0.03125,6.4375 -9,0 z m 0.71875,0.65625 0,5.03125 4.4375,0 -0.0625,-5.03125 z m 0.59375,0.625 3.25,0 0,2.5625 -0.8125,0 0,-1.9375 -1.727964,0 0,1.9375 -0.709536,0 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccccccccccccccccc" /> - </g> - <use - x="0" - y="0" - xlink:href="#g353" - id="use357" - transform="translate(-6,6)" - width="250" - height="200" /> - <g - id="g293" - transform="translate(-54.726207,8)"> - <path - transform="matrix(1.2829201,1.9081591,-1.9081591,1.2829201,-566.65386,-61.76762)" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - sodipodi:ry="0.88388348" - sodipodi:rx="0.88388348" - sodipodi:cy="21.754047" - sodipodi:cx="559.67499" - id="path274" - style="fill:#e6e6e6;fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:#e6e6e6;fill-opacity:1;stroke:none" - id="path276" - sodipodi:cx="559.67499" - sodipodi:cy="21.754047" - sodipodi:rx="0.88388348" - sodipodi:ry="0.88388348" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - transform="matrix(0.96219008,1.4311194,-1.4311194,0.96219008,-391.29289,215.61485)" /> - <path - transform="matrix(1.0080086,1.4992679,-1.4992679,1.0080086,-421.03317,165.44683)" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - sodipodi:ry="0.88388348" - sodipodi:rx="0.88388348" - sodipodi:cy="21.754047" - sodipodi:cx="559.67499" - id="path279" - style="fill:#e6e6e6;fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - transform="matrix(0.45818575,0.68148541,-0.68148541,0.45818575,-132.78975,635.71067)" - inkscape:connector-curvature="0" - id="path281" - d="m 563.21055,31.653543 4.41942,-6.187185 -7.6014,-6.187184" - style="fill:none;stroke:#e6e6e6;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - sodipodi:type="arc" - style="fill:#e6e6e6;fill-opacity:1;stroke:none" - id="path283" - sodipodi:cx="559.67499" - sodipodi:cy="21.754047" - sodipodi:rx="0.88388348" - sodipodi:ry="0.88388348" - d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z" - transform="matrix(1.0996458,1.635565,-1.635565,1.0996458,-476.37171,94.687576)" /> - <path - transform="matrix(0.45818575,0.68148541,-0.68148541,0.45818575,-132.78975,635.71067)" - inkscape:connector-curvature="0" - id="path285" - d="m 567.45319,25.466358 7.6014,-4.065864" - style="fill:none;stroke:#e6e6e6;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - </g> - <use - x="0" - y="0" - xlink:href="#g293" - id="use301" - transform="translate(22,0)" - width="250" - height="200" /> - <g - transform="translate(-2.0523e-4,-5e-4)" - id="g4823"> - <path - style="fill:#e6e6e6" - d="m 12,16 -12.00914477,0 0,-13.6988082 2.83893857,-2.12898488 11.8211932,0 0,14.04031008 z" - id="path4821" - inkscape:connector-curvature="0" - transform="translate(232.52235,913.88168)" - sodipodi:nodetypes="ccccccc" /> - <path - sodipodi:nodetypes="cccccccccccccszscc" - transform="translate(232.52235,913.88168)" - inkscape:connector-curvature="0" - id="path4819" - d="m -0.00914477,2.3011918 2.83893857,-2.12898488 11.8211932,0 0,14.04031008 L 13.73679,14.984131 13.640962,1.0093271 3.4856425,0.91349949 1.1272469,2.7572384 12,2.7572384 12,16 -0.00914477,16 z M 8.2958276,12.045759 c -1.8631354,-1.086398 0.045759,-2.6807932 0.045759,-3.6707932 0,-0.99 -0.6423808,-2.2112618 -2.2457592,-2.1833105 C 4.4924492,6.2196066 3.8500685,7.0875 3.8500685,8.4166667 c 0,1.3291666 2.1768916,1.6857063 -0.1958961,3.6876733 z" - style="fill:#1a1a1a" /> - </g> - <g - transform="translate(-21.97338,-0.48160397)" - id="g4016"> - <rect - ry="6" - rx="6" - y="18.790752" - x="470.35715" - height="44.285713" - width="44.285713" - id="rect196-0-0" - style="fill:#2e2f2e;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064-7-3)" - transform="matrix(0.43114968,0,0,0.43114968,-91.3641,933.9484)" /> - <path - transform="matrix(0.26322611,0,0,0.26322611,-5.37436,937.63865)" - inkscape:original-d="M 484.55417,49.762303 492.5,40.933609 504.27158,48.879434" - inkscape:path-effect="#path-effect4050-9-1" - inkscape:connector-curvature="0" - id="path4072-5-1" - d="m 484.90604,52.679071 c 0,0 -0.72327,1.028211 -2.88202,1.697409 -0.63474,-0.494653 -1.23439,-1.034334 -1.79294,-1.613646 0.43889,-2.217071 1.3855,-3.044283 1.3855,-3.044283 l 2.04237,-1.648571 c -0.73879,-0.915258 -1.3342,-1.946011 -1.75793,-3.043257 l -2.44847,0.945549 c 0,0 -1.18951,0.40671 -3.32932,-0.320779 -0.22277,-0.773276 -0.39067,-1.56235 -0.50204,-2.359331 1.65823,-1.535673 2.91028,-1.648499 2.91028,-1.648499 l 2.62132,-0.133248 c -0.0597,-1.174706 0.0645,-2.358577 0.36658,-3.495332 l -2.53663,-0.674208 c 0,0 -1.20139,-0.37014 -2.50493,-2.216441 0.2743,-0.756533 0.60227,-1.4936 0.98062,-2.20383 2.24419,-0.267701 3.32343,0.376954 3.32343,0.376954 l 2.19901,1.432971 c 0.64217,-0.985455 1.43848,-1.870246 2.35108,-2.612309 l -1.65589,-2.03644 c 0,0 -0.75438,-1.005609 -0.72373,-3.265497 0.66659,-0.45082 1.36515,-0.854347 2.08871,-1.206542 1.97294,1.102524 2.46715,2.258424 2.46715,2.258424 l 0.93675,2.451844 c 1.09876,-0.419794 2.26306,-0.667544 3.43754,-0.731472 l -0.14265,-2.620822 c 0,0 -0.0192,-1.25697 1.3339,-3.067245 0.80426,0.02709 1.6066,0.111239 2.39899,0.251604 0.94809,2.051624 0.66849,3.277254 0.66849,3.277254 l -0.6833,2.534196 c 1.13566,0.306213 2.22322,0.790136 3.21097,1.428761 l 1.42508,-2.204138 c 0,0 0.72327,-1.028211 2.88202,-1.697409 0.63474,0.494653 1.23439,1.034334 1.79294,1.613646 -0.43889,2.217071 -1.3855,3.044283 -1.3855,3.044283 l -2.04237,1.648571 c 0.73879,0.915258 1.3342,1.946011 1.75793,3.043257 l 2.44847,-0.945549 c 0,0 1.18951,-0.40671 3.32932,0.320779 0.22277,0.773276 0.39067,1.56235 0.50204,2.359331 -1.65823,1.535673 -2.91028,1.648499 -2.91028,1.648499 l -2.62132,0.133248 c 0.0597,1.174706 -0.0645,2.358577 -0.36658,3.495332 l 2.53663,0.674208 c 0,0 1.20139,0.37014 2.50493,2.216441 -0.2743,0.756533 -0.60227,1.4936 -0.98062,2.20383 -2.24419,0.267701 -3.32343,-0.376954 -3.32343,-0.376954 l -2.19901,-1.432971 c -0.64217,0.985455 -1.43848,1.870246 -2.35108,2.612309 l 1.65589,2.03644 c 0,0 0.75438,1.005609 0.72373,3.265497 -0.66659,0.45082 -1.36515,0.854347 -2.08871,1.206542 -1.97294,-1.102524 -2.46715,-2.258424 -2.46715,-2.258424 l -0.93675,-2.451844 c -1.09876,0.419794 -2.26306,0.667544 -3.43754,0.731472 l 0.14265,2.620822 c 0,0 0.0192,1.25697 -1.3339,3.067245 -0.80426,-0.02709 -1.6066,-0.111239 -2.39899,-0.251604 -0.94809,-2.051624 -0.66849,-3.277254 -0.66849,-3.277254 l 0.6833,-2.534196 c -1.13566,-0.306213 -2.22322,-0.790136 -3.21097,-1.428761 l -1.42508,2.204138" - style="fill:none;stroke:#d3d7cf;stroke-width:1.66475451;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter4064-8-9)" /> - <path - style="fill:none;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m 4.1190936,170.87651 1.316683,1.26576 1.7540206,0.003 5.5819788,-5.57043 3.523532,0.006 2.853557,-2.81689 0.0014,-1.68321 -1.169094,-1.16909 -2.365502,2.3822 -2.63185,-0.005 0.09078,-2.55314 2.365531,-2.36552 -1.277858,-1.27786 -1.648714,0.0359 -2.8505569,2.8535 0.00598,3.45613 -5.5530909,5.58201 z" - id="path4208-6-0" - inkscape:connector-curvature="0" - transform="matrix(0.55525134,-9.5997878e-4,-9.5997878e-4,0.55525134,110.73906,863.64511)" - sodipodi:nodetypes="cccccccccccccccccc" /> - </g> - <rect - transform="matrix(0.43114968,0,0,0.43114968,-91.46425,933.55802)" - style="fill:#1a1a1a;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.05356860000000019;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4064-7-3-9)" - id="rect196-0-0-7" - width="44.285713" - height="44.285713" - x="470.35715" - y="18.790752" - rx="6" - ry="6" /> - <path - style="fill:none;stroke:#d3d7cf;stroke-width:1.66475451;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;filter:url(#filter4064-8-9-6)" - d="m 484.90604,52.679071 c 0,0 -0.72327,1.028211 -2.88202,1.697409 -0.63474,-0.494653 -1.23439,-1.034334 -1.79294,-1.613646 0.43889,-2.217071 1.3855,-3.044283 1.3855,-3.044283 l 2.04237,-1.648571 c -0.73879,-0.915258 -1.3342,-1.946011 -1.75793,-3.043257 l -2.44847,0.945549 c 0,0 -1.18951,0.40671 -3.32932,-0.320779 -0.22277,-0.773276 -0.39067,-1.56235 -0.50204,-2.359331 1.65823,-1.535673 2.91028,-1.648499 2.91028,-1.648499 l 2.62132,-0.133248 c -0.0597,-1.174706 0.0645,-2.358577 0.36658,-3.495332 l -2.53663,-0.674208 c 0,0 -1.20139,-0.37014 -2.50493,-2.216441 0.2743,-0.756533 0.60227,-1.4936 0.98062,-2.20383 2.24419,-0.267701 3.32343,0.376954 3.32343,0.376954 l 2.19901,1.432971 c 0.64217,-0.985455 1.43848,-1.870246 2.35108,-2.612309 l -1.65589,-2.03644 c 0,0 -0.75438,-1.005609 -0.72373,-3.265497 0.66659,-0.45082 1.36515,-0.854347 2.08871,-1.206542 1.97294,1.102524 2.46715,2.258424 2.46715,2.258424 l 0.93675,2.451844 c 1.09876,-0.419794 2.26306,-0.667544 3.43754,-0.731472 l -0.14265,-2.620822 c 0,0 -0.0192,-1.25697 1.3339,-3.067245 0.80426,0.02709 1.6066,0.111239 2.39899,0.251604 0.94809,2.051624 0.66849,3.277254 0.66849,3.277254 l -0.6833,2.534196 c 1.13566,0.306213 2.22322,0.790136 3.21097,1.428761 l 1.42508,-2.204138 c 0,0 0.72327,-1.028211 2.88202,-1.697409 0.63474,0.494653 1.23439,1.034334 1.79294,1.613646 -0.43889,2.217071 -1.3855,3.044283 -1.3855,3.044283 l -2.04237,1.648571 c 0.73879,0.915258 1.3342,1.946011 1.75793,3.043257 l 2.44847,-0.945549 c 0,0 1.18951,-0.40671 3.32932,0.320779 0.22277,0.773276 0.39067,1.56235 0.50204,2.359331 -1.65823,1.535673 -2.91028,1.648499 -2.91028,1.648499 l -2.62132,0.133248 c 0.0597,1.174706 -0.0645,2.358577 -0.36658,3.495332 l 2.53663,0.674208 c 0,0 1.20139,0.37014 2.50493,2.216441 -0.2743,0.756533 -0.60227,1.4936 -0.98062,2.20383 -2.24419,0.267701 -3.32343,-0.376954 -3.32343,-0.376954 l -2.19901,-1.432971 c -0.64217,0.985455 -1.43848,1.870246 -2.35108,2.612309 l 1.65589,2.03644 c 0,0 0.75438,1.005609 0.72373,3.265497 -0.66659,0.45082 -1.36515,0.854347 -2.08871,1.206542 -1.97294,-1.102524 -2.46715,-2.258424 -2.46715,-2.258424 l -0.93675,-2.451844 c -1.09876,0.419794 -2.26306,0.667544 -3.43754,0.731472 l 0.14265,2.620822 c 0,0 0.0192,1.25697 -1.3339,3.067245 -0.80426,-0.02709 -1.6066,-0.111239 -2.39899,-0.251604 -0.94809,-2.051624 -0.66849,-3.277254 -0.66849,-3.277254 l 0.6833,-2.534196 c -1.13566,-0.306213 -2.22322,-0.790136 -3.21097,-1.428761 l -1.42508,2.204138" - id="path4072-5-1-7" - inkscape:connector-curvature="0" - inkscape:path-effect="#path-effect4050-9-1-5" - inkscape:original-d="M 484.55417,49.762303 492.5,40.933609 504.27158,48.879434" - transform="matrix(0.26322611,0,0,0.26322611,-5.4745096,937.24827)" /> - <path - sodipodi:nodetypes="cccccccccccccccccc" - transform="matrix(0.55525134,-9.5997878e-4,-9.5997878e-4,0.55525134,110.63891,863.25473)" - inkscape:connector-curvature="0" - id="path4208-6-0-2" - d="m 4.1190936,170.87651 1.316683,1.26576 1.7540206,0.003 5.5819788,-5.57043 3.523532,0.006 2.853557,-2.81689 0.0014,-1.68321 -1.169094,-1.16909 -2.365502,2.3822 -2.63185,-0.005 0.09078,-2.55314 2.365531,-2.36552 -1.277858,-1.27786 -1.648714,0.0359 -2.8505569,2.8535 0.00598,3.45613 -5.5530909,5.58201 z" - style="fill:none;stroke:#f2f2f2;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - </g> -</svg> diff --git a/view/theme/dispy/light/login-bg.gif b/view/theme/dispy/light/login-bg.gif Binary files differdeleted file mode 100644 index cde836c89..000000000 --- a/view/theme/dispy/light/login-bg.gif +++ /dev/null diff --git a/view/theme/dispy/light/menu-user-pin.jpg b/view/theme/dispy/light/menu-user-pin.jpg Binary files differdeleted file mode 100644 index 26449569f..000000000 --- a/view/theme/dispy/light/menu-user-pin.jpg +++ /dev/null diff --git a/view/theme/dispy/light/next.png b/view/theme/dispy/light/next.png Binary files differdeleted file mode 100644 index 5e0067c4b..000000000 --- a/view/theme/dispy/light/next.png +++ /dev/null diff --git a/view/theme/dispy/light/notifications.png b/view/theme/dispy/light/notifications.png Binary files differdeleted file mode 100644 index 66c432eac..000000000 --- a/view/theme/dispy/light/notifications.png +++ /dev/null diff --git a/view/theme/dispy/light/notifications.svg b/view/theme/dispy/light/notifications.svg deleted file mode 100644 index eccc54457..000000000 --- a/view/theme/dispy/light/notifications.svg +++ /dev/null @@ -1,273 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - id="svg3486" - version="1.1" - inkscape:version="0.48+devel r" - width="148" - height="19" - sodipodi:docname="notifications.svg" - inkscape:export-filename="/var/www3/kisikew.org/portal/pub/fd/view/theme/dispy/notifications.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <metadata - id="metadata3492"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs3490" /> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1041" - inkscape:window-height="643" - id="namedview3488" - showgrid="false" - inkscape:zoom="4.2687885" - inkscape:cx="64.235788" - inkscape:cy="18.27268" - inkscape:window-x="0" - inkscape:window-y="48" - inkscape:window-maximized="0" - inkscape:current-layer="svg3486" - width="0px" - height="0px" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <g - id="g4437" - transform="translate(0,-44)"> - <path - sodipodi:nodetypes="ccccc" - transform="translate(0,44)" - style="fill:#6c99c9" - d="M 34.398531,19 30.225818,10.411298 47.864407,1.3368391 57.625819,19.010154 z" - id="path3506" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccccccccccccccc" - transform="translate(0,44)" - style="fill:#4e7db5" - d="m 45.148088,5.1797115 -9.353484,4.7866764 6.895762,1.5144501 z m -2.0018,7.2466465 -8.105899,-1.97793 3.232895,6.44678 11.074578,-5.648894 -3.366977,-6.4432724 z M 46.4192,3.6690997 50.56253,11.552848 38.044003,18.006578 33.98857,10.057271 z" - id="path3502" - inkscape:connector-curvature="0" /> - </g> - <g - id="g4441" - transform="translate(0,-44)"> - <path - sodipodi:nodetypes="ccccc" - transform="translate(0,44)" - style="fill:#aa7ca5" - d="M 64.398531,19 60.225818,10.411298 77.725,2.013353 87.084493,18.988196 z" - id="path3504" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="sssssccccc" - transform="translate(-0.88048036,44.641441)" - style="fill:#75507b" - d="m 75,16 c -0.55,0 -1,-0.45 -1,-1 0,-0.55 0.45,-1 1,-1 0.55,0 1,0.45 1,1 0,0.55 -0.45,1 -1,1 z m -1.441718,-2.172038 c 0,0 -2.448135,-3.9460956 -3.558282,-6.0504682 0,-0.4276216 1.043961,-0.9072067 1.57461,-0.9072067 1.48457,2.2735627 3.276272,6.3043659 3.276272,6.3043659 -0.823179,-0.104873 -0.90154,-0.01483 -1.2926,0.653309 z" - id="path3498" - inkscape:connector-curvature="0" /> - </g> - <g - id="g4453" - transform="translate(0,-24)"> - <path - sodipodi:nodetypes="ccccc" - transform="translate(0,24)" - style="fill:#f4ac42;fill-opacity:1" - d="M 4.3985314,19 0.19544564,10.348783 18,1.8695178 27,19 z" - id="path3508" - inkscape:connector-curvature="0" /> - <g - transform="translate(0,-20)" - id="g4361"> - <path - sodipodi:type="arc" - style="fill:#e98007;fill-opacity:1;stroke:none" - id="path274" - sodipodi:cx="559.67499" - sodipodi:cy="21.754047" - sodipodi:rx="0.88388348" - sodipodi:ry="0.88388348" - d="m 560.55887,21.754047 a 0.88388348,0.88388348 0 1 1 -1.76777,0 0.88388348,0.88388348 0 1 1 1.76777,0 z" - transform="matrix(1.0481621,1.5589904,-1.5589904,1.0481621,-539.42292,-838.01094)" /> - <path - transform="matrix(0.78612158,1.1692428,-1.1692428,0.78612158,-396.15077,-611.38593)" - d="m 560.55887,21.754047 a 0.88388348,0.88388348 0 1 1 -1.76777,0 0.88388348,0.88388348 0 1 1 1.76777,0 z" - sodipodi:ry="0.88388348" - sodipodi:rx="0.88388348" - sodipodi:cy="21.754047" - sodipodi:cx="559.67499" - id="path276" - style="fill:#e98007;fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:#e98007;fill-opacity:1;stroke:none" - id="path279" - sodipodi:cx="559.67499" - sodipodi:cy="21.754047" - sodipodi:rx="0.88388348" - sodipodi:ry="0.88388348" - d="m 560.55887,21.754047 a 0.88388348,0.88388348 0 1 1 -1.76777,0 0.88388348,0.88388348 0 1 1 1.76777,0 z" - transform="matrix(0.8235559,1.224921,-1.224921,0.8235559,-420.44896,-652.37384)" /> - <path - style="fill:none;stroke:#e98007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 563.21055,31.653543 4.41942,-6.187185 -7.6014,-6.187184" - id="path281" - inkscape:connector-curvature="0" - transform="matrix(0.37434361,0.55678228,-0.55678228,0.37434361,-184.9504,-268.16228)" /> - <path - transform="matrix(0.89842466,1.3362775,-1.3362775,0.89842466,-465.66125,-710.18506)" - d="m 560.55887,21.754047 a 0.88388348,0.88388348 0 1 1 -1.76777,0 0.88388348,0.88388348 0 1 1 1.76777,0 z" - sodipodi:ry="0.88388348" - sodipodi:rx="0.88388348" - sodipodi:cy="21.754047" - sodipodi:cx="559.67499" - id="path283" - style="fill:#e98007;fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - style="fill:none;stroke:#e98007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 567.45319,25.466358 7.6014,-4.065864" - id="path285" - inkscape:connector-curvature="0" - transform="matrix(0.37434361,0.55678228,-0.55678228,0.37434361,-184.9504,-268.16228)" /> - </g> - </g> - <g - id="g4566" - transform="translate(0,-24)"> - <path - sodipodi:nodetypes="ccccc" - transform="translate(0,24)" - style="fill:#6fcb15" - d="M 94.398531,19 90.225818,10.411298 108.5,1.9724323 117,19 z" - id="path3500" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccc" - inkscape:connector-curvature="0" - d="m 14.756588,131.15925 0,9.60545 -11.6032194,-0.0118 0,-9.58225 m -0.039261,-0.0651 5.8825232,-3.13423 5.9219702,3.25106 z" - style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:none;stroke:#428107;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;font-family:Verdana;-inkscape-font-specification:Verdana" - transform="matrix(0.55727141,-0.25996788,0.2876144,0.61653494,59.024831,-44.715085)" - id="path1037" /> - </g> - <g - id="g4553" - transform="translate(0,-24)"> - <path - inkscape:connector-curvature="0" - id="path4471" - d="M 94.398531,19 90.225818,10.411298 108.5,1.9724323 117,19 z" - style="fill:#fb7b62;fill-opacity:1" - transform="translate(31,24)" - sodipodi:nodetypes="ccccc" /> - <path - transform="matrix(0.59287153,-0.28418321,0.25089012,0.52341448,79.780054,-59.357394)" - d="m 7.3250635,194.45924 a 2.0660436,1.5964882 0 1 1 -4.1320873,0 2.0660436,1.5964882 0 1 1 4.1320873,0 z" - sodipodi:ry="1.5964882" - sodipodi:rx="2.0660436" - sodipodi:cy="194.45924" - sodipodi:cx="5.2590199" - id="path4218" - style="fill:#c32405;fill-opacity:1;fill-rule:nonzero;stroke:#c32405;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - sodipodi:type="arc" /> - <use - height="200" - width="250" - transform="translate(0.11687856,-8.4237924)" - id="use4224" - xlink:href="#path4218" - y="0" - x="0" - style="fill:#999999;stroke:#666666" /> - <use - height="200" - width="250" - transform="translate(6.5982765,5.2049933)" - id="use4226" - xlink:href="#use4224" - y="0" - x="0" - style="fill:#999999;stroke:#c32405;stroke-opacity:1" /> - <path - sodipodi:type="arc" - style="fill:#c32405;fill-opacity:1;fill-rule:nonzero;stroke:#c32405;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - id="path4228" - sodipodi:cx="5.2590199" - sodipodi:cy="194.45924" - sodipodi:rx="2.0660436" - sodipodi:ry="1.5964882" - d="m 7.3250635,194.45924 a 2.0660436,1.5964882 0 1 1 -4.1320873,0 2.0660436,1.5964882 0 1 1 4.1320873,0 z" - transform="matrix(0.59287153,-0.28418321,0.25089012,0.52341448,81.644877,-64.113316)" /> - <path - transform="matrix(0.59287153,-0.28418321,0.25089012,0.52341448,79.780054,-59.357394)" - inkscape:connector-curvature="0" - id="path4230" - d="m 10.902837,183.0346 0,3.66687" - style="fill:none;stroke:#c32405;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - sodipodi:nodetypes="cc" /> - <path - sodipodi:nodetypes="cc" - transform="matrix(0.59287153,-0.28418321,0.25089012,0.52341448,79.780054,-59.357394)" - inkscape:connector-curvature="0" - id="path4232" - d="m 9.2894123,189.68386 -2.3956906,3.56909" - style="fill:none;stroke:#c32405;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - sodipodi:nodetypes="cc" - transform="matrix(0.59287153,-0.28418321,0.25089012,0.52341448,79.780054,-59.357394)" - inkscape:connector-curvature="0" - id="path4234" - d="m 12.46737,189.68386 2.493472,3.5202" - style="fill:none;stroke:#c32405;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - sodipodi:nodetypes="cc" - transform="matrix(0.59287153,-0.28418321,0.25089012,0.52341448,79.780054,-59.357394)" - inkscape:connector-curvature="0" - id="path4236" - d="m 12.467368,182.74125 4.009116,9.925" - style="fill:none;stroke:#c32405;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - sodipodi:nodetypes="cc" - transform="matrix(0.59287153,-0.28418321,0.25089012,0.52341448,79.780054,-59.357394)" - inkscape:connector-curvature="0" - id="path4238" - d="m 9.4849789,182.83904 -4.2046813,9.87611" - style="fill:none;stroke:#c32405;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - <path - sodipodi:nodetypes="cc" - transform="matrix(0.59287153,-0.28418321,0.25089012,0.52341448,79.780054,-59.357394)" - inkscape:connector-curvature="0" - id="path4240" - d="m 7.4315299,194.71969 7.0403961,0" - style="fill:none;stroke:#c32405;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> - </g> -</svg> diff --git a/view/theme/dispy/light/photo-menu.jpg b/view/theme/dispy/light/photo-menu.jpg Binary files differdeleted file mode 100644 index fde5eb535..000000000 --- a/view/theme/dispy/light/photo-menu.jpg +++ /dev/null diff --git a/view/theme/dispy/light/premium.png b/view/theme/dispy/light/premium.png Binary files differdeleted file mode 100644 index d2855a4f5..000000000 --- a/view/theme/dispy/light/premium.png +++ /dev/null diff --git a/view/theme/dispy/light/prev.png b/view/theme/dispy/light/prev.png Binary files differdeleted file mode 100644 index 10b10d74f..000000000 --- a/view/theme/dispy/light/prev.png +++ /dev/null diff --git a/view/theme/dispy/light/screenshot.jpg b/view/theme/dispy/light/screenshot.jpg Binary files differdeleted file mode 100644 index 46a01ccb8..000000000 --- a/view/theme/dispy/light/screenshot.jpg +++ /dev/null diff --git a/view/theme/dispy/light/screenshot_small.jpg b/view/theme/dispy/light/screenshot_small.jpg Binary files differdeleted file mode 100644 index 043d0415f..000000000 --- a/view/theme/dispy/light/screenshot_small.jpg +++ /dev/null diff --git a/view/theme/dispy/light/star.png b/view/theme/dispy/light/star.png Binary files differdeleted file mode 100644 index a327ba14e..000000000 --- a/view/theme/dispy/light/star.png +++ /dev/null diff --git a/view/theme/dispy/light/style.css b/view/theme/dispy/light/style.css deleted file mode 100644 index 6f4c6e37f..000000000 --- a/view/theme/dispy/light/style.css +++ /dev/null @@ -1,551 +0,0 @@ -html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;} -article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;} -body{line-height:1;} -ul,ol{margin:0px;padding:0px;list-style:none;list-style-position:inside;} -blockquote,q{quotes:none;} -blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;} -table{border-collapse:collapse;border-spacing:0;} -address{font-style:normal;} -a img,:link img,:visited img{border:none;} -q{quotes:"" "";} -article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} -audio,canvas,video,time{display:inline-block;*display:inline;*zoom:1;} -audio:not([controls]),[hidden]{display:none;} -html{font-size:100%;overflow-y:scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-o-text-size-adjust:100%;font-size-adjust:100%;} -body{margin:0;padding:0;font-size:14pt;line-height:1.1em;font-family:sans-serif;color:#111111;background-color:#eeeeec;} -button,input,select,textarea{color:#111111;background-color:white;} -select{border:1px dotted #555555;padding:1px;margin:3px;color:#111111;background:#eeeeec;max-width:85%;min-width:85px;} -option{padding:1px;color:#111111;background:#eeeeec;}option[selected="selected"]{color:#eeeeec;background:#2e3436;} -tr:nth-child(even){background-color:#d6d6d1;} -:focus{outline:none;} -a:focus{outline:invert, dashed, thin;} -[disabled="disabled"]{background:#2e3436;color:#dddddd;} -ins,mark{background-color:#eeeeec;color:#111111;} -ins{text-decoration:none;} -mark{font-style:italic;font-weight:bold;} -pre,code,kbd,samp,.wall-item-body code{font-family:monospace, monospace;_font-family:monospace;font-size:1em;} -pre,.wall-item-body code{white-space:pre-wrap;white-space:pre;word-wrap:none;} -q{quotes:none;}q:before,q:after{content:"";content:none;} -em{font-style:italic;} -strong{font-weight:bold;} -strike{text-decoration:line-through;} -small{font-size:85%;} -sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;} -sub{bottom:-0.25em;} -sup{top:-0.5em;} -img{border:0 none;} -a{color:#3465a4;text-decoration:none;margin-bottom:1px;}a:hover{color:#284d7d;border-bottom:1px dotted #284d7d;} -a:hover img{text-decoration:none;} -blockquote{background:#aaaaaa;color:#111111;text-indent:5px;padding:5px;border:1px solid #111111;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;} -label{width:38%;display:inline-block;font-size:small;margin:0 10px 1em 0;border:1px solid #eeeeec;padding:3px 5px;background:#cccccc;color:#111111;-moz-box-shadow:3px 3px 5px 0px #111111;-o-box-shadow:3px 3px 5px 0px #111111;-webkit-box-shadow:3px 3px 5px 0px #111111;-ms-box-shadow:3px 3px 5px 0px #111111;box-shadow:3px 3px 5px 0px #111111;} -input{width:250px;height:25px;border:1px solid #444444;width:17em;}input[type="checkbox"],input[type="radio"]{width:15px;height:15px;margin:0;} -input[type="radio"]{margin:5px 0;} -input[type="submit"],input[type="button"]{background-color:#555753;border:2px outset #444444;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;-moz-box-shadow:1px 3px 4px 0 #111111;-o-box-shadow:1px 3px 4px 0 #111111;-webkit-box-shadow:1px 3px 4px 0 #111111;-ms-box-shadow:1px 3px 4px 0 #111111;box-shadow:1px 3px 4px 0 #111111;color:#eeeeec;cursor:pointer;font-weight:bold;width:auto;-moz-text-shadow:1px 1px #111111;-o-text-shadow:1px 1px #111111;-webkit-text-shadow:1px 1px #111111;-ms-text-shadow:1px 1px #111111;text-shadow:1px 1px #111111;} -input[type="submit"]:active,input[type="button"]:active{-moz-box-shadow:0 0 0 0 #111111;-o-box-shadow:0 0 0 0 #111111;-webkit-box-shadow:0 0 0 0 #111111;-ms-box-shadow:0 0 0 0 #111111;box-shadow:0 0 0 0 #111111;} -h1,h2,h3,h4,h5,h6{margin:10px 0px;font-weight:bold;border-bottom:1px solid #284d7d;} -h1{font-size:x-large;} -h2{font-size:large;} -h3{font-size:medium;} -h4{font-size:small;} -h5{font-size:x-small;} -h6{font-size:xx-small;} -.required{display:inline;color:red;font-size:16px;font-weight:bold;margin:3px;} -.fakelink,.lockview{color:#3465a4;cursor:pointer;} -.fakelink:hover{color:#284d7d;} -.smalltext{font-size:0.7em;} -.action{margin:5px 0;} -.tool{margin:5px 0;list-style:none;} -#articlemain{width:100%;height:100%;margin:0 auto;} -.button{color:#111111;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;padding:5px;cursor:pointer;}.button a{color:#111111;font-weight:bold;} -#profile-listing-desc a{color:#eeeeec;font-weight:bold;} -[class$="-desc"],[id$="-desc"]{color:#eeeeec;background:#2e3436;border:2px outset #111111;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;margin:3px 10px 7px 0;padding:5px;font-weight:bold;font-size:smaller;} -#item-delete-selected-desc{float:left;font-size:x-small;margin-right:5px;}#item-delete-selected-desc:hover{text-decoration:underline;} -.intro-approve-as-friend-desc{margin-top:10px;} -.intro-desc{margin-bottom:20px;font-weight:bold;} -#group-edit-desc{margin:10px 0px;} -#settings-nickname-desc{background:#2e3436;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;border:1px solid #111111;padding:5px;color:#eeeeec;} -.contactname,.contact-name{font-weight:bold;font-size:smaller;} -.contact-details{font-style:italic;font-size:smaller;} -.like-rotator{vertical-align:middle;text-align:center;margin:1px;} -#asidemain .field{overflow:hidden;width:200px;} -#login-extra-links{overflow:auto !important;padding-top:60px !important;width:100% !important;}#login-extra-links a{margin-right:20px;} -#login_standard{display:block !important;float:none !important;height:100% !important;position:relative !important;width:100% !important;}#login_standard .field label{width:200px !important;} -#login_standard input{margin:0 0 8px !important;width:210px !important;}#login_standard input[type="text"]{margin:0 0 8px !important;width:210px !important;} -#login-submit-wrapper{margin:0 !important;} -#login-submit-button{margin-left:0px !important;} -#asidemain #login_openid{position:relative !important;float:none !important;margin-left:0px !important;height:auto !important;width:200px !important;} -#login_openid #id_openid_url{width:180px !important;overflow:hidden !important;} -#login_openid label{width:180px !important;} -nav{height:60px;background-color:#2e3436;color:#eeeeec;position:relative;padding:20px 20px 10px 95px;}nav a{text-decoration:none;color:#eeeeec;border:0px;}nav a:hover{text-decoration:none;color:#eeeeec;border:0px;} -nav #banner{display:block;position:absolute;left:51px;top:25px;}nav #banner #logo-text a{font-size:40px;font-weight:bold;margin-left:3px;} -#site-location{font-weight:bold;font-style:italic;font-size:small;width:30em;position:relative;left:-3.5em;top:3em;} -ul#user-menu-popup{display:none;position:absolute;background-color:#555753;width:100%;padding:10px 0px;margin:3px 0 0;top:20px;left:0;font-size:small;line-height:1;-o-border-radius:0 0 5px 5px;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;-ms-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;-moz-box-shadow:5px 5px 10px 0px #111111;-o-box-shadow:5px 5px 10px 0px #111111;-webkit-box-shadow:5px 5px 10px 0px #111111;-ms-box-shadow:5px 5px 10px 0px #111111;box-shadow:5px 5px 10px 0px #111111;z-index:10000;}ul#user-menu-popup li{display:block;}ul#user-menu-popup li a{display:block;padding:5px;color:#eeeeec;background-color:#555753;}ul#user-menu-popup li a:hover{color:#eeeeec;background-color:#111111;} -ul#user-menu-popup li a.nav-sep{border-top:1px solid #2e302e;} -nav .nav-link{display:inline-block;width:22px;height:22px;overflow:hidden;margin:0px 5px 5px;text-indent:50px;background:transparent url(light/icons.png) 0 0 no-repeat;} -#nav-admin-link{background-position:0 -154px;}#nav-admin-link:hover{background-position:-22px -154px;} -#nav-apps-link{background-position:0 -66px;}#nav-apps-link:hover{background-position:-22px -66px;} -#nav-community-link,#nav-contacts-link{background-position:0 -22px;}#nav-community-link:hover,#nav-contacts-link:hover{background-position:-22px -22px;} -#nav-directory-link{background-position:-44px -154px;}#nav-directory-link:hover{background-position:-66px -154px;} -#nav-help-link{background-position:0 -110px;}#nav-help-link:hover{background-position:-22px -110px;} -#nav-home-link{background-position:-44px -132px;}#nav-home-link:hover{background-position:-66px -132px;} -#nav-intro-link{background-position:0px -88px;}#nav-intro-link:hover{background-position:-22px -88px;} -#nav-login-link,#nav-logout-link{background-position:0 -88px;}#nav-login-link:hover,#nav-logout-link:hover{background-position:-22px -88px;} -#nav-manage-link{background-position:-88px -88px;}#nav-manage-link:hover{background-position:-110px -88px;} -#nav-messages-link{background-position:-44px -88px;}#nav-messages-link:hover{background-position:-66px -88px;} -#nav-notify-link,#nav-notifications-linkmenu{background-position:-44px -110px;} -#nav-notify-link:hover{background-position:-66px -110px;} -#nav-network-link{background-position:0px -177px;}#nav-network-link:hover{background-position:-22px -177px;} -#nav-search-link{background-position:0 -44px;}#nav-search-link:hover{background-position:-22px -44px;} -#jot-title,#profile-link,#profile-title,#profile-attach-wrapper,#profile-audio,#profile-link,#profile-location,#profile-nolocation,#profile-title,#profile-upload-wrapper,#profile-video,#profile-jot-submit,#wall-image-upload,#wall-file-upload,#wall-image-upload-div,#wall-file-upload-div,.icon,.hover,.focus,.pointer{cursor:pointer;} -div.jGrowl div.notice{background:#511919 url("../../../images/icons/48/notice.png") no-repeat 5px center;color:white;padding-left:58px;margin-top:50px;} -div.jGrowl div.info{background:#364e59 url("../../../images/icons/48/info.png") no-repeat 5px center;color:white;padding-left:58px;margin-top:50px;} -#nav-notifications-menu{margin:30px 0 0 -20px;width:275px;max-height:300px;overflow-y:auto;font-size:9pt;}#nav-notifications-menu img{float:left;margin-right:5px;} -#nav-notifications-menu .notif-when{font-size:0.8em;display:block;} -#nav-notifications-menu li{word-wrap:normal;border-bottom:1px solid black;}#nav-notifications-menu li:hover{color:black;} -#nav-notifications-menu a:hover{color:black;text-decoration:underline;} -nav #nav-notifications-linkmenu.on .icon.s22.notify,nav #nav-notifications-linkmenu.selected .icon.s22.notify{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAQAAABuvaSwAAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAAUJcAAFCXAZtv64UAAAHuSURBVCjPbZPbTlNBFIYHLixXRIhEQGNRMUopJAJyAyZ4Z2l8B+XwEBqKtjwOp8oDIAJKIJFUjdFIQCUYrRytdyb0459ht8wG9rrYs9b618y/TsYEH4ZK4qRYYIdDybZOI7TKakIfVhrJ8J2i5IBNyV93/kaaBuv3oV3MgwCTPKGHPkkPA0xRUMBrOgN4AP0o6BseEpF2m3es0qJTFQneyvMhgDsC9tZprnEcGuOPeMcDLUpW3jlLxlDBmJTFY6gLvsVv8tyh9G7U3Z6mwtCuJAoiECSh/w1+8otmTjLqF2KDNsNzRY1bruV0o6rFFtc9S5USh5RRWvAYv4xX9dYPS8ur1oBQC4Y99m2uHriRNda5ErLdU1l3jCI2xdJ3XOYLX6kP2W6K2OF54Et84jN154F31d6ukKOG92pSbcjWLRrbRhVGLTZeOtXqX46LoQSHhJo3jOo3ESrdBQbljIRKNyXUiKHNNSXhTdbZiUzyT/WJ23Zn3BBFy+2u4ZHc1eV2N7EkxAvbbqMRmZOSlbE0g/uajRgl6Iy8r1wpnaFTQ4ji+8XOEsuxYmdDWpJleXJ0+BPdoduL4p5Vavd5IOllmJfiWmSWu6d3pV4jteFWqaAGbLkdKSqtUXXUnN3DSvF8phfy/JfkxfOp9sVb2COz+hY/T0qkwwAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxMS0wOS0xNlQwOTozOTowMCswMjowMC9Oi90AAAAldEVYdGRhdGU6bW9kaWZ5ADIwMTEtMDktMTZUMDk6Mzk6MDArMDI6MDBeEzNhAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAABJRU5ErkJggg==");} -.show{display:block;} -#notifications{width:170px;height:20px;font-size:small;top:-19px;left:4px;position:absolute;} -#nav-floater{position:fixed;top:20px;right:1%;padding:5px;background:#2e3436;color:transparent;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;z-index:100;width:270px;height:60px;} -#nav-buttons{clear:both;list-style:none;padding:0px;margin:0px;height:25px;}#nav-buttons>li{padding:0;display:inline-block;margin:0px -4px 0px 0px;} -#nav-buttons-2{clear:both;list-style:none;padding:0px;margin:0px;left:136px;top:-20px;position:relative;width:6em;height:25px;}#nav-buttons-2>li{padding:0;display:inline-block;margin:0px -4px 0px 0px;} -.floaterflip{display:block;position:fixed;z-index:110;top:56px;right:19px;width:22px;height:22px;overflow:hidden;margin:0px;background:transparent url(light/icons.png) -190px -60px no-repeat;} -.search-box{display:inline-block;margin:5px;position:fixed;right:0px;bottom:0px;z-index:100;background:#2e3436;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;} -#search-text,#mini-search-text{background:white;color:#111111;} -#search-text{border:1px solid #999999;margin:5px 0;} -#mini-search-text{font-size:8pt;height:14px;width:10em;margin:5px;} -#scrollup{position:fixed;right:5px;bottom:40px;z-index:100;}#scrollup a:hover{text-decoration:none;border:0;} -#user-menu{-moz-box-shadow:5px 0 10px 0 #111111;-o-box-shadow:5px 0 10px 0 #111111;-webkit-box-shadow:5px 0 10px 0 #111111;-ms-box-shadow:5px 0 10px 0 #111111;box-shadow:5px 0 10px 0 #111111;display:block;width:35%;margin:5px 0 0 0;position:relative;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;background-color:#555753;background-image:url("data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEASABIAAD//gATQ3JlYXRlZCB3aXRoIEdJTVD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT/2wBDAQMEBAUEBQkFBQkUDQsNFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT/wAARCAAIAAwDASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAMH/8QAIhAAAQMEAgIDAAAAAAAAAAAAAQIDBAAFBhESIQdBMVFh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgP/xAAXEQEBAQEAAAAAAAAAAAAAAAABAAIR/9oADAMBAAIRAxEAPwCXiHO8dbsEi35BEhIehNlbUhxhBU82O+G9bKgToD2D+VlmZX9OWZBJuAiMxGlni0w0gJCED4HXv7pSi6eFML//2Q==");background-position:98% center;background-repeat:no-repeat;top:4px;left:7px;padding:2px;}#user-menu>a{vertical-align:top;outline:0 none;} -#user-menu-label{font-size:small;padding:0px 20px 10px 5px;height:10px;display:block;} -.nav-ajax-update,.nav-ajax-left{width:30px;height:19px;background:transparent url(light/notifications.png) 0 0 no-repeat;color:#111111;font-weight:bold;font-size:0.8em;padding-top:0.2em;text-align:center;float:left;margin:0 -1px 0 3px;display:block;visibility:hidden;} -.nav-ajax-update.show,.nav-ajax-left.show{visibility:visible;} -#net-update{background-position:0px 0px;} -#mail-update{background-position:-30px 0;} -#notify-update{background-position:-60px 0px;} -#home-update{background-position:-90px 0px;} -#intro-update{background-position:-120px 0px;} -#lang-select-icon{cursor:pointer;position:fixed;left:28px;bottom:6px;z-index:10;} -#language-selector{position:fixed;bottom:2px;left:52px;z-index:10;} -.menu-popup{position:absolute;display:none;background:white;color:#111111;margin:0px;padding:0px;font-size:small;line-height:1.2;border:3px solid #3465a4;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;z-index:100000;-moz-box-shadow:5px 5px 5px 0px #111111;-o-box-shadow:5px 5px 5px 0px #111111;-webkit-box-shadow:5px 5px 5px 0px #111111;-ms-box-shadow:5px 5px 5px 0px #111111;box-shadow:5px 5px 5px 0px #111111;}.menu-popup a{display:block;color:#111111;padding:5px 10px;text-decoration:none;}.menu-popup a:hover{color:#eeeeec;background-color:#3465a4;} -.menu-popup .menu-sep{border-top:1px solid #4e4f4e;} -.menu-popup li{float:none;overflow:auto;height:auto;display:block;}.menu-popup li img{float:left;width:16px;height:16px;padding-right:5px;} -.menu-popup .empty{padding:5px;text-align:center;color:#ffffff;} -.notif-item{font-size:small;}.notif-item a{vertical-align:middle;} -.notif-image{width:32px;height:32px;padding:7px 7px 0px 0px;} -.notify-seen{background:#dddddd;color:#111111;} -.notify-unseen{color:#111111;} -#sysmsg_info{position:fixed;bottom:0;-moz-box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;-o-box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;-webkit-box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;-ms-box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;padding:10px;background-color:#fcaf3e;border:2px solid #f8911b;border-bottom:0;padding-bottom:50px;z-index:1000;} -#sysmsg{position:fixed;bottom:0;-moz-box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;-o-box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;-webkit-box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;-ms-box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;box-shadow:3px 3px 3px 10px 0 #111111 5px 5px 0px #111111;padding:10px;background-color:#fcaf3e;border:2px solid #f8911b;border-bottom:0;padding-bottom:50px;z-index:1000;} -#sysmsg_info br,#sysmsg br{display:block;margin:2px 0px;border-top:1px solid #eeeeec;} -#asidemain{float:left;font-size:small;margin:1em;width:25%;display:inline;} -#asideright,#asideleft{display:none;} -.vcard .fn{font-size:1.5em;font-weight:bold;border-bottom:1px solid #284d7d;padding-bottom:3px;} -.vcard #profile-photo-wrapper{margin:20px 0;background-color:#555753;padding:5px;width:175px;height:175px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;-moz-box-shadow:3px 3px 10px 0 #111111;-o-box-shadow:3px 3px 10px 0 #111111;-webkit-box-shadow:3px 3px 10px 0 #111111;-ms-box-shadow:3px 3px 10px 0 #111111;box-shadow:3px 3px 10px 0 #111111;} -#asidemain h4{font-size:1.2em;} -#asidemain #viewcontacts{text-align:right;} -#asidemain #contact-block{width:99%;}#asidemain #contact-block .contact-block-content{width:99%;}#asidemain #contact-block .contact-block-content .contact-block-div{float:left;margin:0 5px 5px 0;width:50px;height:50px;padding:3px;position:relative;} -.aprofile dt{background:transparent;color:#666666;font-weight:bold;-moz-box-shadow:3px 3px 5px 0px #111111;-o-box-shadow:3px 3px 5px 0px #111111;-webkit-box-shadow:3px 3px 5px 0px #111111;-ms-box-shadow:3px 3px 5px 0px #111111;box-shadow:3px 3px 5px 0px #111111;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;margin:15px 0 5px;padding-left:5px;} -#profile-extra-links ul{margin-left:0px;padding-left:0px;list-style:none;} -#dfrn-request-link{-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;color:#eeeeec;display:block;font-size:1.2em;padding:0.2em 0.5em;background-color:#3465a4;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAE4SURBVCiRpZKxLgRRFIa//64dKruZFRIlolBviFKiVHsHrRaFikTCC+hEQtRegMQDqDUKJOPOvauSMJmjYEU2M0viT071/+fLOTlHZkadQgjLkh1LPEoj661WKw5mXG034JxtAgtmrJoVK5WZYYCy1AVQSOYbjeSqMmRmQ8v755Ne77lb5w+d4HMNJopCT7X+bwDQZKfTyf4BIAHeawHe+/kQ/FGM+QagvpFl2VSM/tyMmV7PV14AYMQ5nUp0AULIp0HXzpVvSdLYMmNVAjNdAuNAUQHgxy/ZvEQTSMw0A33DxkIIi2ma3gwC9PKSzRWF2wbdpml62DfyPF9yjlNgAnQGLJjZnXON3Xa7ff8NGPbKQPNrbAOI0a9J2ilLEzAL7P0GqJJizF+BUeDhL2cclJnZPvAg6eADf+imKjSMX1wAAAAASUVORK5CYII=");background-repeat:no-repeat;background-position:95% center;} -#wallmessage-link{color:#eeeeec;display:block;font-size:1.2em;padding:0.2em 0.5em;} -.ttright{margin:0px;} -.contact-block-div{width:50px;height:50px;float:left;} -.contact-block-textdiv{width:150px;height:34px;float:left;} -#jot{margin:10px 0 20px 0px;width:100%;}#jot #jot-tools{margin:0px;padding:0px;width:100%;height:35px;overflow:none;}#jot #jot-tools span{float:left;margin:10px 20px 2px 0px;}#jot #jot-tools span a{display:block;} -#jot #jot-tools .perms{float:right;width:40px;} -#jot #jot-tools li.loading{float:right;background-color:white;width:20px;height:38px;vertical-align:center;text-align:center;border-top:2px solid #9eabb0;}#jot #jot-tools li.loading img{margin-top:10px;} -#jot #jot-title{border:1px solid #cccccc;margin:0 0 5px;width:90%;height:20px;font-weight:bold;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;vertical-align:middle;} -#jot-category{margin:5px 0;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;border:1px solid #cccccc;color:#666666;font-size:smaller;}#jot-category:focus{color:#111111;} -#jot #character-counter{width:6%;height:15px;float:right;text-align:right;line-height:20px;padding:2px 20px 5px 0;} -#profile-jot-text_parent{-moz-box-shadow:5px 0 10px 0 #111111;-o-box-shadow:5px 0 10px 0 #111111;-webkit-box-shadow:5px 0 10px 0 #111111;-ms-box-shadow:5px 0 10px 0 #111111;box-shadow:5px 0 10px 0 #111111;} -#profile-jot-text_tbl{margin-bottom:10px;background:#808080;} -#profile-jot-text_ifr{width:99.900002% !important;} -#profile-jot-text_toolbargroup,.mceCenter tr{background:#808080;} -[id$="jot-text_ifr"]{color:#111111;background:#eeeeec;}[id$="jot-text_ifr"] .mceContentBody{color:#111111;background:#eeeeec;} -.defaultSkin tr.mceFirst{background:#808080;} -.defaultSkin td.mceFirst,.defaultSkin td.mceLast{background-color:#eeeeec;} -.defaultSkin span.mceIcon,.defaultSkin img.mceIcon,.defaultSkin .mceButtonDisabled .mceIcon{background-color:#eeeeec;} -#profile-attach-wrapper,#profile-audio-wrapper,#profile-link-wrapper,#profile-location-wrapper,#profile-nolocation-wrapper,#profile-title-wrapper,#profile-upload-wrapper,#profile-video-wrapper{float:left;margin:0 20px 0 0;} -#profile-rotator-wrapper{float:right;} -#profile-jot-email-wrapper{margin:10px 10% 0;border:1px solid #555753;border-bottom:0;} -#profile-jot-email-label{background-color:#555753;color:#eeeeec;padding:5px;} -#profile-jot-email{width:90%;margin:5px;} -#profile-jot-networks{margin:0 10%;border:1px solid #555753;border-top:0;border-bottom:0;padding:5px;} -#profile-jot-net{margin:5px 0;} -#jot-preview-link{margin:0 0 0 10px;border:0;text-decoration:none;float:right;} -.icon-text-preview{margin:0 0 -18px 0;display:block;width:20px;height:20px;background:url(light/icons.png) no-repeat -128px -40px;border:0;text-decoration:none;float:right;cursor:pointer;} -#profile-jot-perms{float:right;color:#555753;width:20px;height:20px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;-moz-box-shadow:3px 3px 5px 0 #111111;-o-box-shadow:3px 3px 5px 0 #111111;-webkit-box-shadow:3px 3px 5px 0 #111111;-ms-box-shadow:3px 3px 5px 0 #111111;box-shadow:3px 3px 5px 0 #111111;border:2px outset #555753;overflow:hidden;margin:0 10px 0 10px;} -#profile-jot-plugin-wrapper{width:1px;margin:10px 0 0 0;float:right;} -#profile-jot-submit-wrapper{float:right;width:100%;margin:10px 0 0 0;padding:0;} -#profile-jot-submit{height:auto;background-color:#555753;color:#eeeeec;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;border:2px outset #555753;margin:0;float:right;-moz-text-shadow:1px 1px #111111;-o-text-shadow:1px 1px #111111;-webkit-text-shadow:1px 1px #111111;-ms-text-shadow:1px 1px #111111;text-shadow:1px 1px #111111;width:auto;}#profile-jot-submit:active{-moz-box-shadow:0 0 0 0 #111111;-o-box-shadow:0 0 0 0 #111111;-webkit-box-shadow:0 0 0 0 #111111;-ms-box-shadow:0 0 0 0 #111111;box-shadow:0 0 0 0 #111111;} -#jot-perms-icon{width:22px;height:22px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;overflow:hidden;background:#555753 url("dark/icons.png") -88px -40px;} -#group_allow_wrapper,#group_deny_wrapper,#acl-permit-outer-wrapper,#contact_allow_wrapper,#contact_deny_wrapper,#acl-deny-outer-wrapper{width:47%;} -#group_allow_wrapper,#group_deny_wrapper,#acl-permit-outer-wrapper{float:left;} -#contact_allow_wrapper,#contact_deny_wrapper,#acl-deny-outer-wrapper{float:right;} -#acl-permit-text{background-color:#555753;color:#111111;padding:5px;float:left;} -#jot-public{background-color:#555753;color:#ff0000;padding:5px;float:left;} -#acl-deny-text{background-color:#555753;color:#eeeeec;padding:5px;float:left;} -#jot-title-desc{color:#cccccc;} -#profile-jot-desc{background:#eeeeec;border:1px solid #111111;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;color:#ff2000;margin:5px 0;} -#jot-title-wrapper{margin-bottom:5px;} -#jot-title-display{font-weight:bold;} -.jothidden{display:none;} -#jot-preview-content{background-color:#f2f2c3;color:#111111;border:1px solid #111111;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;-moz-box-shadow:5px 0 10px 0px #111111;-o-box-shadow:5px 0 10px 0px #111111;-webkit-box-shadow:5px 0 10px 0px #111111;-ms-box-shadow:5px 0 10px 0px #111111;box-shadow:5px 0 10px 0px #111111;padding:3px 3px 6px 10px;}#jot-preview-content .wall-item-outside-wrapper{border:0;-o-border-radius:0px 0px 0px 0px;-webkit-border-radius:0px 0px 0px 0px;-moz-border-radius:0px 0px 0px 0px;-ms-border-radius:0px 0px 0px 0px;border-radius:0px 0px 0px 0px;-moz-box-shadow:0 0 0 0 #111111;-o-box-shadow:0 0 0 0 #111111;-webkit-box-shadow:0 0 0 0 #111111;-ms-box-shadow:0 0 0 0 #111111;box-shadow:0 0 0 0 #111111;} -#sectionmain{margin:1em;font-size:0.8em;min-width:475px;width:69%;float:left;display:inline;} -.tabs{margin:0px;padding:0px;list-style:none;list-style-position:inside;margin:10px 0;}.tabs li{display:inline;font-size:smaller;} -.tab{border:1px solid #284d7d;padding:4px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;}.tab:active,.tab:hover{background:#f2f2c3;color:#111111;border:1px solid #284d7d;} -.tab a{border:0;text-decoration:none;} -.tab.active{background:#2e3436;color:#eeeeec;border:1px solid #284d7d;padding:4px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;}.tab.active:hover{background:#f2f2c3;color:#111111;border:1px solid #284d7d;} -.tab.active a{color:#eeeeec;text-decoration:none;} -.wall-item-outside-wrapper{border:1px solid #545454;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;-moz-box-shadow:6px 1px 10px -2px #111111;-o-box-shadow:6px 1px 10px -2px #111111;-webkit-box-shadow:6px 1px 10px -2px #111111;-ms-box-shadow:6px 1px 10px -2px #111111;box-shadow:6px 1px 10px -2px #111111;}.wall-item-outside-wrapper.comment{margin-top:5px;} -.wall-item-content-wrapper{position:relative;padding:0.75em;width:auto;} -.wall-item-outside-wrapper .wall-item-comment-wrapper{}.wall-item-outside-wrapper .wall-item-comment-wrapper .preview{border:0;-o-border-radius:0px;-webkit-border-radius:0px;-moz-border-radius:0px;-ms-border-radius:0px;border-radius:0px;} -.shiny{background:#f2f2c3;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;} -.wall-outside-wrapper .shiny{-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;} -.heart{color:red;} -.wall-item-content{overflow-x:auto;margin:0px 4em 1em 5px;} -[id^="thread-wrapper"],[class^="thread-wrapper"]{margin:1.2em 0 0 0;padding:0px;} -.wall-item-photo-menu{display:none;} -.wall-item-photo-menu-button{display:none;text-indent:-99999px;background:#555753 url(light/menu-user-pin.jpg) no-repeat 75px center;position:absolute;overflow:hidden;width:90px;height:20px;top:85px;left:0;-o-border-radius:0 0 5px 5px;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;-ms-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;} -.wall-item-info{float:left;width:7em;position:relative;} -.wall-item-photo-wrapper{width:80px;height:80px;position:relative;padding:5px;background-color:#555753;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;} -[class^="wall-item-tools"] *{}[class^="wall-item-tools"] *>*{} -.wall-item-tools{float:right;opacity:0.4;-webkit-transition:all 0.75s ease-in-out;-moz-transition:all 0.75s ease-in-out;-o-transition:all 0.75s ease-in-out;-ms-transition:all 0.75s ease-in-out;transition:all 0.75s ease-in-out;}.wall-item-tools:hover{opacity:1;-webkit-transition:all 0.75s ease-in-out;-moz-transition:all 0.75s ease-in-out;-o-transition:all 0.75s ease-in-out;-ms-transition:all 0.75s ease-in-out;transition:all 0.75s ease-in-out;} -.wall-item-subtools1{width:30px;height:30px;list-style:none outside none;margin:18px 0 30px -20px;padding:0;} -.wall-item-subtools2{width:25px;height:25px;list-style:none outside none;margin:-78px 0 0 5px;padding:0;} -.wall-item-title{font-size:1.2em;font-weight:bold;margin-bottom:1.4em;} -.wall-item-body{margin:1em;text-align:left;overflow-x:auto;} -.wall-item-lock-wrapper{float:right;width:22px;height:22px;margin:0 -5px 0 0;opacity:1;} -.wall-item-dislike,.wall-item-like{clear:left;font-size:0.8em;color:#111111;margin:5px 0 5px 10.2em;-webkit-transition:all 0.75s ease-in-out;-moz-transition:all 0.75s ease-in-out;-o-transition:all 0.75s ease-in-out;-ms-transition:all 0.75s ease-in-out;transition:all 0.75s ease-in-out;opacity:0.5;}.wall-item-dislike:hover,.wall-item-like:hover{opacity:1;} -.wall-item-author,.wall-item-actions-author,.wall-item-ago{color:#111111;line-height:1;display:inline-block;font-size:x-small;margin:0.5em auto;font-weight:bold;} -.comment-edit-preview{width:auto;margin:auto auto auto -2em;}.comment-edit-preview.wall-item-author,.comment-edit-preview.wall-item-actions-author,.comment-edit-preview.wall-item-ago{font-size:smaller;} -.wall-item-location{margin-top:2em;width:6em;overflow:hidden;-moz-text-overflow:ellipsis;-ms-text-verflow:ellipsis;-o-text-overflow:ellipsis;-webkit-text-overflow:ellipsis;text-overflow:ellipsis;}.wall-item-location .icon{float:left;} -.wall-item-location>a,.wall-item-location .smalltext{margin-left:25px;font-size:0.7em;display:block;} -.wall-item-location>br{display:none;} -.wallwall .wwto{left:5px;margin:0;position:absolute;top:75px;z-index:10001;width:30px;height:30px;}.wallwall .wwto img{width:30px !important;height:30px !important;} -.wallwall .wall-item-photo-end{clear:both;} -.wall-item-arrowphoto-wrapper{position:absolute;left:35px;top:80px;z-index:10002;} -.wall-item-photo-menu{min-width:92px;font-size:0.75em;border:2px solid #555753;border-top:0px;background:#555753;position:absolute;left:-2px;top:101px;display:none;z-index:10003;-o-border-radius:0 5px 5px 5px;-webkit-border-radius:0 5px 5px 5px;-moz-border-radius:0 5px 5px 5px;-ms-border-radius:0 5px 5px 5px;border-radius:0 5px 5px 5px;}.wall-item-photo-menu li a{white-space:nowrap;display:block;padding:5px 6px;color:#eeeeec;}.wall-item-photo-menu li a:hover{color:#555753;background:#eeeeec;} -#connect-services-header,#extra-help-header{margin:1.5em 0 0 0;} -#connect-services,#extra-help{margin:0px;padding:0px;list-style:none;list-style-position:inside;margin:1em 0 0 0;}#connect-services li,#extra-help li{display:inline;} -.ccollapse-wrapper{font-size:0.9em;margin-left:5em;} -.hide-comments-outer{font-size:small;} -.wall-item-outside-wrapper.comment{margin-left:5em;}.wall-item-outside-wrapper.comment .wall-item-info{width:5em;} -.wall-item-outside-wrapper.comment .wall-item-photo{width:40px !important;height:40px !important;} -.wall-item-outside-wrapper.comment .wall-item-photo-wrapper{width:40px;height:40px;} -.wall-item-outside-wrapper.comment .wall-item-photo-menu-button{width:3.35em;top:3.2em;background-position:35px center;} -.wall-item-outside-wrapper.comment .wall-item-author{margin-left:0.2em;} -.wall-item-outside-wrapper.comment .wall-item-photo-menu{min-width:4.5em;top:5.5em;} -.comment-wwedit-wrapper{border:1px solid #111111;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;margin:5px;} -.comment-edit-wrapper{border-top:1px #aaa solid;} -[class^="comment-edit-bb"]{margin:0px;padding:0px;list-style:none;list-style-position:inside;display:none;margin:-40px 0 5px 60px;width:75%;}[class^="comment-edit-bb"]>li{display:inline-block;margin:0 10px 0 0;visibility:none;} -.comment-wwedit-wrapper img,.comment-edit-wrapper img{width:20px;height:20px;} -.comment-edit-photo-link,.comment-edit-photo{margin-left:10px;} -.my-comment-photo{width:40px;height:40px;padding:5px;} -[class^="comment-edit-text"]{margin:5px 0 10px 20px;width:94%;} -.comment-edit-text-empty{height:20px;border:2px solid #babdd6;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;color:#babdd6;-webkit-transition:all 0.75s ease-in-out;-moz-transition:all 0.75s ease-in-out;-o-transition:all 0.75s ease-in-out;-ms-transition:all 0.75s ease-in-out;transition:all 0.75s ease-in-out;}.comment-edit-text-empty:hover{color:#444444;} -.comment-edit-text-full{height:10em;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;-webkit-transition:all 0.75s ease-in-out;-moz-transition:all 0.75s ease-in-out;-o-transition:all 0.75s ease-in-out;-ms-transition:all 0.75s ease-in-out;transition:all 0.75s ease-in-out;} -.comment-edit-submit-wrapper{width:90%;margin:5px 5px 10px 50px;text-align:right;} -.comment-edit-submit{height:22px;background-color:#555753;color:#eeeeec;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;border:0;} -.wall-item-body code{background-color:#dddddd;border-bottom:1px dashed #888888;border-left:5px solid #888888;border-top:1px dashed #888888;color:#191919;display:block;overflow-x:auto;padding:5px 0 15px 10px;width:95%;}.wall-item-body code a{color:#477ec4;} -div[id$="text"]{font-weight:bold;border-bottom:1px solid #eeeeec;} -div[id$="wrapper"]{height:100%;}div[id$="wrapper"] br{clear:left;} -.profile-match-wrapper{float:left;margin:0 5px 40px 0;width:120px;height:120px;padding:3px;position:relative;} -.icon.drophide.profile-match-ignore{margin:0 6px 0 -3px;} -[id$="-end"],[class$="-end"]{clear:both;margin:0 0 10px 0;} -.profile-match-end{margin:0 0 5px 0;} -.profile-match-name{font-weight:bold;margin:auto auto auto 23px;} -.profile-match-connect{font-style:italic;margin:auto auto auto 23px;} -#advanced-profile-with{margin-left:200px;} -.photos{height:auto;overflow:auto;} -#photo-top-links{margin-bottom:30px;} -.photo-album-image-wrapper,.photo-top-image-wrapper{float:left;-moz-box-shadow:3px 3px 10px 0 #111111;-o-box-shadow:3px 3px 10px 0 #111111;-webkit-box-shadow:3px 3px 10px 0 #111111;-ms-box-shadow:3px 3px 10px 0 #111111;box-shadow:3px 3px 10px 0 #111111;background-color:#eeeeec;color:#111111;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;padding-bottom:30px;position:relative;margin:0 10px 10px 0;} -#photo-photo{margin:auto auto 5em 20%;}#photo-photo img{max-width:50%;} -.photo-top-image-wrapper a:hover,#photo-photo a:hover,.photo-album-image-wrapper a:hover{border-bottom:0;} -.photo-top-photo,.photo-album-photo{-o-border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;-ms-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;} -.photo-top-album-name,.caption{position:absolute;bottom:0;padding:0 5px;} -#photo-prev-link,#photo-next-link{position:absolute;width:50px;height:200px;background:#ffffff center center no-repeat;opacity:0;-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;z-index:10;top:15em;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;}#photo-prev-link:hover,#photo-next-link:hover{opacity:0.6;-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;} -#photo-prev-link .icon,#photo-next-link .icon{display:none;} -#photo-prev-link{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAnCAMAAADTjiM/AAAAA3NCSVQICAjb4U/gAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAALpQTFRF////AAAAQEBAZmZmVVVVSUlJTU1NXV1dVVVVTk5OW1tbWlpaWFhPWFhQU1pTVVVVVlZSVVlRVlZTVFdUVFdUVVdTVFZSVldUVldSVldSVldTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVZUVVdTVVdTVVhSVVdTVVdTVVhSVVdTVVdTVVhSVVdTVVdTVVdTVVdTVVdTVVdTVVhTVVdTVVdTVVdTVVdT3XYY/AAAAD10Uk5TAAEEBQYHCgsMDQ4RHSAlP0FFR1hee3+JnqSqq6ytrq+wsbKztLW2t7y9vr/AwcLDxMXGx8jU1dng7O/3+TmOwVsAAADASURBVCjPddPXEoIwEAXQINh7Q8WKYu+95v9/S0dxZxNy83hgMpvdu0Jox642r25GVxGfys+5540sZV3jyY/lWeVxyDLg7AR/lhXOI+KZZeRFgvGQeMnY9olXScYD4jXnPvHGzNsU4x7xjnGsa+YO8T7NnukRHzgXiY/KNKiUkzqkZ8ivnDoKD/xfBvdbbXM9sH70Xtgf2E/YfzgvOF+YB5gf5cPcAfmsgTy3QP5vYF8akf36XvXIRhZPlPyLWxBvNENWsZXDKukAAAAASUVORK5CYII=");left:5%;} -#photo-next-link{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAnCAMAAADTjiM/AAAAA3NCSVQICAjb4U/gAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAKVQTFRF////gICAQEBAZmZmVVVVSUlJYGBgVVVVTU1NXV1dVVVVWVlZU1hTVlZSVlZTVlZTVVlRVVhSVFdUVlhTVVdTVFZTVVdTVldTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVhSVVdTVVdTVVdTVVdTVVdTVVdTVVdTVVdTVVdT8E3YQQAAADZ0Uk5TAAIEBQYHCAkKCwwUN0FER0hOW2uNjqWqq6ytrq+wsbKztLW2t7i5uru8vb6/wMHCxcjT3PP3B0dhfwAAANlJREFUKM910+cSgjAQRtEIomAXu4iIYge7ef9Hs+ZzN4b9eW4mk1kGIaqdU9wQf2Nf5XPSiu4d+Z6jp/n54/KghZ40h5ZymbFQGCCkLg3WKC+MEfYs2AHCrszCBGHLQ5gXpggbFooRwrrEwgxhxUOcE5w5wtJiYYHQZjt0EuUhX3r19vU7Y++ozgeMD7i/buYhYTcDj8gz3RQ8prwHB/aPyzvwhPLWzBtwSLi0Bk8pr8BR0cgzwiIycw0cUxZ9xXOH7VZ9vAVn4X840Vh4F9Pp1w/gZ92mpesDuLpM+1blc68AAAAASUVORK5CYII=");left:50%;} -#photo-prev-link a,#photo-next-link a{display:block;width:100%;height:100%;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;overflow:hidden;text-indent:-900000px;} -#photos-upload-spacer,#photos-upload-new-wrapper,#photos-upload-exist-wrapper{margin-bottom:1em;} -#photos-upload-existing-album-text,#photos-upload-newalbum-div{background-color:#555753;color:#eeeeec;padding:1px;} -#photos-upload-album-select,#photos-upload-newalbum{width:99%;} -#photos-upload-perms-menu{text-align:right;} -#photo-edit-link-wrap{margin-bottom:15px;} -#photo-edit-perms{width:auto;} -#photo-edit-rotate-label{width:38%;display:inline-block;font-size:small;margin:0 10px 1em 0;border:1px solid #eeeeec;padding:3px 5px;background:#cccccc;color:#111111;-moz-box-shadow:3px 3px 5px 0px #111111;-o-box-shadow:3px 3px 5px 0px #111111;-webkit-box-shadow:3px 3px 5px 0px #111111;-ms-box-shadow:3px 3px 5px 0px #111111;box-shadow:3px 3px 5px 0px #111111;} -#photo-like-div{float:left;margin:auto 0 0;width:2em;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;border:1px solid #111111;} -.wall-item-like-buttons>*{display:inline;} -#photo-edit-delete-button{margin:auto auto auto 1em;} -#photo-edit-end{margin-bottom:35px;} -#photo-caption{font-size:110%;font-weight:bold;margin-top:15px;margin-bottom:15px;} -#wall-photo-container{margin:0 auto 1em 4em;width:90%;} -.prvmail-text{width:100%;} -#prvmail-subject{width:100%;color:#eeeeec;background:#111111;} -#prvmail-submit-wrapper{margin-top:10px;} -#prvmail-submit{float:right;margin-top:0;} -#prvmail-submit-wrapper div{margin-right:5px;float:left;} -.mail-list-outside-wrapper{margin-top:20px;} -.mail-list-sender{float:left;} -.mail-list-detail{margin-left:90px;} -.mail-list-sender-name{display:inline;font-size:1.1em;} -.mail-list-date{display:inline;font-size:0.9em;padding-left:10px;} -.mail-list-sender-name,.mail-list-date{font-style:italic;} -.mail-list-subject{font-size:1.2em;} -.mail-list-delete-wrapper{float:right;} -.mail-list-outside-wrapper-end{clear:both;border-bottom:1px #111111 dotted;} -.mail-conv-sender{float:left;margin:0px 5px 5px 0px;} -.mail-conv-sender-photo{width:32px;height:32px;} -.mail-conv-sender-name{float:left;} -.mail-conv-date{float:right;} -.mail-conv-subject{clear:right;font-weight:bold;font-size:1.2em;} -.mail-conv-body{clear:both;} -.mail-conv-delete-wrapper{margin-top:5px;} -.view-contact-wrapper,.contact-entry-wrapper{float:left;margin:0 5px 40px 0;width:120px;height:135px;padding:3px;position:relative;} -.contact-direction-wrapper{position:absolute;top:20px;} -.contact-edit-links{position:absolute;top:60px;} -.contact-entry-photo{margin-left:20px;} -.contact-entry-name{width:120px;font-weight:bold;font-size:small;} -.contact-entry-details{font-size:x-small;} -.contact-entry-photo{position:relative;} -.contact-entry-edit-links .icon{border:1px solid #babdb6;-o-border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;border-radius:3px;background-color:white;} -#contact-entry-url,[id^="contact-entry-url"],#contact-entry-network,[id^="contact-entry-network"]{font-size:smaller;} -#contact-entry-network,[id^="contact-entry-network"]{font-style:italic;} -#contact-edit-banner-name{font-size:1.5em;} -#contact-edit-photo-wrapper{position:relative;float:left;padding:20px;} -#contact-edit-direction-icon{position:absolute;top:60px;left:0;} -#contact-edit-nav-wrapper{margin-left:0px;} -#contact-edit-links{margin-top:23px;} -#contact-drop-links{margin-left:5px;} -#contact-edit-nav-wrapper .icon{border:1px solid #babdb6;-o-border-radius:3px;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;border-radius:3px;} -#contact-edit-poll-wrapper{margin-left:0px;} -#contact-edit-last-update-text{margin-bottom:15px;} -#contact-edit-last-updated{font-weight:bold;} -#contact-edit-poll-text{display:inline;} -#contact-edit-end{clear:both;margin-bottom:65px;} -.contact-photo-menu-button{position:absolute;background:url("light/photo-menu.jpg") top left no-repeat transparent;margin:0px;padding:0px;width:16px;height:16px;top:64px;left:0px;overflow:hidden;text-indent:40px;display:none;} -.contact-photo-menu{width:auto;border:2px solid #3465a4;background:#eeeeec;color:#111111;position:absolute;font-size:smaller;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;left:0px;top:90px;display:none;z-index:10000;}.contact-photo-menu li a{display:block;padding:4px;color:#3465a4;background:#eeeeec;line-height:1;}.contact-photo-menu li a:hover{background:#3465a4;color:#eeeeec;text-decoration:none;} -#id_openid_url{background:url(light/login-bg.gif) no-repeat;background-position:0 50%;padding-left:18px;} -#settings-default-perms{margin-bottom:20px;} -#register-form div,#profile-edit-form div{clear:both;} -.settings-block label{clear:left;} -.settings-block input{margin:10px 5px;} -#register-form label,#profile-edit-form label{width:23em;} -#register-form span,#profile-edit-form span{color:#555753;display:inline-block;margin-bottom:20px;} -#profile-edit-marital-label span{margin:-4px;} -.settings-submit-wrapper,.profile-edit-submit-wrapper{margin:0 0 30px;} -.profile-edit-side-div{display:none;} -#profiles-menu-trigger{margin:0px 0px 0px 25px;} -.profile-listing{float:left;margin:20px 20px 0px 0px;} -.icon-profile-edit{background:url("light/icons.png") -150px 0px no-repeat;border:0;cursor:pointer;display:block;width:20px;height:20px;margin:0 0 -18px;text-decoration:none;top:113px;right:260px;} -#profile-edit-links ul{margin:0px;padding:0px;list-style:none;list-style-position:inside;margin:20px 0;} -.marital{margin-top:5px;} -#register-sitename{display:inline;font-weight:bold;} -#advanced-expire-popup{background:#111111;color:#eeeeec;} -#id_ssl_policy{width:374px;} -#theme-preview img{margin:10px 10px 10px 288px;} -.group-delete-wrapper{margin:-31px 50px 0 0;float:right;} -#group-edit-submit-wrapper{margin:0 0 10px 0;display:inline;} -#group-members,#prof-members{height:200px;overflow:auto;border:1px solid #555753;-o-border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;-ms-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;} -#group-all-contacts,#prof-all-contacts{height:200px;overflow:auto;border:1px solid #555753;-o-border-radius:0 0 5px 5px;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;-ms-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;} -#group-members h3,#group-all-contacts h3,#prof-members h3,#prof-all-contacts h3{color:#eeeeec;background-color:#555753;margin:0;padding:5px;} -#group-separator,#prof-separator{display:none;} -#cropimage-wrapper{float:left;} -#crop-image-form{clear:both;} -.intro-wrapper{margin-top:20px;} -.intro-fullname{font-size:1.1em;font-weight:bold;} -.intro-note{padding:10px;} -.intro-end{padding:30px;} -.intro-form{float:left;} -.intro-approve-form{clear:both;} -.intro-submit-approve,.intro-submit-ignore{margin-right:20px;} -.intro-submit-approve{margin-top:15px;} -.intro-approve-as-friend-label,.intro-approve-as-fan-label,.intro-approve-as-friend,.intro-approve-as-fan{float:left;} -.intro-form-end{clear:both;margin-bottom:10px;} -.intro-approve-as-end{clear:both;margin-bottom:10px;} -.clear{clear:both;} -.eventcal{float:left;font-size:20px;} -.event{background:#eeeeec;} -.vevent{border:1px solid #eeeeec;}.vevent .event-description,.vevent .event-location,.vevent .event-start{margin-left:10px;margin-right:10px;} -#new-event-link{margin-bottom:10px;} -.edit-event-link,.plink-event-link{} -.event-description:before{content:url('../../../images/calendar.png');margin-right:15px;} -.event-start,.event-end{margin-left:10px;width:330px;font-size:smaller;} -.event-start .dtstart,.event-end .dtend{float:right;} -.event-list-date{margin-bottom:10px;} -.prevcal,.nextcal{float:left;margin:64px 32px auto 32px;} -.calendar{font-family:monospace;} -.today{font-weight:bold;color:red;} -#event-start-text,#event-finish-text{margin-top:10px;margin-bottom:5px;} -#event-nofinish-checkbox,#event-nofinish-text,#event-adjust-checkbox,#event-adjust-text,#event-share-checkbox{float:left;} -#event-datetime-break{margin-bottom:10px;} -#event-nofinish-break,#event-adjust-break,#event-share-break{clear:both;} -#event-desc-text,#event-location-text{margin-top:10px;margin-bottom:5px;} -#event-submit{margin-top:10px;} -.body-tag{margin:10px 0;opacity:0.5;}.body-tag:hover{opacity:1.0 !important;} -.filesavetags,.categorytags{margin:20px 0;opacity:0.5;} -.filesavetags:hover,.categorytags:hover{margin:20px 0;opacity:1.0 !important;} -.item-select{opacity:0.1;margin:5px 0 0 6px !important;}.item-select:hover{opacity:1;} -.checkeditem{opacity:1;} -#item-delete-selected{margin:3em 5px;position:relative;left:4em;width:15em;overflow:auto;} -#item-delete-selected-icon{float:left;margin:11px 5px;} -.fc-state-highlight{background:#eeeeec;color:#111111;} -.directory-item{float:left;margin:0 5px 4px 0;padding:3px;width:180px;height:250px;position:relative;} -#group-sidebar{margin-bottom:10px;} -.categories-selected,.group-selected,.nets-selected,.fileas-selected{color:#111111;background:#2e3436;color:#eeeeec;border:1px solid #284d7d;padding:4px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;}.categories-selected:hover,.group-selected:hover,.nets-selected:hover,.fileas-selected:hover{background:#f2f2c3;color:#111111;border:1px solid #284d7d;} -.categories-selected a,.group-selected a,.nets-selected a,.fileas-selected a{color:#eeeeec;text-decoration:none;} -.groupsideedit{margin-right:10px;} -#sidebar-group-ul{padding-left:0;} -#sidebar-group-list{margin:0 0 5px 0;}#sidebar-group-list li{margin-top:10px;} -#sidebar-group-list .icon{display:inline-block;width:12px;height:12px;} -.sidebar-group-element{border:1px solid #284d7d;padding:4px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;}.sidebar-group-element:active,.sidebar-group-element:hover{background:#f2f2c3;color:#111111;border:1px solid #284d7d;} -.sidebar-group-element a{border:0;text-decoration:none;} -#sidebar-new-group{margin:auto;display:inline-block;color:#eeeeec;text-decoration:none;text-align:center;} -#peoplefind-sidebar form{margin-bottom:10px;} -#sidebar-new-group:hover{} -#sidebar-new-group:active{position:relative;top:1px;} -#side-peoplefind-url{border:1px solid #666666;margin-right:3px;width:75%;} -.categories-ul,.nets-ul{margin:0px;padding:0px;list-style:none;list-style-position:inside;}.categories-ul li,.nets-ul li{margin:10px 0 0;} -.categories-link,.nets-link,.nets-all{border:1px solid #284d7d;padding:4px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;margin-left:0px;}.categories-link:active,.nets-link:active,.nets-all:active,.categories-link:hover,.nets-link:hover,.nets-all:hover{background:#f2f2c3;color:#111111;border:1px solid #284d7d;} -.categories-link a,.nets-link a,.nets-all a{border:0;text-decoration:none;} -#netsearch-box{margin:20px 0px 30px;width:135px;}#netsearch-box #search-submit{margin:5px 5px 0px 0px;} -#pending-update{float:right;color:white;font-weight:bold;background-color:red;padding:0 0.3em;} -.admin.linklist{border:0;padding:0;} -.admin.link{margin:0px;padding:0px;list-style:none;list-style-position:inside;} -#adminpage{color:#111111;background:#eeeeec;margin:5px;padding:10px;font-size:smaller;}#adminpage dl{clear:left;margin-bottom:2px;padding-bottom:2px;border-bottom:1px solid #111111;} -#adminpage dt{width:250px;float:left;font-weight:bold;} -#adminpage dd{margin-left:250px;} -#adminpage h3{border-bottom:1px solid #cccccc;} -#adminpage .submit{clear:left;} -#adminpage #pluginslist{margin:0;padding:0;} -#adminpage .plugin{display:block;border:1px solid #888888;padding:1em;margin-bottom:5px;clear:left;} -#adminpage .toggleplugin{float:left;margin-right:1em;} -#adminpage table{width:100%;border-bottom:1px solid #111111;margin:5px 0;}#adminpage table th{font-weight:bold;text-align:left;} -#adminpage table td{padding:5px;vertical-align:middle;} -#adminpage table#users{padding:5px;}#adminpage table#users img{width:16px;height:16px;} -#adminpage table#users a{color:#111111;text-decoration:underline;} -#adminpage td .icon{float:left;} -#adminpage .selectall{text-align:right;} -#users .name{color:#111111;} -#users .tools{padding:5px 0;vertical-align:middle;} -.field{overflow:auto;} -.field .onoff{float:right;margin:0 330px 0 auto;width:80px;}.field .onoff a{display:block;border:1px solid #666666;padding:3px 6px 4px 10px;height:16px;text-decoration:none;} -.field .onoff .on,.field .onoff .off{background-image:url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEASABIAAD//gATQ3JlYXRlZCB3aXRoIEdJTVD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT/2wBDAQMEBAUEBQkFBQkUDQsNFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT/wAARCAAUACIDASIAAhEBAxEB/8QAGgABAQACAwAAAAAAAAAAAAAAAAQDBQEGCf/EACgQAAIBAwIFAwUAAAAAAAAAAAECAAMEERIUBRMxUpEhIoEjM1Nxkv/EABcBAAMBAAAAAAAAAAAAAAAAAAABAgT/xAAaEQEAAgMBAAAAAAAAAAAAAAAAAQIRMVES/9oADAMBAAIRAxEAPwD1ERKFNFVaNNVUYACgACcNVt1dEKUwzZwNI9cSDczDVdnuKDjomrPyJOQ2SXNq/L0rTPMzp9vXHWZfo/jT+RNFQV6e2yPt6s/Ms3EWQofhnDqjszWFqzMcljRUknxEn3ES/dup8xxPZ0hXtKFViQzorEDpkiZtqvc3mIkzs40bVe5vMbVe5vMREbrN3xy4t7utSVaZVHZQSDnAP7iIm+K1xpkm09f/2Q==');background-repeat:no-repeat;} -.field .onoff .on{background-position:42px 1px;background-color:#333333;color:#cccccc;text-align:left;} -.field .onoff .off{background-position:2px 1px;background-color:#cccccc;color:#333333;text-align:right;} -.hidden{display:none !important;} -.field textarea{width:80%;height:100px;} -.field_help{display:block;margin-left:297px;color:#666666;font-size:small;} -.field.radio .field_help{margin-left:297px;} -.popup{width:100%;height:100%;top:0px;left:0px;position:absolute;display:none;}.popup .background{background-color:#111111;opacity:0.5;width:100%;height:100%;position:absolute;top:0px;left:0px;} -.popup .panel{top:25%;left:25%;width:50%;height:50%;padding:1em;position:absolute;border:4px solid #000000;background-color:white;} -#panel{position:absolute;font-size:small;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;border:1px solid #eeeeec;background-color:#2e3436;color:#eeeeec;padding:1em;z-index:100;} -.pager{margin-top:60px;display:block;clear:both;text-align:center;font-size:small;font-weight:bold;}.pager span{padding:4px;margin:4px;} -.pager_current{background-color:#3465a4;color:#eeeeec;} -.grey,.gray{color:gray;} -.orange{color:orange;} -.red{color:red;} -.popup .panel .panel_text{display:block;overflow:auto;height:80%;} -.popup .panel .panel_in{width:100%;height:100%;position:relative;} -.popup .panel .panel_actions{width:100%;bottom:4px;left:0px;position:absolute;} -.panel_text .progress{width:50%;overflow:hidden;height:auto;border:1px solid #cccccc;margin-bottom:5px;}.panel_text .progress span{float:right;display:block;width:25%;background-color:#eeeeec;text-align:right;} -.oauthapp{height:auto;overflow:auto;border-bottom:2px solid #cccccc;padding-bottom:1em;margin-bottom:1em;}.oauthapp img{float:left;width:48px;height:48px;margin:10px;}.oauthapp img.noicon{background-image:url("../../../images/icons/48/plugin.png");background-position:center center;background-repeat:no-repeat;} -.oauthapp a{float:left;} -.iconspacer{display:block;width:16px;height:16px;} -.icon{display:block;width:20px;height:20px;background:transparent url("light/icons.png") no-repeat;border:0;text-decoration:none;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;}.icon:hover{border:0;text-decoration:none;} -.editicon{display:inline-block;width:21px;height:21px;background:url("light/editicons.png") no-repeat;border:0;text-decoration:none;} -.shadow{-moz-box-shadow:2px 2px 5px 2px #111111;-o-box-shadow:2px 2px 5px 2px #111111;-webkit-box-shadow:2px 2px 5px 2px #111111;-ms-box-shadow:2px 2px 5px 2px #111111;box-shadow:2px 2px 5px 2px #111111;}.shadow:active,.shadow:focus,.shadow:hover{-moz-box-shadow:0 0 0 0 #111111;-o-box-shadow:0 0 0 0 #111111;-webkit-box-shadow:0 0 0 0 #111111;-ms-box-shadow:0 0 0 0 #111111;box-shadow:0 0 0 0 #111111;} -.editicon:hover{border:0;} -.boldbb{background-position:0px 0px;}.boldbb:hover{background-position:-22px 0px;} -.italicbb{background-position:0px -22px;}.italicbb:hover{background-position:-22px -22px;} -.underlinebb{background-position:0px -44px;}.underlinebb:hover{background-position:-22px -44px;} -.quotebb{background-position:0px -66px;}.quotebb:hover{background-position:-22px -66px;} -.codebb{background-position:0px -88px;}.codebb:hover{background-position:-22px -88px;} -.imagebb{background-position:-44px 0px;}.imagebb:hover{background-position:-66px 0px;} -.urlbb{background-position:-44px -22px;}.urlbb:hover{background-position:-66px -22px;} -.videobb{background-position:-44px -44px;}.videobb:hover{background-position:-66px -44px;} -.icon.drop,.icon.drophide,.icon.delete{float:left;margin:0 2px;} -.icon.s22.delete{display:block;background-position:-110px 0;} -.icon.s22.text{padding:10px 0px 0px 25px;width:200px;} -.icon.text{text-indent:0px;} -.icon.s16{min-width:16px;height:16px;} -.wall-item-delete-wrapper.icon.delete,.wall-item-delete-wrapper.icon.drophide{margin:0;} -.s16 .add{background:url("../../../images/icons/16/add.png") no-repeat;} -.add{margin:0px 5px;} -.article{background-position:-50px 0;} -.audio{background-position:-70px 0;} -.block{background-position:-90px 0px;} -.drop,.delete{background-position:-110px 0;} -.drophide{background-position:-130px 0;} -.edit{background-position:-150px 0;} -.camera{background-position:-170px 0;} -.dislike{background-position:-190px 0;} -.file-as{background-position:-230px -60px;} -.like{background-position:-211px 0;} -.link{background-position:-230px 0;} -.globe,.location{background-position:-50px -20px;} -.noglobe,.nolocation{background-position:-70px -20px;} -.no{background-position:-90px -20px;} -.pause{background-position:-110px -20px;} -.play{background-position:-130px -20px;} -.pencil{background-position:-151px -18px;} -.small-pencil{background-position:-170px -20px;} -.recycle{background-position:-190px -20px;} -.remote-link{background-position:-210px -20px;} -.share{background-position:-230px -20px;} -.tools{background-position:-50px -40px;} -.lock{background-position:-70px -40px;} -.unlock{background-position:-88px -40px;} -.video{background-position:-110px -40px;} -.attach{background-position:-191px -40px;} -.language{background-position:-210px -40px;} -.starred{background-position:-130px -60px;} -.unstarred{background-position:-150px -60px;} -.tagged{background-position:-170px -60px;} -.on{background-position:-50px -60px;} -.off{background-position:-70px -60px;} -.prev{background-position:-90px -60px;} -.next{background-position:-110px -60px;} -.icon.dim{opacity:0.3;} -#pause{position:fixed;bottom:40px;right:30px;z-index:10;} -.border{border:1px solid #babdb6;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;}.border:hover{border:1px solid #babdb6;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;} -.attachtype{display:block;width:20px;height:23px;background-image:url(../../../images/content-types.png);} -.type-video{background-position:0px 0px;} -.type-image{background-position:-20px 0;} -.type-audio{background-position:-40px 0;} -.type-text{background-position:-60px 0px;} -.type-unkn{background-position:-80px 0;} -.cc-license{margin-top:100px;font-size:0.7em;} -footer{display:block;clear:both;text-align:center;} -#sectionfooter{margin:1em 0 1em 0;} -#profile-jot-text{height:20px;color:#666666;background:#cccccc;border:1px solid #111111;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;width:99.5%;} -#photo-edit-perms-select,#photos-upload-permissions-wrapper,#profile-jot-acl-wrapper{display:block !important;background:#eeeeec;color:#111111;} -#profile-jot-acl-wrapper{margin:0 10px;border:1px solid #555753;border-top:0;font-size:small;} -#acl-wrapper{width:660px;margin:0 auto;} -#acl-search{float:right;background:#ffffff url("../../../images/search_18.png") no-repeat right center;padding-right:20px;margin:6px;color:#111111;} -#acl-showall{float:left;display:block;width:auto;height:18px;background:#eeeeec url("../../../images/show_all_off.png") 8px 8px no-repeat;padding:7px 10px 7px 30px;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;color:#999999;margin:5px 0;}#acl-showall.selected{color:black;background:#ff9900 url(../../../images/show_all_on.png) 8px 8px no-repeat;} -#acl-list{height:210px;border:1px solid #cccccc;clear:both;margin-top:30px;overflow:auto;} -.acl-list-item{border:1px solid #cccccc;width:120px;height:110px;display:block;float:left;margin:3px 0 5px 5px;}.acl-list-item img{width:22px;height:22px;float:left;margin:5px 5px 20px;} -.acl-list-item p{height:12px;font-size:10px;margin:0 0 22px;padding:2px 0 1px;} -.acl-list-item a{background:#cccccc 3px 3px no-repeat;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;width:55px;height:20px;clear:both;font-size:10px;display:block;color:#999999;margin:5px auto 0;padding:0 3px;text-align:center;vertical-align:middle;} -#acl-wrapper a:hover{text-decoration:none;color:#111111;border:0;} -.acl-button-show{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAFCAYAAABmWJ3mAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAABxSURBVAiZY/z//z8DDMyaNUuEgYEhk4GBwZ8JJrhv3z5DZmbmMwwMDOoMDAxpLKtWraqTl5d3fPv2rcn///9XpKWlpTIwMDCwfPr0SePWrVtmP378YPn//385zASmf//+Rf/8+XMpIyPj2bS0tHcwCQBWkiq6M5HGDgAAAABJRU5ErkJggg==');margin:0 auto;} -.acl-button-hide{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAACWSURBVAiZBcEhDsIwFAbg/72+VXQ7wPSCIlj8JMlmcKQGgdgRCCfpEz0HjgSDw3IA1AQC1QqSpXwfqeoZwHOaphsAqGpfVVVHIYQNM1+J6MLMOwA9gAOVUhBC6Ky1r7quv03TrMZxzAwAIjKIyCel9JvneQ8ApKprY8zdObfNOXMp5bEsyyDGmJaITt77NwDEGI/W2vYP0nYuQ/Tw9H4AAAAASUVORK5CYII=');margin:0 auto;} -.acl-button-show.selected{background:#9ade00 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAFCAYAAABmWJ3mAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAABXSURBVAiZTcyhDYNQGADh7xEGwGDxhD2qUWxAwIBgE9BdoxO03YaEEX7USzh5l1yKCJl0pBoT+uIhK3zRYk52Az5444w1FijxwoYOTT4UGPHHL9a4crgBhcYSpxKVgzIAAAAASUVORK5CYII=');color:black;} -.acl-button-hide.selected{background:#ff4141 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAACSSURBVAiZBcGhDoJQFAbg/z/3cGliJDOTszmLichGstkMPoTzvfA2N4vN6gMYCGhwMifMTY7fxyCy4zBcCrMjAFRk7p3LWAEzRwYT2StQgMwBrGlmOJCZV72Ok+QpcTyZ1/VHAEBEyiiKHq+2/d6bZgUADMCUIqeR94t338tAns2sVKea/sy2y667AUAgN+pc+gcI6S733PoZRAAAAABJRU5ErkJggg==');color:black;} -.acl-list-item.groupshow{border-color:#9ade00;} -.acl-list-item.grouphide{border-color:#ff4141;} -.acpopup{max-height:175px;max-width:42%;background-color:#555753;color:white;overflow:auto;z-index:100000;border:1px solid #cccccc;} -.acpopupitem{background-color:#555753;padding:4px;clear:left;}.acpopupitem img{float:left;margin-right:4px;} -.acpopupitem.selected{color:#2e3436;background-color:#eeeeec;} -.qcomment-wrapper{padding:0px;margin:5px 5px 5px 81%;} -.qcomment{opacity:0.5;}.qcomment:hover{opacity:1.0;} -#network-star-link{margin-top:10px;} -.network-star{float:left;margin-right:5px;}.network-star.icon.starred{display:inline-block;} -.fileas-ul{padding:0;} -#sidebar-page-list ul{padding:0;margin:5px 0;} -#sidebar-page-list li{list-style:none;} -#jappix_mini{margin-left:130px;position:fixed;bottom:0;right:175px !important;z-index:999;} -@media handheld and screen{body{font-size:15pt;}}@media only screen and (min-device-width:320px) and (max-device-width:480px){body{font-size:12pt;}}@media only screen and (min-width:321px){body{font-size:12pt;}}@media only screen and (max-width:320px){body{font-size:12pt;}}@media only screen and (min-device-width:768px) and (max-device-width:1024px){body{font-size:14pt;}}@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:landscape){body{font-size:14pt;}}@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:portrait){body{font-size:14pt;}}@media only screen and (min-width:1024px){body{font-size:14pt;}}@media only screen and (min-width:1520px){body{font-size:16pt;}}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){body{font-size:14pt;}} diff --git a/view/theme/dispy/light/style.less b/view/theme/dispy/light/style.less deleted file mode 100644 index 8bb3dffa5..000000000 --- a/view/theme/dispy/light/style.less +++ /dev/null @@ -1,3231 +0,0 @@ -/* - * dispy light - * Description: Dispy Dark: light, sleek, functional - * maintainer: simon <http://simon.kisikew.org/> - * author: unknown - * - * Maintainer's notes: - * A few things of note here. The less file is our working copy, - * and the CSS is *generated* from it. The CSS is the one that's - * included in the HTML, and not the less one. This is to save - * bandwidth and processing time, by not including less.js. - */ - -@import "_base"; - -///* from html5boilerplate */ -///* these are to tell browsers they should be displayed a certain way */ -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -nav, -section { - display: block; -} -audio, -canvas, -video, -time { - display: inline-block; - *display: inline; - *zoom: 1; -} -audio:not([controls]), -[hidden] { - display: none; -} -///* -// * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units -// * 2. Force vertical scrollbar in non-IE -// * 3. Prevent iOS text size adjust on device orientation change, -// * without disabling user zoom: h5bp.com/g -// */ -html { - font-size: 100%; - overflow-y: scroll; - .font_size_adjust; -} -body { - margin: 0; - padding: 0; - .default_font; - color: @main_colour; - background-color: @bg_colour; -} -button, -input, -select, -textarea { - color: @main_colour; - background-color: white; -} -select { - .borders(1px, dotted, darken(@main_alt_colour, 26.8%)); - padding: 1px; - margin: 3px; - color: @main_colour; - background: @bg_colour; - max-width: 85%; - min-width: 85px; -} -option { - padding: 1px; - color: @main_colour; - background: @bg_colour; - &[selected="selected"] { - color: @bg_colour; - background: @dk_bg_colour; - } -} -tr:nth-child(even) { - background-color: darken(@bg_colour, 10%); -} -///* remember to define focus styles! */ -//outline Sets all the outline properties in one declaration -//outline-color Sets the color of an outline color_name,hex_number,rgb_number,invert,inherit -//outline-style Sets the style of an outline dotted,dashed,solid,double,groove,ridge,inset,outset,inherit -//outline-width Sets the width of an outline thin,medium,thick,length,inherit -:focus { - outline: none; -} -a:focus { - outline: invert, dashed, thin; -} -[disabled="disabled"] { - background: @dk_bg_colour; - color: @disabled_colour; -} -///* remember to highlight inserts somehow! */ -ins, -mark { - background-color: @bg_colour; - color: @main_colour; -} -ins { - text-decoration: none; -} -mark { - font-style: italic; - font-weight: bold; -} -///* Redeclare monospace font family: h5bp.com/j */ -pre, -code, -kbd, -samp, -.wall-item-body code { - font-family: monospace, monospace; - _font-family: monospace; - font-size: 1em; -} -///* Improve readability of pre-formatted text in all browsers */ -pre, -.wall-item-body code { - .wrap; -} -q { - quotes: none; - &:before, &:after { - content: ""; - content: none; - } -} -em { - font-style: italic; -} -strong { - font-weight: bold; -} -strike { - text-decoration: line-through; -} -small { - font-size: 85%; -} -///* Position subscript and superscript content without affecting -// * line-height: h5bp.com/k */ -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} -sub { - bottom: -0.25em; -} -sup { - top: -0.5em; -} -img { - border: 0 none; -} -a { - color: @link_colour; - text-decoration: none; - margin-bottom: 1px; - &:hover { - color: @hover_colour; - border-bottom: 1px dotted @hover_colour; - } - &:hover img { - text-decoration: none; - } -} -blockquote { - background: lighten(@main_alt_colour, 6.5%); - color: @main_colour; - text-indent: 5px; - padding: 5px; - .borders(1px, solid, @main_colour); - .rounded_corners; -} -.label () { - width: 38%; - display: inline-block; - font-size: small; - margin: 0 10px 1em 0; - .borders(1px, solid, @bg_colour); - padding: 3px 5px; - background: lighten(@main_alt_colour, 20%); - color: @main_colour; - .box_shadow(3px, 3px, 5px); -} -label { - .label; -} -input { - .box(250px, 25px); - .borders(1px, solid, darken(@main_alt_colour, 33.5%)); - width: 17em; - &[type="checkbox"], - &[type="radio"] { - .box(15px, 15px); - margin: 0; - } - &[type="radio"] { - margin: 5px 0; - } - &[type="submit"], - &[type="button"] { - background-color: @menu_bg_colour; - .borders(2px, outset, darken(@main_alt_colour, 33.5%)); - .rounded_corners; - .box_shadow(1px, 3px, 4px, 0); - color: @bg_colour; - cursor: pointer; - font-weight: bold; - width: auto; - .text_shadow; - } - &[type="submit"]:active, - &[type="button"]:active { - .box_shadow(0, 0, 0, 0); - } -} -h1, h2, h3, -h4, h5, h6 { - margin: 10px 0px; - font-weight: bold; - border-bottom: 1px solid @hover_colour; -} -h1 { - font-size: x-large; -} -h2 { - font-size: large; -} -h3 { - font-size: medium; -} -h4 { - font-size: small; -} -h5 { - font-size: x-small; -} -h6 { - font-size: xx-small; -} - -// -.required { - display: inline; - color: red; - font-size: 16px; - font-weight: bold; - margin: 3px; -} -.fakelink, .lockview { - color: @link_colour; - cursor: pointer; -} -.fakelink:hover { - color: @hover_colour; -} -.smalltext { - font-size: 0.7em; -} - - -/** - * global - */ -/* .tool .action */ -.action { - margin: 5px 0; -} -.tool { - margin: 5px 0; - list-style: none; -} -#articlemain { - .box(100%, 100%); - margin: 0 auto; -} -.button { - // .box(25%, auto); - // background: @menu_bg_colour; - color: @main_colour; - // .borders(2px, outset, darken(@menu_bg_colour, 20%)); - .rounded_corners; - padding: 5px; - // font-size: smaller; - cursor: pointer; - // &.active { - // .box_shadow(4px, 4px, 7px); - // } - a { - color: @main_colour; - // font-size: smaller; - font-weight: bold; - } -} -#profile-listing-desc { - a { - color: @bg_colour; - font-weight: bold; - } -} -[class$="-desc"], -[id$="-desc"] { - color: @bg_colour; - background: @dk_bg_colour; - .borders(2px, outset, @main_colour); - .rounded_corners; - // .box_shadow(3px, 3px, 5px); - margin: 3px 10px 7px 0; - padding: 5px; - font-weight: bold; - font-size: smaller; -} -#item-delete-selected-desc { - float: left; - font-size: x-small; - margin-right: 5px; - &:hover { - text-decoration: underline; - } -} -.intro-approve-as-friend-desc { - margin-top: 10px; -} -.intro-desc { - margin-bottom: 20px; - font-weight: bold; -} -#group-edit-desc { - margin: 10px 0px; -} -#settings-nickname-desc { - background: @dk_bg_colour; - .rounded_corners; - .borders; - padding: 5px; - color: @bg_colour; -} -.contactname, -.contact-name { - font-weight: bold; - font-size: smaller; -} -.contact-details { - font-style: italic; - font-size: smaller; -} -.like-rotator { - vertical-align: middle; - text-align: center; - margin: 1px; -} - - -/** - * login - */ -#asidemain .field { - overflow: hidden; - width: 200px; -} -#login-extra-links { - overflow: auto !important; - padding-top: 60px !important; - width: 100% !important; - a { - margin-right: 20px; - } -} -#login_standard { - display: block !important; - float: none !important; - height: 100% !important; - position: relative !important; - width: 100% !important; - .field label { - width: 200px !important; - } - input { - margin: 0 0 8px !important; - width: 210px !important; - &[type="text"] { - margin: 0 0 8px !important; - width: 210px !important; } - } -} -#login-submit-wrapper { - margin: 0 !important; -} -#login-submit-button { - margin-left: 0px !important; -} -#asidemain #login_openid { - position: relative !important; - float: none !important; - margin-left: 0px !important; - height: auto !important; - width: 200px !important; -} -#login_openid { - #id_openid_url { - width: 180px !important; - overflow: hidden !important; } - label { - width: 180px !important; - } -} - - -/** - * nav - */ -nav { - height: 60px; - background-color: @dk_bg_colour; - color: @bg_colour; - position: relative; - padding: 20px 20px 10px 95px; - a { - text-decoration: none; - color: @bg_colour; - border: 0px; - &:hover { - text-decoration: none; - color: @bg_colour; - border: 0px; } } - #banner { - display: block; - position: absolute; - left: 51px; - top: 25px; - #logo-text a { - font-size: 40px; - font-weight: bold; - margin-left: 3px; } } -} -#site-location { - font-weight: bold; - font-style: italic; - font-size: small; - width: 30em; - position: relative; - left: -3.5em; - top: 3em; -} -ul#user-menu-popup { - display: none; - position: absolute; - background-color: @menu_bg_colour; - width: 100%; - padding: 10px 0px; - margin: 3px 0 0; - top: 20px; - left: 0; - font-size: small; - line-height: 1; - .rounded_corners(0 0 5px 5px); - .box_shadow(5px, 5px, 10px, 0px); - z-index: 10000; - li { - display: block; - a { - display: block; - padding: 5px; - color: @bg_colour; - background-color: @menu_bg_colour; - &:hover { - color: @bg_colour; - background-color: @main_colour; - } - &.nav-sep { - border-top: 1px solid @bg_alt_colour; } } } -} -nav .nav-link { - display: inline-block; - .box(22px, 22px); - overflow: hidden; - margin: 0px 5px 5px; - text-indent: 50px; - background: transparent url(light/icons.png) 0 0 no-repeat; -} -#nav-admin-link { - background-position: 0 -154px; - &:hover { - background-position: -22px -154px; - } -} -#nav-apps-link { - background-position: 0 -66px; - &:hover { - background-position: -22px -66px; - } -} -#nav-community-link, -#nav-contacts-link { - background-position: 0 -22px; - &:hover { - background-position: -22px -22px; - } -} -#nav-directory-link { - background-position: -44px -154px; - &:hover { - background-position: -66px -154px; - } -} -#nav-help-link { - background-position: 0 -110px; - &:hover { - background-position: -22px -110px; - } -} -#nav-home-link { - background-position: -44px -132px; - &:hover { - background-position: -66px -132px; - } -} -#nav-intro-link { - background-position: 0px -88px; - &:hover { - background-position: -22px -88px; - } -} -#nav-login-link, -#nav-logout-link { - background-position: 0 -88px; - &:hover { - background-position: -22px -88px; - } -} -#nav-manage-link { - background-position: -88px -88px; - &:hover { - background-position: -110px -88px; - } -} -#nav-messages-link { - background-position: -44px -88px; - &:hover { - background-position: -66px -88px; - } -} -#nav-notify-link, -#nav-notifications-linkmenu { - background-position: -44px -110px; -} -#nav-notify-link:hover { - background-position: -66px -110px; -} -#nav-network-link { - background-position: 0px -177px; - &:hover { - background-position: -22px -177px; - } -} -#nav-search-link { - background-position: 0 -44px; - &:hover { - background-position: -22px -44px; - } -} -#jot-title, -#profile-link, -#profile-title, -#profile-attach-wrapper, -#profile-audio, -#profile-link, -#profile-location, -#profile-nolocation, -#profile-title, -#profile-upload-wrapper, -#profile-video, -#profile-jot-submit, -#wall-image-upload, -#wall-file-upload, -#wall-image-upload-div, -#wall-file-upload-div, -.icon, -.hover, -.focus, -.pointer { - cursor: pointer; -} -//* popup notifications */ -div.jGrowl div { - &.notice { - background: @notice url("../../../images/icons/48/notice.png") no-repeat 5px center; - color: white; - padding-left: 58px; - margin-top: 50px; - } - &.info { - background: @info url("../../../images/icons/48/info.png") no-repeat 5px center; - color: white; - padding-left: 58px; - margin-top: 50px; - } - // &.jGrowl-message { - - // } -} -#nav-notifications-menu { - margin: 30px 0 0 -20px; - width: 275px; - max-height: 300px; - overflow-y: auto; - font-size: 9pt; - img { - float: left; - margin-right: 5px; } - .notif-when { - font-size: 0.8em; - display: block; } - li { - word-wrap: normal; - border-bottom: 1px solid black; - &:hover { - color: black; } - } - a:hover { - color: black; - text-decoration: underline; - } -} -nav #nav-notifications-linkmenu { - &.on .icon.s22.notify, - &.selected .icon.s22.notify { - // background-image: url("../../../images/icons/22/notify_on.png"); - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAQAAABuvaSwAAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAAUJcAAFCXAZtv64UAAAHuSURBVCjPbZPbTlNBFIYHLixXRIhEQGNRMUopJAJyAyZ4Z2l8B+XwEBqKtjwOp8oDIAJKIJFUjdFIQCUYrRytdyb0459ht8wG9rrYs9b618y/TsYEH4ZK4qRYYIdDybZOI7TKakIfVhrJ8J2i5IBNyV93/kaaBuv3oV3MgwCTPKGHPkkPA0xRUMBrOgN4AP0o6BseEpF2m3es0qJTFQneyvMhgDsC9tZprnEcGuOPeMcDLUpW3jlLxlDBmJTFY6gLvsVv8tyh9G7U3Z6mwtCuJAoiECSh/w1+8otmTjLqF2KDNsNzRY1bruV0o6rFFtc9S5USh5RRWvAYv4xX9dYPS8ur1oBQC4Y99m2uHriRNda5ErLdU1l3jCI2xdJ3XOYLX6kP2W6K2OF54Et84jN154F31d6ukKOG92pSbcjWLRrbRhVGLTZeOtXqX46LoQSHhJo3jOo3ESrdBQbljIRKNyXUiKHNNSXhTdbZiUzyT/WJ23Zn3BBFy+2u4ZHc1eV2N7EkxAvbbqMRmZOSlbE0g/uajRgl6Iy8r1wpnaFTQ4ji+8XOEsuxYmdDWpJleXJ0+BPdoduL4p5Vavd5IOllmJfiWmSWu6d3pV4jteFWqaAGbLkdKSqtUXXUnN3DSvF8phfy/JfkxfOp9sVb2COz+hY/T0qkwwAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxMS0wOS0xNlQwOTozOTowMCswMjowMC9Oi90AAAAldEVYdGRhdGU6bW9kaWZ5ADIwMTEtMDktMTZUMDk6Mzk6MDArMDI6MDBeEzNhAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAABJRU5ErkJggg=="); - } -} -.show { - display: block; -} -#notifications { - .box(170px, 20px); - font-size: small; - top: -19px; - left: 4px; - position: absolute; -} -#nav-floater { - position: fixed; - top: 20px; - right: 1%; - padding: 5px; - background: @dk_bg_colour; - color: transparent; - .rounded_corners; - z-index: 100; - .box(270px, 60px); -} -#nav-buttons { - clear: both; - list-style: none; - padding: 0px; - margin: 0px; - height: 25px; - > li { - padding: 0; - display: inline-block; - margin: 0px -4px 0px 0px; - } -} -#nav-buttons-2 { - clear: both; - list-style: none; - padding: 0px; - margin: 0px; - left: 136px; - top: -20px; - position: relative; - .box(6em, 25px); - > li { - padding: 0; - display: inline-block; - margin: 0px -4px 0px 0px; - } -} -.floaterflip { - display: block; - position: fixed; - z-index: 110; - top: 56px; - right: 19px; - .box(22px, 22px); - overflow: hidden; - margin: 0px; - background: transparent url(light/icons.png) -190px -60px no-repeat; -} -.search-box { - display: inline-block; - margin: 5px; - position: fixed; - right: 0px; - bottom: 0px; - z-index: 100; - background: @dk_bg_colour; - .rounded_corners; -} -#search-text, -#mini-search-text { - background: white; - color: @main_colour; -} -#search-text { - .borders(1px, solid, @main_alt_colour); - margin: 5px 0; -} -#mini-search-text { - font-size: 8pt; - height: 14px; - width: 10em; - margin: 5px; -} -#scrollup { - position: fixed; - right: 5px; - bottom: 40px; - z-index: 100; - a:hover { - text-decoration: none; - border: 0; - } -} -#user-menu { - .box_shadow(5px, 0, 10px, 0); - display: block; - width: 35%; - margin: 5px 0 0 0; - position: relative; - .rounded_corners; - background-color: @menu_bg_colour; - background-image: url("data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEASABIAAD//gATQ3JlYXRlZCB3aXRoIEdJTVD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT/2wBDAQMEBAUEBQkFBQkUDQsNFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT/wAARCAAIAAwDASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAMH/8QAIhAAAQMEAgIDAAAAAAAAAAAAAQIDBAAFBhESIQdBMVFh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgP/xAAXEQEBAQEAAAAAAAAAAAAAAAABAAIR/9oADAMBAAIRAxEAPwCXiHO8dbsEi35BEhIehNlbUhxhBU82O+G9bKgToD2D+VlmZX9OWZBJuAiMxGlni0w0gJCED4HXv7pSi6eFML//2Q=="); - background-position: 98% center; - background-repeat: no-repeat; -/* clear: both;*/ - top: 4px; - left: 7px; - padding: 2px; - > a { - vertical-align: top; - outline: 0 none; - } -} -#user-menu-label { - font-size: small; - padding: 0px 20px 10px 5px; - height: 10px; - display: block; -} -.nav-ajax-update, -.nav-ajax-left { - .box(30px, 19px); - background: transparent url(light/notifications.png) 0 0 no-repeat; - color: @main_colour; - font-weight: bold; - font-size: 0.8em; - padding-top: 0.2em; - text-align: center; - float: left; - margin: 0 -1px 0 3px; - display: block; - visibility: hidden; -} -.nav-ajax-update.show, -.nav-ajax-left.show { - visibility: visible; -} -#net-update { - background-position: 0px 0px; -} -#mail-update { - background-position: -30px 0; -} -#notify-update { - background-position: -60px 0px; -} -#home-update { - background-position: -90px 0px; -} -#intro-update { - background-position: -120px 0px; -} -#lang-select-icon { - cursor: pointer; - position: fixed; - left: 28px; - bottom: 6px; - z-index: 10; -} -#language-selector { - position: fixed; - bottom: 2px; - left: 52px; - z-index: 10; -} -.menu-popup { - position: absolute; - display: none; - // width: 11em; - background: white; - color: @main_colour; - margin: 0px; - padding: 0px; - font-size: small; - line-height: 1.2; - .borders(3px, solid, @link_colour); - .rounded_corners; - z-index: 100000; - .box_shadow; - a { - display: block; - color: @main_colour; - padding: 5px 10px; - text-decoration: none; - &:hover { - color: @bg_colour; - background-color: @link_colour; - } - } - .menu-sep { - border-top: 1px solid @med_bg_colour; - } - li { - float: none; - overflow: auto; - height: auto; - display: block; - img { - float: left; - .box(16px, 16px); - padding-right: 5px; - } - } - .empty { - padding: 5px; - text-align: center; - color: lighten(@shiny_colour, 45%); - } -} -.notif-item { - font-size: small; - a { - vertical-align: middle; - } -} -.notif-image { - .box(32px, 32px); - padding: 7px 7px 0px 0px; -} -.notify-seen { - background: @disabled_colour; - color: @main_colour; -} -.notify-unseen { - color: @main_colour; -} - - -/** - * sysmsg - */ -#sysmsg_info { - position: fixed; - bottom: 0; - .box_shadow(@main_shadow); - padding: 10px; - background-color: @lt_orange; - .borders(2px, solid, @orange); - border-bottom: 0; - padding-bottom: 50px; - z-index: 1000; -} -#sysmsg { - position: fixed; - bottom: 0; - .box_shadow(@main_shadow); - padding: 10px; - background-color: @lt_orange; - .borders(2px, solid, @orange); - border-bottom: 0; - padding-bottom: 50px; - z-index: 1000; -} -#sysmsg_info br, -#sysmsg br { - display: block; - margin: 2px 0px; - border-top: 1px solid @bg_colour; -} - - -/** - * aside - */ -#asidemain { - float: left; - font-size: small; - margin: 1em; - width: 25%; - display: inline; -} -/* for now, disappear these */ -#asideright, #asideleft { - display: none; -} -.vcard { - .fn { - font-size: 1.5em; - font-weight: bold; - border-bottom: 1px solid @hover_colour; - padding-bottom: 3px; - } - #profile-photo-wrapper { - margin: 20px 0; - background-color: @menu_bg_colour; - padding: 5px; - .box(175px, 175px); - .rounded_corners; - .box_shadow(3px, 3px, 10px, 0); - } -} -#asidemain { - h4 { - font-size: 1.2em; } - #viewcontacts { - text-align: right; - } - #contact-block { - width: 99%; - .contact-block-content { - width: 99%; - .contact-block-div { - float: left; - margin: 0 5px 5px 0; - .box(50px, 50px); - padding: 3px; - position: relative; } } } -} -.aprofile dt { - background: transparent; - color: darken(@main_alt_colour, 20%); - font-weight: bold; - .box_shadow(3px, 3px, 5px); - .rounded_corners; - margin: 15px 0 5px; - padding-left: 5px; -} -#profile-extra-links ul { - margin-left: 0px; - padding-left: 0px; - list-style: none; -} -#dfrn-request-link { - .rounded_corners; - color: @bg_colour; - display: block; - font-size: 1.2em; - padding: 0.2em 0.5em; - background-color: @link_colour; - // background-image: url(icons/connect.png); - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAE4SURBVCiRpZKxLgRRFIa//64dKruZFRIlolBviFKiVHsHrRaFikTCC+hEQtRegMQDqDUKJOPOvauSMJmjYEU2M0viT071/+fLOTlHZkadQgjLkh1LPEoj661WKw5mXG034JxtAgtmrJoVK5WZYYCy1AVQSOYbjeSqMmRmQ8v755Ne77lb5w+d4HMNJopCT7X+bwDQZKfTyf4BIAHeawHe+/kQ/FGM+QagvpFl2VSM/tyMmV7PV14AYMQ5nUp0AULIp0HXzpVvSdLYMmNVAjNdAuNAUQHgxy/ZvEQTSMw0A33DxkIIi2ma3gwC9PKSzRWF2wbdpml62DfyPF9yjlNgAnQGLJjZnXON3Xa7ff8NGPbKQPNrbAOI0a9J2ilLEzAL7P0GqJJizF+BUeDhL2cclJnZPvAg6eADf+imKjSMX1wAAAAASUVORK5CYII="); - background-repeat: no-repeat; - background-position: 95% center; -} -#wallmessage-link { - ///*background: #3465A4 url(dark/connect.png) no-repeat 95% center;*/ - ///*border-radius: 5px 5px 5px 5px;*/ - color: @bg_colour; - display: block; - font-size: 1.2em; - padding: 0.2em 0.5em; -} -.ttright { - margin: 0px; -} - - -/** - * contacts block - */ -.contact-block-div { - .box(50px, 50px); - float: left; -} -.contact-block-textdiv { - .box(150px, 34px); - float: left; -} - - -/** - * jot - */ -#jot { - margin: 10px 0 20px 0px; - width: 100%; - #jot-tools { - margin: 0px; - padding: 0px; - .box(100%, 35px); - overflow: none; - span { - float: left; - margin: 10px 20px 2px 0px; - a { - display: block; - } - } - .perms { - float: right; - width: 40px; - } - li.loading { - float: right; - background-color: white; - .box(20px, 38px); - vertical-align: center; - text-align: center; - border-top: 2px solid #9eabb0; - img { - margin-top: 10px; - } - } - } - #jot-title { - .borders(1px, solid, lighten(@main_alt_colour, 20%)); - margin: 0 0 5px; - .box(90%, 20px); - font-weight: bold; - .rounded_corners; - vertical-align: middle; - } -} -#jot-category { - margin: 5px 0; - .rounded_corners; - .borders(1px, solid, lighten(@main_alt_colour, 20%)); - color: darken(@main_alt_colour, 20%); - font-size: smaller; - &:focus { - color: @main_colour; - } -} -#jot #character-counter { - .box(6%, 15px); - float: right; - text-align: right; - line-height: 20px; - padding: 2px 20px 5px 0; -} -#profile-jot-text_parent { - .box_shadow(5px, 0, 10px, 0); -} -#profile-jot-text_tbl { - margin-bottom: 10px; - background: darken(@main_alt_colour, 10%); -} -#profile-jot-text_ifr { - width: 99.900002% !important; -} -#profile-jot-text_toolbargroup, .mceCenter tr { - background: darken(@main_alt_colour, 10%); -} -[id$="jot-text_ifr"] { - // width: 99.900002% !important; - color: @main_colour; - background: @bg_colour; - .mceContentBody { - color: @main_colour; - background: @bg_colour; - } -} -.defaultSkin { - tr.mceFirst { - background: darken(@main_alt_colour, 10%); - } - td { - &.mceFirst, &.mceLast { - background-color: @bg_colour; - } - } - span.mceIcon, img.mceIcon, .mceButtonDisabled .mceIcon { - background-color: @bg_colour; - } -} -#profile-attach-wrapper, -#profile-audio-wrapper, -#profile-link-wrapper, -#profile-location-wrapper, -#profile-nolocation-wrapper, -#profile-title-wrapper, -#profile-upload-wrapper, -#profile-video-wrapper { - float: left; - margin: 0 20px 0 0; -} -#profile-rotator-wrapper { - float: right; -} -#profile-jot-email-wrapper { - margin: 10px 10% 0; - .borders(1px, solid, @menu_bg_colour); - border-bottom: 0; -} -#profile-jot-email-label { - background-color: @menu_bg_colour; - color: @bg_colour; - padding: 5px; -} -#profile-jot-email { - width: 90%; - margin: 5px; -} -#profile-jot-networks { - margin: 0 10%; - border: 1px solid @menu_bg_colour; - border-top: 0; - border-bottom: 0; - padding: 5px; -} -#profile-jot-net { - margin: 5px 0; -} -#jot-preview-link { - margin: 0 0 0 10px; - border: 0; - text-decoration: none; - float: right; -} -.icon-text-preview { - margin: 0 0 -18px 0; - display: block; - .box(20px, 20px); - background: url(light/icons.png) no-repeat -128px -40px; - border: 0; - text-decoration: none; - float: right; - cursor: pointer; -} -#profile-jot-perms { - float: right; - color: @menu_bg_colour; - .box(20px, 20px); - .rounded_corners; - .box_shadow(3px, 3px, 5px, 0); - .borders(2px, outset, @menu_bg_colour); - overflow: hidden; - margin: 0 10px 0 10px; -} -#profile-jot-plugin-wrapper { - width: 1px; - margin: 10px 0 0 0; - float: right; -} -#profile-jot-submit-wrapper { - float: right; - width: 100%; - margin: 10px 0 0 0; - padding: 0; -} -#profile-jot-submit { - height: auto; - background-color: @menu_bg_colour; - color: @bg_colour; - .rounded_corners; - .borders(2px, outset, @menu_bg_colour); - margin: 0; - float: right; - .text_shadow; - width: auto; - &:active { - .box_shadow(0, 0, 0, 0); - } -} -#jot-perms-icon { - .box(22px, 22px); - .rounded_corners; - overflow: hidden; - background: @menu_bg_colour url("dark/icons.png") -88px -40px; -} -#group_allow_wrapper, -#group_deny_wrapper, -#acl-permit-outer-wrapper, -#contact_allow_wrapper, -#contact_deny_wrapper, -#acl-deny-outer-wrapper { - width: 47%; -} -#group_allow_wrapper, -#group_deny_wrapper, -#acl-permit-outer-wrapper { - float: left; -} -#contact_allow_wrapper, -#contact_deny_wrapper, -#acl-deny-outer-wrapper { - float: right; -} -#acl-permit-text { - background-color: @menu_bg_colour; - color: @main_colour; - padding: 5px; - float: left; -} -#jot-public { - background-color: @menu_bg_colour; - color: @alert; - padding: 5px; - float: left; -} -#acl-deny-text { - background-color: @menu_bg_colour; - color: @bg_colour; - padding: 5px; - float: left; -} -#jot-title-desc { - color: lighten(@main_alt_colour, 20%); -} -#profile-jot-desc { - background: @bg_colour; - .borders; - .rounded_corners; - color: @red_orange; - margin: 5px 0; -} -#jot-title-wrapper { - margin-bottom: 5px; -} -#jot-title-display { - font-weight: bold; -} -.jothidden { - display: none; -} -#jot-preview-content { - background-color: @shiny_colour; - color: @main_colour; - .borders(1px, solid, @main_colour); - .rounded_corners; - .box_shadow(5px, 0, 10px); - padding: 3px 3px 6px 10px; - .wall-item-outside-wrapper { - border: 0; - .rounded_corners(0px 0px 0px 0px); - .box_shadow(0, 0, 0, 0); - } -} - - -/** - * section - */ -#sectionmain { - margin: 1em; - font-size: 0.8em; - min-width: 475px; - width: 69%; - float: left; - display: inline; -} - - -/** - * tabs - */ -.tabs { - .list_reset; - margin: 10px 0; - li { - display: inline; - font-size: smaller; - } -} -.multibutton () { - .borders(1px, solid, @hover_colour); - padding: 4px; - .rounded_corners; - &:active, - &:hover { - background: @shiny_colour; - color: @main_colour; - .borders(1px, solid, @hover_colour); - } - a { - border: 0; - text-decoration: none; - } -} -.multibutton_active () { - background: @dk_bg_colour; - color: @bg_colour; - .borders(1px, solid, @hover_colour); - padding: 4px; - .rounded_corners; - &:hover { - background: @shiny_colour; - color: @main_colour; - .borders(1px, solid, @hover_colour); - } - a { - color: @bg_colour; - text-decoration: none; - } -} -.tab { - .multibutton; -} -.tab { - &.active { - .multibutton_active; - } -} - - -/** - * items - */ -.wall-item-outside-wrapper { - .borders(1px, solid, darken(@main_alt_colour, 27%)); - .rounded_corners; - .box_shadow(6px, 1px, 10px, -2px);//@lt_shadow_colour - &.comment { - margin-top: 5px; - } -} -.wall-item-content-wrapper { - position: relative; - padding: 0.75em; - width: auto; -} -.wall-item-outside-wrapper .wall-item-comment-wrapper { - /*margin-left: 90px;*/ - .preview { - border: 0; - .rounded_corners(0px); - } -} -.shiny { - background: @shiny_colour; - .rounded_corners; -} -.wall-outside-wrapper .shiny { - .rounded_corners; -} -.heart { - color: red; -} -.wall-item-content { - overflow-x: auto; - margin: 0px 4em 1em 5px; -} -[id^="thread-wrapper"], -[class^="thread-wrapper"] { - margin: 1.2em 0 0 0; - padding: 0px; -} -.wall-item-photo-menu { - display: none; -} -.wall-item-photo-menu-button { - display: none; - text-indent: -99999px; - background: @menu_bg_colour url(light/menu-user-pin.jpg) no-repeat 75px center; - position: absolute; - overflow: hidden; - .box(90px, 20px); - top: 85px; - left: 0; - .rounded_corners(0 0 5px 5px); -} -.wall-item-info { - float: left; - width: 7em; - position: relative; -} -.wall-item-photo-wrapper { - .box(80px, 80px); - position: relative; - padding: 5px; - background-color: @menu_bg_colour; - .rounded_corners; -} -[class^="wall-item-tools"] * { - /*margin: 0 0 5px 0;*/ - > * { - /*margin: 0 0 5px 0;*/ - } -} -.wall-item-tools { - float: right; - opacity: 0.4; - .transition; - &:hover { - opacity: 1; - .transition; - } -} -.wall-item-subtools1 { - .box(30px, 30px); - list-style: none outside none; - margin: 18px 0 30px -20px; - padding: 0; -} -.wall-item-subtools2 { - .box(25px, 25px); - list-style: none outside none; - margin: -78px 0 0 5px; - padding: 0; -} -.wall-item-title { - font-size: 1.2em; - font-weight: bold; - margin-bottom: 1.4em; -} -.wall-item-body { - margin: 1em; - text-align: left; - overflow-x: auto; -} -.wall-item-lock-wrapper { - float: right; - .box(22px, 22px); - margin: 0 -5px 0 0; - opacity: 1; -} -.wall-item-dislike, -.wall-item-like { - clear: left; - font-size: 0.8em; - color: @main_colour; - margin: 5px 0 5px 10.2em; - .transition; - opacity: 0.5; - &:hover { - opacity: 1; - } -} -.wall-item-author, -.wall-item-actions-author, -.wall-item-ago { - color: @main_colour; - line-height: 1; - display: inline-block; - font-size: x-small; - margin: 0.5em auto; - font-weight: bold; -} -.comment-edit-preview { - width: auto; - margin: auto auto auto -2em; - &.wall-item-author, - &.wall-item-actions-author, - &.wall-item-ago { - font-size: smaller; - } -} -.wall-item-location { - margin-top: 2em; - width: 6em; - overflow: hidden; - .text_overflow; - .icon { - float: left; - } - > a, - .smalltext { - margin-left: 25px; - font-size: 0.7em; - display: block; - } - > br { - display: none; - } -} -.wallwall { - .wwto { - left: 5px; - margin: 0; - position: absolute; - top: 75px; - z-index: 10001; - .box(30px, 30px); - img { - width: 30px !important; - height: 30px !important; - } - } - .wall-item-photo-end { - clear: both; - } -} -.wall-item-arrowphoto-wrapper { - position: absolute; - left: 35px; - top: 80px; - z-index: 10002; -} -.wall-item-photo-menu { - min-width: 92px; - font-size: 0.75em; - .borders(2px, solid, @menu_bg_colour); - border-top: 0px; - background: @menu_bg_colour; - position: absolute; - left: -2px; - top: 101px; - display: none; - z-index: 10003; - .rounded_corners(0 5px 5px 5px); - li a { - white-space: nowrap; - display: block; - padding: 5px 6px; - color: @bg_colour; - &:hover { - color: @menu_bg_colour; - background: @bg_colour; - } - } -} -#connect-services-header, -#extra-help-header { - margin: 1.5em 0 0 0; -} -#connect-services, -#extra-help { - .list_reset; - margin: 1em 0 0 0; - li { - display: inline; - } -} - - -/** - * comment - */ -.ccollapse-wrapper { - font-size: 0.9em; - margin-left: 5em; -} -.hide-comments-outer { - font-size: small; -} -.wall-item-outside-wrapper.comment { - margin-left: 5em; - .wall-item-info { - width: 5em; - } - .wall-item-photo { - width: 40px !important; - height: 40px !important; - } - .wall-item-photo-wrapper { - .box(40px, 40px); - } - .wall-item-photo-menu-button { - width: 3.35em; - top: 3.2em; - background-position: 35px center; - } - .wall-item-author { - margin-left: 0.2em; - } - .wall-item-photo-menu { - min-width: 4.5em; - top: 5.5em; - } -} -.comment-wwedit-wrapper { - .borders(1px, solid, @main_colour); - .rounded_corners; - margin: 5px; -} -.comment-edit-wrapper { - border-top: 1px #aaa solid; -} -[class^="comment-edit-bb"] { - .list_reset; - display: none; - margin: -40px 0 5px 60px; - width: 75%; - > li { - display: inline-block; - margin: 0 10px 0 0; - visibility: none; - } -} -.comment-wwedit-wrapper img, -.comment-edit-wrapper img { - .box; -} -.comment-edit-photo-link, -.comment-edit-photo { - margin-left: 10px; -} -.my-comment-photo { - .box(40px, 40px); - padding: 5px; -} -[class^="comment-edit-text"] { - margin: 5px 0 10px 20px; - width: 94%; -} -.comment-edit-text-empty { - height: 20px; - .med_borders; - .rounded_corners; - color: @med_border_colour; - .transition; - &:hover { - color: darken(@main_alt_colour, 33.5%); - } -} -.comment-edit-text-full { - height: 10em; - .rounded_corners; - .transition; -} -.comment-edit-submit-wrapper { - width: 90%; - margin: 5px 5px 10px 50px; - text-align: right; -} -.comment-edit-submit { - height: 22px; - background-color: @menu_bg_colour; - color: @bg_colour; - .rounded_corners; - border: 0; -} - - -/** - * item text style - */ -.wall-item-body code { - background-color: lighten(@main_alt_colour, 26.5%); - border-bottom: 1px dashed darken(@main_alt_colour, 6.5%); - border-left: 5px solid darken(@main_alt_colour, 6.5%); - border-top: 1px dashed darken(@main_alt_colour, 6.5%); - color: darken(@main_alt_colour, 50%); - display: block; - overflow-x: auto; - padding: 5px 0 15px 10px; - width: 95%; - a { - color: @lt_link_colour; - } -} - - -/** - * profile - */ -div { - &[id$="text"] { - font-weight: bold; - border-bottom: 1px solid @bg_colour; - } - &[id$="wrapper"] { - height: 100%; - br { - clear: left; - } - } -} -.profile-match-wrapper { - float: left; - margin: 0 5px 40px 0; - .box(120px, 120px); - padding: 3px; - position: relative; -} -.icon.drophide.profile-match-ignore { - margin: 0 6px 0 -3px; -} -.profile-match-photo { - -} -[id$="-end"], [class$="-end"] { - clear: both; - margin: 0 0 10px 0; -} -.profile-match-end { - margin: 0 0 5px 0; -} -.profile-match-name { - font-weight: bold; - margin: auto auto auto 23px; -} -.profile-match-connect { - font-style: italic; - margin: auto auto auto 23px; -} -#advanced-profile-with { - margin-left: 200px; -} - - -/** - * photos - */ -.photos { - height: auto; - overflow: auto; -} -#photo-top-links { - margin-bottom: 30px; -} -.photo-album-image-wrapper, -.photo-top-image-wrapper { - float: left; - .box_shadow(3px, 3px, 10px, 0); - background-color: @bg_colour; - color: @main_colour; - .rounded_corners; - padding-bottom: 30px; - position: relative; - margin: 0 10px 10px 0; -} -#photo-photo { - margin: auto auto 5em 20%; - img { - max-width: 50%; - } -} -.photo-top-image-wrapper a:hover, -#photo-photo a:hover, -.photo-album-image-wrapper a:hover { - border-bottom: 0; -} -.photo-top-photo, -.photo-album-photo { - .rounded_corners(5px 5px 0 0); -} -.photo-top-album-name, -.caption { - position: absolute; - bottom: 0; - padding: 0 5px; -} -#photo-prev-link, -#photo-next-link { - position: absolute; - // .box(30%, 100%); - .box(50px, 200px); - background: white center center no-repeat; - opacity: 0; - .transition(all, 0.5s); - z-index: 10; - top: 15em; - .rounded_corners; - &:hover { - opacity: 0.6; - .transition(all, 0.5s); - } - .icon { - display: none; - } -} -#photo-prev-link { - // background-image: url(light/prev.png); - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAnCAMAAADTjiM/AAAAA3NCSVQICAjb4U/gAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAALpQTFRF////AAAAQEBAZmZmVVVVSUlJTU1NXV1dVVVVTk5OW1tbWlpaWFhPWFhQU1pTVVVVVlZSVVlRVlZTVFdUVFdUVVdTVFZSVldUVldSVldSVldTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVZUVVdTVVdTVVhSVVdTVVdTVVhSVVdTVVdTVVhSVVdTVVdTVVdTVVdTVVdTVVdTVVhTVVdTVVdTVVdTVVdT3XYY/AAAAD10Uk5TAAEEBQYHCgsMDQ4RHSAlP0FFR1hee3+JnqSqq6ytrq+wsbKztLW2t7y9vr/AwcLDxMXGx8jU1dng7O/3+TmOwVsAAADASURBVCjPddPXEoIwEAXQINh7Q8WKYu+95v9/S0dxZxNy83hgMpvdu0Jox642r25GVxGfys+5540sZV3jyY/lWeVxyDLg7AR/lhXOI+KZZeRFgvGQeMnY9olXScYD4jXnPvHGzNsU4x7xjnGsa+YO8T7NnukRHzgXiY/KNKiUkzqkZ8ivnDoKD/xfBvdbbXM9sH70Xtgf2E/YfzgvOF+YB5gf5cPcAfmsgTy3QP5vYF8akf36XvXIRhZPlPyLWxBvNENWsZXDKukAAAAASUVORK5CYII="); - left: 5%; -} -#photo-next-link { - // background-image: url(light/next.png); - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAnCAMAAADTjiM/AAAAA3NCSVQICAjb4U/gAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAKVQTFRF////gICAQEBAZmZmVVVVSUlJYGBgVVVVTU1NXV1dVVVVWVlZU1hTVlZSVlZTVlZTVVlRVVhSVFdUVlhTVVdTVFZTVVdTVldTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVZUVVdTVVdTVVhSVVdTVVdTVVdTVVdTVVdTVVdTVVdTVVdTVVdT8E3YQQAAADZ0Uk5TAAIEBQYHCAkKCwwUN0FER0hOW2uNjqWqq6ytrq+wsbKztLW2t7i5uru8vb6/wMHCxcjT3PP3B0dhfwAAANlJREFUKM910+cSgjAQRtEIomAXu4iIYge7ef9Hs+ZzN4b9eW4mk1kGIaqdU9wQf2Nf5XPSiu4d+Z6jp/n54/KghZ40h5ZymbFQGCCkLg3WKC+MEfYs2AHCrszCBGHLQ5gXpggbFooRwrrEwgxhxUOcE5w5wtJiYYHQZjt0EuUhX3r19vU7Y++ozgeMD7i/buYhYTcDj8gz3RQ8prwHB/aPyzvwhPLWzBtwSLi0Bk8pr8BR0cgzwiIycw0cUxZ9xXOH7VZ9vAVn4X840Vh4F9Pp1w/gZ92mpesDuLpM+1blc68AAAAASUVORK5CYII="); - left: 50%; -} -#photo-prev-link a, -#photo-next-link a { - display: block; - .box(100%, 100%); - .rounded_corners; - overflow: hidden; - text-indent: -900000px; -} -#photos-upload-spacer, -#photos-upload-new-wrapper, -#photos-upload-exist-wrapper { - margin-bottom: 1em; -} -#photos-upload-existing-album-text, -#photos-upload-newalbum-div { - background-color: @menu_bg_colour; - color: @bg_colour; - padding: 1px; -} -#photos-upload-album-select, -#photos-upload-newalbum { - width: 99%; -} -#photos-upload-perms-menu { - text-align: right; -} -#photo-edit-caption, -#photo-edit-newtag, -#photo-edit-albumname { - -} -#photo-edit-link-wrap { - margin-bottom: 15px; -} -#photo-edit-caption, -#photo-edit-newtag { - -} -#photo-edit-perms { - width: auto; -} -#photo-edit-rotate-label { - .label; -} -#photo-like-div { - float: left; - margin: auto 0 0; - width: 2em; - .rounded_corners; - .borders; -} -.wall-item-like-buttons { - > * { - display: inline; - } -} -#photo-edit-delete-button { - margin: auto auto auto 1em; -} -#photo-edit-end { - margin-bottom: 35px; -} -#photo-caption { - font-size: 110%; - font-weight: bold; - margin-top: 15px; - margin-bottom: 15px; -} -#wall-photo-container { - margin: 0 auto 1em 4em; - width: 90%; -} - - -/** - * message - */ -.prvmail-text { - width: 100%; -} -#prvmail-subject { - width: 100%; - color: @bg_colour; - background: @main_colour; -} -#prvmail-submit-wrapper { - margin-top: 10px; -} -#prvmail-submit { - float: right; - margin-top: 0; -} -#prvmail-submit-wrapper div { - margin-right: 5px; - float: left; -} -.mail-list-outside-wrapper { - margin-top: 20px; -} -.mail-list-sender { - float: left; -} -.mail-list-detail { - margin-left: 90px; -} -.mail-list-sender-name { - display: inline; - font-size: 1.1em; -} -.mail-list-date { - display: inline; - font-size: 0.9em; - padding-left: 10px; -} -.mail-list-sender-name, -.mail-list-date { - font-style: italic; -} -.mail-list-subject { - font-size: 1.2em; -} -.mail-list-delete-wrapper { - float: right; -} -.mail-list-outside-wrapper-end { - clear: both; - border-bottom: 1px @main_colour dotted; -} -.mail-conv-sender { - float: left; - margin: 0px 5px 5px 0px; -} -.mail-conv-sender-photo { - .box(32px, 32px) -} -.mail-conv-sender-name { - float: left; -} -.mail-conv-date { - float: right; -} -.mail-conv-subject { - clear: right; - font-weight: bold; - font-size: 1.2em; -} -.mail-conv-body { - clear: both; -} -.mail-conv-delete-wrapper { - margin-top: 5px; -} - - -/** - * contacts - */ -.view-contact-wrapper, -.contact-entry-wrapper { - float: left; - margin: 0 5px 40px 0; - .box(120px, 135px); - padding: 3px; - position: relative; -} -.contact-direction-wrapper { - position: absolute; - top: 20px; -} -.contact-edit-links { - position: absolute; - top: 60px; -} -.contact-entry-photo-wrapper {} -.contact-entry-photo { - margin-left: 20px; -} -.contact-entry-name { - width: 120px; - font-weight: bold; - font-size: small; -} -.contact-entry-details { - font-size: x-small; -} -.contact-entry-photo { - position: relative; -} -.contact-entry-edit-links .icon { - .borders(1px, solid, #babdb6); - .rounded_corners(3px); - background-color: white; -} -#contact-entry-url, -[id^="contact-entry-url"], -#contact-entry-network, -[id^="contact-entry-network"] { - font-size: smaller; -} -#contact-entry-network, -[id^="contact-entry-network"] { - font-style: italic; -} -#contact-edit-banner-name { - font-size: 1.5em; -} - -#contact-edit-photo-wrapper { - position: relative; - float: left; - padding: 20px; -} -#contact-edit-direction-icon { - position: absolute; - top: 60px; - left: 0; -} -#contact-edit-nav-wrapper { - margin-left: 0px; -} -#contact-edit-links { - margin-top: 23px; -} -#contact-drop-links { - margin-left: 5px; -} -#contact-edit-nav-wrapper .icon { - .borders(1px, solid, #babdb6); - .rounded_corners(3px); -} -#contact-edit-poll-wrapper { - margin-left: 0px; -} -#contact-edit-last-update-text { - margin-bottom: 15px; -} -#contact-edit-last-updated { - font-weight: bold; -} -#contact-edit-poll-text { - display: inline; -} -#contact-edit-end { - clear: both; - margin-bottom: 65px; -} -.contact-photo-menu-button { - position: absolute; - background: url("light/photo-menu.jpg") top left no-repeat transparent; - margin: 0px; - padding: 0px; - .box(16px, 16px); - top: 64px; - left: 0px; - overflow: hidden; - text-indent: 40px; - display: none; -} -.contact-photo-menu { - width: auto; - .borders(2px, solid, @link_colour); - background: @bg_colour; - color: @main_colour; - position: absolute; - font-size: smaller; - .rounded_corners; - left: 0px; - top: 90px; - display: none; - z-index: 10000; - li a { - display: block; - padding: 4px; - color: @link_colour; - background: @bg_colour; - line-height: 1; - &:hover { - background: @link_colour; - color: @bg_colour; - text-decoration: none; - } - } -} - - -/** - * register, settings & profile forms - */ -.openid {} -#id_openid_url { - background: url(light/login-bg.gif) no-repeat; - background-position: 0 50%; - padding-left: 18px; -} -#settings-default-perms { - margin-bottom: 20px; -} -#register-form div, #profile-edit-form div { - clear: both; -} -.settings-block { - label { - clear: left; - } - input { - margin: 10px 5px; - } -} -#register-form label, -#profile-edit-form label { - width: 23em; -} -#register-form span, -#profile-edit-form span { - color: @menu_bg_colour; - display: inline-block; - margin-bottom: 20px; -} -#profile-edit-marital-label span { - margin: -4px; -} -.settings-submit-wrapper, -.profile-edit-submit-wrapper { - margin: 0 0 30px; -} -.profile-edit-side-div { - display: none; -} -#profiles-menu-trigger { - margin: 0px 0px 0px 25px; -} -.profile-listing { - float: left; - margin: 20px 20px 0px 0px; -} -.icon-profile-edit { - background: url("light/icons.png") -150px 0px no-repeat; - border: 0; - cursor: pointer; - display: block; - .box(20px, 20px); - margin: 0 0 -18px; - text-decoration: none; - top: 113px; - right: 260px; -} -#profile-edit-links ul { - .list_reset; - margin: 20px 0; -} -.marital { - margin-top: 5px; -} -#register-sitename { - display: inline; - font-weight: bold; -} -#advanced-expire-popup { - background: @main_colour; - color: @bg_colour; -} -#id_ssl_policy { - width: 374px; -} -#theme-preview img { - margin: 10px 10px 10px 288px; -} - - -/** - * contacts selector - */ -.group-delete-wrapper { - margin: -31px 50px 0 0; - float: right; -} -/*.group-delete-icon { - margin: 0 0 0 10px; -}*/ -#group-edit-submit-wrapper { - margin: 0 0 10px 0; - display: inline; -} -#group-members, #prof-members { - height: 200px; - overflow: auto; - .borders(1px, solid, @menu_bg_colour); - .rounded_corners(5px 5px 0 0); -} -#group-all-contacts, #prof-all-contacts { - height: 200px; - overflow: auto; - .borders(1px, solid, @menu_bg_colour); - .rounded_corners(0 0 5px 5px); -} -#group-members h3, -#group-all-contacts h3, -#prof-members h3, -#prof-all-contacts h3 { - color: @bg_colour; - background-color: @menu_bg_colour; - margin: 0; - padding: 5px; -} -#group-separator, #prof-separator { - display: none; -} - - -/** - * profile - */ -#cropimage-wrapper { - float: left; -} -#crop-image-form { - clear: both; -} - - -/** - * intros - */ -.intro-wrapper { - margin-top: 20px; -} -.intro-fullname { - font-size: 1.1em; - font-weight: bold; -} -.intro-note { - padding: 10px; -} -.intro-end { - padding: 30px; -} -.intro-form { - float: left; -} -.intro-approve-form { - clear: both; -} -.intro-submit-approve, -.intro-submit-ignore { - margin-right: 20px; -} -.intro-submit-approve { - margin-top: 15px; -} -.intro-approve-as-friend-label, -.intro-approve-as-fan-label, -.intro-approve-as-friend, -.intro-approve-as-fan { - float: left; -} -.intro-form-end { - clear: both; - margin-bottom: 10px; -} -.intro-approve-as-end { - clear: both; - margin-bottom: 10px; -} -.clear { - clear: both; -} - - -/** - * events - */ -.eventcal { - float: left; - font-size: 20px; -} -.event { - background: @bg_colour; -} -.vevent { - border: 1px solid @bg_colour; - .event-description, - .event-location, - .event-start { - margin-left: 10px; - margin-right: 10px; - } -} -#new-event-link { - margin-bottom: 10px; -} -.edit-event-link, -.plink-event-link { - /*float: left; */ - /*margin-top: 4px; */ - /*margin-right: 4px;*/ - /*margin-bottom: 15px;*/ -} -.event-description:before { - content: url('../../../images/calendar.png'); - margin-right: 15px; -} -.event-start, -.event-end { - margin-left: 10px; - width: 330px; - font-size: smaller; -} -.event-start .dtstart, -.event-end .dtend { - float: right; -} -.event-list-date { - margin-bottom: 10px; -} -.prevcal, .nextcal { - float: left; - margin: 64px 32px auto 32px; -} -.calendar { - font-family: monospace; -} -.today { - font-weight: bold; - color: red; -} -#event-start-text, -#event-finish-text { - margin-top: 10px; - margin-bottom: 5px; -} -#event-nofinish-checkbox, -#event-nofinish-text, -#event-adjust-checkbox, -#event-adjust-text, -#event-share-checkbox { - float: left; -} -#event-datetime-break { - margin-bottom: 10px; -} -#event-nofinish-break, -#event-adjust-break, -#event-share-break { - clear: both; -} -#event-desc-text, -#event-location-text { - margin-top: 10px; - margin-bottom: 5px; -} -#event-submit { - margin-top: 10px; -} -.body-tag { - margin: 10px 0; - opacity: 0.5; - &:hover { - opacity: 1.0 !important; - } -} -.filesavetags, -.categorytags { - margin: 20px 0; - opacity: 0.5; -} -.filesavetags:hover, -.categorytags:hover { - margin: 20px 0; - opacity: 1.0 !important; -} -.item-select { - opacity: 0.1; - margin: 5px 0 0 6px !important; - &:hover { - opacity: 1; - } -} -.checkeditem { - opacity: 1; -} -#item-delete-selected { - margin: 3em 5px; - position: relative; - left: 4em; - width: 15em; - overflow: auto; -} -#item-delete-selected-icon { - float: left; - margin: 11px 5px; -} -.fc-state-highlight { - background: @bg_colour; - color: @main_colour; -} - - -/** - * directory - */ -.directory-item { - float: left; - margin: 0 5px 4px 0; - padding: 3px; - width: 180px; - height: 250px; - position: relative; -} - - -/** - * sidebar - */ -#group-sidebar { - margin-bottom: 10px; -} -.categories-selected, -.group-selected, -.nets-selected, -.fileas-selected { - // padding: 4px; - color: @main_colour; - // background: @dk_bg_colour; - // .borders(1px, solid, @hover_colour); - .multibutton_active; -} -.categories-selected:hover, -.group-selected:hover, -.nets-selected:hover, -.fileas-selected:hover { -// padding: 4px; - // color: @link_colour; -// background: @bg_colour; -// .borders(1px, solid, @link_colour); -} -.groupsideedit { - margin-right: 10px; -} -#sidebar-group-ul { - padding-left: 0; -} -#sidebar-group-list { - margin: 0 0 5px 0; - li { - margin-top: 10px; - } - .icon { - display: inline-block; - .box(12px, 12px); - } -} -.sidebar-group-element { - .multibutton; - .rounded_corners; -} -#sidebar-new-group { - margin: auto; - display: inline-block; - color: @bg_colour; - text-decoration: none; - text-align: center; -} -#peoplefind-sidebar form { - margin-bottom: 10px; -} -#sidebar-new-group { - &:hover { - /*background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) );*/ - /*background: -moz-linear-gradient( center top, #b20202 5%, #d60808 100% );*/ - /*background-color: #b20202;*/ - } - &:active { - position: relative; - top: 1px; - } -} -#side-peoplefind-url { - .borders(1px, solid, darken(@main_alt_colour, 20%)); - margin-right: 3px; - width: 75%; -} -.categories-ul, -.nets-ul { - .list_reset; - li { - margin: 10px 0 0; - } -} -.categories-link, -.nets-link, -.nets-all { - .multibutton; - .rounded_corners; - margin-left: 0px; -} -#netsearch-box { - margin: 20px 0px 30px; - width: 135px; - #search-submit { - margin: 5px 5px 0px 0px; - } -} - - -/** - * admin - */ -#pending-update { - float: right; - color: white; - font-weight: bold; - background-color: red; - padding: 0 0.3em; -} -.admin { - &.linklist { - border: 0; - padding: 0; - } - &.link { - .list_reset; - } -} -#adminpage { - color: @main_colour; - background: @bg_colour; - margin: 5px; - padding: 10px; - font-size: smaller; - dl { - clear: left; - margin-bottom: 2px; - padding-bottom: 2px; - border-bottom: 1px solid @shadow_colour; - } - dt { - width: 250px; - float: left; - font-weight: bold; - } - dd { - margin-left: 250px; - } - h3 { - border-bottom: 1px solid lighten(@main_alt_colour, 20%); - } - .submit { - clear: left; - } - #pluginslist { - margin: 0; - padding: 0; - } - .plugin { - display: block; - .borders(1px, solid, darken(@main_alt_colour, 6.5%)); - padding: 1em; - margin-bottom: 5px; - clear: left; - } - .toggleplugin { - float: left; - margin-right: 1em; - } - table { - width: 100%; - border-bottom: 1px solid @shadow_colour; - margin: 5px 0; - th { - font-weight: bold; - text-align: left; - } - td { - padding: 5px; - vertical-align: middle; - } - &#users { - padding: 5px; - img { - .box(16px, 16px); - } - a { - color: @main_colour; - text-decoration: underline; - } - } - } - td .icon { - float: left; - } - .selectall { - text-align: right; - } -} -#users .name { - color: @main_colour; -} -#users .tools { - padding: 5px 0; - vertical-align: middle; -} - - -/** - * form fields - */ -.field { - overflow: auto; -} -.field .onoff { - float: right; - margin: 0 330px 0 auto; - width: 80px; - a { - display: block; - .borders(1px, solid, darken(@main_alt_colour, 20%)); - padding: 3px 6px 4px 10px; - height: 16px; - text-decoration: none; - } - .on, .off { - background-image: url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEASABIAAD//gATQ3JlYXRlZCB3aXRoIEdJTVD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT/2wBDAQMEBAUEBQkFBQkUDQsNFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT/wAARCAAUACIDASIAAhEBAxEB/8QAGgABAQACAwAAAAAAAAAAAAAAAAQDBQEGCf/EACgQAAIBAwIFAwUAAAAAAAAAAAECAAMEERIUBRMxUpEhIoEjM1Nxkv/EABcBAAMBAAAAAAAAAAAAAAAAAAABAgT/xAAaEQEAAgMBAAAAAAAAAAAAAAAAAQIRMVES/9oADAMBAAIRAxEAPwD1ERKFNFVaNNVUYACgACcNVt1dEKUwzZwNI9cSDczDVdnuKDjomrPyJOQ2SXNq/L0rTPMzp9vXHWZfo/jT+RNFQV6e2yPt6s/Ms3EWQofhnDqjszWFqzMcljRUknxEn3ES/dup8xxPZ0hXtKFViQzorEDpkiZtqvc3mIkzs40bVe5vMbVe5vMREbrN3xy4t7utSVaZVHZQSDnAP7iIm+K1xpkm09f/2Q=='); - background-repeat: no-repeat; - } - .on { - background-position: 42px 1px; - background-color: darken(@main_alt_colour, 40%); - color: lighten(@main_alt_colour, 20%); - text-align: left; - } - .off { - background-position: 2px 1px; - background-color: lighten(@main_alt_colour, 20%); - color: darken(@main_alt_colour, 40%); - text-align: right; - } -} -.hidden { - display: none !important; -} -.field textarea { - .box(80%, 100px); -} -.field_help { - display: block; - margin-left: 297px; - color: darken(@main_alt_colour, 20%); - font-size: small; -} -.field.radio .field_help { - margin-left: 297px; -} - - -/* - * update - */ -.popup { - .box(100%, 100%); - top: 0px; - left: 0px; - position: absolute; - display: none; - .background { - background-color: @main_colour; - opacity: 0.5; - .box(100%, 100%); - position: absolute; - top: 0px; - left: 0px; - } - .panel { - top: 25%; - left: 25%; - .box(50%, 50%); - padding: 1em; - position: absolute; - .borders(4px, solid, black); - background-color: white; - } -} -#panel { - position: absolute; - font-size: small; - .rounded_corners; - .borders(1px, solid, @bg_colour); - background-color: @dk_bg_colour; - color: @bg_colour; - padding: 1em; - z-index: 100; -} -.pager { - margin-top: 60px; - display: block; - clear: both; - text-align: center; - font-size: small; - font-weight: bold; - span { - padding: 4px; - margin: 4px; - } -} -.pager_current { - background-color: @link_colour; - color: @bg_colour; -} -.grey, -.gray { - color: gray; -} -.orange { - color: orange; -} -.red { - color: red; -} -.popup .panel { - .panel_text { - display: block; - overflow: auto; - height: 80%; - } - .panel_in { - .box(100%, 100%); - position: relative; - } - .panel_actions { - width: 100%; - bottom: 4px; - left: 0px; - position: absolute; - } -} -.panel_text .progress { - width: 50%; - overflow: hidden; - height: auto; - .borders(1px, solid, lighten(@main_alt_colour, 20%)); - margin-bottom: 5px; - span { - float: right; - display: block; - width: 25%; - background-color: @bg_colour; - text-align: right; - } -} - - -/** - * OAuth - */ -.oauthapp { - height: auto; - overflow: auto; - border-bottom: 2px solid lighten(@main_alt_colour, 20%); - padding-bottom: 1em; - margin-bottom: 1em; - img { - float: left; - .box(48px, 48px); - margin: 10px; - &.noicon { - background-image: url("../../../images/icons/48/plugin.png"); - background-position: center center; - background-repeat: no-repeat; - } - } - a { - float: left; - } -} - - -/** - * icons - */ -.iconspacer { - display: block; - .box(16px, 16px); -} -.icon { - display: block; - .box; - background: transparent url("light/icons.png") no-repeat; - border: 0; - text-decoration: none; - .rounded_corners; - &:hover { - border: 0; - text-decoration: none; - } -} -.editicon { - display: inline-block; - .box(21px, 21px); - background: url("light/editicons.png") no-repeat; - border: 0; - text-decoration: none; -} -.shadow { - .box_shadow(2px, 2px, 5px, 2px); - &:active, &:focus, &:hover { - .box_shadow(0, 0, 0, 0); - } -} -.editicon:hover { - border: 0; -} -.boldbb { - background-position: 0px 0px; - &:hover { - background-position: -22px 0px; } -} -.italicbb { - background-position: 0px -22px; - &:hover { - background-position: -22px -22px; } -} -.underlinebb { - background-position: 0px -44px; - &:hover { - background-position: -22px -44px; } -} -.quotebb { - background-position: 0px -66px; - &:hover { - background-position: -22px -66px; } -} -.codebb { - background-position: 0px -88px; - &:hover { - background-position: -22px -88px; } -} -.imagebb { - background-position: -44px 0px; - &:hover { - background-position: -66px 0px; } -} -.urlbb { - background-position: -44px -22px; - &:hover { - background-position: -66px -22px; } -} -.videobb { - background-position: -44px -44px; - &:hover { - background-position: -66px -44px; } -} -.icon { - &.drop, &.drophide, &.delete { - float: left; - margin: 0 2px; - } - &.s22 { - &.delete { - display: block; - background-position: -110px 0; - } - &.text { - padding: 10px 0px 0px 25px; - width: 200px; - } - } - &.text { - text-indent: 0px; - } - &.s16 { - min-width: 16px; - height: 16px; - } -} -// special case for wall items -.wall-item-delete-wrapper.icon.delete, -.wall-item-delete-wrapper.icon.drophide { - margin: 0; -} -.s16 .add { - background: url("../../../images/icons/16/add.png") no-repeat; -} -.add { - margin: 0px 5px; -} -.article { - background-position: -50px 0; -} -.audio { - background-position: -70px 0; -} -.block { - background-position: -90px 0px; -} -.drop, .delete { - background-position: -110px 0; -} -.drophide { - background-position: -130px 0; -} -.edit { - background-position: -150px 0; -} -.camera { - background-position: -170px 0; -} -.dislike { - background-position: -190px 0; -} -.file-as { - background-position: -230px -60px; -} -.like { - background-position: -211px 0; -} -.link { - background-position: -230px 0; -} -.globe, -.location { - background-position: -50px -20px; -} -.noglobe, -.nolocation { - background-position: -70px -20px; -} -.no { - background-position: -90px -20px; -} -.pause { - background-position: -110px -20px; -} -.play { - background-position: -130px -20px; -} -.pencil { - background-position: -151px -18px; -} -.small-pencil { - background-position: -170px -20px; -} -.recycle { - background-position: -190px -20px; -} -.remote-link { - background-position: -210px -20px; -} -.share { - background-position: -230px -20px; -} -.tools { - background-position: -50px -40px; -} -.lock { - background-position: -70px -40px; -} -.unlock { - background-position: -88px -40px; -} -.video { - background-position: -110px -40px; -} -.attach { - background-position: -191px -40px; -} -.language { - background-position: -210px -40px; -} -.starred { - background-position: -130px -60px; -} -.unstarred { - background-position: -150px -60px; -} -.tagged { - background-position: -170px -60px; -} -.on { - background-position: -50px -60px; -} -.off { - background-position: -70px -60px; -} -.prev { - background-position: -90px -60px; -} -.next { - background-position: -110px -60px; -} -.icon.dim { - opacity: 0.3; -} -#pause { - position: fixed; - bottom: 40px; - right: 30px; - z-index: 10; -} -.border { - .borders(1px, solid, @border2); - .rounded_corners; - &:hover { - .borders(1px, solid, @border2); - .rounded_corners; - } -} -.attachtype { - display: block; - .box(20px, 23px); - background-image: url(../../../images/content-types.png); -} -.type-video { - background-position: 0px 0px; -} -.type-image { - background-position: -20px 0; -} -.type-audio { - background-position: -40px 0; -} -.type-text { - background-position: -60px 0px; -} -.type-unkn { - background-position: -80px 0; -} - - -/** - * footer - */ -.cc-license { - margin-top: 100px; - font-size: 0.7em; -} -footer { - display: block; - clear: both; -} -#sectionfooter { - margin: 1em 0 1em 0; -} -#profile-jot-text { - height: 20px; - color: darken(@main_alt_colour, 20%); - background: lighten(@main_alt_colour, 20%); - .borders; - .rounded_corners; - width: 99.5%; -} - - -/** - * acl - */ -#photo-edit-perms-select, -#photos-upload-permissions-wrapper, -#profile-jot-acl-wrapper { - display: block !important; - background: @bg_colour; - color: @main_colour; -} -#profile-jot-acl-wrapper { - margin: 0 10px; - .borders(1px, solid, @menu_bg_colour); - border-top: 0; - font-size: small; - // .box_shadow; -} -#acl-wrapper { - width: 660px; - margin: 0 auto; -} -#acl-search { - float: right; - background: white url("../../../images/search_18.png") no-repeat right center; - padding-right: 20px; - margin: 6px; - color: @main_colour; -} -#acl-showall { - float: left; - display: block; - .box(auto, 18px); - background: @bg_colour url("../../../images/show_all_off.png") 8px 8px no-repeat; - padding: 7px 10px 7px 30px; - .rounded_corners; - color: @main_alt_colour; - margin: 5px 0; - &.selected { - color: black; - background: #ff9900 url(../../../images/show_all_on.png) 8px 8px no-repeat; - } -} -#acl-list { - height: 210px; - .borders(1px, solid, lighten(@main_alt_colour, 20%); - clear: both; - margin-top: 30px; - overflow: auto; -} -/*#acl-list-content { -}*/ -.acl-list-item { - .borders(1px, solid, lighten(@main_alt_colour, 20%)); - .box(120px, 110px); - display: block; - float: left; - margin: 3px 0 5px 5px; - img { - .box(22px, 22px); - float: left; - margin: 5px 5px 20px; - } - p { - height: 12px; - font-size: 10px; - margin: 0 0 22px; - padding: 2px 0 1px; - } - a { - background: lighten(@main_alt_colour, 20%) 3px 3px no-repeat; - .rounded_corners; - .box(55px, 20px); - clear: both; - font-size: 10px; - display: block; - color: @main_alt_colour; - margin: 5px auto 0; - padding: 0 3px; - text-align: center; - vertical-align: middle; - } -} -#acl-wrapper a:hover { - text-decoration: none; - color: @main_colour; - border: 0; -} -//data URI: -// data:[<MIME-type>][;charset=<encoding>][;base64],<data> -.acl-button-show { - // background-image: url('../../../images/show_off.png'); - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAFCAYAAABmWJ3mAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAABxSURBVAiZY/z//z8DDMyaNUuEgYEhk4GBwZ8JJrhv3z5DZmbmMwwMDOoMDAxpLKtWraqTl5d3fPv2rcn///9XpKWlpTIwMDCwfPr0SePWrVtmP378YPn//385zASmf//+Rf/8+XMpIyPj2bS0tHcwCQBWkiq6M5HGDgAAAABJRU5ErkJggg=='); - margin: 0 auto; -} -.acl-button-hide { - // background-image: url('../../../images/hide_off.png'); - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAACWSURBVAiZBcEhDsIwFAbg/72+VXQ7wPSCIlj8JMlmcKQGgdgRCCfpEz0HjgSDw3IA1AQC1QqSpXwfqeoZwHOaphsAqGpfVVVHIYQNM1+J6MLMOwA9gAOVUhBC6Ky1r7quv03TrMZxzAwAIjKIyCel9JvneQ8ApKprY8zdObfNOXMp5bEsyyDGmJaITt77NwDEGI/W2vYP0nYuQ/Tw9H4AAAAASUVORK5CYII='); - margin: 0 auto; -} -.acl-button-show.selected { - // background: #9ade00 url(../../../images/show_on.png); - background: #9ade00 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAFCAYAAABmWJ3mAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAABXSURBVAiZTcyhDYNQGADh7xEGwGDxhD2qUWxAwIBgE9BdoxO03YaEEX7USzh5l1yKCJl0pBoT+uIhK3zRYk52Az5444w1FijxwoYOTT4UGPHHL9a4crgBhcYSpxKVgzIAAAAASUVORK5CYII='); - color: black; -} -.acl-button-hide.selected { - // background: #ff4141 url(../../../images/hide_on.png); - background: #ff4141 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAACSSURBVAiZBcGhDoJQFAbg/z/3cGliJDOTszmLichGstkMPoTzvfA2N4vN6gMYCGhwMifMTY7fxyCy4zBcCrMjAFRk7p3LWAEzRwYT2StQgMwBrGlmOJCZV72Ok+QpcTyZ1/VHAEBEyiiKHq+2/d6bZgUADMCUIqeR94t338tAns2sVKea/sy2y667AUAgN+pc+gcI6S733PoZRAAAAABJRU5ErkJggg=='); - color: black; -} -.acl-list-item { - &.groupshow { - border-color: @group_show; - } - &.grouphide { - border-color: @group_hide; - } -} -/** /acl **/ - - -/* autocomplete popup */ -.acpopup { - max-height: 175px; - max-width: 42%; - background-color: @menu_bg_colour; - color: white; - overflow: auto; - z-index: 100000; - border: 1px solid lighten(@main_alt_colour, 20%); -} -.acpopupitem { - background-color: @menu_bg_colour; - padding: 4px; - clear: left; - img { - float: left; - margin-right: 4px; - } - &.selected { - color: @dk_bg_colour; - background-color: @bg_colour; - } -} -.qcomment-wrapper { - padding: 0px; - margin: 5px 5px 5px 81%; -} -.qcomment { - opacity: 0.5; - &:hover { - opacity: 1.0; - } -} -#network-star-link { - margin-top: 10px; -} -.network-star { - float: left; - margin-right: 5px; - &.icon.starred { - display: inline-block; - } -} -#fileas-sidebar {} - -.fileas-ul { - padding: 0; -} - - -/* - * addons theming - */ -#sidebar-page-list { - ul { - padding: 0; - margin: 5px 0; - } - li { - list-style: none; - } -} -#jappix_mini { - margin-left: 130px; - position: fixed; - bottom: 0; - /* override the jappix css */ - right: 175px !important; - z-index: 999; -} - -@import "../css/media"; diff --git a/view/theme/dispy/light/tag.png b/view/theme/dispy/light/tag.png Binary files differdeleted file mode 100644 index 9b5a7223e..000000000 --- a/view/theme/dispy/light/tag.png +++ /dev/null diff --git a/view/theme/dispy/light/theme.php b/view/theme/dispy/light/theme.php deleted file mode 100644 index 94a699b70..000000000 --- a/view/theme/dispy/light/theme.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -/* - * Name: Dispy Light - * Description: Dispy Light: Light, Spartan, Sleek, and Functional - * Author: Simon <http://simon.kisikew.org/> - * Maintainer: Simon <http://simon.kisikew.org/> - * Screenshot: <a href="screenshot.jpg">Screenshot</a> - */ - -$a = get_app(); -$a->theme_info = array( - 'family' => 'dispy', - 'name' => 'light', -); - -function dispy_light_init(&$a) { - - /** @purpose set some theme defaults - */ - $cssFile = null; - $colour = 'light'; - $colour_path = "/light/"; - - // set css - if (!is_null($cssFile)) { - $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile); - } -} - diff --git a/view/theme/dispy/mail_head.tpl b/view/theme/dispy/mail_head.tpl deleted file mode 100644 index d49d7c1af..000000000 --- a/view/theme/dispy/mail_head.tpl +++ /dev/null @@ -1,5 +0,0 @@ -<h3>$messages</h3> - -<div class="tabs-wrapper"> -$tab_content -</div> diff --git a/view/theme/dispy/nav.tpl b/view/theme/dispy/nav.tpl deleted file mode 100644 index bb6754dae..000000000 --- a/view/theme/dispy/nav.tpl +++ /dev/null @@ -1,145 +0,0 @@ -<nav id="pagenav"> - -<div id="banner">$banner</div> -<div id="site-location">$sitelocation</div> - -<a name="top" id="top"></a> -<div id="nav-floater"> - <ul id="nav-buttons"> - {{ if $nav.login }} - <li><a id="nav-login-link" class="nav-login-link $nav.login.2" - href="$nav.login.0" title="$nav.login.3" >$nav.login.1</a></li> - {{ endif }} - {{ if $nav.home }} - <li><a id="nav-home-link" class="nav-link $nav.home.2" - href="$nav.home.0" title="$nav.home.1">$nav.home.1</a></li> - {{ endif }} - {{ if $nav.network }} - <li><a id="nav-network-link" class="nav-link $nav.network.2" - href="$nav.network.0" title="$nav.network.1">$nav.network.1</a></li> - {{ endif }} - {{ if $nav.notifications }} - <li><a id="nav-notifications-linkmenu" class="nav-link $nav.notifications.2" - href="$nav.notifications.0" - rel="#nav-notifications-menu" title="$nav.notifications.1">$nav.notifications.1</a></li> - <ul id="nav-notifications-menu" class="menu-popup"> - <li id="nav-notifications-see-all"><a href="$nav.notifications.all.0">$nav.notifications.all.1</a></li> - <li id="nav-notifications-mark-all"><a href="#" onclick="notifyMarkAll(); return false;">$nav.notifications.mark.1</a></li> - <li class="empty">$emptynotifications</li> - </ul> - {{ endif }} - {{ if $nav.messages }} - <li><a id="nav-messages-link" class="nav-link $nav.messages.2" - href="$nav.messages.0" title="$nav.messages.1">$nav.messages.1</a></li> - {{ endif }} - {{ if $nav.community }} - <li><a id="nav-community-link" class="nav-link $nav.community.2" - href="$nav.community.0" title="$nav.community.1">$nav.community.1</a></li> - {{ endif }} - <li><a id="nav-directory-link" class="nav-link $nav.directory.2" - href="$nav.directory.0" title="$nav.directory.1">$nav.directory.1</a></li> - <li><a id="nav-search-link" class="nav-link $nav.search.2" - href="$nav.search.0" title="$nav.search.1">$nav.search.1</a></li> - {{ if $nav.apps }} - <li><a id="nav-apps-link" class="nav-link $nav.apps.2" - href="$nav.apps.0" title="$nav.apps.1">$nav.apps.1</a></li> - {{ endif }} - {{ if $nav.help }} - <li><a id="nav-help-link" class="nav-link $nav.help.2" - href="$nav.help.0" title="$nav.help.1">$nav.help.1</a></li> - {{ endif }} - </ul> - - <div id="user-menu"> - <a id="user-menu-label" onclick="openClose('user-menu-popup'); return false;" href="$nav.home.0"><span class="">User Menu</span></a> - <ul id="user-menu-popup" - onmouseover="if (typeof tmenu != 'undefined') clearTimeout(tmenu); openMenu('user-menu-popup')" - onmouseout="tmenu=setTimeout('closeMenu(\'user-menu-popup\');',200)"> - - {{ if $nav.register }} - <li> - <a id="nav-register-link" class="nav-commlink $nav.register.2" href="$nav.register.0" title="$nav.register.1"></a> - </li> - {{ endif }} - {{ if $nav.contacts }} - <li><a id="nav-contacts-link" class="nav-commlink $nav.contacts.2" href="$nav.contacts.0" title="$nav.contacts.1">$nav.contacts.1</a></li> - {{ endif }} - {{ if $nav.profiles }} - <li><a id="nav-profiles-link" class="nav-commlink $nav.profiles.2" href="$nav.profiles.0" title="$nav.profiles.1">$nav.profiles.1</a></li> - {{ endif }} - {{ if $nav.settings }} - <li><a id="nav-settings-link" class="nav-commlink $nav.settings.2" href="$nav.settings.0" title="$nav.settings.1">$nav.settings.1</a></li> - {{ endif }} - {{ if $nav.login }} - <li><a id="nav-login-link" class="nav-commlink $nav.login.2" href="$nav.login.0" title="$nav.login.1">$nav.login.1</a></li> - {{ endif }} - {{ if $nav.logout }} - <li><a id="nav-logout-link" class="nav-commlink $nav.logout.2" href="$nav.logout.0" title="$nav.logout.3" >$nav.logout.1</a></li> - {{ endif }} - </ul> - </div> - - <ul id="nav-buttons-2"> - {{ if $nav.introductions }} - <li><a id="nav-intro-link" class="nav-link $nav.introductions.2 $sel.introductions" href="$nav.introductions.0" title="$nav.introductions.3" >$nav.introductions.1</a></li> - {{ endif }} - {{ if $nav.admin }} - <li><a id="nav-admin-link" class="nav-link $nav.admin.2" href="$nav.admin.0" title="$nav.admin.1">$nav.admin.1</a></li> - {{ endif }} - {{ if $nav.manage }} - <li><a id="nav-manage-link" class="nav-link $nav.manage.2" href="$nav.manage.0" title="$nav.manage.1">$nav.manage.1</a></li> - {{ endif }} - </ul> - -{{ if $userinfo }} - <ul id="nav-user-menu" class="menu-popup"> - {{ for $nav.usermenu as $usermenu }} - <li> - <a class="$usermenu.2" href="$usermenu.0" title="$usermenu.3">$usermenu.1</a> - </li> - {{ endfor }} - </ul> -{{ endif }} - - <div id="notifications"> - {{ if $nav.home }} - <a id="home-update" class="nav-ajax-left" href="$nav.home.0" title="$nav.home.1"></a> - {{ endif }} - {{ if $nav.network }} - <a id="net-update" class="nav-ajax-left" href="$nav.network.0" title="$nav.network.1"></a> - {{ endif }} - {{ if $nav.notifications }} - <a id="notify-update" class="nav-ajax-left" href="$nav.notifications.0" title="$nav.notifications.1"></a> - {{ endif }} - {{ if $nav.messages }} - <a id="mail-update" class="nav-ajax-left" href="$nav.messages.0" title="$nav.messages.1"></a> - {{ endif }} - {{if $nav.introductions }} - <a id="intro-update" class="nav-ajax-left" href="$nav.introductions.0"></a> - {{ endif }} - </div> -</div> - <a href="#" class="floaterflip"></a> -</nav> - -<div id="lang-sel-wrap"> -$langselector -</div> - -<div id="scrollup"> -<a href="#top"><img src="view/theme/dispy/icons/scroll_top.png" - alt="back to top" title="Back to top" /></a> -</div> - -<div class="search-box"> - <form method="get" action="$nav.search.0"> - <input id="mini-search-text" class="nav-menu-search" type="search" placeholder="Search" value="" id="search" name="search" /> - </form> -</div> - -<ul id="nav-notifications-template" style="display:none;" rel="template"> - <li class="{4}"> - <a href="{0}"><img src="{1}" height="24" width="24" alt="" />{2} <span class="notif-when">{3}</span></a> - </li> -</ul> - diff --git a/view/theme/dispy/nets.tpl b/view/theme/dispy/nets.tpl deleted file mode 100644 index b0cb8890c..000000000 --- a/view/theme/dispy/nets.tpl +++ /dev/null @@ -1,10 +0,0 @@ -<div id="nets-sidebar" class="widget"> - <h3>$title</h3> - <div id="nets-desc">$desc</div> - <a href="$base" class="nets-link{{ if $sel_all }} nets-selected{{ endif }} nets-all">$all</a> - <ul class="nets-ul"> - {{ for $nets as $net }} - <li><a href="$base?nets=$net.ref" class="nets-link{{ if $net.selected }} nets-selected{{ endif }}">$net.name</a></li> - {{ endfor }} - </ul> -</div> diff --git a/view/theme/dispy/photo_edit.tpl b/view/theme/dispy/photo_edit.tpl deleted file mode 100644 index 9e623ba61..000000000 --- a/view/theme/dispy/photo_edit.tpl +++ /dev/null @@ -1,53 +0,0 @@ - -<form action="photos/$nickname/$resource_id" method="post" id="photo_edit_form" > - - <input type="hidden" name="item_id" value="$item_id" /> - - <label id="photo-edit-albumname-label" for="photo-edit-albumname">$newalbum</label> - <input id="photo-edit-albumname" type="text" name="albname" value="$album" /> - - <div id="photo-edit-albumname-end"></div> - - <label id="photo-edit-caption-label" for="photo-edit-caption">$capt_label</label> - <input id="photo-edit-caption" type="text" name="desc" value="$caption" /> - - <div id="photo-edit-caption-end"></div> - - <label id="photo-edit-tags-label" for="photo-edit-newtag" >$tag_label</label> - <input name="newtag" id="photo-edit-newtag" title="$help_tags" type="text" /> - - <div id="photo-edit-tags-end"></div> - <div id="photo-edit-rotate-wrapper"> - <div id="photo-edit-rotate-label">$rotate</div> - <input type="checkbox" name="rotate" value="1" /> - </div> - <div id="photo-edit-rotate-end"></div> - - <div id="photo-edit-perms" class="photo-edit-perms" > - <a href="#photo-edit-perms-select" - id="photo-edit-perms-menu" - class="button" - title="$permissions"/><span id="jot-perms-icon" - class="icon $lockstate" ></span>$permissions</a> - <div id="photo-edit-perms-menu-end"></div> - - <div style="display: none;"> - <div id="photo-edit-perms-select" > - $aclselect - </div> - </div> - </div> - <div id="photo-edit-perms-end"></div> - - <input id="photo-edit-submit-button" type="submit" name="submit" value="$submit" /> - <input id="photo-edit-delete-button" type="submit" name="delete" value="$delete" onclick="return confirmDelete()"; /> - - <div id="photo-edit-end"></div> -</form> - -<script type="text/javascript"> - $("a#photo-edit-perms-menu").fancybox({ - 'transitionIn' : 'none', - 'transitionOut' : 'none' - }); -</script> diff --git a/view/theme/dispy/photo_view.tpl b/view/theme/dispy/photo_view.tpl deleted file mode 100644 index a55958308..000000000 --- a/view/theme/dispy/photo_view.tpl +++ /dev/null @@ -1,36 +0,0 @@ -<div id="live-display"></div> -<h3><a href="$album.0">$album.1</a></h3> - -<div id="photo-edit-link-wrap"> -{{ if $tools }} -<a id="photo-edit-link" href="$tools.edit.0">$tools.edit.1</a> -| -<a id="photo-toprofile-link" href="$tools.profile.0">$tools.profile.1</a> -{{ endif }} -{{ if $lock }} | <img src="images/lock_icon.gif" class="lockview" alt="$lock" onclick="lockview(event,'photo/$id');" /> {{ endif }} -</div> - -{{ if $prevlink }}<div id="photo-prev-link"><a href="$prevlink.0">$prevlink.1</a></div>{{ endif }} -<div id="photo-photo"><a href="$photo.href" class="lightbox" title="$photo.title"><img src="$photo.src" /></a></div> -{{ if $nextlink }}<div id="photo-next-link"><a href="$nextlink.0">$nextlink.1</a></div>{{ endif }} -<div id="photo-photo-end"></div> -<div id="photo-caption">$desc</div> -{{ if $tags }} -<div id="in-this-photo-text">$tags.0</div> -<div id="in-this-photo">$tags.1</div> -{{ endif }} -{{ if $tags.2 }}<div id="tag-remove"><a href="$tags.2">$tags.3</a></div>{{ endif }} - -{{ if $edit }}$edit{{ endif }} - -{{ if $likebuttons }} -<div id="photo-like-div"> - $likebuttons $like $dislike -</div> -{{ endif }} -<div id="wall-photo-container"> -$comments -</div> - -$paginate - diff --git a/view/theme/dispy/profile_vcard.tpl b/view/theme/dispy/profile_vcard.tpl deleted file mode 100644 index 5d9a3924c..000000000 --- a/view/theme/dispy/profile_vcard.tpl +++ /dev/null @@ -1,82 +0,0 @@ -<div class="vcard"> - - {{ if $profile.edit }} - <div class="action"> - <span class="icon-profile-edit" rel="#profiles-menu"></span> - <a href="#" rel="#profiles-menu" class="ttright" id="profiles-menu-trigger" title="$profile.edit.3">$profile.edit.1</a> - <ul id="profiles-menu" class="menu-popup"> - {{ for $profile.menu.entries as $e }} - <li> - <a href="profiles/$e.id"><img src='$e.photo'>$e.profile_name</a> - </li> - {{ endfor }} - <li><a href="profile_photo">$profile.menu.chg_photo</a></li> - <li><a href="profiles/new" id="profile-listing-new-link">$profile.menu.cr_new</a></li> - </ul> - </div> - {{ endif }} - - <div class="fn label">$profile.name</div> - - {{ if $pdesc }} - <div class="title">$profile.pdesc</div> - {{ endif }} - <div id="profile-photo-wrapper"> - <img class="photo" width="175" height="175" src="$profile.photo?rev=$profile.picdate" alt="$profile.name" /> - </div> - - {{ if $location }} - <div class="location"> - <span class="location-label">$location</span> - <div class="adr"> - {{ if $profile.address }} - <div class="street-address">$profile.address</div>{{ endif }} - <span class="city-state-zip"> - <span class="locality">$profile.locality</span>{{ if $profile.locality }}, {{ endif }} - <span class="region">$profile.region</span> - <span class="postal-code">$profile.postal_code</span> - </span> - {{ if $profile.country_name }}<span class="country-name">$profile.country_name</span>{{ endif }} - </div> - </div> - {{ endif }} - - {{ if $gender }} - <div class="mf"> - <span class="gender-label">$gender</span> - <span class="x-gender">$profile.gender</span> - </div> - {{ endif }} - - {{ if $profile.pubkey }} - <div class="key" style="display:none;">$profile.pubkey</div> - {{ endif }} - - {{ if $marital }} - <div class="marital"> - <span class="marital-label"> - <span class="heart">♥</span>$marital</span> - <span class="marital-text">$profile.marital</span> - </div> - {{ endif }} - - {{ if $homepage }} - <div class="homepage"> - <span class="homepage-label">$homepage</span> - <span class="homepage-url"><a href="$profile.homepage" - >$profile.homepage</a></span> - </div>{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - - <div id="profile-extra-links"> - <ul> - {{ if $connect }} - <li><a id="dfrn-request-link" href="dfrn_request/$profile.nickname">$connect</a></li> - {{ endif }} - </ul> - </div> -</div> - -$contact_block - diff --git a/view/theme/dispy/saved_searches_aside.tpl b/view/theme/dispy/saved_searches_aside.tpl deleted file mode 100644 index fb822fe5d..000000000 --- a/view/theme/dispy/saved_searches_aside.tpl +++ /dev/null @@ -1,14 +0,0 @@ -<div class="widget" id="saved-search-list"> - <h3 id="search">$title</h3> - $searchbox - - <ul id="saved-search-ul"> - {{ for $saved as $search }} - <li class="saved-search-li clear"> - <a title="$search.delete" onclick="return confirmDelete();" onmouseout="imgdull(this);" onmouseover="imgbright(this);" id="drop-saved-search-term-$search.id" class="icon savedsearchdrop drophide" href="network/?f=&remove=1&search=$search.encodedterm"></a> - <a id="saved-search-term-$search.id" class="savedsearchterm" href="network/?f=&search=$search.encodedterm">$search.term</a> - </li> - {{ endfor }} - </ul> - <div class="clear"></div> -</div> diff --git a/view/theme/dispy/screenshot.jpg b/view/theme/dispy/screenshot.jpg Binary files differdeleted file mode 100644 index 5be4d7745..000000000 --- a/view/theme/dispy/screenshot.jpg +++ /dev/null diff --git a/view/theme/dispy/search_item.tpl b/view/theme/dispy/search_item.tpl deleted file mode 100644 index 986e698ce..000000000 --- a/view/theme/dispy/search_item.tpl +++ /dev/null @@ -1,54 +0,0 @@ -<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" > - <div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" > - <div class="wall-item-info" id="wall-item-info-$item.id"> - <div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id" - onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')" - onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)"> - <a href="$item.profile_url" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id"> - <img src="$item.thumb" class="wall-item-photo$item.sparkle" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" /></a> - <span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span> - <div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id"> - <ul> - $item.item_photo_menu - </ul> - </div> - </div> - <div class="wall-item-photo-end"></div> - <div class="wall-item-wrapper" id="wall-item-wrapper-$item.id" > - {{ if $item.lock }}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="$item.lock" onclick="lockview(event,$item.id);" /></div> - {{ else }}<div class="wall-item-lock"></div>{{ endif }} - <div class="wall-item-location" id="wall-item-location-$item.id">$item.location</div> - </div> - </div> - <div class="wall-item-author"> - <a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span></a> - <div class="wall-item-ago" id="wall-item-ago-$item.id">$item.ago</div> - - </div> - <div class="wall-item-content" id="wall-item-content-$item.id" > - <div class="wall-item-title" id="wall-item-title-$item.id">$item.title</div> - <div class="wall-item-title-end"></div> - <div class="wall-item-body" id="wall-item-body-$item.id" >$item.body</div> - </div> - <div class="wall-item-tools" id="wall-item-tools-$item.id"> - <div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id" > - {{ if $item.drop.dropping }}<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon drophide" title="$item.drop.delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }} - </div> - {{ if $item.drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" />{{ endif }} - <div class="wall-item-delete-end"></div> - </div> - </div> - <div class="wall-item-wrapper-end"></div> - - - <div class="wall-item-conv" id="wall-item-conv-$item.id" > - {{ if $item.conv }} - <a href='$item.conv.href' id='context-$item.id' title='$item.conv.title'>$item.conv.title</a> - {{ endif }} - </div> - -<div class="wall-item-outside-wrapper-end $item.indent" ></div> - -</div> - - diff --git a/view/theme/dispy/style.php b/view/theme/dispy/style.php deleted file mode 100644 index 375651425..000000000 --- a/view/theme/dispy/style.php +++ /dev/null @@ -1,106 +0,0 @@ -<?php - $line_height = false; - $dispy_font_size = false; - $resolution = false; - $colour = false; - $site_line_height = get_config("dispy","line_height"); - $site_dispy_font_size = get_config("dispy", "font_size" ); - $site_colour = get_config("dispy", "colour" ); - - if (local_user()) { - $line_height = get_pconfig(local_user(), "dispy","line_height"); - $dispy_font_size = get_pconfig(local_user(), "dispy", "font_size"); - $colour = get_pconfig(local_user(), "dispy", "colour"); - } - - if ($line_height === false) { - $line_height = $site_line_height; - } - if ($line_height === false) { - $line_height = "1.2"; - } - if ($dispy_font_size === false) { - $dispy_font_size = $site_dispy_font_size; - } - if ($dispy_font_size === false) { - $dispy_font_size = "12"; - } - if ($colour === false) { - $colour = $site_colour; - } - if ($colour === false) { - $colour = "light"; - } - - if($colour == "light") { - if (file_exists("$THEMEPATH/light/style.css")) { - echo file_get_contents("$THEMEPATH/light/style.css"); - } - } - - if($colour == "dark") { - if (file_exists("$THEMEPATH/dark/style.css")) { - echo file_get_contents("$THEMEPATH/dark/style.css"); - } - } - - if($dispy_font_size == "16") { - echo ".wall-item-content { - font-size: 16px; - }"; - } - if($dispy_font_size == "15") { - echo ".wall-item-content { - font-size: 15px; - }"; - } - if($dispy_font_size == "14") { - echo ".wall-item-content { - font-size: 14px; - }"; - } - if($dispy_font_size == "13.5") { - echo ".wall-item-content { - font-size: 13.5px; - }"; - } - if($dispy_font_size == "13") { - echo ".wall-item-content { - font-size: 13px; - }"; - } - if($dispy_font_size == "12.5") { - echo ".wall-item-content { - font-size: 12.5px; - }"; - } - if($dispy_font_size == "12") { - echo ".wall-item-content { - font-size: 12px; - }"; - } - if($line_height == "1.5") { - echo ".wall-item-content { - line-height: 1.5; - }"; - } - if($line_height == "1.4") { - echo ".wall-item-content { - line-height: 1.4; - }"; - } - if($line_height == "1.3") { - echo ".wall-item-content { - line-height: 1.3; - }"; - } - if($line_height == "1.2") { - echo ".wall-item-content { - line-height: 1.2; - }"; - } - if($line_height == "1.1") { - echo ".wall-item-content { - line-height: 1.1; - }"; - } diff --git a/view/theme/dispy/theme.php b/view/theme/dispy/theme.php deleted file mode 100644 index 2d423a928..000000000 --- a/view/theme/dispy/theme.php +++ /dev/null @@ -1,201 +0,0 @@ -<?php - -/* - * Name: Dispy - * Description: Dispy family (light, dark): Sleek and Functional Themes - * Version: 1.2.1 - * Author: Simon <http://simon.kisikew.org/> - * Maintainer: Simon <http://simon.kisikew.org/> - * Screenshot: <a href="screenshot.jpg">Screenshot</a> - */ - -/* If you borrow any of these functions, make sure to - * RENAME your functions, otherwise both themes get conflicts, - * and the friendica instance will get HTTP 500 errors. - * To paraphrase Mike: "Might wish to wrap - * function_name with "if(! function_exists('function_name')) ... " - * or rename to prefix1_function_name (prefix2_function_name), etc. - */ - -$a = get_app(); -$a->theme_info = array( - 'family' => 'dispy', - 'version' => '1.2.2' -); - -function dispy_init(&$a) { - - /** @purpose set some theme defaults - */ - $cssFile = null; - $colour = get_pconfig(local_user(), "dispy", "colour"); - $baseurl = $a->get_baseurl($ssl_state); - - if ($colour === false) { $colour = "light"; } - if ($colour == "light") { - $colour_path = "/light/"; - require_once ('light/theme.php'); - } - if ($colour == "dark") { - $colour_path = "/dark/"; - require_once ('dark/theme.php'); - } - - /** @purpose aside on profile page - */ - if (($a->argv[0] . $a->argv[1]) === ("profile" . $a->user['nickname'])) { - dispy_community_info(); - } - - $a->page['htmlhead'] .= <<<EOT - <script type="text/javascript" src="$baseurl/view/theme/dispy/js/modernizr.custom.2.5.3.min.js"></script> - <script type="text/javascript"> - $(document).ready(function() { - // Select all links with lightbox class - $("a.lightbox").fancybox(); - - $('.group-edit-icon').hover( - function() { - $(this).addClass('icon'); - $(this).removeClass('iconspacer'); }, - - function() { - $(this).removeClass('icon'); - $(this).addClass('iconspacer'); } - ); - - $('.sidebar-group-element').hover( - function() { - id = $(this).attr('id'); - $('#edit-' + id).addClass('icon'); - $('#edit-' + id).removeClass('iconspacer'); }, - - function() { - id = $(this).attr('id'); - $('#edit-' + id).removeClass('icon'); - $('#edit-' + id).addClass('iconspacer'); } - ); - - $('.savedsearchdrop').hover( - function() { - $(this).addClass('drop'); - $(this).addClass('icon'); - $(this).removeClass('iconspacer'); }, - - function() { - $(this).removeClass('drop'); - $(this).removeClass('icon'); - $(this).addClass('iconspacer'); } - ); - - $('.savedsearchterm').hover( - function() { - id = $(this).attr('id'); - $('#drop-' + id).addClass('icon'); - $('#drop-' + id).addClass('drophide'); - $('#drop-' + id).removeClass('iconspacer'); }, - - function() { - id = $(this).attr('id'); - $('#drop-' + id).removeClass('icon'); - $('#drop-' + id).removeClass('drophide'); - $('#drop-' + id).addClass('iconspacer'); } - ); - - // click outside notifications menu closes it - $('html').click(function() { - $('#nav-notifications-linkmenu').removeClass('selected'); - $('#nav-notifications-menu').css({display: 'none'}); - }); - - $('#nav-notifications-linkmenu').click(function(event) { - event.stopPropagation(); - }); - // click outside profiles menu closes it - $('html').click(function() { - $('#profiles-menu-trigger').removeClass('selected'); - $('#profiles-menu').css({display: 'none'}); - }); - - $('#profiles-menu').click(function(event) { - event.stopPropagation(); - }); - - // main function in toolbar functioning - function toggleToolbar() { - if ( $('#nav-floater').is(':visible') ) { - $('#nav-floater').slideUp('fast'); - $('.floaterflip').css({ - backgroundPosition: '-210px -60px' - }); - $('.search-box').slideUp('fast'); - } else { - $('#nav-floater').slideDown('fast'); - $('.floaterflip').css({ - backgroundPosition: '-190px -60px' - }); - $('.search-box').slideDown('fast'); - } - }; - // our trigger for the toolbar button - $('.floaterflip').click(function() { - toggleToolbar(); - return false; - }); - - // (attempt to) change the text colour in a top post - $('#profile-jot-text').focusin(function() { - $(this).css({color: '#eec'}); - }); - - $('a[href=#top]').click(function() { - $('html, body').animate({scrollTop:0}, 'slow'); - return false; - }); - - }); - // shadowing effect for floating toolbars - $(document).scroll(function(e) { - var pageTop = $('html').scrollTop(); - if (pageTop) { - $('#nav-floater').css({boxShadow: '3px 3px 10px rgba(0, 0, 0, 0.7)'}); - $('.search-box').css({boxShadow: '3px 3px 10px rgba(0, 0, 0, 0.7)'}); - } else { - $('#nav-floater').css({boxShadow: '0 0 0 0'}); - $('.search-box').css({boxShadow: '0 0 0 0'}); - } - }); - </script> -EOT; - - // custom css - if (!is_null($cssFile)) { - $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile); - } - - _js_in_foot(); -} - -function dispy_community_info() { - /** @purpose some sidebar stuff for new users - */ - $a = get_app(); - $url = $a->get_baseurl($ssl_state); - $aside['$url'] = $url; - - $tpl = file_get_contents(dirname(__file__) . '/communityhome.tpl'); - return $a->page['aside_bottom'] = replace_macros($tpl, $aside); -} - -if(! function_exists('_js_in_foot')) { - function _js_in_foot() { - /** @purpose insert stuff in bottom of page - */ - $a = get_app(); - $baseurl = $a->get_baseurl($ssl_state); - $bottom['$baseurl'] = $baseurl; - $tpl = file_get_contents(dirname(__file__) . '/bottom.tpl'); - - return $a->page['bottom'] = replace_macros($tpl, $bottom); - } -} diff --git a/view/theme/dispy/theme_settings.tpl b/view/theme/dispy/theme_settings.tpl deleted file mode 100644 index 9d250cb3a..000000000 --- a/view/theme/dispy/theme_settings.tpl +++ /dev/null @@ -1,10 +0,0 @@ -{{inc field_select.tpl with $field=$colour}}{{endinc}} - -{{inc field_select.tpl with $field=$font_size}}{{endinc}} - -{{inc field_select.tpl with $field=$line_height}}{{endinc}} - -<div class="settings-submit-wrapper"> - <input type="submit" value="$submit" class="settings-submit" name="dispy-settings-submit" /> -</div> - diff --git a/view/theme/dispy/wall_item.tpl b/view/theme/dispy/wall_item.tpl deleted file mode 100644 index 6e6761f8f..000000000 --- a/view/theme/dispy/wall_item.tpl +++ /dev/null @@ -1,88 +0,0 @@ -<a name="$item.id" ></a> -<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" > - <div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" > - <div class="wall-item-info" id="wall-item-info-$item.id"> - <div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id" - onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')" - onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)"> - <a href="$item.profile_url" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id"><img src="$item.thumb" class="wall-item-photo$item.sparkle" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" /></a> - <span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span> - <div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id"> - <ul> - $item.item_photo_menu - </ul> - </div> - </div> - <div class="wall-item-photo-end"></div> - <div class="wall-item-location" id="wall-item-location-$item.id"> - {{ if $item.location }}<span class="icon globe"></span>$item.location {{ endif }} - </div> - <div class="wall-item-author"> - <a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id">$item.name</span></a> - </div> - <div class="wall-item-ago" id="wall-item-ago-$item.id"> - $item.ago - </div> - </div> - <div class="wall-item-tools" id="wall-item-tools-$item.id"> - <div class="wall-item-lock-wrapper"> - {{ if $item.lock }}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="$item.lock" onclick="lockview(event,$item.id);" /></div> - {{ else }}<div class="wall-item-lock"></div>{{ endif }} - </div> - <ul class="wall-item-subtools1"> - {{ if $item.star }} - <li> - <a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle"></a> - <a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a> - </li> - {{ endif }} - {{ if $item.vote }} - <li class="wall-item-like-buttons" id="wall-item-like-buttons-$item.id"> - <a href="#" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false"></a> - <a href="#" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a> - {{ if $item.vote.share }} - <a href="#" id="share-$item.id" - class="icon recycle wall-item-share-buttons" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>{{ endif }} - <img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" /> - </li> - {{ endif }} - </ul><br style="clear:left;" /> - <ul class="wall-item-subtools2"> - {{ if $item.filer }} - <li><a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item icon file-as" title="$item.filer"></a></li> - {{ endif }} - {{ if $item.plink }} - <li class="wall-item-links-wrapper$item.sparkle"><a href="$item.plink.href" title="$item.plink.title" class="icon remote-link"></a></li> - {{ endif }} - {{ if $item.edpost }} - <li><a class="editpost icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a></li> - {{ endif }} - <li class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id"> - {{ if $item.drop.dropping }}<div><a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon drophide" title="$item.drop.delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a></div>{{ endif }} - {{ if $item.drop.dropping }}<div><input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" /></div>{{ endif }} - </li> - </ul> - <div class="wall-item-delete-end"></div> - </div> - <div class="wall-item-content" id="wall-item-content-$item.id"> - <div class="wall-item-title" id="wall-item-title-$item.id">$item.title</div> - <div class="wall-item-title-end"></div> - <div class="wall-item-body" id="wall-item-body-$item.id"> - $item.body - <div class="body-tag"> - {{ for $item.tags as $tag }} - <span class='tag'>$tag</span> - {{ endfor }} - </div> - </div> - </div> - </div> - <div class="wall-item-wrapper-end"></div> - <div class="wall-item-like $item.indent" id="wall-item-like-$item.id">$item.like</div> - <div class="wall-item-dislike $item.indent" id="wall-item-dislike-$item.id">$item.dislike</div> - <div class="wall-item-comment-wrapper" > - $item.comment - </div> - -<div class="wall-item-outside-wrapper-end $item.indent" ></div> -</div> diff --git a/view/theme/dispy/wallwall_item.tpl b/view/theme/dispy/wallwall_item.tpl deleted file mode 100644 index fa79d256e..000000000 --- a/view/theme/dispy/wallwall_item.tpl +++ /dev/null @@ -1,98 +0,0 @@ -<a name="$item.id" ></a> -<div class="wall-item-outside-wrapper $item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" > - <div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" > - <div class="wall-item-info wallwall" id="wall-item-info-$item.id"> - <div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-$item.id" > - <a href="$item.owner_url" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id"> - <img src="$item.owner_photo" class="wall-item-photo$item.osparkle" id="wall-item-ownerphoto-$item.id" style="height: 80px; width: 80px;" alt="$item.owner_name" /></a> - </div> - <div class="wall-item-arrowphoto-wrapper" ><img src="images/larrow.gif" alt="$item.wall" /></div> - <div class="wall-item-photo-wrapper wwfrom" id="wall-item-photo-wrapper-$item.id" - onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')" - onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)"> - <a href="$item.profile_url" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id"> - <img src="$item.thumb" class="wall-item-photo$item.sparkle" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" /></a> - <span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span> - <div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id"> - <ul> - $item.item_photo_menu - </ul> - </div> - - </div> - <div class="wall-item-photo-end"></div> - <div class="wall-item-location" id="wall-item-location-$item.id"> - {{ if $item.location }}<span class="icon globe"></span>$item.location {{ endif }} - </div> - <div class="wall-item-author"> - <a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id">$item.name</span></a> - </div> - <div class="wall-item-ago" id="wall-item-ago-$item.id"> - $item.ago - </div> - </div> - <div class="wall-item-tools" id="wall-item-tools-$item.id"> - <div class="wall-item-lock-wrapper"> - {{ if $item.lock }}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="$item.lock" onclick="lockview(event,$item.id);" /></div> - {{ else }}<div class="wall-item-lock"></div>{{ endif }} - </div> - <ul class="wall-item-subtools1"> - {{ if $item.star }} - <li> - <a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle"></a> - <a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a> - </li> - {{ endif }} - {{ if $item.vote }} - <li class="wall-item-like-buttons" id="wall-item-like-buttons-$item.id"> - <a href="#" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false"></a> - <a href="#" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a> - {{ if $item.vote.share }} - <a href="#" id="share-$item.id" -class="icon recycle wall-item-share-buttons" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>{{ endif }} - <img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" /> - </li> - {{ endif }} - </ul><br style="clear:left;" /> - <ul class="wall-item-subtools2"> - {{ if $item.filer }} - <li class="wall-item-filer-wrapper"><a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item icon file-as" title="$item.star.filer"></a></li> - {{ endif }} - {{ if $item.plink }} - <li class="wall-item-links-wrapper$item.sparkle"><a href="$item.plink.href" title="$item.plink.title" class="icon remote-link"></a></li> - {{ endif }} - {{ if $item.edpost }} - <li><a class="editpost icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a></li> - {{ endif }} - - <li class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id" > - {{ if $item.drop.dropping }}<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon drophide" title="$item.drop.delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }} - {{ if $item.drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" />{{ endif }} - </li> - </ul> - <div class="wall-item-delete-end"></div> - </div> - <div class="wall-item-content" id="wall-item-content-$item.id"> - <div class="wall-item-title" id="wall-item-title-$item.id">$item.title</div> - <div class="wall-item-title-end"></div> - <div class="wall-item-body" id="wall-item-body-$item.id"> - $item.body - <div class="body-tag"> - {{ for $item.tags as $tag }} - <span class="tag">$tag</span> - {{ endfor }} - </div> - </div> - </div> - </div> - <div class="wall-item-wrapper-end"></div> - <div class="wall-item-like $item.indent" id="wall-item-like-$item.id">$item.like</div> - <div class="wall-item-dislike $item.indent" id="wall-item-dislike-$item.id">$item.dislike</div> - <div class="wall-item-comment-separator"></div> - <div class="wall-item-comment-wrapper"> - $item.comment - </div> - -<div class="wall-item-outside-wrapper-end $item.indent" ></div> -</div> - |