Base theme stylesheet includes layout, and typography information
Identica theme stylesheet includes colour and background information
|
@ -111,7 +111,15 @@ class Action extends HTMLOutputter // lawsuit
|
|||
{
|
||||
$this->element('link', array('rel' => 'stylesheet',
|
||||
'type' => 'text/css',
|
||||
'href' => theme_path('display.css') . '?version=' . LACONICA_VERSION,
|
||||
'href' => theme_path('display.css', 'base') . '?version=' . LACONICA_VERSION,
|
||||
'media' => 'screen, projection, tv'));
|
||||
$this->element('link', array('rel' => 'stylesheet',
|
||||
'type' => 'text/css',
|
||||
'href' => theme_path('thickbox.css', 'base') . '?version=' . LACONICA_VERSION,
|
||||
'media' => 'screen, projection, tv'));
|
||||
$this->element('link', array('rel' => 'stylesheet',
|
||||
'type' => 'text/css',
|
||||
'href' => theme_path('display.css', null) . '?version=' . LACONICA_VERSION,
|
||||
'media' => 'screen, projection, tv'));
|
||||
foreach (array(6,7) as $ver) {
|
||||
if (file_exists(theme_file('ie'.$ver.'.css'))) {
|
||||
|
|
1081
theme/base/css/display.css
Normal file
1
theme/base/css/initial_states.css
Normal file
|
@ -0,0 +1 @@
|
|||
|
45
theme/base/css/jquery.Jcrop.css
Normal file
|
@ -0,0 +1,45 @@
|
|||
/* Fixes issue here http://code.google.com/p/jcrop/issues/detail?id=1 */
|
||||
.jcrop-holder
|
||||
{
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.jcrop-vline, .jcrop-hline
|
||||
{
|
||||
font-size: 0;
|
||||
position: absolute;
|
||||
background: #fff url(../images/illustrations/illu_jcrop.gif) top left repeat;
|
||||
/*
|
||||
opacity: .5;
|
||||
*filter:alpha(opacity=50);
|
||||
*/
|
||||
}
|
||||
.jcrop-vline { height: 100%; width: 1px !important; }
|
||||
.jcrop-hline { width: 100%; height: 1px !important; }
|
||||
.jcrop-handle {
|
||||
font-size: 1px;
|
||||
width: 7px !important;
|
||||
height: 7px !important;
|
||||
border: 1px #eee solid;
|
||||
background-color: #333;
|
||||
/*width: 9px;
|
||||
height: 9px;*/
|
||||
}
|
||||
|
||||
.jcrop-tracker {
|
||||
/*background-color: gray;*/
|
||||
width: 100%; height: 100%;
|
||||
}
|
||||
|
||||
.custom .jcrop-vline,
|
||||
.custom .jcrop-hline
|
||||
{
|
||||
background: yellow;
|
||||
}
|
||||
.custom .jcrop-handle
|
||||
{
|
||||
border-color: black;
|
||||
background-color: #C7BB00;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
}
|
163
theme/base/css/thickbox.css
Normal file
|
@ -0,0 +1,163 @@
|
|||
/* ----------------------------------------------------------------------------------------------------------------*/
|
||||
/* ---------->>> global settings needed for thickbox <<<-----------------------------------------------------------*/
|
||||
/* ----------------------------------------------------------------------------------------------------------------*/
|
||||
*{padding: 0; margin: 0;}
|
||||
|
||||
/* ----------------------------------------------------------------------------------------------------------------*/
|
||||
/* ---------->>> thickbox specific link and font settings <<<------------------------------------------------------*/
|
||||
/* ----------------------------------------------------------------------------------------------------------------*/
|
||||
#TB_window {
|
||||
font: 12px Arial, Helvetica, sans-serif;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
#TB_secondLine {
|
||||
font: 10px Arial, Helvetica, sans-serif;
|
||||
color:#666666;
|
||||
}
|
||||
|
||||
#TB_window a:link {color: #666666;}
|
||||
#TB_window a:visited {color: #666666;}
|
||||
#TB_window a:hover {color: #000;}
|
||||
#TB_window a:active {color: #666666;}
|
||||
#TB_window a:focus{color: #666666;}
|
||||
|
||||
/* ----------------------------------------------------------------------------------------------------------------*/
|
||||
/* ---------->>> thickbox settings <<<-----------------------------------------------------------------------------*/
|
||||
/* ----------------------------------------------------------------------------------------------------------------*/
|
||||
#TB_overlay {
|
||||
position: fixed;
|
||||
z-index:100;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
height:100%;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.TB_overlayMacFFBGHack {background: url(macFFBgHack.png) repeat;}
|
||||
.TB_overlayBG {
|
||||
background-color:#000;
|
||||
filter:alpha(opacity=75);
|
||||
-moz-opacity: 0.75;
|
||||
opacity: 0.75;
|
||||
}
|
||||
|
||||
* html #TB_overlay { /* ie6 hack */
|
||||
position: absolute;
|
||||
height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
|
||||
}
|
||||
|
||||
#TB_window {
|
||||
position: fixed;
|
||||
background: #ffffff;
|
||||
z-index: 102;
|
||||
color:#000000;
|
||||
display:none;
|
||||
border: 4px solid #525252;
|
||||
text-align:left;
|
||||
top:50%;
|
||||
left:50%;
|
||||
}
|
||||
|
||||
* html #TB_window { /* ie6 hack */
|
||||
position: absolute;
|
||||
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
|
||||
}
|
||||
|
||||
#TB_window img#TB_Image {
|
||||
display:block;
|
||||
margin: 15px 0 0 15px;
|
||||
border-right: 1px solid #ccc;
|
||||
border-bottom: 1px solid #ccc;
|
||||
border-top: 1px solid #666;
|
||||
border-left: 1px solid #666;
|
||||
}
|
||||
|
||||
#TB_caption{
|
||||
height:25px;
|
||||
padding:7px 30px 10px 25px;
|
||||
float:left;
|
||||
}
|
||||
|
||||
#TB_closeWindow{
|
||||
height:25px;
|
||||
padding:11px 25px 10px 0;
|
||||
float:right;
|
||||
}
|
||||
|
||||
#TB_closeAjaxWindow{
|
||||
padding:7px 10px 5px 0;
|
||||
margin-bottom:1px;
|
||||
text-align:right;
|
||||
float:right;
|
||||
}
|
||||
|
||||
#TB_ajaxWindowTitle{
|
||||
float:left;
|
||||
padding:7px 0 5px 10px;
|
||||
margin-bottom:1px;
|
||||
}
|
||||
|
||||
#TB_title{
|
||||
background-color:#e8e8e8;
|
||||
height:27px;
|
||||
}
|
||||
|
||||
#TB_ajaxContent{
|
||||
clear:both;
|
||||
padding:2px 15px 15px 15px;
|
||||
overflow:auto;
|
||||
text-align:left;
|
||||
line-height:1.4em;
|
||||
}
|
||||
|
||||
#TB_ajaxContent.TB_modal{
|
||||
padding:15px;
|
||||
}
|
||||
|
||||
#TB_ajaxContent p{
|
||||
padding:5px 0px 5px 0px;
|
||||
}
|
||||
|
||||
#TB_load{
|
||||
position: fixed;
|
||||
display:none;
|
||||
height:13px;
|
||||
width:208px;
|
||||
z-index:103;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */
|
||||
}
|
||||
|
||||
* html #TB_load { /* ie6 hack */
|
||||
position: absolute;
|
||||
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
|
||||
}
|
||||
|
||||
#TB_HideSelect{
|
||||
z-index:99;
|
||||
position:fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color:#fff;
|
||||
border:none;
|
||||
filter:alpha(opacity=0);
|
||||
-moz-opacity: 0;
|
||||
opacity: 0;
|
||||
height:100%;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
* html #TB_HideSelect { /* ie6 hack */
|
||||
position: absolute;
|
||||
height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
|
||||
}
|
||||
|
||||
#TB_iframeContent{
|
||||
clear:both;
|
||||
border:none;
|
||||
margin-bottom:-1px;
|
||||
margin-top:1px;
|
||||
_margin-bottom:1px;
|
||||
}
|
BIN
theme/base/images/icons/icon_atom.jpg
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
theme/base/images/icons/icon_foaf.gif
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
theme/base/images/icons/icon_rss.jpg
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
theme/base/images/icons/icon_vcard.gif
Normal file
After Width: | Height: | Size: 331 B |
BIN
theme/base/images/illustrations/illu_jcrop.gif
Normal file
After Width: | Height: | Size: 329 B |
BIN
theme/base/images/illustrations/illu_progress_loading-01.gif
Normal file
After Width: | Height: | Size: 5.7 KiB |
226
theme/identica/css/display.css
Normal file
|
@ -0,0 +1,226 @@
|
|||
/* theme: identica */
|
||||
html {
|
||||
background-color:#ddd;
|
||||
}
|
||||
body {
|
||||
font-family: sans-serif;
|
||||
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
|
||||
font-size:1em;
|
||||
|
||||
}
|
||||
input, textarea, select, option {
|
||||
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
|
||||
}
|
||||
input:focus, textarea:focus, select:focus {
|
||||
border-color:#B2D0DD;
|
||||
}
|
||||
form span.required { color:#f00; }
|
||||
form .error {
|
||||
background-color:#f00;
|
||||
color:#fff;
|
||||
}
|
||||
form .error_message {
|
||||
color:#EC008C;
|
||||
}
|
||||
|
||||
a {
|
||||
color:#002E6E;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#supplemental_primary {
|
||||
background-color:#CEE1E9;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#form_notice label {
|
||||
color:#88171A;
|
||||
}
|
||||
#notice_text-count {
|
||||
color:#333;
|
||||
}
|
||||
#notice_text-count.warning {
|
||||
color:#FDFF00;
|
||||
background-color:#000;
|
||||
}
|
||||
#notice_data-text.warning {
|
||||
border-color:#FDFF00;
|
||||
}
|
||||
|
||||
#form_notice #notice_data-attach_view {
|
||||
background-image:url(../images/icons/twotone/green/paper-clip.gif);
|
||||
background-repeat:no-repeat;
|
||||
background-position:0 45%;
|
||||
background-color:transparent;
|
||||
}
|
||||
|
||||
|
||||
#site_nav_local_views a {
|
||||
border-color:#fff;
|
||||
}
|
||||
|
||||
/*
|
||||
#site_nav_global_primary .current a {
|
||||
font-weight:bold;
|
||||
border-color:#ccc;
|
||||
border-style:solid;
|
||||
}
|
||||
*/
|
||||
|
||||
#content,
|
||||
#site_nav_local_views .current a {
|
||||
background-color:#fff;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#export_data li a {
|
||||
background-repeat:no-repeat;
|
||||
background-position:0 45%;
|
||||
}
|
||||
#export_data li a.rss {
|
||||
background-image:url(../images/icons/icon_rss.jpg);
|
||||
}
|
||||
#export_data li a.atom {
|
||||
background-image:url(../images/icons/icon_atom.jpg);
|
||||
}
|
||||
#export_data li a.foaf {
|
||||
background-image:url(../images/icons/icon_foaf.gif);
|
||||
=}
|
||||
#export_data li a.export_vcard {
|
||||
background-image:url(../images/icons/icon_vcard.gif);
|
||||
}
|
||||
|
||||
|
||||
/*user_actions*/
|
||||
#user_actions li {
|
||||
border-top-color:#eee;
|
||||
}
|
||||
#user_actions a {
|
||||
color:#000;
|
||||
}
|
||||
#user_subscribe a,
|
||||
#TB_window input.submit,
|
||||
.form_user_subscribe input.submit {
|
||||
background:#CEE1E9 url(../images/icons/twotone/green/shield.gif) 0 45% no-repeat;
|
||||
}
|
||||
.form_user_unsubscribe input.submit {
|
||||
background-color:#647819;
|
||||
color:#fff;
|
||||
}
|
||||
#user_send-a-message a {
|
||||
background:url(../images/icons/twotone/green/quote.gif) 0 45% no-repeat;
|
||||
}
|
||||
.form_user_nudge input.submit {
|
||||
background:url(../images/icons/twotone/green/mail.gif) 0 45% no-repeat;
|
||||
}
|
||||
.form_user_block input.submit {
|
||||
background:url(../images/icons/twotone/green/against.gif) 0 45% no-repeat;
|
||||
}
|
||||
|
||||
|
||||
.user_tags .mark_hash {
|
||||
color:#555;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.vcard .fn {
|
||||
border-bottom-color:#ccc;
|
||||
}
|
||||
.vcard .fn:hover {
|
||||
border-bottom-color:#555;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/* NOTICES */
|
||||
.notice div.entry-content a {
|
||||
color:#333;
|
||||
border-bottom-color:#ccc;
|
||||
}
|
||||
.notice div.entry-content a:hover {
|
||||
border-bottom-color:#555;
|
||||
}
|
||||
|
||||
|
||||
.notice-data a span {
|
||||
background-color:transparent;
|
||||
background-repeat:no-repeat;
|
||||
background-position:0 45%;
|
||||
}
|
||||
.notice_video .notice-data a span {
|
||||
background-image:url(../images/icons/twotone/green/camera.gif);
|
||||
}
|
||||
.notice_audio .notice-data a span {
|
||||
background-image:url(../images/icons/twotone/green/music.gif);
|
||||
}
|
||||
.notice_image .notice-data a span {
|
||||
background-image:url(../images/icons/twotone/green/search.gif);
|
||||
}
|
||||
.notice_event .notice-data a span {
|
||||
background-image:url(../images/icons/twotone/green/calendar.gif);
|
||||
}
|
||||
.notice_location .notice-data a span {
|
||||
background-image:url(../images/icons/twotone/green/flag.gif);
|
||||
}
|
||||
.notice_document .notice-data a span {
|
||||
background-image:url(../images/icons/twotone/green/document.gif);
|
||||
}
|
||||
|
||||
.notice-options .reply a,
|
||||
.notice-options form input.submit {
|
||||
background-color:transparent;
|
||||
color:#333333;
|
||||
border-bottom-color:#ccc;
|
||||
}
|
||||
.notice-options .reply a {
|
||||
background:transparent url(../images/icons/twotone/green/undo.gif) no-repeat 0 45%;
|
||||
}
|
||||
.notice-options form.notice_favorite input.submit {
|
||||
background:transparent url(../images/icons/twotone/green/favourite.gif) no-repeat 0 45%;
|
||||
}
|
||||
.notice-options form.notice_delete input.submit {
|
||||
background:transparent url(../images/icons/twotone/green/trash.gif) no-repeat 0 45%;
|
||||
}
|
||||
/*END: NOTICES */
|
||||
|
||||
|
||||
|
||||
.pagination .nav_prev a,
|
||||
.pagination .nav_next a {
|
||||
background-repeat:no-repeat;
|
||||
}
|
||||
.pagination .nav_prev a {
|
||||
background-image:url(../images/icons/twotone/green/arrow-left.gif);
|
||||
background-position:0 45%;
|
||||
}
|
||||
.pagination .nav_next a {
|
||||
background-image:url(../images/icons/twotone/green/arrow-right.gif);
|
||||
background-position:100% 45%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#home #intro #guide_steps li a {
|
||||
border-color:#ccc;
|
||||
color:#fff;
|
||||
}
|
||||
#home #intro #step_join-now a {
|
||||
background-color:#f00;
|
||||
}
|
||||
#home #intro #step_start-a-group a {
|
||||
background-color:#0f0;
|
||||
}
|
||||
#home #intro #step_create-a-community a {
|
||||
background-color:#00f;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
BIN
theme/identica/images/icons/icon_atom.jpg
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
theme/identica/images/icons/icon_foaf.gif
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
theme/identica/images/icons/icon_rss.jpg
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
theme/identica/images/icons/icon_vcard.gif
Normal file
After Width: | Height: | Size: 331 B |
BIN
theme/identica/images/icons/twotone/green/against.gif
Normal file
After Width: | Height: | Size: 85 B |
BIN
theme/identica/images/icons/twotone/green/arrow-down.gif
Normal file
After Width: | Height: | Size: 75 B |
BIN
theme/identica/images/icons/twotone/green/arrow-downleft.gif
Normal file
After Width: | Height: | Size: 75 B |
BIN
theme/identica/images/icons/twotone/green/arrow-downright.gif
Normal file
After Width: | Height: | Size: 75 B |
BIN
theme/identica/images/icons/twotone/green/arrow-left.gif
Normal file
After Width: | Height: | Size: 73 B |
BIN
theme/identica/images/icons/twotone/green/arrow-right.gif
Normal file
After Width: | Height: | Size: 74 B |
BIN
theme/identica/images/icons/twotone/green/arrow-up.gif
Normal file
After Width: | Height: | Size: 74 B |
BIN
theme/identica/images/icons/twotone/green/arrow-upleft.gif
Normal file
After Width: | Height: | Size: 75 B |
BIN
theme/identica/images/icons/twotone/green/arrow-upright.gif
Normal file
After Width: | Height: | Size: 73 B |
BIN
theme/identica/images/icons/twotone/green/back-forth.gif
Normal file
After Width: | Height: | Size: 79 B |
BIN
theme/identica/images/icons/twotone/green/bookmark.gif
Normal file
After Width: | Height: | Size: 82 B |
BIN
theme/identica/images/icons/twotone/green/bulb.gif
Normal file
After Width: | Height: | Size: 83 B |
BIN
theme/identica/images/icons/twotone/green/calendar.gif
Normal file
After Width: | Height: | Size: 83 B |
BIN
theme/identica/images/icons/twotone/green/calendar2.gif
Normal file
After Width: | Height: | Size: 79 B |
BIN
theme/identica/images/icons/twotone/green/camera.gif
Normal file
After Width: | Height: | Size: 79 B |
BIN
theme/identica/images/icons/twotone/green/cart.gif
Normal file
After Width: | Height: | Size: 86 B |
BIN
theme/identica/images/icons/twotone/green/caution.gif
Normal file
After Width: | Height: | Size: 82 B |
BIN
theme/identica/images/icons/twotone/green/chart.gif
Normal file
After Width: | Height: | Size: 81 B |
BIN
theme/identica/images/icons/twotone/green/checkmark.gif
Normal file
After Width: | Height: | Size: 76 B |
BIN
theme/identica/images/icons/twotone/green/clipboard.gif
Normal file
After Width: | Height: | Size: 80 B |
BIN
theme/identica/images/icons/twotone/green/clock.gif
Normal file
After Width: | Height: | Size: 81 B |
BIN
theme/identica/images/icons/twotone/green/closed-folder.gif
Normal file
After Width: | Height: | Size: 78 B |
BIN
theme/identica/images/icons/twotone/green/database.gif
Normal file
After Width: | Height: | Size: 82 B |
BIN
theme/identica/images/icons/twotone/green/diskette.gif
Normal file
After Width: | Height: | Size: 85 B |
BIN
theme/identica/images/icons/twotone/green/document.gif
Normal file
After Width: | Height: | Size: 81 B |
BIN
theme/identica/images/icons/twotone/green/double-arrow.gif
Normal file
After Width: | Height: | Size: 78 B |
BIN
theme/identica/images/icons/twotone/green/edit.gif
Normal file
After Width: | Height: | Size: 75 B |
BIN
theme/identica/images/icons/twotone/green/eject.gif
Normal file
After Width: | Height: | Size: 73 B |
BIN
theme/identica/images/icons/twotone/green/exclaim.gif
Normal file
After Width: | Height: | Size: 74 B |
BIN
theme/identica/images/icons/twotone/green/fastforward.gif
Normal file
After Width: | Height: | Size: 77 B |
BIN
theme/identica/images/icons/twotone/green/favourite.gif
Normal file
After Width: | Height: | Size: 73 B |
BIN
theme/identica/images/icons/twotone/green/flag.gif
Normal file
After Width: | Height: | Size: 80 B |
BIN
theme/identica/images/icons/twotone/green/graph.gif
Normal file
After Width: | Height: | Size: 82 B |
BIN
theme/identica/images/icons/twotone/green/grow.gif
Normal file
After Width: | Height: | Size: 90 B |
BIN
theme/identica/images/icons/twotone/green/headphones.gif
Normal file
After Width: | Height: | Size: 78 B |
BIN
theme/identica/images/icons/twotone/green/home.gif
Normal file
After Width: | Height: | Size: 81 B |
BIN
theme/identica/images/icons/twotone/green/hourglass.gif
Normal file
After Width: | Height: | Size: 85 B |
BIN
theme/identica/images/icons/twotone/green/info.gif
Normal file
After Width: | Height: | Size: 73 B |
BIN
theme/identica/images/icons/twotone/green/key.gif
Normal file
After Width: | Height: | Size: 76 B |
BIN
theme/identica/images/icons/twotone/green/lock.gif
Normal file
After Width: | Height: | Size: 83 B |
BIN
theme/identica/images/icons/twotone/green/mail.gif
Normal file
After Width: | Height: | Size: 82 B |
BIN
theme/identica/images/icons/twotone/green/move.gif
Normal file
After Width: | Height: | Size: 80 B |
BIN
theme/identica/images/icons/twotone/green/music.gif
Normal file
After Width: | Height: | Size: 80 B |
BIN
theme/identica/images/icons/twotone/green/news.gif
Normal file
After Width: | Height: | Size: 76 B |
BIN
theme/identica/images/icons/twotone/green/note.gif
Normal file
After Width: | Height: | Size: 82 B |
BIN
theme/identica/images/icons/twotone/green/open-folder.gif
Normal file
After Width: | Height: | Size: 79 B |
BIN
theme/identica/images/icons/twotone/green/paper-clip.gif
Normal file
After Width: | Height: | Size: 78 B |
BIN
theme/identica/images/icons/twotone/green/paper-clip2.gif
Normal file
After Width: | Height: | Size: 80 B |
BIN
theme/identica/images/icons/twotone/green/pause.gif
Normal file
After Width: | Height: | Size: 75 B |
BIN
theme/identica/images/icons/twotone/green/phone.gif
Normal file
After Width: | Height: | Size: 79 B |
BIN
theme/identica/images/icons/twotone/green/play.gif
Normal file
After Width: | Height: | Size: 75 B |
BIN
theme/identica/images/icons/twotone/green/plus.gif
Normal file
After Width: | Height: | Size: 74 B |
BIN
theme/identica/images/icons/twotone/green/print.gif
Normal file
After Width: | Height: | Size: 85 B |
BIN
theme/identica/images/icons/twotone/green/question-mark.gif
Normal file
After Width: | Height: | Size: 74 B |
BIN
theme/identica/images/icons/twotone/green/quote.gif
Normal file
After Width: | Height: | Size: 79 B |
BIN
theme/identica/images/icons/twotone/green/refresh.gif
Normal file
After Width: | Height: | Size: 82 B |
BIN
theme/identica/images/icons/twotone/green/rewind.gif
Normal file
After Width: | Height: | Size: 77 B |
BIN
theme/identica/images/icons/twotone/green/search.gif
Normal file
After Width: | Height: | Size: 76 B |
BIN
theme/identica/images/icons/twotone/green/shield.gif
Normal file
After Width: | Height: | Size: 85 B |
BIN
theme/identica/images/icons/twotone/green/skip-back.gif
Normal file
After Width: | Height: | Size: 76 B |
BIN
theme/identica/images/icons/twotone/green/skip.gif
Normal file
After Width: | Height: | Size: 78 B |
BIN
theme/identica/images/icons/twotone/green/skull.gif
Normal file
After Width: | Height: | Size: 85 B |
BIN
theme/identica/images/icons/twotone/green/statusbar.gif
Normal file
After Width: | Height: | Size: 82 B |
BIN
theme/identica/images/icons/twotone/green/stop.gif
Normal file
After Width: | Height: | Size: 72 B |
BIN
theme/identica/images/icons/twotone/green/template.gif
Normal file
After Width: | Height: | Size: 81 B |
BIN
theme/identica/images/icons/twotone/green/text-bigger.gif
Normal file
After Width: | Height: | Size: 82 B |
BIN
theme/identica/images/icons/twotone/green/text-smaller.gif
Normal file
After Width: | Height: | Size: 80 B |
BIN
theme/identica/images/icons/twotone/green/trash.gif
Normal file
After Width: | Height: | Size: 77 B |
BIN
theme/identica/images/icons/twotone/green/two-docs.gif
Normal file
After Width: | Height: | Size: 83 B |
BIN
theme/identica/images/icons/twotone/green/twotone.gif
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
theme/identica/images/icons/twotone/green/undo.gif
Normal file
After Width: | Height: | Size: 79 B |
BIN
theme/identica/images/icons/twotone/green/user.gif
Normal file
After Width: | Height: | Size: 77 B |
BIN
theme/identica/images/icons/twotone/green/vegetable.gif
Normal file
After Width: | Height: | Size: 82 B |
BIN
theme/identica/images/icons/twotone/green/x.gif
Normal file
After Width: | Height: | Size: 79 B |
BIN
theme/identica/images/icons/twotone/green/zoom-in.gif
Normal file
After Width: | Height: | Size: 86 B |
BIN
theme/identica/images/icons/twotone/green/zoom-out.gif
Normal file
After Width: | Height: | Size: 85 B |
Before Width: | Height: | Size: 818 B After Width: | Height: | Size: 2.0 KiB |