XE Core 패키지를 위해서 별도로 분리할 모듈들을 모두 제거
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6696 201d5d3c-b55e-5fd7-737f-ddc643e51545
|
|
@ -1,12 +0,0 @@
|
|||
<?php
|
||||
if(!defined("__ZBXE__")) exit();
|
||||
|
||||
/**
|
||||
* @file autolink.addon.php
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @brief 자동 링크 애드온
|
||||
**/
|
||||
if($called_position == 'after_module_proc' && Context::getResponseMethod()!="XMLRPC") {
|
||||
Context::addJsFile('./addons/autolink/autolink.js');
|
||||
}
|
||||
?>
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
|
||||
jQuery(function($) {
|
||||
var url_regx = /((http|https|ftp|news|telnet|irc):\/\/(([0-9a-z\-._~!$&'\(\)*+,;=:]|(%[0-9a-f]{2}))*\@)?((\[(((([0-9a-f]{1,4}:){6}([0-9a-f]{1,4}:[0-9a-f]{1,4})|(([0-9]|([1-9][0-9])|(1[0-9][0-9])|(2[0-4][0-9])|(25[0-5])){3}[0-9]|([1-9][0-9])|(1[0-9][0-9])|(2[0-4][0-9])|(25[0-5])))|(::([0-9a-f]{1,4}:){5}([0-9a-f]{1,4}:[0-9a-f]{1,4})|(([0-9]|([1-9][0-9])|(1[0-9][0-9])|(2[0-4][0-9])|(25[0-5])){3}[0-9]|([1-9][0-9])|(1[0-9][0-9])|(2[0-4][0-9])|(25[0-5])))|(([0-9a-f]{1,4})?::([0-9a-f]{1,4}:){4}([0-9a-f]{1,4}:[0-9a-f]{1,4})|(([0-9]|([1-9][0-9])|(1[0-9][0-9])|(2[0-4][0-9])|(25[0-5])){3}[0-9]|([1-9][0-9])|(1[0-9][0-9])|(2[0-4][0-9])|(25[0-5])))|((([0-9a-f]{1,4}:)?[0-9a-f]{1,4})?::([0-9a-f]{1,4}:){3}([0-9a-f]{1,4}:[0-9a-f]{1,4})|(([0-9]|([1-9][0-9])|(1[0-9][0-9])|(2[0-4][0-9])|(25[0-5])){3}[0-9]|([1-9][0-9])|(1[0-9][0-9])|(2[0-4][0-9])|(25[0-5])))|((([0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::([0-9a-f]{1,4}:){2}([0-9a-f]{1,4}:[0-9a-f]{1,4})|(([0-9]|([1-9][0-9])|(1[0-9][0-9])|(2[0-4][0-9])|(25[0-5])){3}[0-9]|([1-9][0-9])|(1[0-9][0-9])|(2[0-4][0-9])|(25[0-5])))|((([0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:([0-9a-f]{1,4}:[0-9a-f]{1,4})|(([0-9]|([1-9][0-9])|(1[0-9][0-9])|(2[0-4][0-9])|(25[0-5])){3}[0-9]|([1-9][0-9])|(1[0-9][0-9])|(2[0-4][0-9])|(25[0-5])))|((([0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::([0-9a-f]{1,4}:[0-9a-f]{1,4})|(([0-9]|([1-9][0-9])|(1[0-9][0-9])|(2[0-4][0-9])|(25[0-5])){3}[0-9]|([1-9][0-9])|(1[0-9][0-9])|(2[0-4][0-9])|(25[0-5])))|((([0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4})|((([0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::))|(v[0-9a-f]+.[0-9a-z\-._~!$&'\(\)*+,;=:]+))\])|(([0-9]|([1-9][0-9])|(1[0-9][0-9])|(2[0-4][0-9])|(25[0-5])){3}[0-9]|([1-9][0-9])|(1[0-9][0-9])|(2[0-4][0-9])|(25[0-5]))|(([0-9a-z\-._~!$&'\(\)*+,;=]|(%[0-9a-f]{2}))+))(:[0-9]*)?(\/([0-9a-z\-._~!$&'\(\)*+,;=:@]|(%[0-9a-f]{2}))*)*(\?([0-9a-z\-._~!$&'\(\)*+,;=:@\/\?]|(%[0-9a-f]{2}))*)?(#([0-9a-z\-._~!$&'\(\)*+,;=:@\/\?]|(%[0-9a-f]{2}))*)?)/i;
|
||||
|
||||
function replaceHrefLink(obj) {
|
||||
var obj_list = obj.childNodes;
|
||||
|
||||
for(var i = 0; i < obj_list.length; ++i) {
|
||||
var obj = obj_list[i];
|
||||
var pObj = obj.parentNode;
|
||||
if(!pObj) continue;
|
||||
|
||||
var pN = pObj.nodeName.toLowerCase();
|
||||
if($.inArray(pN, ['a', 'pre', 'xml', 'textarea', 'input', 'select', 'option', 'code', 'script', 'style']) != -1) continue;
|
||||
|
||||
if(obj.nodeType == 3 && obj.length >= 10) {
|
||||
var content = obj.nodeValue;
|
||||
if(!/(http|https|ftp|news|telnet|irc):\/\//i.test(content)) continue;
|
||||
|
||||
content = content.replace(/</g, '<');
|
||||
content = content.replace(/>/g, '>');
|
||||
content = content.replace(url_regx, '<a href="$1" onclick="window.open(this.href); return false;">$1</a>');
|
||||
|
||||
$(obj).replaceWith(content);
|
||||
delete(content);
|
||||
|
||||
} else if(obj.nodeType == 1 && obj.childNodes.length) {
|
||||
replaceHrefLink(obj);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$('.xe_content').each(function() {
|
||||
replaceHrefLink(this);
|
||||
});
|
||||
});
|
||||
|
|
@ -1,48 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<addon version="0.2">
|
||||
<title xml:lang="ko">자동 링크 애드온</title>
|
||||
<title xml:lang="jp">自動リンクアドオン</title>
|
||||
<title xml:lang="en">Auto Link</title>
|
||||
<title xml:lang="zh-CN">自动链接插件</title>
|
||||
<title xml:lang="es">auto vínculo addon</title>
|
||||
<title xml:lang="ru">авто ссылка аддон</title>
|
||||
<title xml:lang="ge">Auto-Link Addon</title>
|
||||
<title xml:lang="zh-TW">自動連結</title>
|
||||
<description xml:lang="ko">
|
||||
글과 댓글의 내용 중 URL 문자열에 링크를 걸어주는 애드온입니다.
|
||||
</description>
|
||||
<description xml:lang="jp">
|
||||
書き込み本文とコメントに登録された内容の中、httpで始まる一般文字列に自動にリンクを貼り付け、そのリンクにマウスオーバすると、別ウィンドウ、または同一ウィンドウに開くメニュが現れるアドオンです。
|
||||
</description>
|
||||
<description xml:lang="en">
|
||||
This addon makes a link to a string that starts with http.
|
||||
</description>
|
||||
<description xml:lang="zh-CN">
|
||||
主题及评论中以http开始的字符串,自动转换为链接。并且鼠标移到链接上方时,将出现可选(新窗/本页面)提示框。
|
||||
</description>
|
||||
<description xml:lang="es">
|
||||
Los comentarios que comienzan con http naeyongjung tema común de la cadena para vincular automáticamente a colgar el puntero del ratón sobre cada uno de los vínculos y saechang Ciudad y aparecen en el menú de add-on de decoración.
|
||||
</description>
|
||||
<description xml:lang="ru">
|
||||
Комментарии, которые начинаются с http naeyongjung темой общей строки автоматически ссылку повесить мышь над каждой ссылке и saechang Сити и появляться на меню добавить-на украшения.
|
||||
</description>
|
||||
<description xml:lang="ge">
|
||||
Kommentare beginnen mit http naeyongjung Thema der gemeinsamen String automatisch Link zu hängen Sie mit der Maus über die einzelnen Links und saechang Stadt und auf dem Menü des Add-On Dekoration.
|
||||
</description>
|
||||
<description xml:lang="zh-TW">
|
||||
是種可將主題和評論內容中的URL網址字串自動轉換成連結的附加元件。
|
||||
</description>
|
||||
<version>0.1</version>
|
||||
<date>2008-04-22</date>
|
||||
|
||||
<author email_address="zero@zeroboard.com" link="http://blog.nzeo.com">
|
||||
<name xml:lang="ko">zero</name>
|
||||
<name xml:lang="jp">zero</name>
|
||||
<name xml:lang="en">zero</name>
|
||||
<name xml:lang="zh-CN">zero</name>
|
||||
<name xml:lang="es">zero</name>
|
||||
<name xml:lang="ru">zero</name>
|
||||
<name xml:lang="ge">zero</name>
|
||||
<name xml:lang="zh-TW">zero</name>
|
||||
</author>
|
||||
</addon>
|
||||
|
|
@ -1,166 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<addon version="0.2">
|
||||
<title xml:lang="ko">키워드 링크 애드온</title>
|
||||
<title xml:lang="en">Keyword Link Addon</title>
|
||||
<title xml:lang="zh-CN">关键字链接</title>
|
||||
<title xml:lang="zh-TW">關鍵字連結</title>
|
||||
<title xml:lang="jp">キーワードリンクアドオン</title>
|
||||
<description xml:lang="ko">
|
||||
게시글과 댓글의 내용중 등록된 키워드에 링크를 걸어주는 애드온입니다.
|
||||
키워드는 콤마(,)로 구분하여 여러개 등록할 수 있습니다.
|
||||
먼저 등록된 키워드가 우선순위를 갖습니다.
|
||||
</description>
|
||||
<description xml:lang="en">
|
||||
When this addon is enabled, add an hyperlink to the registered keyword
|
||||
appeared in contents of documents or comments.
|
||||
You may register multiple keywords seperated by comma(,).
|
||||
</description>
|
||||
<description xml:lang="zh-CN">
|
||||
此插件将自动给主题正文及评论中的关键字添加相应的预设链接。
|
||||
多个关键字可以用逗号(,)来区分输入。
|
||||
多个关键字的优先级以输入顺序为准。
|
||||
</description>
|
||||
<description xml:lang="zh-TW">
|
||||
將文章與評論中和關鍵字相對應的文字自動作連結。
|
||||
可用逗號(,)區隔多個關鍵字。
|
||||
關鍵字的優先順序以第一關鍵字為主。
|
||||
</description>
|
||||
<description xml:lang="jp">
|
||||
本文とコメントの内容中、登録されたキーワードにリンクを貼りつける機能を行います。
|
||||
キーワードは半角コンマ(,)区切りで複数登録が出来ます。
|
||||
先に登録されたキーワードが優先度が高いです。
|
||||
</description>
|
||||
<version>0.1</version>
|
||||
<date>2008-12-20</date>
|
||||
<author email_address="sol@ngleader.com" link="http://ngleader.tistory.com">
|
||||
<name xml:lang="ko">SOL</name>
|
||||
<name xml:lang="jp">SOL</name>
|
||||
<name xml:lang="en">SOL</name>
|
||||
<name xml:lang="zh-CN">SOL</name>
|
||||
<name xml:lang="es">SOL</name>
|
||||
<name xml:lang="ru">SOL</name>
|
||||
<name xml:lang="ge">SOL</name>
|
||||
<name xml:lang="zh-TW">SOL</name>
|
||||
</author>
|
||||
<extra_vars>
|
||||
<var name="cssquery">
|
||||
<title xml:lang="ko">cssquery</title>
|
||||
<title xml:lang="zh-CN">cssquery</title>
|
||||
<title xml:lang="zh-TW">cssquery</title>
|
||||
<title xml:lang="jp">cssquery</title>
|
||||
<title xml:lang="en">cssquery</title>
|
||||
<description xml:lang="ko">치환할 부분의 jQuery cssquery입니다.
|
||||
xe_board 게시판 스킨이면 공백으로 두면 됩니다.</description>
|
||||
<description xml:lang="zh-TW">jQuery cssquery的部份可以置換。
|
||||
如果是使用xe_board討論板面板,請留白。</description>
|
||||
<description xml:lang="zh-CN">替换部分的jQuery cssquery。
|
||||
如果正使用的是官方默认皮肤(xe_board),此处留空即可。</description>
|
||||
<description xml:lang="jp">置換する部分のjQuery cssqueryです。
|
||||
「xe_board掲示板スキン」の場合は空白にして下さい。</description>
|
||||
<description xml:lang="en">jQuery cssquery for the part to be substituted.
|
||||
You may leave blank for xe_board skin.</description>
|
||||
</var>
|
||||
|
||||
<var name="reg_type" type="select">
|
||||
<title xml:lang="ko">링크 방법</title>
|
||||
<title xml:lang="zh-CN">链接方式</title>
|
||||
<title xml:lang="zh-TW">連結方式</title>
|
||||
<title xml:lang="jp">リンクの貼りつけ方</title>
|
||||
<title xml:lang="en">The way to make a link</title>
|
||||
<description xml:lang="ko"> 키워드가 여러개 있을때 "첫번째 키워드"에만 링크를 걸 것인지 "모든 키워드"에 걸 것인지 선택합니다.
|
||||
</description>
|
||||
<description xml:lang="zh-CN">有多个预设关键字时,在此可以指定链接方式。
|
||||
</description>
|
||||
<description xml:lang="zh-TW"> 키워드가 여러개 있을때 "첫번째 키워드"에만 링크를 걸 것인지 "모든 키워드"에 걸 것인지 선택합니다.
|
||||
</description>
|
||||
<description xml:lang="jp"> 複数のキーワードの場合、「最初のキーワード」のみ、もしくは「全てのキーワード」にリンクを貼りつけるかを設定します。
|
||||
</description>
|
||||
<description xml:lang="en">For the multiple keywords, choose if make a link to the first keyword, or all the keywords</description>
|
||||
<options value="">
|
||||
<title xml:lang="ko">첫번째 키워드</title>
|
||||
<title xml:lang="zh-CN">首个关键字</title>
|
||||
<title xml:lang="zh-TW">第一關鍵字</title>
|
||||
<title xml:lang="jp">最初のキーワード</title>
|
||||
<title xml:lang="en">First keyword</title>
|
||||
</options>
|
||||
<options value="g">
|
||||
<title xml:lang="ko">모든 키워드</title>
|
||||
<title xml:lang="zh-CN">所有关键字</title>
|
||||
<title xml:lang="zh-TW">所有關鍵字</title>
|
||||
<title xml:lang="jp">全てのキーワード</title>
|
||||
<title xml:lang="en">All keywords</title>
|
||||
</options>
|
||||
</var>
|
||||
|
||||
<var name="keyword01">
|
||||
<title xml:lang="ko">키워드</title>
|
||||
<title xml:lang="zh-CN">关键字</title>
|
||||
<title xml:lang="zh-TW">關鍵字</title>
|
||||
<title xml:lang="jp">キーワード</title>
|
||||
<title xml:lang="en">Keyword</title>
|
||||
</var>
|
||||
<var name="url01">
|
||||
<title xml:lang="ko">링크</title>
|
||||
<title xml:lang="zh-CN">链接</title>
|
||||
<title xml:lang="zh-TW">連結</title>
|
||||
<title xml:lang="jp">リンク</title>
|
||||
<title xml:lang="en">Link</title>
|
||||
</var>
|
||||
<var name="keyword02">
|
||||
<title xml:lang="ko">키워드</title>
|
||||
<title xml:lang="zh-CN">关键字</title>
|
||||
<title xml:lang="zh-TW">關鍵字</title>
|
||||
<title xml:lang="jp">キーワード</title>
|
||||
<title xml:lang="en">Keyword</title>
|
||||
</var>
|
||||
<var name="url02">
|
||||
<title xml:lang="ko">링크</title>
|
||||
<title xml:lang="zh-CN">链接</title>
|
||||
<title xml:lang="zh-TW">連結</title>
|
||||
<title xml:lang="jp">リンク</title>
|
||||
<title xml:lang="en">Link</title>
|
||||
</var>
|
||||
<var name="keyword03">
|
||||
<title xml:lang="ko">키워드</title>
|
||||
<title xml:lang="zh-CN">关键字</title>
|
||||
<title xml:lang="zh-TW">關鍵字</title>
|
||||
<title xml:lang="jp">キーワード</title>
|
||||
<title xml:lang="en">Keyword</title>
|
||||
</var>
|
||||
<var name="url03">
|
||||
<title xml:lang="ko">링크</title>
|
||||
<title xml:lang="zh-CN">链接</title>
|
||||
<title xml:lang="zh-TW">連結</title>
|
||||
<title xml:lang="jp">リンク</title>
|
||||
<title xml:lang="en">Link</title>
|
||||
</var>
|
||||
<var name="keyword04">
|
||||
<title xml:lang="ko">키워드</title>
|
||||
<title xml:lang="zh-CN">关键字</title>
|
||||
<title xml:lang="zh-TW">關鍵字</title>
|
||||
<title xml:lang="jp">キーワード</title>
|
||||
<title xml:lang="en">Keyword</title>
|
||||
</var>
|
||||
<var name="url04">
|
||||
<title xml:lang="ko">링크</title>
|
||||
<title xml:lang="zh-CN">链接</title>
|
||||
<title xml:lang="zh-TW">連結</title>
|
||||
<title xml:lang="jp">リンク</title>
|
||||
<title xml:lang="en">Link</title>
|
||||
</var>
|
||||
<var name="keyword05">
|
||||
<title xml:lang="ko">키워드</title>
|
||||
<title xml:lang="zh-CN">关键字</title>
|
||||
<title xml:lang="zh-TW">關鍵字</title>
|
||||
<title xml:lang="jp">キーワード</title>
|
||||
<title xml:lang="en">Keyword</title>
|
||||
</var>
|
||||
<var name="url05">
|
||||
<title xml:lang="ko">링크</title>
|
||||
<title xml:lang="zh-CN">链接</title>
|
||||
<title xml:lang="zh-TW">連結</title>
|
||||
<title xml:lang="jp">リンク</title>
|
||||
<title xml:lang="en">Link</title>
|
||||
</var>
|
||||
</extra_vars>
|
||||
</addon>
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
<?php
|
||||
if(!defined("__ZBXE__")) exit();
|
||||
|
||||
/**
|
||||
* @file keyword_link.addon.php
|
||||
* @author sol (sol@ngleader.com)
|
||||
* @brief 키워드 링크 애드온
|
||||
**/
|
||||
if($called_position == 'after_module_proc' && Context::getResponseMethod()!="XMLRPC" && Context::getResponseMethod()!="JSON" ) {
|
||||
$json = array();
|
||||
$arg = array();
|
||||
for($i=1;$i<=5;$i++){
|
||||
$arg = array();
|
||||
$ii = sprintf("%02d",$i);
|
||||
$keyword = $addon_info->{"keyword".$ii};
|
||||
$url = $addon_info->{"url".$ii};
|
||||
if($keyword && $url){
|
||||
$arg['url'] = $url;
|
||||
$keyword = explode(",",$keyword);
|
||||
for($j=0,$c=count($keyword);$j<$c;$j++){
|
||||
if(trim($keyword[$j]) == "") continue;
|
||||
$arg['keyword'] = trim($keyword[$j]);
|
||||
$json[] = $arg;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if(count($json) > 0){
|
||||
$addon_keyword_link = json_encode2($json);
|
||||
Context::addHtmlHeader("<script type=\"text/javascript\">//<![CDATA[\nvar addon_keyword_link={$addon_keyword_link};\nvar addon_keyword_link_cssquery='{$addon_info->cssquery}';\nvar addon_keyword_link_reg_type='{$addon_info->reg_type}';\n//]]></script>");
|
||||
Context::addJsFile('./addons/keyword_link/keyword_link.js');
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
(function($){
|
||||
$(function(){
|
||||
if(addon_keyword_link.length > 0){
|
||||
if(!addon_keyword_link_cssquery) addon_keyword_link_cssquery= '.xe_content';
|
||||
$(addon_keyword_link_cssquery).each(function(){
|
||||
var content = $(this).html();
|
||||
for(var i=0,c=addon_keyword_link.length;i<c;i++){
|
||||
var re = new RegExp(addon_keyword_link[i].keyword + '(?! *<\/a)',addon_keyword_link_reg_type);
|
||||
content = content.replace(re,'<a href="'+addon_keyword_link[i].url+'">' + addon_keyword_link[i].keyword + '</a>');
|
||||
}
|
||||
$(this).html(content);
|
||||
});
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<addon version="0.2">
|
||||
<title xml:lang="ko">LemonPen XE 애드온</title>
|
||||
<title xml:lang="zh-CN">LemonPen XE插件</title>
|
||||
<title xml:lang="en">LemonPen XE Addon</title>
|
||||
<title xml:lang="ge">LemonPen XE Addon</title>
|
||||
<title xml:lang="es">LemonPen XE addon</title>
|
||||
<title xml:lang="ru">LemonPen XE Addon</title>
|
||||
<title xml:lang="jp">LemonPen XE アドオン</title>
|
||||
<title xml:lang="zh-TW">LemonPen XE</title>
|
||||
<description xml:lang="ko">활성화 하시면 레몬펜을 사이트에 달 수 있습니다.</description>
|
||||
<description xml:lang="zh-CN">要想在网站使用LemonPen插件,请将此插件激活。</description>
|
||||
<description xml:lang="ge">Sie können LemonPen auf der Website, wenn Sie diese aktivieren.</description>
|
||||
<description xml:lang="en">You can insert LemonPen to the site when you enable this.</description>
|
||||
<description xml:lang="es">Puede insertar LemonPen al sitio cuando este se activa.</description>
|
||||
<description xml:lang="ru">Вы можете вставить LemonPen к месту, когда вы позволили это.</description>
|
||||
<description xml:lang="jp">機能をオンにすると、サイト上でレモンペンを使います。 (LemonPen:Openmaru社のサービス)</description>
|
||||
<description xml:lang="zh-TW">想要在網站使用LemonPen,請將其啟用。</description>
|
||||
<version>0.1</version>
|
||||
<date>2007-12-10</date>
|
||||
|
||||
<author email_address="zero@zeroboard.com" link="http://blog.nzeo.com">
|
||||
<name xml:lang="ko">zero</name>
|
||||
<name xml:lang="zh-CN">zero</name>
|
||||
<name xml:lang="en">zero</name>
|
||||
<name xml:lang="ge">zero</name>
|
||||
<name xml:lang="es">zero</name>
|
||||
<name xml:lang="ru">zero</name>
|
||||
<name xml:lang="jp">zero</name>
|
||||
<name xml:lang="zh-TW">zero</name>
|
||||
</author>
|
||||
|
||||
<extra_vars>
|
||||
<var name="sid">
|
||||
<title xml:lang="ko">sid</title>
|
||||
<title xml:lang="zh-CN">sid</title>
|
||||
<title xml:lang="en">sid</title>
|
||||
<title xml:lang="ge">sid</title>
|
||||
<title xml:lang="es">sid</title>
|
||||
<title xml:lang="ru">sid</title>
|
||||
<title xml:lang="jp">sid</title>
|
||||
<title xml:lang="zh-TW">sid</title>
|
||||
<description xml:lang="ko">레몬펜에서 사이트 등록시 발급받은 sid값을 입력해주세요.</description>
|
||||
<description xml:lang="zh-CN">请输入注册LemonPen网站时,发放的sid值。</description>
|
||||
<description xml:lang="en">Please input sid value that you got after registering at the LemonPen website.</description>
|
||||
<description xml:lang="ge">Bitte geben Sie Ihre SID-Wert ein, die Sie nach Registrierung auf der Website LemonPen.</description>
|
||||
<description xml:lang="es">Por favor, de entrada sid valor que había que hacer después de registrarse en el sitio web LemonPen.</description>
|
||||
<description xml:lang="ru">Введите замороженный ценности, которые вы получили после регистрации на сайте LemonPen.</description>
|
||||
<description xml:lang="jp">レモンペンのサイトから発行されたsid値を入力して下さい。 (LemonPen:Openmaru社のサービス)</description>
|
||||
<description xml:lang="zh-TW">請輸入在LemonPen網站註冊時,所給予的sid值。</description>
|
||||
</var>
|
||||
</extra_vars>
|
||||
</addon>
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
<?php
|
||||
if(!defined("__ZBXE__")) exit();
|
||||
|
||||
/**
|
||||
* @file lemonpen.addon.php
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @brief LemonPen addon
|
||||
* 스프링노트의 레몬펜을 사이트에 설치하는 애드온입니다
|
||||
**/
|
||||
|
||||
if(Context::getResponseMethod()=="XMLRPC") return;
|
||||
|
||||
// 모듈의 실행 이후에 script를 추가함
|
||||
if(Context::get('module')!='admin' && $called_position == 'after_module_proc' ) {
|
||||
if($this->getLayoutFile() != 'popup_layout.html') {
|
||||
$sid = $addon_info->sid;
|
||||
if($sid) {
|
||||
Context::addHtmlFooter(sprintf('<script src="http://script.lemonpen.com/site/lemonpen.js?sid=%s" type="text/javascript" charset="UTF-8"></script>', $sid));
|
||||
$GLOBALS['__lemonpen_is_called__'] = true;
|
||||
}
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
// XE의 문서와 permant link를 레몬펜의 규약에 맞춰서 출력
|
||||
if($GLOBALS['__lemonpen_is_called__'] && $called_position == 'before_display_content') {
|
||||
// 글 본문을 링크
|
||||
$output = preg_replace('/<div class="document_([0-9]+)_([0-9]+) xe_content">/is','<div class="document_$1_$2 xe_content hentry"><a href="'.getUrl('','document_srl',"$1").'" rel="bookmark" style="display:none;">'.getUrl('','document_srl',"$1").'</a>', $output);
|
||||
|
||||
// 댓글 본문을 링크
|
||||
$output = preg_replace('/<div class="comment_([0-9]+)_([0-9]+) xe_content">/is','<div class="comment_$1_$2 xe_content hentry"><a href="'.getUrl('','document_srl',"$1").'" rel="bookmark" style="display:none;">'.getUrl('','document_srl',"$1").'</a>', $output);
|
||||
}
|
||||
?>
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<addon version="0.2">
|
||||
<title xml:lang="ko">플래닛 Bookmark 애드온</title>
|
||||
<title xml:lang="en">Planet Bookmark Add-Ons</title>
|
||||
<title xml:lang="es">Guardar planeta Add-Ons</title>
|
||||
<title xml:lang="zh-CN">微博收藏插件</title>
|
||||
<title xml:lang="zh-TW">微型部落格書籤</title>
|
||||
<title xml:lang="jp">プラネットブックマーク(Planet Bookmark)アドオン</title>
|
||||
<description xml:lang="ko">
|
||||
플래닛 Bookmark 애드온
|
||||
</description>
|
||||
<description xml:lang="en">
|
||||
Planet Bookmark Add-Ons
|
||||
</description>
|
||||
<description xml:lang="es">
|
||||
Guardar planeta Add-Ons
|
||||
</description>
|
||||
<description xml:lang="zh-CN">
|
||||
XE微博收藏插件。
|
||||
</description>
|
||||
<description xml:lang="zh-TW">
|
||||
微型部落格書籤功能
|
||||
</description>
|
||||
<description xml:lang="jp">
|
||||
プラネットブックマーク(Planet Bookmark)アドオン
|
||||
</description>
|
||||
<version>0.1</version>
|
||||
<date>2008-10-31</date>
|
||||
|
||||
<author email_address="zero@zeroboard.com" link="http://blog.nzeo.com">
|
||||
<name xml:lang="ko">zero</name>
|
||||
<name xml:lang="es">zero</name>
|
||||
<name xml:lang="en">zero</name>
|
||||
<name xml:lang="jp">zero</name>
|
||||
<name xml:lang="zh-CN">zero</name>
|
||||
<name xml:lang="zh-TW">zero</name>
|
||||
</author>
|
||||
</addon>
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
<?php
|
||||
if(!defined("__ZBXE__")) exit();
|
||||
|
||||
/**
|
||||
* @file planet_todo.addon.php
|
||||
* @author SOL군 (sol@ngleader.com)
|
||||
* @brief
|
||||
**/
|
||||
if($called_position == 'after_module_proc' && Context::getResponseMethod()!="XMLRPC" && Context::getResponseMethod()!="JSON") {
|
||||
$planet = Context::get('planet');
|
||||
if(!$planet || !$planet->isMyPlanet()) return;
|
||||
$oPlanetModel = &getModel('planet');
|
||||
$countBookmark = $oPlanetModel->getTagSearchResultCount($planet->getModuleSrl(),'bookmark');
|
||||
Context::addHtmlHeader("<script type=\"text/javascript\">//<![CDATA[\nvar planet_bookmark_count=".( (int)$countBookmark).";\n//]]></script>");
|
||||
Context::addJsFile('./addons/planet_bookmark/planet_bookmark.js');
|
||||
}
|
||||
?>
|
||||
|
|
@ -1,96 +0,0 @@
|
|||
function planetBookmarkTab(){
|
||||
if($('planet_tab')) $('planet_tab').innerHTML += '<ul id="planetBookmarkTab" class="exTab"><li><a href="#planet_tab" onclick="planetShowBookmarkList(this);">Bookmark<sup><span id="planet_bookmark_count">'+ planet_bookmark_count + '</span></a></li></ul>';
|
||||
}
|
||||
xAddEventListener(window,'load',planetBookmarkTab);
|
||||
|
||||
function planetShowBookmarkList(o){
|
||||
$ElementList('#planetBookmarkTab li').removeClass('active');
|
||||
$Element(o).parent().addClass('active');
|
||||
$ElementList('#planet_myTab li').removeClass('active');
|
||||
planetBookmarkReload();
|
||||
}
|
||||
|
||||
function planetBookmarkReload(){
|
||||
$('commentList').innerHTML = '<div class="commentHeader"><h3 class="exTitle">Bookmark</h3><span class="button strong black todoWrite"><button type="button" onclick="showWritePostBookmark()">Bookmark</button></span></div>\n<div id="bookmarkList" class="commentBody todoManager"></div>\n<div id="bookmarkList_page" class="pagination a1"></div>\n\n<span class="tl"></span><span class="tr"></span><span class="bl"></span><span class="br"></span>\n';
|
||||
planetGetBookmark(0);
|
||||
}
|
||||
|
||||
function planetGetBookmark(page){
|
||||
$('bookmarkList').innerHTML ='';
|
||||
var response_tags = new Array('error','message','contentList','pageNavigation');
|
||||
exec_xml('planet','dispPlanetContentTagSearch',{keyword:'bookmark',page:page,mid:current_mid},completeGetBookmark,response_tags);
|
||||
}
|
||||
|
||||
function completeGetBookmark(ret_obj,response_tags, params, fo_obj) {
|
||||
if(ret_obj['error'] == 0 && ret_obj.contentList){
|
||||
var o = new Array();
|
||||
var it = new Array();
|
||||
var items = ret_obj['contentList']['item'];
|
||||
|
||||
if(typeof(items[0]) == 'undefined') {
|
||||
it[0] = items;
|
||||
} else {
|
||||
it = items;
|
||||
}
|
||||
|
||||
o.push('<ul>');
|
||||
for(var i=0,c=it.length;i<c;i++){
|
||||
var tag = $A();
|
||||
if(typeof(it[i]['tag_list']['item'])=='string'){
|
||||
tag.push(it[i]['tag_list']['item']);
|
||||
}else{
|
||||
tag = $A(it[i]['tag_list']['item']);
|
||||
}
|
||||
|
||||
tag = tag.filter(function(v){return !/bookmark/i.test(v);});
|
||||
tag = tag.$value().join(',');
|
||||
|
||||
o.push('<li>');
|
||||
o.push(it[i]['content']);
|
||||
if(tag) {
|
||||
o.push('<div class="tag">');
|
||||
o.push('<img src="'+request_uri+'addons/planet_bookmark/tag.gif" title="tag" />');
|
||||
o.push(tag);
|
||||
o.push('</div>');
|
||||
}
|
||||
o.push("</li>\n");
|
||||
}
|
||||
|
||||
o.push('</ul>');
|
||||
o.push('<span class="tl"></span><span class="tr"></span><span class="bl"></span><span class="br"></span>');
|
||||
|
||||
$('bookmarkList').innerHTML = o.join('');
|
||||
|
||||
var pageNavigation = ret_obj['pageNavigation'];
|
||||
$('planet_bookmark_count').innerHTML = pageNavigation.total_count ? pageNavigation.total_count : 0;
|
||||
|
||||
if(pageNavigation.total_page > 1){
|
||||
|
||||
var str = "";
|
||||
if(pageNavigation.first_page>1) str += '<a class="prev" href="#planet_tab" onclick="planetGetBookmark('+(pageNavigation.first_page-1)+');">Prev</a>';
|
||||
|
||||
for(var i=pageNavigation.first_page;i<=pageNavigation.page_count;i++){
|
||||
if(i== pageNavigation.cur_page){
|
||||
str += "<strong>"+i+"</strong>";
|
||||
}else{
|
||||
str += '<a href="#planet_tab" onclick="planetGetBookmark('+i+');">'+ i +'</a>';
|
||||
}
|
||||
}
|
||||
|
||||
if(pageNavigation.total_page != pageNavigation.last_page) str += '<a class="next" href="#planet_tab" onclick="planetGetBookmark('+(pageNavigation.last_page+1)+');">next</a>';
|
||||
$('bookmarkList_page').innerHTML = str;
|
||||
}
|
||||
window.location.href="#planet_tab";
|
||||
}else{
|
||||
$('planet_bookmark_count').innerHTML = 0;
|
||||
}
|
||||
}
|
||||
|
||||
function showWritePostBookmark(tag){
|
||||
tag = tag||'bookmark';
|
||||
$Element($('writePostForm').about_tag).hide();
|
||||
$Element($('writePostForm').content_tag).show();
|
||||
$('writePostForm').content_tag.value = tag;
|
||||
window.document.location.href="#writePost";
|
||||
showWritePost();
|
||||
}
|
||||
|
Before Width: | Height: | Size: 205 B |
|
|
@ -1,33 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<addon version="0.2">
|
||||
<title xml:lang="ko">플래닛 TODO 애드온</title>
|
||||
<title xml:lang="en">Planet TODO</title>
|
||||
<title xml:lang="zh-CN">微博TODO插件</title>
|
||||
<title xml:lang="zh-TW">微型部落格 TODO 功能</title>
|
||||
<title xml:lang="jp">プラネット(Planet)TODOアドオン</title>
|
||||
<description xml:lang="ko">
|
||||
플래닛 TODO 애드온
|
||||
</description>
|
||||
<description xml:lang="en">
|
||||
This is Planet TODO addon.
|
||||
</description>
|
||||
<description xml:lang="zh-CN">
|
||||
XE微博TODO插件。
|
||||
</description>
|
||||
<description xml:lang="zh-TW">
|
||||
微型部落格 TODO 功能
|
||||
</description>
|
||||
<description xml:lang="jp">
|
||||
プラネット(Planet)TODOアドオン
|
||||
</description>
|
||||
<version>0.1</version>
|
||||
<date>2008-10-31</date>
|
||||
|
||||
<author email_address="sol@ngleader.com" link="http://ngleader.com">
|
||||
<name xml:lang="ko">SOL군</name>
|
||||
<name xml:lang="jp">SOLgun</name>
|
||||
<name xml:lang="en">SOLgun</name>
|
||||
<name xml:lang="zh-CN">SOLgun</name>
|
||||
<name xml:lang="zh-TW">SOLgun</name>
|
||||
</author>
|
||||
</addon>
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
<?php
|
||||
if(!defined("__ZBXE__")) exit();
|
||||
|
||||
/**
|
||||
* @file planet_todo.addon.php
|
||||
* @author SOL군 (sol@ngleader.com)
|
||||
* @brief
|
||||
**/
|
||||
if($called_position == 'after_module_proc' && Context::getResponseMethod()!="XMLRPC" && Context::getResponseMethod()!="JSON") {
|
||||
$planet = Context::get('planet');
|
||||
if(!$planet || !$planet->isMyPlanet()) return;
|
||||
|
||||
$oPlanetModel = &getModel('planet');
|
||||
$countTodo = $oPlanetModel->getTagSearchResultCount($planet->getModuleSrl(),'todo');
|
||||
$countDone = $oPlanetModel->getTagSearchResultCount($planet->getModuleSrl(),'done');
|
||||
|
||||
Context::addHtmlHeader("<script type=\"text/javascript\">//<![CDATA[\nvar planet_todo_count={todo:".$countTodo.",done:".$countDone."};\n//]]></script>");
|
||||
Context::addJsFile('./addons/planet_todo/planet_todo.js');
|
||||
}
|
||||
?>
|
||||
|
|
@ -1,218 +0,0 @@
|
|||
function planetTab(){
|
||||
planet_todo_count.todo = planet_todo_count.todo ? planet_todo_count.todo:0;
|
||||
planet_todo_count.done = planet_todo_count.done ? planet_todo_count.done:0;
|
||||
if($('planet_tab')) $('planet_tab').innerHTML += '<ul id="planetex_Tab" class="exTab"><li><a href="#planet_tab" onclick="planet_showTodoList(this);">ToDo<sup><span id="planet_todo_count">'+ planet_todo_count.todo + '</span>/<span id="planet_done_count">' + planet_todo_count.done + '</span></sup></a></li></ul>';
|
||||
}
|
||||
xAddEventListener(window,'load',planetTab);
|
||||
|
||||
function planetTabOff(){
|
||||
$Element('planetex_Tab').leave();
|
||||
}
|
||||
|
||||
function planet_showTodoList(o){
|
||||
$ElementList('#planetex_Tab li').removeClass('active');
|
||||
$Element(o).parent().addClass('active');
|
||||
$ElementList('#planet_myTab li').removeClass('active');
|
||||
|
||||
planet_reload_todo();
|
||||
}
|
||||
|
||||
function planet_reload_todo(){
|
||||
$('commentList').innerHTML = '<div class="commentHeader"><h3 class="exTitle">TODO</h3><span class="button strong black todoWrite"><button type="button" onclick="showWritePostTodo()">TODO Post</button></span></div>\n<div id="todoList" class="commentBody todoManager"></div>\n<div id="todoList_page" class="pagination a1"></div>\n<div class="commentHeader"><h3 class="exTitle">DONE</h3></div>\n<div id="doneList" class="commentBody todoManager"></div>\n<div id="doneList_page" class="pagination a1"></div>\n<span class="tl"></span><span class="tr"></span><span class="bl"></span><span class="br"></span>\n';
|
||||
planet_getTodo(1);
|
||||
planet_getDone(1);
|
||||
}
|
||||
|
||||
function planet_getTodo(page){
|
||||
$('todoList').innerHTML ='';
|
||||
_getPlanetTagSeachResult('todo',page,result_planet_getTodo);
|
||||
}
|
||||
|
||||
function planet_getDone(page){
|
||||
$('doneList').innerHTML ='';
|
||||
_getPlanetTagSeachResult('done',page,result_planet_getDone);
|
||||
}
|
||||
|
||||
function _getPlanetTagSeachResult(tag,page,func){
|
||||
var response_tags = new Array('error','message','contentList','pageNavigation');
|
||||
exec_xml('planet','dispPlanetContentTagSearch',{keyword:tag,page:page,mid:current_mid},func,response_tags);
|
||||
}
|
||||
|
||||
function result_planet_getTodo(ret_obj,response_tags, params, fo_obj) {
|
||||
|
||||
if(ret_obj['error'] == 0 && ret_obj.contentList){
|
||||
var o = new Array();
|
||||
var it = new Array();
|
||||
var items = ret_obj['contentList']['item'];
|
||||
|
||||
if(typeof(items[0]) == 'undefined'){
|
||||
it[0] = items;
|
||||
}else{
|
||||
it = items;
|
||||
}
|
||||
|
||||
o.push('<ul>');
|
||||
for(var i=0,c=it.length;i<c;i++){
|
||||
|
||||
it[i]['regdate'] += '';
|
||||
it[i]['regdate'] = it[i]['regdate'].substr(0,4) + '/' + it[i]['regdate'].substr(4,2) + '/' + it[i]['regdate'].substr(6,2);
|
||||
|
||||
var tag = $A();
|
||||
if(typeof(it[i]['tag_list']['item'])=='string'){
|
||||
tag.push(it[i]['tag_list']['item']);
|
||||
}else{
|
||||
tag = $A(it[i]['tag_list']['item']);
|
||||
}
|
||||
|
||||
tag = tag.filter(function(v){return !/todo/i.test(v);});
|
||||
tag.push('done');
|
||||
tag = tag.$value().join(',');
|
||||
|
||||
o.push('<input type="hidden" id="tag:'+it[i]['document_srl']+'" value="'+tag+'" /><li>');
|
||||
o.push(it[i]['content']);
|
||||
o.push('<span class="button small"><img src="./common/tpl/images/iconCheckGreen.gif" alt="" class="icon" /><button type="button" id="document_srl:'+it[i]['document_srl']+'" onclick="planet_todo_setDone(this)">DONE</button></span>');
|
||||
o.push('<span class="time">');
|
||||
o.push(it[i]['regdate']);
|
||||
o.push('</span>');
|
||||
o.push("</li>\n");
|
||||
}
|
||||
|
||||
o.push('</ul>');
|
||||
o.push('<span class="tl"></span><span class="tr"></span><span class="bl"></span><span class="br"></span>');
|
||||
|
||||
$('todoList').innerHTML = o.join('');
|
||||
|
||||
|
||||
var pageNavigation = ret_obj['pageNavigation'];
|
||||
$('planet_todo_count').innerHTML = pageNavigation.total_count ? pageNavigation.total_count : 0;
|
||||
|
||||
if(pageNavigation.total_page > 1){
|
||||
|
||||
var str = "";
|
||||
if(pageNavigation.first_page>1) str += '<a class="prev" href="#planet_tab" onclick="planet_getDone('+(pageNavigation.first_page-1)+');">Prev</a>';
|
||||
|
||||
for(var i=pageNavigation.first_page;i<=pageNavigation.page_count;i++){
|
||||
if(i== pageNavigation.cur_page){
|
||||
str += "<strong>"+i+"</strong>";
|
||||
}else{
|
||||
str += '<a href="#planet_tab" onclick="planet_getDone('+i+');">'+ i +'</a>';
|
||||
}
|
||||
}
|
||||
|
||||
if(pageNavigation.total_page != pageNavigation.last_page) str += '<a class="next" href="#planet_tab" onclick="planet_getDone('+(pageNavigation.last_page+1)+');">next</a>';
|
||||
$('todoList_page').innerHTML = str;
|
||||
}
|
||||
window.location.href="#planet_tab";
|
||||
}else{
|
||||
$('planet_todo_count').innerHTML = 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function result_planet_getDone(ret_obj,response_tags, params, fo_obj) {
|
||||
|
||||
if(ret_obj['error'] == 0 && ret_obj.contentList){
|
||||
var o = new Array();
|
||||
var it = new Array();
|
||||
var items = ret_obj['contentList']['item'];
|
||||
|
||||
|
||||
if(typeof(items[0]) == 'undefined'){
|
||||
it[0] = items;
|
||||
}else{
|
||||
it = items;
|
||||
}
|
||||
|
||||
o.push('<ul>');
|
||||
for(var i=0,c=it.length;i<c;i++){
|
||||
|
||||
it[i]['regdate'] += '';
|
||||
it[i]['regdate'] = it[i]['regdate'].substr(0,4) + '/' + it[i]['regdate'].substr(4,2) + '/' + it[i]['regdate'].substr(6,2);
|
||||
|
||||
var tag = $A();
|
||||
if(typeof(it[i]['tag_list']['item'])=='string'){
|
||||
tag.push(it[i]['tag_list']['item']);
|
||||
}else{
|
||||
tag = $A(it[i]['tag_list']['item']);
|
||||
}
|
||||
|
||||
tag = tag.filter(function(v){return !/done/i.test(v);});
|
||||
tag.push('todo');
|
||||
tag = tag.$value().join(',');
|
||||
|
||||
o.push('<input type="hidden" id="tag:'+it[i]['document_srl']+'" value="'+tag+'" /><li>');
|
||||
o.push(it[i]['content']);
|
||||
o.push('<span class="button small"><img src="./common/tpl/images/iconCheckGreen.gif" alt="" class="icon" /><button type="button" id="document_srl:'+it[i]['document_srl']+'" onclick="planet_todo_setDone(this)">REDO</button></span>');
|
||||
o.push('<span class="button small"><img src="./common/tpl/images/iconX.gif" alt="" class="icon" /><button type="button" onclick="planet_todo_setDel('+it[i]['document_srl']+')">Delete</button></span>');
|
||||
o.push("</li>\n");
|
||||
}
|
||||
|
||||
|
||||
o.push('</ul>');
|
||||
o.push('<span class="tl"></span><span class="tr"></span><span class="bl"></span><span class="br"></span>');
|
||||
|
||||
$('doneList').innerHTML = o.join('');
|
||||
|
||||
var pageNavigation = ret_obj['pageNavigation'];
|
||||
$('planet_done_count').innerHTML = pageNavigation.total_count ? pageNavigation.total_count : 0;
|
||||
|
||||
if(pageNavigation.total_page > 1){
|
||||
var str = "";
|
||||
|
||||
if(pageNavigation.first_page>1) str += '<a class="prev" href="#planet_tab" onclick="planet_getDone('+(pageNavigation.first_page-1)+');>Prev</a>';
|
||||
|
||||
for(var i=pageNavigation.first_page;i<=pageNavigation.page_count;i++){
|
||||
if(i== pageNavigation.cur_page){
|
||||
str += "<strong>"+i+"</strong>";
|
||||
}else{
|
||||
str += '<a href="#planet_tab" onclick="planet_getDone('+i+');">'+ i +'</a>';
|
||||
}
|
||||
}
|
||||
|
||||
if(pageNavigation.total_page != pageNavigation.last_page) str += '<a class="next" href="#planet_tab" onclick="planet_getDone('+(pageNavigation.last_page+1)+');>next</a>';
|
||||
$('doneList_page').innerHTML = str;
|
||||
}
|
||||
window.location.href="#planet_tab";
|
||||
}else{
|
||||
$('planet_done_count').innerHTML = 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
function planet_todo_setDone(o){
|
||||
var document_srl = o.id.replace(/.*:/,'');
|
||||
var tag = $('tag:'+document_srl).value;
|
||||
var params = {};
|
||||
params['document_srl'] = document_srl;
|
||||
params['planet_content_tag'] = tag;
|
||||
|
||||
exec_xml('planet','procPlanetContentTagModify',params,planet_reload_todo);
|
||||
return false;
|
||||
}
|
||||
|
||||
function planet_todo_setDel(document_srl){
|
||||
// var tag = $A($('document_srl:'+document_srl).value.split(','));
|
||||
var tag = $A($('tag:'+document_srl).value.split(','));
|
||||
|
||||
tag = tag.filter(function(v){return !/todo/i.test(v);});
|
||||
tag.push('hide');
|
||||
tag = tag.$value().join(',');
|
||||
|
||||
var params = {};
|
||||
params['document_srl'] = document_srl;
|
||||
params['planet_content_tag'] = tag;
|
||||
|
||||
exec_xml('planet','procPlanetContentTagModify',params,planet_reload_todo);
|
||||
return false;
|
||||
}
|
||||
|
||||
function showWritePostTodo(tag){
|
||||
tag = tag||'todo';
|
||||
$Element($('writePostForm').about_tag).hide();
|
||||
$Element($('writePostForm').content_tag).show();
|
||||
$('writePostForm').content_tag.value = tag;
|
||||
window.document.location.href="#writePost";
|
||||
showWritePost();
|
||||
}
|
||||
|
|
@ -1,55 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<addon version="0.2">
|
||||
<title xml:lang="ko">레인보우 링크 애드온</title>
|
||||
<title xml:lang="zh-CN">Rainbow链接</title>
|
||||
<title xml:lang="en">Rainbow Link Addon</title>
|
||||
<title xml:lang="ge">Rainbow Link Addon</title>
|
||||
<title xml:lang="es">Adición Enlace Arco Iris</title>
|
||||
<title xml:lang="jp">レインボーリンクアドオン</title>
|
||||
<title xml:lang="ru">Аддон для радужных ссылок</title>
|
||||
<title xml:lang="zh-TW">彩虹連結</title>
|
||||
<description xml:lang="ko">
|
||||
rainbow.js를 header에 추가하여 링크가 걸린 글의 색을 무지개색으로 나타냅니다.
|
||||
이 애드온의 rainbow.js는 <a href="http://www.dynamicdrive.com" target="_blank">Dynamicdrive.com</a>에 저작권이 있습니다.
|
||||
</description>
|
||||
<description xml:lang="zh-CN">
|
||||
把rainbow.js添加到header区使链接显示为彩虹色。
|
||||
此插件的rainbow.js文件版权属于 <a href="http://www.dynamicdrive.com" target="_blank">Dynamicdrive.com</a>
|
||||
</description>
|
||||
<description xml:lang="en">
|
||||
This addon will insert the "rainbow.js" file to the header, which will make the linked text to get the chameleon(rainbow) color change effect.
|
||||
"rainbow.js" Copyrightⓒ2007 <a href="http://www.dynamicdrive.com" target="_blank">Dynamicdrive.com</a>.
|
||||
</description>
|
||||
<description xml:lang="ge">
|
||||
Dieses Addon wird ersetzt durch die "rainbow.js"-Datei auf den Kopf, wodurch der verlinkten Text, um das Chamäleon (Regenbogen) Farbwechsel-Effekt.
|
||||
"rainbow.js" Copyright ⓒ 2007 <a href="http://www.dynamicdrive.com" target="_blank"> Dynamicdrive.com </a>.
|
||||
</description>
|
||||
<description xml:lang="es">
|
||||
incluye rainbow.js en header para mostrar enlaces en colores de arco iris.
|
||||
<a href="http://www.dynamicdrive.com" target="_blank">Dynamicdrive.com</a> tiene derecho de autor sobre rainbow.js
|
||||
</description>
|
||||
<description xml:lang="jp">
|
||||
「rainbow.js」をヘッダーに追加し、リンクが張られている文字列の色を虹色で表示します。この機能拡張の「rainbow.js」は「<a href="http://www.dynamicdrive.com" target="_blank">Dynamicdrive.com</a>」に著作権があります。
|
||||
</description>
|
||||
<description xml:lang="ru">
|
||||
Этот аддон добавляет файл с именем "rainbow.js" в заголовки HTML, и тогда связанный текс приобретает эффект смены цвета, подобно радуге или хамелеону.
|
||||
"rainbow.js" Copyrightⓒ2007 <a href="http://www.dynamicdrive.com" target="_blank">Dynamicdrive.com</a>.
|
||||
</description>
|
||||
<description xml:lang="zh-TW">
|
||||
將rainbow.js新增到header,讓連結顯示成彩虹色。
|
||||
rainbow.js檔案版權屬於 <a href="http://www.dynamicdrive.com" target="_blank">Dynamicdrive.com</a>
|
||||
</description>
|
||||
<version>0.1</version>
|
||||
<date>2007-02-28</date>
|
||||
|
||||
<author email_address="webmaster@dynamicdrive.com" link="http://dynamicdrive.com">
|
||||
<name xml:lang="ko">dynamicdrive.com</name>
|
||||
<name xml:lang="zh-CN">dynamicdrive.com</name>
|
||||
<name xml:lang="en">dynamicdrive.com</name>
|
||||
<name xml:lang="ge">dynamicdrive.com</name>
|
||||
<name xml:lang="es">dynamicdrive.com</name>
|
||||
<name xml:lang="jp">dynamicdrive.com</name>
|
||||
<name xml:lang="ru">dynamicdrive.com</name>
|
||||
<name xml:lang="zh-TW">dynamicdrive.com</name>
|
||||
</author>
|
||||
</addon>
|
||||
|
|
@ -1,245 +0,0 @@
|
|||
/************************************************************************/
|
||||
/* Rainbow Links Version 1.03 (2003.9.20) */
|
||||
/* Script updated by Dynamicdrive.com for IE6 */
|
||||
/* Copyright (C) 1999-2001 TAKANASHI Mizuki */
|
||||
/* takanasi@hamal.freemail.ne.jp */
|
||||
/*----------------------------------------------------------------------*/
|
||||
/* Read it somehow even if my English text is a little wrong! ;-) */
|
||||
/* */
|
||||
/* Usage: */
|
||||
/* Insert '<script src="rainbow.js"></script>' into the BODY section, */
|
||||
/* right after the BODY tag itself, before anything else. */
|
||||
/* You don't need to add "onMouseover" and "onMouseout" attributes!! */
|
||||
/* */
|
||||
/* If you'd like to add effect to other texts(not link texts), then */
|
||||
/* add 'onmouseover="doRainbow(this);"' and */
|
||||
/* 'onmouseout="stopRainbow();"' to the target tags. */
|
||||
/* */
|
||||
/* This Script works with IE4,Netscape6,Mozilla browser and above only, */
|
||||
/* but no error occurs on other browsers. */
|
||||
/************************************************************************/
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Setting
|
||||
|
||||
var rate = 20; // Increase amount(The degree of the transmutation)
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Main routine
|
||||
|
||||
/*
|
||||
if (document.getElementById)
|
||||
window.onerror=new Function("return true")
|
||||
*/
|
||||
|
||||
var objActive; // The object which event occured in
|
||||
var act = 0; // Flag during the action
|
||||
var elmH = 0; // Hue
|
||||
var elmS = 128; // Saturation
|
||||
var elmV = 255; // Value
|
||||
var clrOrg; // A color before the change
|
||||
var TimerID; // Timer ID
|
||||
|
||||
|
||||
if(xIE4Up) {
|
||||
xAddEventListener(document, 'mouseover', doRainbowAnchor);
|
||||
xAddEventListener(document, 'mouseout', stopRainbowAnchor);
|
||||
} else {
|
||||
xAddEventListener(document, 'mouseover', Mozilla_doRainbowAnchor);
|
||||
xAddEventListener(document, 'mouseout', Mozilla_stopRainbowAnchor);
|
||||
}
|
||||
/*
|
||||
if (document.all) {
|
||||
document.onmouseover = doRainbowAnchor;
|
||||
document.onmouseout = stopRainbowAnchor;
|
||||
}
|
||||
else if (document.getElementById) {
|
||||
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
|
||||
document.onmouseover = Mozilla_doRainbowAnchor;
|
||||
document.onmouseout = Mozilla_stopRainbowAnchor;
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
//=============================================================================
|
||||
// doRainbow
|
||||
// This function begins to change a color.
|
||||
//=============================================================================
|
||||
function doRainbow(obj)
|
||||
{
|
||||
if (act == 0) {
|
||||
act = 1;
|
||||
if (obj)
|
||||
objActive = obj;
|
||||
else
|
||||
objActive = event.srcElement;
|
||||
clrOrg = objActive.style.color;
|
||||
TimerID = setInterval("ChangeColor()",100);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//=============================================================================
|
||||
// stopRainbow
|
||||
// This function stops to change a color.
|
||||
//=============================================================================
|
||||
function stopRainbow()
|
||||
{
|
||||
if (act) {
|
||||
objActive.style.color = clrOrg;
|
||||
clearInterval(TimerID);
|
||||
act = 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//=============================================================================
|
||||
// doRainbowAnchor
|
||||
// This function begins to change a color. (of a anchor, automatically)
|
||||
//=============================================================================
|
||||
function doRainbowAnchor()
|
||||
{
|
||||
try {
|
||||
if (act == 0) {
|
||||
var obj = event.srcElement;
|
||||
while (obj.tagName != 'A' && obj.tagName != 'BODY') {
|
||||
obj = obj.parentElement;
|
||||
if (obj.tagName == 'A' || obj.tagName == 'BODY')
|
||||
break;
|
||||
}
|
||||
|
||||
if (obj.tagName == 'A' && obj.href != '') {
|
||||
objActive = obj;
|
||||
act = 1;
|
||||
clrOrg = objActive.style.color;
|
||||
TimerID = setInterval("ChangeColor()",100);
|
||||
}
|
||||
}
|
||||
} catch(e) {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//=============================================================================
|
||||
// stopRainbowAnchor
|
||||
// This function stops to change a color. (of a anchor, automatically)
|
||||
//=============================================================================
|
||||
function stopRainbowAnchor()
|
||||
{
|
||||
if (act) {
|
||||
if (objActive.tagName == 'A') {
|
||||
objActive.style.color = clrOrg;
|
||||
clearInterval(TimerID);
|
||||
act = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//=============================================================================
|
||||
// Mozilla_doRainbowAnchor(for Netscape6 and Mozilla browser)
|
||||
// This function begins to change a color. (of a anchor, automatically)
|
||||
//=============================================================================
|
||||
function Mozilla_doRainbowAnchor(evt)
|
||||
{
|
||||
var e = new xEvent(evt);
|
||||
if (act == 0) {
|
||||
obj = e.target;
|
||||
while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
|
||||
obj = obj.parentNode;
|
||||
if(typeof(obj)=='undefined'||!obj) return;
|
||||
if (obj.nodeName == 'A' || obj.nodeName == 'BODY') break;
|
||||
}
|
||||
|
||||
if (obj.nodeName == 'A' && obj.href != '') {
|
||||
objActive = obj;
|
||||
act = 1;
|
||||
clrOrg = obj.style.color;
|
||||
TimerID = setInterval("ChangeColor()",100);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//=============================================================================
|
||||
// Mozilla_stopRainbowAnchor(for Netscape6 and Mozilla browser)
|
||||
// This function stops to change a color. (of a anchor, automatically)
|
||||
//=============================================================================
|
||||
function Mozilla_stopRainbowAnchor(e)
|
||||
{
|
||||
if (act) {
|
||||
if (objActive.nodeName == 'A') {
|
||||
objActive.style.color = clrOrg;
|
||||
clearInterval(TimerID);
|
||||
act = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//=============================================================================
|
||||
// Change Color
|
||||
// This function changes a color actually.
|
||||
//=============================================================================
|
||||
function ChangeColor()
|
||||
{
|
||||
objActive.style.color = makeColor();
|
||||
}
|
||||
|
||||
|
||||
//=============================================================================
|
||||
// makeColor
|
||||
// This function makes rainbow colors.
|
||||
//=============================================================================
|
||||
function makeColor()
|
||||
{
|
||||
// Don't you think Color Gamut to look like Rainbow?
|
||||
|
||||
// HSVtoRGB
|
||||
if (elmS == 0) {
|
||||
elmR = elmV; elmG = elmV; elmB = elmV;
|
||||
}
|
||||
else {
|
||||
t1 = elmV;
|
||||
t2 = (255 - elmS) * elmV / 255;
|
||||
t3 = elmH % 60;
|
||||
t3 = (t1 - t2) * t3 / 60;
|
||||
|
||||
if (elmH < 60) {
|
||||
elmR = t1; elmB = t2; elmG = t2 + t3;
|
||||
}
|
||||
else if (elmH < 120) {
|
||||
elmG = t1; elmB = t2; elmR = t1 - t3;
|
||||
}
|
||||
else if (elmH < 180) {
|
||||
elmG = t1; elmR = t2; elmB = t2 + t3;
|
||||
}
|
||||
else if (elmH < 240) {
|
||||
elmB = t1; elmR = t2; elmG = t1 - t3;
|
||||
}
|
||||
else if (elmH < 300) {
|
||||
elmB = t1; elmG = t2; elmR = t2 + t3;
|
||||
}
|
||||
else if (elmH < 360) {
|
||||
elmR = t1; elmG = t2; elmB = t1 - t3;
|
||||
}
|
||||
else {
|
||||
elmR = 0; elmG = 0; elmB = 0;
|
||||
}
|
||||
}
|
||||
|
||||
elmR = Math.floor(elmR).toString(16);
|
||||
elmG = Math.floor(elmG).toString(16);
|
||||
elmB = Math.floor(elmB).toString(16);
|
||||
if (elmR.length == 1) elmR = "0" + elmR;
|
||||
if (elmG.length == 1) elmG = "0" + elmG;
|
||||
if (elmB.length == 1) elmB = "0" + elmB;
|
||||
|
||||
elmH = elmH + rate;
|
||||
if (elmH >= 360)
|
||||
elmH = 0;
|
||||
|
||||
return '#' + elmR + elmG + elmB;
|
||||
}
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
<?php
|
||||
if(!defined("__ZBXE__")) exit();
|
||||
|
||||
/**
|
||||
* @file rainbow.addon.php
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @brief Rainbow link addon
|
||||
*
|
||||
* 링크가 걸린 텍스트에 마우스 오버를 하면 무지개색으로 변하게 하는 애드온입니다.
|
||||
* rainbow.js 파일만 추가하는 것으로 끝납니다.
|
||||
* rainbow.js는 http://www.dynamicdrive.com에서 제작하였으며 저작권을 가지고 있습니다.
|
||||
* before_display_content 에서만 요청이 됩니다.
|
||||
**/
|
||||
|
||||
if(Context::get('module')=='admin' || $called_position != 'before_module_init') return;
|
||||
|
||||
// Context::addJsFile()을 이용하면 끝
|
||||
Context::addJsFile($addon_path.'js/rainbow.js');
|
||||
?>
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<addon version="0.2">
|
||||
<title xml:lang="ko">댓글알리미 애드온</title>
|
||||
<title xml:lang="jp">コメントお知らせアラートアドオン</title>
|
||||
<title xml:lang="zh-CN">评论通告</title>
|
||||
<title xml:lang="en">Comment Notifier Addon</title>
|
||||
<title xml:lang="zh-TW">評論通知</title>
|
||||
<description xml:lang="ko">댓글알리미를 지원하는 애드온입니다.</description>
|
||||
<description xml:lang="jp">コメントお知らせアラートのアドオンです。</description>
|
||||
<description xml:lang="zh-CN">联动评论通告模块的插件。</description>
|
||||
<description xml:lang="en">This addon enables Comment Notifier module.</description>
|
||||
<description xml:lang="zh-TW">是種評論通知模組。</description>
|
||||
<version>0.2</version>
|
||||
<date>2008-06-02</date>
|
||||
|
||||
<author email_address="haneul0318@seungyeop.kr" link="http://www.seungyeop.kr">
|
||||
<name xml:lang="ko">haneul</name>
|
||||
<name xml:lang="jp">haneul</name>
|
||||
<name xml:lang="zh-CN">haneul</name>
|
||||
<name xml:lang="en">haneul</name>
|
||||
<name xml:lang="zh-TW">haneul</name>
|
||||
</author>
|
||||
</addon>
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
<?php
|
||||
if(!defined("__ZBXE__")) exit();
|
||||
|
||||
if(Context::getRequestMethod() == "XMLRPC" || Context::getResponseMethod() == "XMLRPC")
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if(Context::getRequestMethod() == "POST" && $called_position == 'before_module_proc') {
|
||||
$mode = $_REQUEST['mode'];
|
||||
if(!$mode || $mode != "fb")
|
||||
{
|
||||
return;
|
||||
}
|
||||
$oController = &getController('tccommentnotify');
|
||||
if(!$oController) return;
|
||||
$oController->procNotifyReceived();
|
||||
return;
|
||||
}
|
||||
|
||||
if($called_position == "after_module_proc")
|
||||
{
|
||||
$oModel = &getModel('tccommentnotify');
|
||||
if(!$oModel) return;
|
||||
if($oModel->checkShouldNotify())
|
||||
{
|
||||
$scriptCode = <<<EndOfScript
|
||||
<script type="text/javascript">
|
||||
// <![CDATA[
|
||||
exec_xml("tccommentnotify", "procDoNotify");
|
||||
// ]]>
|
||||
</script>
|
||||
|
||||
EndOfScript;
|
||||
Context::addHtmlHeader($scriptCode);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<addon version="0.2">
|
||||
<title xml:lang="ko">위키 링크 애드온</title>
|
||||
<title xml:lang="en">Wiki Linker</title>
|
||||
<title xml:lang="zh-CN">维基链接插件</title>
|
||||
<title xml:lang="zh-TW">維基百科</title>
|
||||
<title xml:lang="jp">wikiリンクアドオン</title>
|
||||
<description xml:lang="ko">
|
||||
위키 링크를 추가해주는 애드온.
|
||||
</description>
|
||||
<description xml:lang="en">
|
||||
This addon adds wiki link.
|
||||
</description>
|
||||
<description xml:lang="zh-CN">
|
||||
给维基模块添加链接的插件。
|
||||
</description>
|
||||
<description xml:lang="zh-TW">
|
||||
維基百科控件。
|
||||
</description>
|
||||
<description xml:lang="jp">
|
||||
wikiリンクを追加するアドオン
|
||||
</description>
|
||||
<version>0.1</version>
|
||||
<date>2009-02-03</date>
|
||||
|
||||
<author email_address="haneul0318@gmail.com" link="http://blog.nzeo.com">
|
||||
<name xml:lang="ko">haneul</name>
|
||||
<name xml:lang="en">haneul</name>
|
||||
<name xml:lang="zh-CN">haneul</name>
|
||||
<name xml:lang="zh-TW">haneul</name>
|
||||
<name xml:lang="jp">haneul</name>
|
||||
</author>
|
||||
</addon>
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
<?php
|
||||
if(!defined("__ZBXE__")) exit();
|
||||
|
||||
if($called_position == 'after_module_proc' && Context::getResponseMethod()!="XMLRPC" && Context::get('act')=='dispWikiEditPage' ) {
|
||||
$module_info = Context::get('module_info');
|
||||
if(!$module_info->module) return;
|
||||
if($module_info->module != 'wiki') return;
|
||||
Context::loadJavascriptPlugin('hotkeys');
|
||||
Context::addJsFile('./addons/wiki_link/wikilink.js',false);
|
||||
Context::addCssFile('./addons/wiki_link/wikilink.css',false);
|
||||
}
|
||||
?>
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
.ui-dialog { background-color:#fff; z-index:999; padding:10px;}
|
||||
.ui-dialog-title { font-weight:bold; margin-bottom:3px; }
|
||||
.ui-dialog-titlebar-close { display:none; }
|
||||
.ui-dialog-buttonpane { text-align:right; bottom:5px !important; }
|
||||
.ui-dialog-buttonpane button { font-size:11px; font-family:tahoma; }
|
||||
|
|
@ -1,49 +0,0 @@
|
|||
function openWikiLinkDialog()
|
||||
{
|
||||
var wikiLink = jQuery('#wikiLink');
|
||||
if ( wikiLink.length < 1 ) {
|
||||
try{
|
||||
jQuery('<div id="wikiLink">Link Target : <input type="text" id="linktarget" class="inputTypeText" style="width:200px;" /></div>')
|
||||
.appendTo('body')
|
||||
.dialog({
|
||||
title:'wiki Link', width:300, height:60, resizable:false,
|
||||
modal: false, overlay: { opacity: 1, background: "#fff" },
|
||||
buttons: { "add link": function() { setText(); jQuery(this).dialog("close"); }, "cancel": function() { jQuery(this).dialog("close"); } },
|
||||
show: 'drop' /* , hide: 'explode' */
|
||||
});
|
||||
} catch(e){
|
||||
}
|
||||
} else {
|
||||
wikiLink.dialog('open');
|
||||
}
|
||||
}
|
||||
|
||||
function setText() {
|
||||
var target = xGetElementById('linktarget');
|
||||
if(!target.value || target.value.trim() == '') return;
|
||||
var text = target.value;
|
||||
text.replace(/&/ig,'&').replace(/</ig,'<').replace(/>/ig,'>');
|
||||
var url = request_uri.setQuery('mid',current_mid).setQuery('entry',text);
|
||||
if(typeof(xeVid)!='undefined') url = url.setQuery('vid', xeVid);
|
||||
var link = "<a href=\""+url+"\" ";
|
||||
link += ">"+text+"</a>";
|
||||
|
||||
var iframe_obj = editorGetIFrame(1)
|
||||
editorReplaceHTML(iframe_obj, link);
|
||||
jQuery("#link").dialog("close");
|
||||
}
|
||||
|
||||
function addShortCutForWiki()
|
||||
{
|
||||
var iframe_obj = editorGetIFrame(1);
|
||||
jQuery(iframe_obj.contentWindow.document).bind('keydown', "CTRL+SHIFT+SPACE", function(evt) { openWikiLinkDialog(); });
|
||||
if(jQuery.os.Mac) {
|
||||
jQuery(iframe_obj.contentWindow.document).bind('keydown', "ALT+SPACE", function(evt) { openWikiLinkDialog(); });
|
||||
} else {
|
||||
jQuery(iframe_obj.contentWindow.document).bind('keydown', "CTRL+SPACE", function(evt) { openWikiLinkDialog(); });
|
||||
}
|
||||
jQuery(document).bind('keydown',"CTRL+SHIFT+SPACE", function(evt) {} );
|
||||
}
|
||||
|
||||
jQuery(window).load( function() { addShortCutForWiki() } );
|
||||
|
||||
|
|
@ -1,173 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<layout version="0.2">
|
||||
<title xml:lang="ko">XE Cafe 공식 레이아웃</title>
|
||||
<title xml:lang="en">XE Cafe Official Layout</title>
|
||||
<title xml:lang="zh-CN">站点模块官方布局</title>
|
||||
<title xml:lang="zh-TW">虛擬網站官網版面</title>
|
||||
<title xml:lang="jp">XE Cafe公式レイアウト</title>
|
||||
<description xml:lang="ko">
|
||||
XE Cafe 공식 레이아웃입니다.
|
||||
</description>
|
||||
<description xml:lang="en">
|
||||
XE Cafe's Official Layout.
|
||||
</description>
|
||||
<description xml:lang="zh-CN">
|
||||
站点模块官方布局。
|
||||
</description>
|
||||
<description xml:lang="zh-TW">
|
||||
虛擬網站官網版面。
|
||||
</description>
|
||||
<description xml:lang="jp">
|
||||
XE Cafeの公式レイアウトです。
|
||||
</description>
|
||||
<version>0.1</version>
|
||||
<date>2009-02-09</date>
|
||||
<link>http://www.xpressengine.com</link>
|
||||
|
||||
<author email_address="webmaster@xpressengine.com" link="http://www.xpressengine.com">
|
||||
<name xml:lang="ko">XpressEngine</name>
|
||||
<name xml:lang="en">XpressEngine</name>
|
||||
<name xml:lang="zh-CN">XpressEngine</name>
|
||||
<name xml:lang="zh-TW">XpressEngine</name>
|
||||
<name xml:lang="jp">XpressEngine</name>
|
||||
</author>
|
||||
<extra_vars>
|
||||
<group>
|
||||
<title xml:lang="ko">기본 설정</title>
|
||||
<title xml:lang="en">Default Setting</title>
|
||||
<title xml:lang="zh-CN">常规选项</title>
|
||||
<title xml:lang="zh-TW">預設</title>
|
||||
<title xml:lang="jp">基本設定</title>
|
||||
<var name="colorset" type="select">
|
||||
<title xml:lang="ko">컬러셋</title>
|
||||
<title xml:lang="en">Colorset</title>
|
||||
<title xml:lang="zh-CN">颜色</title>
|
||||
<title xml:lang="zh-TW">顏色設定</title>
|
||||
<title xml:lang="jp">カラーセット</title>
|
||||
<description xml:lang="ko">원하시는 컬러셋을 선택해주세요.</description>
|
||||
<description xml:lang="en">Choose colorset</description>
|
||||
<description xml:lang="zh-CN">请选择颜色。</description>
|
||||
<description xml:lang="zh-TW">請選擇顏色。</description>
|
||||
<description xml:lang="jp">カラーセットを選択して下さい。</description>
|
||||
<options value="white">
|
||||
<title xml:lang="ko">하얀색</title>
|
||||
<title xml:lang="en">White</title>
|
||||
<title xml:lang="zh-CN">白色</title>
|
||||
<title xml:lang="zh-TW">白色</title>
|
||||
<title xml:lang="jp">白</title>
|
||||
</options>
|
||||
<options value="black">
|
||||
<title xml:lang="ko">검은색</title>
|
||||
<title xml:lang="en">Black</title>
|
||||
<title xml:lang="zh-CN">黑色</title>
|
||||
<title xml:lang="zh-TW">黑色</title>
|
||||
<title xml:lang="jp">黒</title>
|
||||
</options>
|
||||
</var>
|
||||
<var name="index_url" type="text">
|
||||
<title xml:lang="ko">홈 페이지 URL</title>
|
||||
<title xml:lang="en">Homepage's URL</title>
|
||||
<title xml:lang="zh-CN">站点地址</title>
|
||||
<title xml:lang="zh-TW">主頁網址</title>
|
||||
<title xml:lang="jp">cafeXEのURL</title>
|
||||
<description xml:lang="ko">로고를 클릭시에 이동할 홈 페이지 URL을 입력해 주세요.</description>
|
||||
<description xml:lang="en">Input a destination URL when users click the logo.</description>
|
||||
<description xml:lang="zh-CN">点击LOGO时要移动的页面地址。</description>
|
||||
<description xml:lang="zh-TW">請輸入當用戶按了網站Logo後,要前往的頁面網址。</description>
|
||||
<description xml:lang="jp">ロゴをクリックする際、移動するcafeXEのURLを入力して下さい。</description>
|
||||
</var>
|
||||
<var name="logo_text" type="text">
|
||||
<title xml:lang="ko">로고 글자</title>
|
||||
<title xml:lang="en">Logo text</title>
|
||||
<title xml:lang="zh-CN">站点标题</title>
|
||||
<title xml:lang="zh-TW">Logo文字</title>
|
||||
<title xml:lang="jp">ロゴ用テキスト</title>
|
||||
<description xml:lang="ko">좌측 상단의 로고 부분에 글자를 지정할 수 있습니다. 로고 이미지가 있으면 로고 이미지의 caption으로 표시됩니다.</description>
|
||||
<description xml:lang="en">You can set the Logo text shown in the top-left part of this layout. If there exists Logo image, this text will be a caption of the image.</description>
|
||||
<description xml:lang="zh-CN">将显示在您的站点左侧头部,如你已上传lOGO图片,此标题将变成LOGO图片的caption。</description>
|
||||
<description xml:lang="zh-TW">將顯示在虛擬網站的左上方,如果有上傳過Logo圖片,將會以圖片顯示。</description>
|
||||
<description xml:lang="jp">左上段のロゴ部分に表示する文章を指定します。ロゴイメージがある場合は、ロゴイメージのキャプションとして表示します。</description>
|
||||
</var>
|
||||
<var name="logo_image" type="image">
|
||||
<title xml:lang="ko">로고이미지</title>
|
||||
<title xml:lang="en">Logo image</title>
|
||||
<title xml:lang="zh-CN">LOGO图片</title>
|
||||
<title xml:lang="zh-TW">Logo圖片</title>
|
||||
<title xml:lang="jp">ロゴイメージ</title>
|
||||
<description xml:lang="ko">레이아웃의 상단에 표시될 로고이미지를 입력하세요.</description>
|
||||
<description xml:lang="en">Input Logo image shown in the top part of this layout.</description>
|
||||
<description xml:lang="zh-CN">上传LOGO图片。</description>
|
||||
<description xml:lang="zh-TW">請輸入要顯示在版面上端的Logo圖片。(適當高度為23px的透明圖片。)</description>
|
||||
<description xml:lang="jp">レイアウト上段に表示するロゴイメージを入力して下さい。</description>
|
||||
</var>
|
||||
<var name="logo_background_image" type="image">
|
||||
<title xml:lang="ko">로고 배경 이미지</title>
|
||||
<title xml:lang="en">Logo background image</title>
|
||||
<title xml:lang="zh-CN">布局头部背景图片</title>
|
||||
<title xml:lang="zh-TW">Logo背景圖片</title>
|
||||
<title xml:lang="jp">ロゴ背景イメージ</title>
|
||||
<description xml:lang="ko">로고가 있는 상단 영역의 배경 이미지를 적용하시려면 이미지를 등록해주세요.</description>
|
||||
<description xml:lang="en">You may register a background image of the top area where Logo exists.</description>
|
||||
<description xml:lang="zh-CN">上传LOGO所在位头部背景图片。</description>
|
||||
<description xml:lang="zh-TW">請在這裡上傳想要使用的背景圖片。</description>
|
||||
<description xml:lang="jp">ロゴがある上段領域の背景イメージを登録します。</description>
|
||||
</var>
|
||||
<var name="content_background_image" type="image">
|
||||
<title xml:lang="ko">내용 배경 이미지</title>
|
||||
<title xml:lang="en">Content background image</title>
|
||||
<title xml:lang="zh-CN">内容区背景图片</title>
|
||||
<title xml:lang="zh-TW">內容背景圖片</title>
|
||||
<title xml:lang="jp">コンテンツの背景イメージ</title>
|
||||
<description xml:lang="ko">내용이 있는 영역의 배경 이미지를 사용하시려면 이미지를 등록해주세요.</description>
|
||||
<description xml:lang="en">You may register a background image the area where content would be placed.</description>
|
||||
<description xml:lang="zh-CN">上传内容区背景图片。</description>
|
||||
<description xml:lang="zh-TW">請在這裡上傳想要使用的背景圖片。</description>
|
||||
<description xml:lang="jp">コンテンツがある領域の背景イメージを登録して下さい。</description>
|
||||
</var>
|
||||
</group>
|
||||
<group>
|
||||
<title xml:lang="ko">모양 설정</title>
|
||||
<title xml:lang="en">Style Setting</title>
|
||||
<title xml:lang="zh-CN">样式设置</title>
|
||||
<title xml:lang="zh-TW">外觀設定</title>
|
||||
<title xml:lang="jp">レイアウト設定</title>
|
||||
<var name="content_position" type="select">
|
||||
<title xml:lang="ko">본문 위치</title>
|
||||
<title xml:lang="en">Content position</title>
|
||||
<title xml:lang="zh-CN">内容区位置</title>
|
||||
<title xml:lang="zh-TW">選擇位置</title>
|
||||
<title xml:lang="jp">本文配置</title>
|
||||
<description xml:lang="ko">본문의 위치를 좌/우중 선택할 수 있습니다.</description>
|
||||
<description xml:lang="en">You can choose the position of content between left and right.</description>
|
||||
<description xml:lang="zh-CN">可以设置内容区的位置(左侧/右侧)。</description>
|
||||
<description xml:lang="zh-TW">內容區域可選擇靠左側或右側。</description>
|
||||
<description xml:lang="jp">本文の位置を左/右の中、選択します。</description>
|
||||
<options value="left">
|
||||
<title xml:lang="ko">왼쪽</title>
|
||||
<title xml:lang="en">Left</title>
|
||||
<title xml:lang="zh-CN">左侧</title>
|
||||
<title xml:lang="zh-TW">左側</title>
|
||||
<title xml:lang="jp">左側</title>
|
||||
</options>
|
||||
<options value="right">
|
||||
<title xml:lang="ko">오른쪽</title>
|
||||
<title xml:lang="en">Right</title>
|
||||
<title xml:lang="zh-CN">右侧</title>
|
||||
<title xml:lang="zh-TW">右側</title>
|
||||
<title xml:lang="jp">右側</title>
|
||||
</options>
|
||||
</var>
|
||||
</group>
|
||||
|
||||
</extra_vars>
|
||||
|
||||
<menus>
|
||||
<menu name="main_menu" maxdepth="5" default="true">
|
||||
<title xml:lang="ko">메인 메뉴</title>
|
||||
<title xml:lang="en">Main Menu</title>
|
||||
<title xml:lang="zh-CN">主菜单</title>
|
||||
<title xml:lang="zh-TW">主選單</title>
|
||||
<title xml:lang="jp">メインメニュー</title>
|
||||
</menu>
|
||||
</menus>
|
||||
</layout>
|
||||
|
|
@ -1,182 +0,0 @@
|
|||
@charset "utf-8";
|
||||
/* NHN > UIT Center > Open UI Technology Team > Jeong Chan Myeong(dece24@nhncorp.com) */
|
||||
/* You'd better not fix : 이 파일 수정을 권장 안함 */
|
||||
|
||||
/* Skip To Content */
|
||||
a.skipToContent{ display:block; position:relative; top:0; clear:both; overflow:hidden; height:0; text-decoration:none;}
|
||||
a.skipToContent:hover,
|
||||
a.skipToContent:active,
|
||||
a.skipToContent:focus{ height:auto; margin:0 0 10px 0; padding:5px;}
|
||||
|
||||
/* Hr */
|
||||
hr.cafeXeHr{ display:none; position:absolute;}
|
||||
|
||||
/* Container + Header + Body + Footer */
|
||||
#cafeXeContainer{ position:relative; margin:0 20px; *zoom:1;}
|
||||
#cafeXeHeader{ position:relative; padding:20px 0 10px; border-bottom:3px solid; *zoom:1; z-index:100;}
|
||||
#cafeXeHeader:after{ content:""; display:block; clear:both;}
|
||||
#cafeXeBody{ position:relative; padding-top:20px; padding-bottom:20px; *zoom:1;}
|
||||
#cafeXeBody:after{ content:""; display:block; clear:both;}
|
||||
#cafeXeContent{ position:relative; margin-bottom:20px; text-align:justify;}
|
||||
#cafeXeFooter{ position:relative; padding:10px 0; border-top:1px solid; *zoom:1; z-index:100;}
|
||||
#cafeXeFooter address{ text-align:center;}
|
||||
|
||||
/* Layout Width */
|
||||
.cafeXeFixed #cafeXeContainer{ width:960px; margin-left:auto; margin-right:auto;}
|
||||
.cafeXeLiquid #cafeXeContainer{ width:80%; margin-left:auto; margin-right:auto;}
|
||||
.cafeXeHybrid #cafeXeContainer{ width:80%; margin-left:auto; margin-right:auto;}
|
||||
|
||||
/* Align Layout */
|
||||
.aLeft #cafeXeContainer{ margin-left:0;}
|
||||
.aRight #cafeXeContainer{ margin-right:0;}
|
||||
|
||||
/* Top Navigation */
|
||||
#cafeXeHeader .cafeXeNavigation{ position:relative; padding:15px 0 0 0; margin:0; overflow:hidden; float:right;}
|
||||
#cafeXeHeader .cafeXeNavigation:after{ content:""; display:block; clear:both;}
|
||||
#cafeXeHeader .cafeXeNavigation *{ margin:0; padding:0;}
|
||||
#cafeXeHeader .cafeXeNavigation h2{ display:none;}
|
||||
#cafeXeHeader .cafeXeNavigation li{ position:relative; float:left; list-style:none; padding:0 5px;}
|
||||
|
||||
/* Footer Navigation */
|
||||
#cafeXeFooter .cafeXeNavigation{ position:relative; padding:0; margin:0 0 10px 0;}
|
||||
#cafeXeFooter .cafeXeNavigation:after{ content:""; display:block; clear:both;}
|
||||
#cafeXeFooter .cafeXeNavigation *{ margin:0; padding:0;}
|
||||
#cafeXeFooter .cafeXeNavigation h2{ display:none;}
|
||||
#cafeXeFooter .cafeXeNavigation .cafeXeSection{ text-align:center;}
|
||||
#cafeXeFooter .cafeXeNavigation ul{ position:relative; overflow:hidden;}
|
||||
#cafeXeFooter .cafeXeNavigation li{ display:inline; position:relative; list-style:none; padding:0 5px;}
|
||||
|
||||
/* Neck */
|
||||
#neck{ position:relative; clear:both; *zoom:1;}
|
||||
#neck .cafeXeExtension{ margin-right:-30px; *zoom:1;}
|
||||
#neck .cafeXeExtension:after{ content:""; display:block; clear:both;}
|
||||
#neck .cafeXeExtension .cafeXeSection{ position:relative; float:left; width:300px; margin-right:30px;}
|
||||
.cafeXeLiquid #neck .cafeXeExtension .cafeXeSection{ width:30%; margin-right:3.3%;}
|
||||
|
||||
/* Knee */
|
||||
#cafeXeKnee{ position:relative; clear:both; *zoom:1;}
|
||||
#cafeXeKnee{ padding-top:30px; border-top:1px solid;}
|
||||
#cafeXeKnee .cafeXeExtension{ margin-right:-30px; *zoom:1;}
|
||||
#cafeXeKnee .cafeXeExtension:after{ content:""; display:block; clear:both;}
|
||||
#cafeXeKnee .cafeXeExtension .cafeXeSection{ position:relative; float:left; width:300px; margin-right:30px;}
|
||||
.cafeXeLiquid #cafeXeKnee .cafeXeExtension .cafeXeSection{ width:30%; margin-right:3.3%;}
|
||||
|
||||
/* Extension */
|
||||
.cafeXeExtension,
|
||||
.cafeXeSection{position:relative; *zoom:1;}
|
||||
#cafeXeBody .cafeXeExtension{ position:relative; display:none; margin-bottom:20px;}
|
||||
.cafeXeExtension .cafeXeSection{ margin-bottom:20px;}
|
||||
|
||||
/* ----- Fixed 2 Column Layout ----- */
|
||||
.cafeXeFixed .cafeXeCE #cafeXeBody .cafeXeE1,
|
||||
.cafeXeFixed .cafeXeEC #cafeXeBody .cafeXeE1{ width:220px;}
|
||||
.cafeXeFixed .cafeXeCE #cafeXeBody #cafeXeContent,
|
||||
.cafeXeFixed .cafeXeEC #cafeXeBody #cafeXeContent{ width:720px;}
|
||||
.cafeXeFixed .cafeXeCE #cafeXeBody #cafeXeContent{ float:left;}
|
||||
.cafeXeFixed .cafeXeEC #cafeXeBody #cafeXeContent{ float:right;}
|
||||
.cafeXeFixed .cafeXeCE #cafeXeBody .cafeXeE1,
|
||||
.cafeXeFixed .cafeXeEC #cafeXeBody .cafeXeE1{ display:block;}
|
||||
.cafeXeFixed .cafeXeCE #cafeXeBody .cafeXeE1{ float:right; clear:right;}
|
||||
.cafeXeFixed .cafeXeEC #cafeXeBody .cafeXeE1{ float:left; clear:left;}
|
||||
|
||||
/* ----- Liquid 2 Column Layout ----- */
|
||||
.cafeXeLiquid .cafeXeCE #cafeXeBody .cafeXeE1,
|
||||
.cafeXeLiquid .cafeXeEC #cafeXeBody .cafeXeE1{ width:23%;}
|
||||
.cafeXeLiquid .cafeXeCE #cafeXeBody #cafeXeContent,
|
||||
.cafeXeLiquid .cafeXeEC #cafeXeBody #cafeXeContent{ width:75%;}
|
||||
.cafeXeLiquid .cafeXeCE #cafeXeBody #cafeXeContent{ float:left;}
|
||||
.cafeXeLiquid .cafeXeEC #cafeXeBody #cafeXeContent{ float:right;}
|
||||
.cafeXeLiquid .cafeXeCE #cafeXeBody .cafeXeE1,
|
||||
.cafeXeLiquid .cafeXeEC #cafeXeBody .cafeXeE1{ display:block;}
|
||||
.cafeXeLiquid .cafeXeCE #cafeXeBody .cafeXeE1{ float:right; clear:right;}
|
||||
.cafeXeLiquid .cafeXeEC #cafeXeBody .cafeXeE1{ float:left; clear:left;}
|
||||
|
||||
/* ----- Hybrid 2 Column Layout ----- */
|
||||
.cafeXeHybrid .cafeXeCE #cafeXeBody{ padding-right:280px;}
|
||||
.cafeXeHybrid .cafeXeEC #cafeXeBody{ padding-left:280px;}
|
||||
.cafeXeHybrid .cafeXeCE #cafeXeBody .cafeXeE1,
|
||||
.cafeXeHybrid .cafeXeEC #cafeXeBody .cafeXeE1{ width:260px;}
|
||||
.cafeXeHybrid .cafeXeCE #cafeXeBody #cafeXeContent{ float:left; width:100%;}
|
||||
.cafeXeHybrid .cafeXeEC #cafeXeBody #cafeXeContent{ float:right; width:100%;}
|
||||
.cafeXeHybrid .cafeXeCE #cafeXeBody .cafeXeE1,
|
||||
.cafeXeHybrid .cafeXeEC #cafeXeBody .cafeXeE1{ display:block;}
|
||||
.cafeXeHybrid .cafeXeCE #cafeXeBody .cafeXeE1{ float:right; clear:right; margin-left:-260px; right:-280px;}
|
||||
.cafeXeHybrid .cafeXeEC #cafeXeBody .cafeXeE1{ float:left; clear:left; margin-right:-260px; left:-280px;}
|
||||
|
||||
/* ----- Fixed 3 Column Layout ----- */
|
||||
.cafeXeFixed .cafeXeCEE #cafeXeBody .cafeXeE1,
|
||||
.cafeXeFixed .cafeXeCEE #cafeXeBody .cafeXeE2,
|
||||
.cafeXeFixed .cafeXeECE #cafeXeBody .cafeXeE1,
|
||||
.cafeXeFixed .cafeXeECE #cafeXeBody .cafeXeE2,
|
||||
.cafeXeFixed .cafeXeEEC #cafeXeBody .cafeXeE1,
|
||||
.cafeXeFixed .cafeXeEEC #cafeXeBody .cafeXeE2{ display:block; width:200px;}
|
||||
|
||||
.cafeXeFixed .cafeXeCEE #cafeXeBody #cafeXeContent,
|
||||
.cafeXeFixed .cafeXeECE #cafeXeBody #cafeXeContent,
|
||||
.cafeXeFixed .cafeXeEEC #cafeXeBody #cafeXeContent{ width:520px;}
|
||||
|
||||
.cafeXeFixed .cafeXeCEE #cafeXeBody #cafeXeContent{ float:left; margin-right:20px;}
|
||||
.cafeXeFixed .cafeXeECE #cafeXeBody #cafeXeContent{ float:left; margin-right:-100%; left:220px;}
|
||||
.cafeXeFixed .cafeXeEEC #cafeXeBody #cafeXeContent{ float:right;}
|
||||
|
||||
.cafeXeFixed .cafeXeECE #cafeXeBody .cafeXeE1,
|
||||
.cafeXeFixed .cafeXeEEC #cafeXeBody .cafeXeE1{ float:left; margin-right:20px;}
|
||||
|
||||
.cafeXeFixed .cafeXeCEE #cafeXeBody .cafeXeE1,
|
||||
.cafeXeFixed .cafeXeEEC #cafeXeBody .cafeXeE2{ float:left;}
|
||||
|
||||
.cafeXeFixed .cafeXeCEE #cafeXeBody .cafeXeE2,
|
||||
.cafeXeFixed .cafeXeECE #cafeXeBody .cafeXeE2{ float:right;}
|
||||
|
||||
/* ----- Liquid 3 Column Layout ----- */
|
||||
.cafeXeLiquid .cafeXeCEE #cafeXeBody .cafeXeE1,
|
||||
.cafeXeLiquid .cafeXeCEE #cafeXeBody .cafeXeE2,
|
||||
.cafeXeLiquid .cafeXeECE #cafeXeBody .cafeXeE1,
|
||||
.cafeXeLiquid .cafeXeECE #cafeXeBody .cafeXeE2,
|
||||
.cafeXeLiquid .cafeXeEEC #cafeXeBody .cafeXeE1,
|
||||
.cafeXeLiquid .cafeXeEEC #cafeXeBody .cafeXeE2{ display:block; width:20%;}
|
||||
|
||||
.cafeXeLiquid .cafeXeCEE #cafeXeBody #cafeXeContent,
|
||||
.cafeXeLiquid .cafeXeECE #cafeXeBody #cafeXeContent,
|
||||
.cafeXeLiquid .cafeXeEEC #cafeXeBody #cafeXeContent{ width:56%;}
|
||||
|
||||
.cafeXeLiquid .cafeXeCEE #cafeXeBody #cafeXeContent{ float:left; margin-right:2%;}
|
||||
.cafeXeLiquid .cafeXeECE #cafeXeBody #cafeXeContent{ float:left; margin-right:-100%; left:22%;}
|
||||
.cafeXeLiquid .cafeXeEEC #cafeXeBody #cafeXeContent{ float:right;}
|
||||
|
||||
.cafeXeLiquid .cafeXeECE #cafeXeBody .cafeXeE1,
|
||||
.cafeXeLiquid .cafeXeEEC #cafeXeBody .cafeXeE1{ float:left; margin-right:2%;}
|
||||
|
||||
.cafeXeLiquid .cafeXeCEE #cafeXeBody .cafeXeE1,
|
||||
.cafeXeLiquid .cafeXeEEC #cafeXeBody .cafeXeE2{ float:left;}
|
||||
|
||||
.cafeXeLiquid .cafeXeCEE #cafeXeBody .cafeXeE2,
|
||||
.cafeXeLiquid .cafeXeECE #cafeXeBody .cafeXeE2{ float:right;}
|
||||
|
||||
/* ----- Hybrid 3 Column Layout ----- */
|
||||
.cafeXeHybrid .cafeXeCEE #cafeXeBody .cafeXeE1,
|
||||
.cafeXeHybrid .cafeXeCEE #cafeXeBody .cafeXeE2,
|
||||
.cafeXeHybrid .cafeXeECE #cafeXeBody .cafeXeE1,
|
||||
.cafeXeHybrid .cafeXeECE #cafeXeBody .cafeXeE2,
|
||||
.cafeXeHybrid .cafeXeEEC #cafeXeBody .cafeXeE1,
|
||||
.cafeXeHybrid .cafeXeEEC #cafeXeBody .cafeXeE2{ display:block; width:220px;}
|
||||
|
||||
.cafeXeHybrid .cafeXeCEE #cafeXeBody{ padding-right:480px;}
|
||||
.cafeXeHybrid .cafeXeECE #cafeXeBody{ padding-left:240px; padding-right:240px;}
|
||||
.cafeXeHybrid .cafeXeEEC #cafeXeBody{ padding-left:480px;}
|
||||
|
||||
.cafeXeHybrid .cafeXeCEE #cafeXeBody #cafeXeContent,
|
||||
.cafeXeHybrid .cafeXeECE #cafeXeBody #cafeXeContent,
|
||||
.cafeXeHybrid .cafeXeEEC #cafeXeBody #cafeXeContent{ width:100%;}
|
||||
|
||||
.cafeXeHybrid .cafeXeCEE #cafeXeBody #cafeXeContent,
|
||||
.cafeXeHybrid .cafeXeECE #cafeXeBody #cafeXeContent{ float:left; margin-right:-100%;}
|
||||
.cafeXeHybrid .cafeXeEEC #cafeXeBody #cafeXeContent{ float:right;}
|
||||
|
||||
.cafeXeHybrid .cafeXeECE #cafeXeBody .cafeXeE1,
|
||||
.cafeXeHybrid .cafeXeEEC #cafeXeBody .cafeXeE2{ float:left; left:-240px; margin-right:-220px;}
|
||||
.cafeXeHybrid .cafeXeEEC #cafeXeBody .cafeXeE1{ float:left; left:-480px; margin-right:-220px;}
|
||||
|
||||
.cafeXeHybrid .cafeXeCEE #cafeXeBody .cafeXeE1,
|
||||
.cafeXeHybrid .cafeXeECE #cafeXeBody .cafeXeE2{ float:right; left:240px; margin-left:-220px;}
|
||||
.cafeXeHybrid .cafeXeCEE #cafeXeBody .cafeXeE2{ float:right; left:480px; margin-left:-220px;}
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
@charset "utf-8";
|
||||
/* NHN > UIT Center > Open UI Technology Team > Jeong Chan Myeong(dece24@nhncorp.com) */
|
||||
|
||||
/* Body */
|
||||
.cafeXe{ background:#000;}
|
||||
|
||||
/* Heading */
|
||||
#cafeXeHeader a{ color:#999;}
|
||||
#cafeXeHeader h1.cafeXeH1 a{ color:#fff;}
|
||||
#cafeXeBody h2.cafeXeBodyH2{ color:#999; border-color:#999;}
|
||||
#cafeXeBody h2.cafeXeExtensionH2{ color:#999; border-color:#999;}
|
||||
#cafeXeKnee h2.cafeXeExtensionH2{ color:#ccc; border-color:#434343;}
|
||||
|
||||
/* Layout */
|
||||
#cafeXeHeader,
|
||||
#cafeXeKnee,
|
||||
#cafeXeFooter{ background:#333; color:#666;}
|
||||
|
||||
/* Footer */
|
||||
.cafeXeAddress abbr{ color:#fff;}
|
||||
|
|
@ -1,70 +0,0 @@
|
|||
@charset "utf-8";
|
||||
/* NHN > UIT Center > Open UI Technology Team > Jeong Chan Myeong(dece24@nhncorp.com) */
|
||||
|
||||
/* Common */
|
||||
.cafeXe{ margin:0; font-family:AppleGothic, Sans-serif;}
|
||||
.cafeXe a{ text-decoration:none;}
|
||||
.cafeXe a:hover,
|
||||
.cafeXe a:active,
|
||||
.cafeXe a:focus{ text-decoration:underline;}
|
||||
.cafeXe img{ border:0;}
|
||||
.cafeXe sup,
|
||||
.cafeXe sub{ line-height:1;}
|
||||
.cafeXeAddress{ font-style:normal;}
|
||||
|
||||
/* Heading */
|
||||
#cafeXeBody h2.cafeXeBodyH2{ margin:0; padding-bottom:5px; font-size:16px; border-bottom:2px solid;}
|
||||
#cafeXeBody h2.cafeXeExtensionH2{ margin:0; padding-bottom:5px; font-size:16px; border-bottom:2px solid;}
|
||||
#cafeXeKnee h2.cafeXeExtensionH2{ position:relative; margin:0; font-size:12px; padding-bottom:5px; border-bottom:2px solid;}
|
||||
|
||||
/* Container */
|
||||
.cafeXeFixed #cafeXeContainer{ width:auto;}
|
||||
|
||||
/* Header */
|
||||
.cafeXeFixed .cafeXeEC #cafeXeHeader,
|
||||
.cafeXeFixed .cafeXeCE #cafeXeHeader{ border:0; padding:20px 0 0 0;}
|
||||
.cafeXeFixed .cafeXeEC #cafeXeHeader .cafeXeHeader,
|
||||
.cafeXeFixed .cafeXeCE #cafeXeHeader .cafeXeHeader{ position:relative; width:960px; margin:0 auto; padding-bottom:30px;}
|
||||
.cafeXeFixed .cafeXeEC #cafeXeHeader h1.cafeXeH1,
|
||||
.cafeXeFixed .cafeXeCE #cafeXeHeader h1.cafeXeH1{ margin:0;}
|
||||
.cafeXeFixed .cafeXeEC #cafeXeHeader h1.cafeXeH1 a,
|
||||
.cafeXeFixed .cafeXeCE #cafeXeHeader h1.cafeXeH1 a{ text-decoration:none;}
|
||||
.cafeXeFixed .cafeXeEC #cafeXeHeader .cafeXeUrl,
|
||||
.cafeXeFixed .cafeXeCE #cafeXeHeader .cafeXeUrl{ margin:0;}
|
||||
.cafeXeFixed .cafeXeEC #cafeXeHeader .cafeXeUrl a,
|
||||
.cafeXeFixed .cafeXeCE #cafeXeHeader .cafeXeUrl a{ font:10px Tahoma;}
|
||||
|
||||
/* Body */
|
||||
.cafeXeFixed .cafeXeEC #cafeXeBody,
|
||||
.cafeXeFixed .cafeXeCE #cafeXeBody{ width:740px; margin:0 auto; padding-top:40px;}
|
||||
.cafeXeFixed .cafeXeEC #cafeXeBody{ padding-left:220px;}
|
||||
.cafeXeFixed .cafeXeCE #cafeXeBody{ padding-right:220px;}
|
||||
.cafeXeFixed .cafeXeEC #cafeXeBody .cafeXeE1,
|
||||
.cafeXeFixed .cafeXeCE #cafeXeBody .cafeXeE1{ width:180px;}
|
||||
.cafeXeFixed .cafeXeEC #cafeXeBody .cafeXeE1{ left:-220px; margin-right:-180px;}
|
||||
.cafeXeFixed .cafeXeCE #cafeXeBody .cafeXeE1{ right:-220px; margin-left:-180px;}
|
||||
.cafeXeFixed .cafeXeEC #cafeXeBody #cafeXeContent,
|
||||
.cafeXeFixed .cafeXeCE #cafeXeBody #cafeXeContent{ width:100%;}
|
||||
.cafeXeFixed .cafeXeEC #cafeXeBody #cafeXeContent .cafeXeSection,
|
||||
.cafeXeFixed .cafeXeCE #cafeXeBody #cafeXeContent .cafeXeSection{ margin-bottom:40px; *zoom:1;}
|
||||
|
||||
/* Knee */
|
||||
.cafeXeFixed .cafeXeEC #cafeXeKnee,
|
||||
.cafeXeFixed .cafeXeCE #cafeXeKnee{ padding:30px 0; border:0;}
|
||||
.cafeXeFixed .cafeXeEC #cafeXeKnee .cafeXeExtension,
|
||||
.cafeXeFixed .cafeXeCE #cafeXeKnee .cafeXeExtension{ left:14px; _left:28px; width:988px; margin:0 auto;}
|
||||
.cafeXeFixed .cafeXeEC #cafeXeKnee .cafeXeExtension .cafeXeSection,
|
||||
.cafeXeFixed .cafeXeCE #cafeXeKnee .cafeXeExtension .cafeXeSection{ width:219px; margin-right:28px;}
|
||||
|
||||
/* Footer */
|
||||
.cafeXeFixed .cafeXeEC #cafeXeFooter,
|
||||
.cafeXeFixed .cafeXeCE #cafeXeFooter{ padding:30px 0; border:0;}
|
||||
.cafeXeFixed .cafeXeEC #cafeXeFooter .cafeXeFooter,
|
||||
.cafeXeFixed .cafeXeCE #cafeXeFooter .cafeXeFooter{ position:relative; width:960px; margin:0 auto; *zoom:1; font:10px Tahoma;}
|
||||
.cafeXeFixed .cafeXeEC #cafeXeFooter .cafeXeFooter a,
|
||||
.cafeXeFixed .cafeXeCE #cafeXeFooter .cafeXeFooter a{ text-decoration:none;}
|
||||
.cafeXeFixed .cafeXeEC #cafeXeFooter .cafeXeFooter:after,
|
||||
.cafeXeFixed .cafeXeCE #cafeXeFooter .cafeXeFooter:after{ content:""; display:block; clear:both;}
|
||||
.cafeXeFixed .cafeXeEC #cafeXeFooter .cafeXeFooter address,
|
||||
.cafeXeFixed .cafeXeCE #cafeXeFooter .cafeXeFooter address{ float:left;}
|
||||
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
@charset "utf-8";
|
||||
/* NHN > UIT Center > Open UI Technology Team > Jeong Chan Myeong(dece24@nhncorp.com) */
|
||||
|
||||
/* Body */
|
||||
.cafeXe{ background:#fff;}
|
||||
|
||||
/* Heading */
|
||||
#cafeXeHeader a{ color:#999;}
|
||||
#cafeXeHeader h1.cafeXeH1 a{ color:#fff;}
|
||||
#cafeXeBody h2.cafeXeBodyH2{ color:#333; border-color:#666;}
|
||||
#cafeXeBody h2.cafeXeExtensionH2{ color:#333; border-color:#666;}
|
||||
#cafeXeKnee h2.cafeXeExtensionH2{ color:#ccc; border-color:#434343;}
|
||||
|
||||
/* Layout */
|
||||
#cafeXeHeader,
|
||||
#cafeXeKnee,
|
||||
#cafeXeFooter{ background:#333; color:#666;}
|
||||
|
||||
/* Footer */
|
||||
.cafeXeAddress abbr{ color:#fff;}
|
||||
|
|
@ -1,802 +0,0 @@
|
|||
@charset "utf-8";
|
||||
/* NHN > UIT Center > Open UI Technology Team > Jeong Chan Myeong(dece24@nhncorp.com) */
|
||||
|
||||
/* common */
|
||||
.open{ display:block !important;}
|
||||
.floatLeft{ float:left;}
|
||||
.floatRight{ float:right;}
|
||||
.clearLeft{ clear:left;}
|
||||
.clearRight{ clear:right;}
|
||||
.widgetXeInputText{ border:1px solid; padding:2px 5px; font-size:12px;}
|
||||
.widgetXeInputCheck{ margin:0; width:13px; height:13px; vertical-align:middle;}
|
||||
.widgetXeInputSubmit{ padding:0;}
|
||||
.widgetXeAddress{ font-style:normal;}
|
||||
|
||||
/* widgetContainer */
|
||||
.widgetContainer a{ text-decoration:none;}
|
||||
.widgetContainer a:hover,
|
||||
.widgetContainer a:active,
|
||||
.widgetContainer a:focus{ text-decoration:underline;}
|
||||
.widgetContainer img{ border:0;}
|
||||
.widgetContainer sup{ position:relative; line-height:1; display:inline-block; margin:-5px 0; *padding:0 1px;}
|
||||
.widgetContainer form{ margin:0; padding:0;}
|
||||
.widgetContainer fieldset{ border:0; margin:0; padding:0;}
|
||||
|
||||
/* widgetDivider */
|
||||
dl.widgetDivider{ margin:0;}
|
||||
dl.widgetDivider dt{ position:absolute; width:0; height:0; overflow:hidden; font-size:0; line-height:0;}
|
||||
dl.widgetDivider dd{ display:none; margin:0;}
|
||||
|
||||
/* widgetTableA */
|
||||
.widgetTableA { width:100%; font-size:12px; position:relative; border:0;}
|
||||
.widgetTableA td{ border:0; line-height:1.5; white-space:nowrap; vertical-align:top; padding:1px 5px 1px 5px;}
|
||||
.widgetTableA td.title{ width:100%; white-space:normal;}
|
||||
.widgetTableA td .board{ padding-right:5px;}
|
||||
.widgetTableA td .notice{ padding-right:5px;}
|
||||
.widgetTableA td .category{ padding-right:5px; font-weight:normal;}
|
||||
.widgetTableA td .replyNum a{ font:10px Tahoma;}
|
||||
.widgetTableA td .trackbackNum a{ font:10px Tahoma;}
|
||||
.widgetTableA td.author{}
|
||||
.widgetTableA td.time{ font-size:11px; font-family:Tahoma;}
|
||||
|
||||
/* widgetTableB */
|
||||
.widgetTableB { width:100%; font-size:12px; position:relative; border:0; border-top:1px solid;}
|
||||
.widgetTableB td{ border:0; line-height:1.5; white-space:nowrap; vertical-align:top; padding:8px 5px 6px 5px; border-bottom:1px solid;}
|
||||
.widgetTableB td.title{ width:100%; white-space:normal;}
|
||||
.widgetTableB td .board{ padding-right:5px;}
|
||||
.widgetTableB td .notice{ padding-right:5px;}
|
||||
.widgetTableB td .category{ padding-right:5px; font-weight:normal;}
|
||||
.widgetTableB td .replyNum a{ font:10px Tahoma;}
|
||||
.widgetTableB td .trackbackNum a{ font:10px Tahoma;}
|
||||
.widgetTableB td.author{}
|
||||
.widgetTableB td.time{ font-size:11px; font-family:Tahoma;}
|
||||
|
||||
/* widgetTableC */
|
||||
.widgetTableC { width:100%; font-size:12px; position:relative; border:0; border-top:1px solid;}
|
||||
.widgetTableC td{ border:0; line-height:1.5; white-space:nowrap; vertical-align:top; padding:10px; border-bottom:1px solid;}
|
||||
.widgetTableC td.title,
|
||||
.widgetTableC td.lastDoc{ width:100%; white-space:nowrap;}
|
||||
.widgetTableC td.docNum{}
|
||||
.widgetTableC td.docNum em{ display:block; padding:12px 0 0 5px; width:50px; height:21px; font-size:11px; font-weight:bold; font-style:normal; font-family:Tahoma; color:#fff; background:url(../img/white/iconForumNum.gif) no-repeat 0 0;}
|
||||
.widgetTableC td.title a{ font-weight:bold; text-decoration:underline !important;}
|
||||
.widgetTableC td.title dl{ margin:0;}
|
||||
.widgetTableC td.title dd{ margin:0;}
|
||||
.widgetTableC td.lastDoc p{ margin:0;}
|
||||
.widgetTableC td .author{ margin-right:5px;}
|
||||
.widgetTableC td .time{ font-size:11px; font-family:Tahoma;}
|
||||
.widgetTableC td .time .date{ margin-right:5px;}
|
||||
|
||||
/* widgetUlistA */
|
||||
.widgetUlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetUlistA li{ list-style:none;}
|
||||
|
||||
/* widgetUlistB */
|
||||
.widgetUlistB{ margin:0; padding:0; font-size:12px; line-height:1.5; *zoom:1;}
|
||||
.widgetUlistB:after{ content:""; display:block; clear:both;}
|
||||
.widgetUlistB li{ position:relative; list-style:none; margin-bottom:10px; *zoom:1;}
|
||||
.widgetUlistB li .author{ float:left; margin-right:-42px;}
|
||||
.widgetUlistB li .author img{ border:1px solid;}
|
||||
.widgetUlistB li .title{ position:relative; margin:0 0 0 60px; border:2px solid; padding:10px 15px; _zoom:1;}
|
||||
.widgetUlistB li .title a{ text-decoration:underline;}
|
||||
.widgetUlistB li .title .arrow{ position:absolute; top:16px; left:-6px; display:block; overflow:hidden; width:6px; height:7px; font-size:0; line-height:0;}
|
||||
.widgetUlistB li .title .deco{ position:absolute; display:block; overflow:hidden; width:1px; height:1px; font-size:0; line-height:0;}
|
||||
.widgetUlistB li .title .deco .topLeft{}
|
||||
.widgetUlistB li .title .date{ font-size:11px; font-family:Tahoma;}
|
||||
.widgetUlistB li .title .hour{ font-size:11px; font-family:Tahoma;}
|
||||
|
||||
/* widgetOlistA */
|
||||
.widgetOlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetOlistA li{ margin-left:25px;}
|
||||
.widgetOlistA li sup{ font-size:9px; font-family:tahoma; padding-left:10px; }
|
||||
|
||||
/* widgetDlistA */
|
||||
.widgetDlistA{ margin:0; padding:0; font-size:12px; line-height:1.5; zoom:1;}
|
||||
.widgetDlistA:after{ content:""; display:block; clear:both;}
|
||||
.widgetDlistA dt{ float:left; clear:left; margin-right:5px; white-space:nowrap;}
|
||||
.widgetDlistA dd{ clear:right; white-space:nowrap; font-family:Tahoma;}
|
||||
|
||||
/* widgetGalleryA */
|
||||
.widgetGalleryA{ position:relative; margin:0; padding:0; font-size:12px; line-height:1.5; *zoom:1; _margin-right:-100%;}
|
||||
.widgetGalleryA:after{ content:""; display:block; clear:both;}
|
||||
.widgetGalleryA li { float:left; overflow:hidden; width:100px; margin-right:28px; margin-bottom:15px; padding-bottom:0; white-space:nowrap; list-style:none;}
|
||||
.widgetGalleryA li.clearRight{ margin-right:0;}
|
||||
.widgetGalleryA li .thumb{ display:block; position:relative; width:100px; height:75px; margin-bottom:10px; overflow:hidden; text-decoration:none;}
|
||||
.widgetGalleryA li .thumb img{ display:block; position:relative; width:100%;}
|
||||
.widgetGalleryA li .thumb .imgNone{ display:block; position:relative; width:100%; height:70%; padding-top:30%; background:#eee; text-align:center; cursor:pointer; color:#000;}
|
||||
.widgetGalleryA li .thumb .board{ display:block; position:absolute; width:100%; top:0; left:0; padding:2px 0 0 0 !important; cursor:pointer; text-align:center; background:#000; color:#fff; opacity:0.6; filter:alpha(opacity=60); -ms-filter:alpha('opacity=60'); }
|
||||
.widgetGalleryA li .thumb .category{ display:block; position:absolute; width:100%; bottom:0; left:0; padding:2px 0 0 0 !important; cursor:pointer; text-align:center; font-weight:normal; background:#000; color:#fff; opacity:0.6; filter:alpha(opacity=60); -ms-filter:alpha('opacity=60'); }
|
||||
.widgetGalleryA li .author{ display:block;}
|
||||
.widgetGalleryA li .replyNum a{ font:10px Tahoma; margin:0 -1px;}
|
||||
.widgetGalleryA li .trackbackNum a{ font:10px Tahoma; margin:0 -1px;}
|
||||
.widgetGalleryA li .date{ font:11px Tahoma;}
|
||||
.widgetGalleryA li .hour{ font:11px Tahoma;}
|
||||
|
||||
/* widgetGalleryB */
|
||||
.widgetGalleryB{ position:relative; margin:0; padding:0; font-size:12px; line-height:1.5; *zoom:1;}
|
||||
.widgetGalleryB:after{ content:""; display:block; clear:both;}
|
||||
.widgetGalleryB li { float:left; overflow:hidden; width:100px; margin-right:28px; margin-bottom:15px; padding-bottom:15px; white-space:nowrap; list-style:none; border-bottom:1px solid;}
|
||||
.widgetGalleryB li.clearRight{ margin-right:0;}
|
||||
.widgetGalleryB li .thumb{ display:block; position:relative; width:100px; height:75px; margin-bottom:10px; overflow:hidden; text-decoration:none;}
|
||||
.widgetGalleryB li .thumb img{ display:block; position:relative; width:100%;}
|
||||
.widgetGalleryB li .thumb .imgNone{ display:block; position:relative; width:100%; height:70%; padding-top:30%; background:#eee; text-align:center; cursor:pointer; color:#000;}
|
||||
.widgetGalleryB li .thumb .board{ display:block; position:absolute; width:100%; top:0; left:0; padding:2px 0 0 0 !important; cursor:pointer; text-align:center; background:#000; color:#fff; opacity:0.6; filter:alpha(opacity=60); -ms-filter:alpha('opacity=60'); }
|
||||
.widgetGalleryB li .thumb .category{ display:block; position:absolute; width:100%; bottom:0; left:0; padding:2px 0 0 0 !important; cursor:pointer; text-align:center; font-weight:normal; background:#000; color:#fff; opacity:0.6; filter:alpha(opacity=60); -ms-filter:alpha('opacity=60'); }
|
||||
.widgetGalleryB li .author{ display:block;}
|
||||
.widgetGalleryB li .replyNum a{ font:10px Tahoma; margin:0 -1px;}
|
||||
.widgetGalleryB li .trackbackNum a{ font:10px Tahoma; margin:0 -1px;}
|
||||
.widgetGalleryB li .date{ font:11px Tahoma;}
|
||||
.widgetGalleryB li .hour{ font:11px Tahoma;}
|
||||
|
||||
/* widgetZineA */
|
||||
.widgetZineA{ position:relative; margin:0; padding:0; font-size:12px; line-height:1.5; *zoom:1;}
|
||||
.widgetZineA:after{ content:""; display:block; clear:both;}
|
||||
.widgetZineA li { list-style:none; clear:both; margin-bottom:10px; padding-bottom:10px; overflow:hidden; *zoom:1;}
|
||||
.widgetZineA li p{ margin:0;}
|
||||
.widgetZineA li p.thumbArea{ position:relative; float:left; width:100px; margin-right:-100px; overflow:hidden;}
|
||||
.widgetZineA li p.titleArea{ margin-left:120px; margin-bottom:4px;}
|
||||
.widgetZineA li p.titleArea .board{ padding-right:5px;}
|
||||
.widgetZineA li p.text{ margin-left:120px; margin-bottom:4px;}
|
||||
.widgetZineA li p.authorArea{ margin-left:120px;}
|
||||
.widgetZineA li .thumb{ display:block; position:relative; width:100px; height:75px; text-decoration:none; overflow:hidden;}
|
||||
.widgetZineA li .thumb img{ position:relative; width:100%;}
|
||||
.widgetZineA li .thumb .imgNone{ display:block; position:relative; width:100%; height:80%; padding-top:20%; background:#eee; text-align:center; cursor:pointer; color:#000;}
|
||||
.widgetZineA li .thumb .category{ display:block; position:absolute; width:100%; bottom:0; left:0; padding:2px 0 0 0 !important; cursor:pointer; text-align:center; font-weight:normal; background:#000; color:#fff; opacity:0.6; filter:alpha(opacity=60); -ms-filter:alpha('opacity=60'); }
|
||||
.widgetZineA li .title{ font-weight:bold;}
|
||||
.widgetZineA li .replyNum a{ font:10px Tahoma; margin:0 -1px;}
|
||||
.widgetZineA li .trackbackNum a{ font:10px Tahoma; margin:0 -1px;}
|
||||
.widgetZineA li .author{ margin-right:10px;}
|
||||
.widgetZineA li .date{ font:11px Tahoma;}
|
||||
.widgetZineA li .hour{ font:11px Tahoma;}
|
||||
|
||||
/* widgetZineB */
|
||||
.widgetZineB{ position:relative; margin:0; padding:0; font-size:12px; line-height:1.5; *zoom:1;}
|
||||
.widgetZineB:after{ content:""; display:block; clear:both;}
|
||||
.widgetZineB li { list-style:none; clear:both; margin-bottom:10px; padding-bottom:10px; border-bottom:1px solid;}
|
||||
.widgetZineB li p{ margin:0;}
|
||||
.widgetZineB li p.thumbArea{ position:relative; float:left; width:100px; margin-right:-100px; overflow:hidden;}
|
||||
.widgetZineB li p.titleArea{ margin-left:120px; margin-bottom:4px;}
|
||||
.widgetZineB li p.titleArea .board{ padding-right:5px;}
|
||||
.widgetZineB li p.text{ margin-left:120px; margin-bottom:4px;}
|
||||
.widgetZineB li p.authorArea{ margin-left:120px;}
|
||||
.widgetZineB li .thumb{ display:block; position:relative; width:100px; height:75px; text-decoration:none; overflow:hidden;}
|
||||
.widgetZineB li .thumb img{ position:relative; width:100%;}
|
||||
.widgetZineB li .thumb .imgNone{ display:block; position:relative; width:100%; height:80%; padding-top:20%; background:#eee; text-align:center; cursor:pointer; color:#000;}
|
||||
.widgetZineB li .thumb .category{ display:block; position:absolute; width:100%; bottom:0; left:0; padding:2px 0 0 0 !important; cursor:pointer; text-align:center; font-weight:normal; background:#000; color:#fff; opacity:0.6; filter:alpha(opacity=60); -ms-filter:alpha('opacity=60'); }
|
||||
.widgetZineB li .title{ font-weight:bold;}
|
||||
.widgetZineB li .replyNum a{ font:10px Tahoma; margin:0 -1px;}
|
||||
.widgetZineB li .trackbackNum a{ font:10px Tahoma; margin:0 -1px;}
|
||||
.widgetZineB li .author{ margin-right:10px;}
|
||||
.widgetZineB li .date{ font:11px Tahoma;}
|
||||
.widgetZineB li .hour{ font:11px Tahoma;}
|
||||
|
||||
/* WidgetTree */
|
||||
.widgetTree *{ margin:0; padding:0; font-size:12px;}
|
||||
.widgetTree a strong{ letter-spacing:-1px; cursor:pointer; _cursor /**/:hand;}
|
||||
.widgetTree ul{ position:relative; display:block; padding:3px 0 0 0 !important; zoom:1;}
|
||||
.widgetTree ul li{ list-style:none; position:relative; padding:3px 0 2px 8px; white-space:nowrap;}
|
||||
.widgetTree ul li .nav_tree_label,
|
||||
.widgetTree ul li .sum{ position:relative; left:16px; _left /**/:0; top:0; font-style:normal;}
|
||||
.widgetTree ul li a.selected {font-weight:bold;}
|
||||
.widgetTree ul li button{ display:inline-block; position:relative; _left /**/:-16px; *top:-2px; width:13px; height:13px; *width:17px; *height:17px; margin:0 -13px 0 0; *margin:0 -17px -1px -2px; text-indent:-10000px; *text-indent:0; *font:0/0 Sans-serif; border:none; cursor:pointer; _cursor /**/:hand;}
|
||||
.widgetTree ul li ul{ display:none; padding:2px 0 0 0 !important; margin:0 0 -2px 6px; background-position:left top;}
|
||||
.widgetTree ul li ul li{ display:none;}
|
||||
.widgetTree ul li.nav_tree_on button{ background-position:0 -13px; *background-position:2px -11px;}
|
||||
.widgetTree ul li.nav_tree_off button{ background-position:0 0; *background-position:2px 2px;}
|
||||
.widgetTree ul li.nav_tree_on ul{ display:block;}
|
||||
.widgetTree ul li.nav_tree_on ul li{ display:block;}
|
||||
.widgetTree ul li.nav_tree_off ul{ display:none;}
|
||||
.widgetTree ul li.nav_tree_off ul li{ display:none;}
|
||||
.widgetTree .icon{ position:relative; left:16px;}
|
||||
|
||||
/* widgetLogin */
|
||||
.widgetLogin{ font-size:12px;}
|
||||
.widgetLogin fieldset{ border:0; margin:0; padding:0;}
|
||||
.widgetLogin dl{ margin:0;}
|
||||
.widgetLogin dt{ display:none;}
|
||||
.widgetLogin dd{ margin:0 0 5px 0;}
|
||||
.widgetLogin dd .widgetXeInputText{ width:90%; height:16px;}
|
||||
.widgetLogin p{ margin:5px 0;}
|
||||
.widgetLogin p .widgetXeInputCheck{ margin-right:5px;}
|
||||
.widgetLogin .help{ position:relative; width:100%; overflow:hidden; margin:10px 0 0 0; padding:0;}
|
||||
.widgetLogin .help li{ position:relative; left:-5px; padding-left:5px; list-style:none; display:inline; letter-spacing:-1px;}
|
||||
|
||||
/* widgetLastLogin */
|
||||
.widgetLastLogin{ margin:10px 0; font-size:12px;}
|
||||
.widgetLastLogin dt,
|
||||
.widgetLastLogin dd{ display:inline; margin:0;}
|
||||
.widgetLastLogin dd{ font-size:11px; font-family:Tahoma;}
|
||||
|
||||
/* widgetMyInfo */
|
||||
.widgetMyInfo{ margin:0; padding:0; font-size:12px;}
|
||||
.widgetMyInfo:after{ content:""; display:block; clear:both; *zoom:1;}
|
||||
.widgetMyInfo li{ margin-bottom:5px; padding:0; text-indent:12px; list-style:none;}
|
||||
|
||||
/* widgetLevel */
|
||||
.widgetLevel{ padding-left:30px; background-repeat:no-repeat; background-position:left 30%;}
|
||||
.widgetLevel em{ display:block; width:0; height:0; overflow:hidden; font-size:0; line-height:0; position:absolute;}
|
||||
|
||||
/* widgetCounter */
|
||||
.widgetCounter{ font-size:12px; margin:0;}
|
||||
.widgetCounter dt,
|
||||
.widgetCounter dd{ height:18px;}
|
||||
.widgetCounter dt{ float:left; clear:left;}
|
||||
.widgetCounter dd{ font-size:11px; font-family:Tahoma;}
|
||||
|
||||
/* widgetLanguage */
|
||||
.widgetLanguage p{ float:right; margin:0;}
|
||||
.widgetLanguage .langList{ display:none; position:absolute; margin:0; padding:0; z-index:999;}
|
||||
.widgetLanguage .langList li{ list-style:none;}
|
||||
.widgetLanguage .langList li a{ font-size:12px; display:block; padding:2px 5px;}
|
||||
|
||||
/* widgetTabA */
|
||||
.widgetTabA{ position:relative; margin:0; padding:0; *zoom:1; border-bottom:2px solid;}
|
||||
.widgetTabA:after{ content:""; display:block; clear:both;}
|
||||
.widgetTabA li{ float:left; margin-right:1px; list-style:none; background-repeat:no-repeat; background-position:0 0;}
|
||||
.widgetTabA li.active{ background-position:0 -30px;}
|
||||
.widgetTabA li a{ position:relative; left:2px; float:left; height:20px; padding:8px 15px 0 15px; text-decoration:none; font-size:12px; background-repeat:no-repeat; background-position:right 0;}
|
||||
.widgetTabA li.active a{ background-position:right -30px; font-weight:bold; letter-spacing:-1px;}
|
||||
|
||||
/* widgetTabB */
|
||||
.widgetTabB{ margin:0; position:absolute; top:1px; right:0; white-space:nowrap; font-size:12px;}
|
||||
.widgetTabB li{ display:inline;}
|
||||
.widgetTabB li.active a{ font-weight:bold;}
|
||||
|
||||
/* widgetTabC */
|
||||
.widgetTabC{ margin:0; padding:0; font-size:12px; border-top:1px solid;}
|
||||
.widgetTabC li{ list-style:none; border-bottom:1px solid; *zoom:1; margin-bottom:1px;}
|
||||
.widgetTabC li a{ display:block; padding:7px 0 6px 10px; text-decoration:none; *zoom:1;}
|
||||
|
||||
/* widgetThumb */
|
||||
.widgetThumb{ position:relative; margin:0; text-align:center; font-size:12px; line-height:1.5;}
|
||||
.widgetThumb .thumb{ display:block; margin-bottom:5px; position:relative; *zoom:1; text-decoration:none; _float:left;}
|
||||
.widgetThumb .thumb img{ display:block; width:100%;}
|
||||
.widgetThumb .thumb .imgNone{ display:block; position:relative; width:100%; padding-top:30px; padding-bottom:50px; background:#eee; text-align:center; cursor:pointer; color:#000;}
|
||||
.widgetThumb .thumb .category{ display:block; position:absolute; width:100%; bottom:0; left:0; padding:2px 0 0 0 !important; cursor:pointer; text-align:center; font-weight:normal; background:#000; color:#fff; opacity:0.6; filter:alpha(opacity=60); -ms-filter:alpha('opacity=60'); }
|
||||
.widgetThumb .title{ display:block;}
|
||||
.widgetThumb .author{ display:block;}
|
||||
.widgetThumb .date{ font-size:11px; font-family:Tahoma;}
|
||||
.widgetThumb .hour{ font-size:11px; font-family:Tahoma;}
|
||||
|
||||
/* widgetContainer */
|
||||
.widgetContainer{ *zoom:1;}
|
||||
.widgetContainer:after{ content:""; display:block; clear:both;}
|
||||
|
||||
/* widgetNavigator */
|
||||
.widgetNavigator{ margin:0; padding:0; text-align:right; clear:both;}
|
||||
.widgetNavigator li{ list-style:none; display:inline;}
|
||||
.widgetNavigator li button{ width:16px; height:16px; padding:0; background-color:transparent; background-image:url(../img/white/buttonWidgetNavigation.gif); border:1px solid #999; cursor:pointer;}
|
||||
.widgetNavigator li button.prev{ background-position:left center; *background-position:-1px center;}
|
||||
.widgetNavigator li button.next{ background-position:right center; *background-position:13px center;}
|
||||
.widgetNavigator li button span{ position:absolute; display:block; width:0; height:0; overflow:hidden; visibility:hidden;}
|
||||
|
||||
/* widgetTagCloud */
|
||||
.widgetTagCloud { text-align:justify; font-size:12px; line-height:1.5; margin:0; padding:0;}
|
||||
.widgetTagCloud li{ display:inline; white-space:nowrap; list-style:none;}
|
||||
.widgetTagCloud li.level1 a{ font-size:11px;}
|
||||
.widgetTagCloud li.level2 a{ font-size:12px;}
|
||||
.widgetTagCloud li.level3 a{ font-size:14px; font-weight:bold;}
|
||||
.widgetTagCloud li.level4 a{ font-size:18px; font-weight:bold;}
|
||||
|
||||
/* widgetCalendar */
|
||||
.widgetCalendarNavigation{ position:relative; height:15px; margin-bottom:-15px; z-index:10;}
|
||||
.widgetCalendarNavigation button{ position:absolute; top:0; font-size:10px; font-family:Tahoma; background:none; border:0; padding:0; cursor:pointer;}
|
||||
.widgetCalendarNavigation button.prevYear{ left:0;}
|
||||
.widgetCalendarNavigation button.prevMonth{ left:25px;}
|
||||
.widgetCalendarNavigation button.nextYear{ right:0;}
|
||||
.widgetCalendarNavigation button.nextMonth{ right:25px;}
|
||||
.widgetCalendar{ position:relative; border:0; width:100%;}
|
||||
.widgetCalendar caption { position:relative; padding-bottom:5px; text-align:center; font-size:12px; font-weight:bold; font-family:Tahoma;}
|
||||
.widgetCalendar th,
|
||||
.widgetCalendar td{ border:0; text-align:center; padding:5px 0;}
|
||||
.widgetCalendar th{ font-size:10px; font-family:Tahoma; font-weight:normal;}
|
||||
.widgetCalendar td,
|
||||
.widgetCalendar td a{ font-size:11px; font-family:Tahoma;}
|
||||
.widgetCalendar td em{ font-style:normal;}
|
||||
|
||||
/* widgetPoint */
|
||||
.widgetPoint{ margin:0; *zoom:1; clear:both;}
|
||||
.widgetPoint:after{ content:""; display:block; clear:both;}
|
||||
.widgetPoint dt{ font-size:12px; font-family:Tahoma; font-weight:bold;}
|
||||
.widgetPoint dd{ margin:0;}
|
||||
.widgetPoint dd.graph{ height:5px; overflow:hidden; background:#e5e5e5; font-size:0; line-height:0;}
|
||||
.widgetPoint dd.graph img{ width:0%;}
|
||||
.widgetPoint dd.point{ font-size:10px; font-family:Tahoma; float:left; color:#888;}
|
||||
.widgetPoint dd.percentage{ font-size:10px; font-family:Tahoma; float:right; color:#888;}
|
||||
|
||||
/* widgetMenuA */
|
||||
.widgetMenuA{ position:relative; margin:0; padding:0; font-size:12px; line-height:1.2; border-top:1px solid;}
|
||||
.widgetMenuA li{ position:relative; list-style:none; border-bottom:1px solid; *zoom:1;}
|
||||
.widgetMenuA li sup{ font-size:10px; font-family:Tahoma; line-height:1; color:#888; font-weight:normal;}
|
||||
.widgetMenuA li li.active sup{ color:#ff1a1a;}
|
||||
.widgetMenuA li li{ padding:0; border:0;}
|
||||
.widgetMenuA li ul{ display:none; margin:0 0 10px 20px; padding:0;}
|
||||
.widgetMenuA li.active ul{ display:block;}
|
||||
.widgetMenuA li a{ position:relative; display:block; padding:7px 0 7px 10px; background-repeat:no-repeat; background-position:0 center; text-decoration:none !important;}
|
||||
.widgetMenuA li.active a{ font-weight:bold;}
|
||||
.widgetMenuA li.active li a{ font-weight:normal; padding:1px 0; background:none !important;}
|
||||
.widgetMenuA li li.active a{ color:#ff1a1a;}
|
||||
.widgetMenuA li.active li a:hover,
|
||||
.widgetMenuA li.active li a:active,
|
||||
.widgetMenuA li.active li a:focus{ text-decoration:underline !important;}
|
||||
|
||||
/* widgetMenuB */
|
||||
.widgetMenuB{ margin:0; padding:0; font-size:12px; line-height:1.3; border-top:1px solid;}
|
||||
.widgetMenuB li{ position:relative; list-style:none; border-bottom:1px solid; white-space:nowrap; *zoom:1;}
|
||||
.widgetMenuB li sup{ font-size:10px; font-family:Tahoma; line-height:1; color:#888; font-weight:normal;}
|
||||
.widgetMenuB li li{ padding:2px 10px; border:none;}
|
||||
.widgetMenuB li li.first{ left:-4px; padding-left:14px; background-repeat:no-repeat; background-position:0 center;}
|
||||
.widgetMenuB li li.active sup{ color:#ff1a1a;}
|
||||
.widgetMenuB li ul{ position:absolute; display:none; top:-1px; left:100%; margin:0 0 0 5px; padding:5px 0 10px 0; border:1px solid}
|
||||
.widgetMenuB li.active{ z-index:100;}
|
||||
.widgetMenuB li.active ul{ display:block;}
|
||||
.widgetMenuB li a{ position:relative; display:block; padding:7px 0 7px 10px; background-repeat:no-repeat; background-position:0 center; text-decoration:none !important; *zoom:1;}
|
||||
.widgetMenuB li.active a{ font-weight:bold;}
|
||||
.widgetMenuB li.active li a{ font-weight:normal; padding:0; background:none !important;}
|
||||
.widgetMenuB li li.active a{ color:#ff1a1a;}
|
||||
.widgetMenuB li.active li a:hover,
|
||||
.widgetMenuB li.active li a:active,
|
||||
.widgetMenuB li.active li a:focus{ text-decoration:underline !important;}
|
||||
|
||||
.widgetMenuC{ margin:0; padding:0; font-size:12px; line-height:1.2; background-repeat:repeat-x;background-position:0 0;}
|
||||
.widgetMenuC ul{ margin:0; padding:0; height:35px;}
|
||||
.widgetMenuC ul li ul{ display:none; position:absolute; top:40px; left:20px; height:auto; padding-bottom:7px; background:#35ad06; border:1px solid #027a00;}
|
||||
.widgetMenuC ul li.active ul{ display:block;}
|
||||
.widgetMenuC ul.aCenter{ margin-left:auto; margin-right:auto;}
|
||||
.widgetMenuC ul.aLeft{ margin-right:auto;}
|
||||
.widgetMenuC ul.aRight{ margin-left:auto;}
|
||||
.widgetMenuC li{ position:relative; padding-right:3px; float:left; list-style:none; background-repeat:no-repeat;background-position:right -40px; white-space:nowrap;}
|
||||
.widgetMenuC li a{ position:relative; float:left; padding:12px 22px 0 25px; height:23px; color:#fff !important; text-decoration:none !important;}
|
||||
.widgetMenuC li.first a{ background-repeat:no-repeat;background-position:left -40px;}
|
||||
.widgetMenuC li.active{ margin-left:-2px; background-repeat:no-repeat;background-position:right -80px;}
|
||||
.widgetMenuC li.active a{ font-weight:bold; color:#ff0 !important; background-repeat:no-repeat; background-position:left -80px;}
|
||||
.widgetMenuC li.active li{ padding:2px 15px; float:none; background:none;}
|
||||
.widgetMenuC li.active li.active{ margin:0;}
|
||||
.widgetMenuC li.active li.first{ margin-top:-4px; padding-top:14px; background-repeat:no-repeat; background-position:30px top;}
|
||||
.widgetMenuC li.active li a{ display:block; _display:inline-block; padding:0; float:none; height:auto; font-weight:normal; color:#fff !important; background:none;}
|
||||
.widgetMenuC li.active li.active a{ color:#ff0 !important;}
|
||||
.widgetMenuC li.active li a:hover,
|
||||
.widgetMenuC li.active li a:active,
|
||||
.widgetMenuC li.active li a:focus{ text-decoration:underline !important;}
|
||||
|
||||
/* widgetSearch */
|
||||
.widgetSearch{ position:absolute; bottom:30px; right:0;}
|
||||
.widgetSearch fieldset{ border:0; margin:0; padding:0; position:absolute; bottom:0; right:0;}
|
||||
.widgetSearch .widgetXeInputText{ width:153px; height:16px; padding:2px 20px 2px 5px; vertical-align:middle; border:1px solid #666; border-top-color:#555; border-left-color:#555; background:#444; color:#fff;}
|
||||
.widgetSearch .widgetXeInputText:focus{ background:#494949;}
|
||||
.widgetSearch .widgetSearch{ position:absolute; top:3px; right:4px; vertical-align:middle;}
|
||||
|
||||
address.period { font-style:normal; font-size:10px; font-family:tahoma; text-align:right;}
|
||||
|
||||
/* white coloset */
|
||||
.widgetContainer .widgetXeInputText{ border-color:#ccc; background:#f4f4f4; color:#000;}
|
||||
|
||||
/* widgetTableA */
|
||||
.widgetContainer .widgetTableA td.title a{ color:#333;}
|
||||
.widgetContainer .widgetTableA td .board{ color:#333; background:url(../img/white/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetContainer .widgetTableA td .notice{ color:#ff1a1a; background:url(../img/white/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetContainer .widgetTableA td .category{ color:#888; background:url(../img/white/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetContainer .widgetTableA td .replyNum a{ color:#ff1a1a;}
|
||||
.widgetContainer .widgetTableA td .trackbackNum a{ color:#66c;}
|
||||
.widgetContainer .widgetTableA td .author { color:#333;}
|
||||
.widgetContainer .widgetTableA td .date{ color:#333;}
|
||||
.widgetContainer .widgetTableA td .hour{ color:#888;}
|
||||
|
||||
/* widgetTableB */
|
||||
.widgetContainer .widgetTableB,
|
||||
.widgetContainer .widgetTableB td{ border-color:#e5e5e5;}
|
||||
.widgetContainer .widgetTableB td.title a{ color:#333;}
|
||||
.widgetContainer .widgetTableB td .board{ color:#333; background:url(../img/white/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetContainer .widgetTableB td .notice{ color:#ff1a1a; background:url(../img/white/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetContainer .widgetTableB td .category{ color:#888; background:url(../img/white/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetContainer .widgetTableB td .replyNum a{ color:#ff1a1a;}
|
||||
.widgetContainer .widgetTableB td .trackbackNum a{ color:#66c;}
|
||||
.widgetContainer .widgetTableB td .author { color:#333;}
|
||||
.widgetContainer .widgetTableB td .date{ color:#333;}
|
||||
.widgetContainer .widgetTableB td .hour{ color:#888;}
|
||||
|
||||
/* widgetTableC */
|
||||
.widgetContainer .widgetTableC{ border-color:#e5e5e5;}
|
||||
.widgetContainer .widgetTableC td{ border-color:#e5e5e5;}
|
||||
.widgetContainer .widgetTableC td.title a{ color:#333;}
|
||||
.widgetContainer .widgetTableC td.title dd{ color:#888;}
|
||||
.widgetContainer .widgetTableC td.lastDoc p a{ color:#333;}
|
||||
.widgetContainer .widgetTableC td.lastDoc .author{ color:#888;}
|
||||
.widgetContainer .widgetTableC td.lastDoc .time{ color:#888;}
|
||||
|
||||
/* widgetUlistA */
|
||||
.widgetContainer .widgetUlistA li a{ color:#666;}
|
||||
|
||||
/* widgetUlistB */
|
||||
.widgetContainer .widgetUlistB li .author img{ border-color:#ccc;}
|
||||
.widgetContainer .widgetUlistB li .title{ border-color:#eee; color:#333; background:#fff;}
|
||||
.widgetContainer .widgetUlistB li .title a{ color:#0066ff;}
|
||||
.widgetContainer .widgetUlistB li .title .arrow{ background:url(../img/white/arrowUlistB.gif) no-repeat;}
|
||||
.widgetContainer .widgetUlistB li .title .deco{ background:#fff;}
|
||||
.widgetContainer .widgetUlistB li .title .date{ color:#333;}
|
||||
.widgetContainer .widgetUlistB li .title .hour{ color:#888;}
|
||||
|
||||
/* widgetOlistA */
|
||||
.widgetContainer .widgetOlistA li,
|
||||
.widgetContainer .widgetOlistA li a{ color:#666;}
|
||||
.widgetContainer .widgetOlistA li sup{ color:#AAA;}
|
||||
|
||||
/* widgetDlistA */
|
||||
.widgetContainer .widgetDlistA dt{ color:#333;}
|
||||
.widgetContainer .widgetDlistA dd,
|
||||
.widgetContainer .widgetDlistA dd a{ color:#888;}
|
||||
|
||||
/* widgetGalleryA */
|
||||
.widgetContainer .widgetGalleryA li .title{ color:#333;}
|
||||
.widgetContainer .widgetGalleryA li .replyNum a{ color:#ff1a1a;}
|
||||
.widgetContainer .widgetGalleryA li .trackbackNum a{ color:#66c;}
|
||||
.widgetContainer .widgetGalleryA li .author{ color:#333;}
|
||||
.widgetContainer .widgetGalleryA li .date{ color:#333;}
|
||||
.widgetContainer .widgetGalleryA li .hour{ color:#888;}
|
||||
|
||||
/* widgetGalleryB */
|
||||
.widgetContainer .widgetGalleryB li{ border-color:#e5e5e5;}
|
||||
.widgetContainer .widgetGalleryB li .title{ color:#333;}
|
||||
.widgetContainer .widgetGalleryB li .replyNum a{ color:#ff1a1a;}
|
||||
.widgetContainer .widgetGalleryB li .trackbackNum a{ color:#66c;}
|
||||
.widgetContainer .widgetGalleryB li .author{ color:#333;}
|
||||
.widgetContainer .widgetGalleryB li .date{ color:#333;}
|
||||
.widgetContainer .widgetGalleryB li .hour{ color:#888;}
|
||||
|
||||
/* widgetZineA */
|
||||
.widgetContainer .widgetZineA li .board{ color:#333; background:url(../img/white/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetContainer .widgetZineA li .title{ color:#666;}
|
||||
.widgetContainer .widgetZineA li .replyNum a{ color:#ff1a1a;}
|
||||
.widgetContainer .widgetZineA li .trackbackNum a{ color:#66c;}
|
||||
.widgetContainer .widgetZineA li .author{ color:#333;}
|
||||
.widgetContainer .widgetZineA li .date{ color:#333;}
|
||||
.widgetContainer .widgetZineA li .hour{ color:#888;}
|
||||
.widgetContainer .widgetZineA li .text{ color:#888;}
|
||||
|
||||
/* widgetZineB */
|
||||
.widgetContainer .widgetZineB li .board{ color:#333; background:url(../img/white/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetContainer .widgetZineB li{ border-color:#e5e5e5;}
|
||||
.widgetContainer .widgetZineB li .title{ color:#666;}
|
||||
.widgetContainer .widgetZineB li .replyNum a{ color:#ff1a1a;}
|
||||
.widgetContainer .widgetZineB li .trackbackNum a{ color:#66c;}
|
||||
.widgetContainer .widgetZineB li .author{ color:#333;}
|
||||
.widgetContainer .widgetZineB li .date{ color:#333;}
|
||||
.widgetContainer .widgetZineB li .hour{ color:#888;}
|
||||
.widgetContainer .widgetZineB li .text{ color:#888;}
|
||||
|
||||
/* widgetLogin */
|
||||
.widgetContainer .widgetLogin label{ color:#333;}
|
||||
.widgetContainer .widgetLogin .help a{ color:#333;}
|
||||
.widgetContainer .widgetLogin .help li{ background:url(../img/white/lineTextDiv.gif) no-repeat left center;}
|
||||
|
||||
/* widgetLastLogin */
|
||||
.widgetContainer .widgetLastLogin dt{ color:#333;}
|
||||
.widgetContainer .widgetLastLogin dd{ color:#888;}
|
||||
.widgetContainer .widgetLastLogin a{ color:#333;}
|
||||
.widgetContainer .widgetLastLogin li{ background:url(../img/white/iconInfoMine.gif) no-repeat left center;}
|
||||
|
||||
/* widgetMyInfo */
|
||||
.widgetContainer .widgetMyInfo li a{ color:#666;}
|
||||
.widgetContainer .widgetMyInfo li{ background:url(../img/white/iconMyInfo.gif) no-repeat left 1px;}
|
||||
|
||||
/* widgetTree */
|
||||
.widgetContainer .widgetTree{ color:#333;}
|
||||
.widgetContainer .widgetTree a{ color:#333;}
|
||||
|
||||
/* widgetCounter */
|
||||
.widgetContainer .widgetCounter dt{ color:#333;}
|
||||
.widgetContainer .widgetCounter dd{ color:#888;}
|
||||
|
||||
/* widgetLanguage */
|
||||
.widgetContainer .widgetLanguage p a{ color:#b3b3b3;}
|
||||
.widgetContainer .widgetLanguage .langList{ background:#fff; border:1px solid #ccc;}
|
||||
.widgetContainer .widgetLanguage .langList a{ color:#333;}
|
||||
|
||||
/* Widget Tree */
|
||||
.widgetContainer .widgetTree ul{ background:url(../img/white/lineTreeVr.gif) repeat-y 0 -1px;}
|
||||
.widgetContainer .widgetTree ul li{ background:url(../img/white/lineTreeHr.gif) no-repeat 1px 5px !important;}
|
||||
.widgetContainer .widgetTree ul li button{ background:url(../img/white/buttonTreeCollapse.gif) no-repeat;}
|
||||
.widgetContainer .widgetTree ul li.nav_tree_last{ background:url(../img/white/lineTreeLastHr.gif) no-repeat 0 5px !important;}
|
||||
|
||||
|
||||
/* widgetTabA */
|
||||
.widgetContainer .widgetTabA{ border-color:#666;}
|
||||
.widgetContainer .widgetTabA li,
|
||||
.widgetContainer .widgetTabA li a{ background-image:url(../img/white/buttonWidgetTab.gif);}
|
||||
.widgetContainer .widgetTabA li a{ color:#333;}
|
||||
|
||||
/* widgetTabB */
|
||||
.widgetContainer .widgetTabB li a{ color:#333;}
|
||||
|
||||
/* widgetTabC */
|
||||
.widgetContainer .widgetTabC{ border-color:#e5e5e5;}
|
||||
.widgetContainer .widgetTabC li{ border-color:#e5e5e5; background:#f8f8f8;}
|
||||
.widgetContainer .widgetTabC li a{ color:#333;}
|
||||
.widgetContainer .widgetTabC li a:hover,
|
||||
.widgetContainer .widgetTabC li a:active,
|
||||
.widgetContainer .widgetTabC li a:focus{ background:#eee;}
|
||||
|
||||
/* widgetThumb */
|
||||
.widgetContainer .widgetThumb{ color:#333;}
|
||||
.widgetContainer .widgetThumb a{ color:#333;}
|
||||
.widgetContainer .widgetThumb .hour{ color:#888;}
|
||||
|
||||
/* widgetTagCloud */
|
||||
.widgetContainer .widgetTagCloud li a{ color:#666;}
|
||||
.widgetContainer .widgetTagCloud li.level1 a{ color:#999;}
|
||||
.widgetContainer .widgetTagCloud li.level2 a{ color:#666;}
|
||||
.widgetContainer .widgetTagCloud li.level3 a{ color:#333;}
|
||||
.widgetContainer .widgetTagCloud li.level4 a{ color:#000;}
|
||||
|
||||
/* widgetCalendar */
|
||||
.widgetContainer .widgetCalendarNavigation button{ color:#333;}
|
||||
.widgetContainer .widgetCalendar caption{ color:#333;}
|
||||
.widgetContainer .widgetCalendar th{ background:#eee; color:#333;}
|
||||
.widgetContainer .widgetCalendar th.sun,
|
||||
.widgetContainer .widgetCalendar td.sun,
|
||||
.widgetContainer .widgetCalendar td em{ color:#ff1a1a;}
|
||||
.widgetContainer .widgetCalendar td,
|
||||
.widgetContainer .widgetCalendar td a{ color:#666;}
|
||||
.widgetContainer .widgetCalendar td.sun a{ color:#ff1a1a;}
|
||||
|
||||
/* widgetPoint */
|
||||
.widgetContainer .widgetPoint dt{ color:#333;}
|
||||
|
||||
/* widgetMenuA */
|
||||
.widgetContainer .widgetMenuA{ border-color:#e5e5e5;}
|
||||
.widgetContainer .widgetMenuA li{ border-color:#e5e5e5;}
|
||||
.widgetContainer .widgetMenuA li a{ color:#333; background-image:url(../img/white/iconMenuAnormal.gif);}
|
||||
.widgetContainer .widgetMenuA li.active a{ background-image:url(../img/white/iconMenuAactive.gif);}
|
||||
|
||||
/* widgetMenuB */
|
||||
.widgetContainer .widgetMenuB{ border-color:#e5e5e5;}
|
||||
.widgetContainer .widgetMenuB li{ border-color:#e5e5e5;}
|
||||
.widgetContainer .widgetMenuB li a{ color:#333; background-image:url(../img/white/iconMenuAnormal.gif);}
|
||||
.widgetContainer .widgetMenuB li.active a{ background-image:url(../img/white/iconMenuAactive.gif);}
|
||||
.widgetContainer .widgetMenuB li ul{ border-color:#ddd; background:#fff;}
|
||||
.widgetContainer .widgetMenuB li li.first{ background-image:url(../img/white/arrowMenuB.gif);}
|
||||
|
||||
/* widgetMenuCgreen */
|
||||
.widgetContainer .widgetMenuCgreen{ background-image:url(../img/white/bgMenuCgreen.gif);}
|
||||
.widgetContainer .widgetMenuCgreen ul li ul{ background:#35ad06; border-color:#027a00;}
|
||||
.widgetContainer .widgetMenuCgreen li{ background-image:url(../img/white/bgMenuCgreen.gif);}
|
||||
.widgetContainer .widgetMenuCgreen li.first a{ background-image:url(../img/white/bgMenuCgreen.gif);}
|
||||
.widgetContainer .widgetMenuCgreen li.active{ background-image:url(../img/white/bgMenuCgreen.gif);}
|
||||
.widgetContainer .widgetMenuCgreen li.active a{ background-image:url(../img/white/bgMenuCgreen.gif);}
|
||||
.widgetContainer .widgetMenuCgreen li.active li.first{ background-image:url(../img/white/arrowMenuCgreen.gif);}
|
||||
|
||||
/* widgetMenuCblue */
|
||||
.widgetContainer .widgetMenuCblue{ background-image:url(../img/white/bgMenuCblue.gif);}
|
||||
.widgetContainer .widgetMenuCblue ul li ul{ background:#0688ad; border-color:#00557a;}
|
||||
.widgetContainer .widgetMenuCblue li{ background-image:url(../img/white/bgMenuCblue.gif);}
|
||||
.widgetContainer .widgetMenuCblue li.first a{ background-image:url(../img/white/bgMenuCblue.gif);}
|
||||
.widgetContainer .widgetMenuCblue li.active{ background-image:url(../img/white/bgMenuCblue.gif);}
|
||||
.widgetContainer .widgetMenuCblue li.active a{ background-image:url(../img/white/bgMenuCblue.gif);}
|
||||
.widgetContainer .widgetMenuCblue li.active li.first{ background-image:url(../img/white/arrowMenuCblue.gif);}
|
||||
|
||||
/* widgetMenuCcyan */
|
||||
.widgetContainer .widgetMenuCcyan{ background-image:url(../img/white/bgMenuCcyan.gif);}
|
||||
.widgetContainer .widgetMenuCcyan ul li ul{ background:#06a4ad; border-color:#00717a;}
|
||||
.widgetContainer .widgetMenuCcyan li{ background-image:url(../img/white/bgMenuCcyan.gif);}
|
||||
.widgetContainer .widgetMenuCcyan li.first a{ background-image:url(../img/white/bgMenuCcyan.gif);}
|
||||
.widgetContainer .widgetMenuCcyan li.active{ background-image:url(../img/white/bgMenuCcyan.gif);}
|
||||
.widgetContainer .widgetMenuCcyan li.active a{ background-image:url(../img/white/bgMenuCcyan.gif);}
|
||||
.widgetContainer .widgetMenuCcyan li.active li.first{ background-image:url(../img/white/arrowMenuCcyan.gif);}
|
||||
|
||||
/* widgetMenuCorange */
|
||||
.widgetContainer .widgetMenuCorange{ background-image:url(../img/white/bgMenuCorange.gif);}
|
||||
.widgetContainer .widgetMenuCorange ul li ul{ background:#ad9906; border-color:#7a6600;}
|
||||
.widgetContainer .widgetMenuCorange li{ background-image:url(../img/white/bgMenuCorange.gif);}
|
||||
.widgetContainer .widgetMenuCorange li.first a{ background-image:url(../img/white/bgMenuCorange.gif);}
|
||||
.widgetContainer .widgetMenuCorange li.active{ background-image:url(../img/white/bgMenuCorange.gif);}
|
||||
.widgetContainer .widgetMenuCorange li.active a{ background-image:url(../img/white/bgMenuCorange.gif);}
|
||||
.widgetContainer .widgetMenuCorange li.active li.first{ background-image:url(../img/white/arrowMenuCorange.gif);}
|
||||
|
||||
/* widgetMenuCred */
|
||||
.widgetContainer .widgetMenuCred{ background-image:url(../img/white/bgMenuCred.gif);}
|
||||
.widgetContainer .widgetMenuCred ul li ul{ background:#ad4606; border-color:#7a1300;}
|
||||
.widgetContainer .widgetMenuCred li{ background-image:url(../img/white/bgMenuCred.gif);}
|
||||
.widgetContainer .widgetMenuCred li.first a{ background-image:url(../img/white/bgMenuCred.gif);}
|
||||
.widgetContainer .widgetMenuCred li.active{ background-image:url(../img/white/bgMenuCred.gif);}
|
||||
.widgetContainer .widgetMenuCred li.active a{ background-image:url(../img/white/bgMenuCred.gif);}
|
||||
.widgetContainer .widgetMenuCred li.active li.first{ background-image:url(../img/white/arrowMenuCred.gif);}
|
||||
|
||||
/* widgetMenuCgray */
|
||||
.widgetContainer .widgetMenuCgray{ background-image:url(../img/white/bgMenuCgray.gif);}
|
||||
.widgetContainer .widgetMenuCgray ul li ul{ background:#595959; border-color:#7a1300;}
|
||||
.widgetContainer .widgetMenuCgray li{ background-image:url(../img/white/bgMenuCgray.gif);}
|
||||
.widgetContainer .widgetMenuCgray li.first a{ background-image:url(../img/white/bgMenuCgray.gif);}
|
||||
.widgetContainer .widgetMenuCgray li.active{ background-image:url(../img/white/bgMenuCgray.gif);}
|
||||
.widgetContainer .widgetMenuCgray li.active a{ background-image:url(../img/white/bgMenuCgray.gif);}
|
||||
.widgetContainer .widgetMenuCgray li.active li.first{ background-image:url(../img/white/arrowMenuCgray.gif);}
|
||||
|
||||
.widgetContainer address.period { color:#AAA; }
|
||||
|
||||
/* black colorset Class */
|
||||
.widgetContainer.black .widgetXeInputText{ border-color:#666; background:#333; color:#ccc;}
|
||||
|
||||
/* widgetTableA */
|
||||
.widgetContainer.black .widgetTableA td.title a{ color:#999;}
|
||||
.widgetContainer.black .widgetTableA td .board{ color:#999; background:url(../img/black/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetContainer.black .widgetTableA td .notice{ color:#ff1a1a; background:url(../img/black/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetContainer.black .widgetTableA td .category{ color:#666; background:url(../img/black/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetContainer.black .widgetTableA td .replyNum{ color:#ff1a1a;}
|
||||
.widgetContainer.black .widgetTableA td .trackbackNum{ color:#66c;}
|
||||
.widgetContainer.black .widgetTableA td .author { color:#999;}
|
||||
.widgetContainer.black .widgetTableA td .date{ color:#999;}
|
||||
.widgetContainer.black .widgetTableA td .hour{ color:#888;}
|
||||
|
||||
/* widgetTableB */
|
||||
.widgetContainer.black .widgetTableB,
|
||||
.widgetContainer.black .widgetTableB td{ border-color:#7f7f7f;}
|
||||
.widgetContainer.black .widgetTableB td.title a{ color:#999;}
|
||||
.widgetContainer.black .widgetTableB td .board{ color:#999; background:url(../img/black/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetContainer.black .widgetTableB td .notice{ color:#ff1a1a; background:url(../img/black/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetContainer.black .widgetTableB td .category{ color:#666; background:url(../img/black/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetContainer.black .widgetTableB td .replyNum{ color:#ff1a1a;}
|
||||
.widgetContainer.black .widgetTableB td .trackbackNum{ color:#66c;}
|
||||
.widgetContainer.black .widgetTableB td .author { color:#999;}
|
||||
.widgetContainer.black .widgetTableB td .date{ color:#999;}
|
||||
.widgetContainer.black .widgetTableB td .hour{ color:#888;}
|
||||
|
||||
/* widgetTableC */
|
||||
.widgetContainer.black .widgetTableC{ border-color:#7f7f7f;}
|
||||
.widgetContainer.black .widgetTableC td{ border-color:#7f7f7f;}
|
||||
.widgetContainer.black .widgetTableC td.title a{ color:#ccc;}
|
||||
.widgetContainer.black .widgetTableC td.title dd{ color:#888;}
|
||||
.widgetContainer.black .widgetTableC td.lastDoc p a{ color:#ccc;}
|
||||
.widgetContainer.black .widgetTableC td.lastDoc .author{ color:#888;}
|
||||
.widgetContainer.black .widgetTableC td.lastDoc .time{ color:#888;}
|
||||
|
||||
/* widgetUlistA */
|
||||
.widgetContainer.black .widgetUlistA li a{ color:#999;}
|
||||
|
||||
/* widgetUlistB */
|
||||
.widgetContainer.black .widgetUlistB li .author img{ border-color:#666;}
|
||||
.widgetContainer.black .widgetUlistB li .title{ border-color:#333; color:#999; background:#000;}
|
||||
.widgetContainer.black .widgetUlistB li .title a{ color:#3399ff;}
|
||||
.widgetContainer.black .widgetUlistB li .title .arrow{ background:url(../img/black/arrowUlistB.gif) no-repeat;}
|
||||
.widgetContainer.black .widgetUlistB li .title .deco{ background:#000;}
|
||||
.widgetContainer.black .widgetUlistB li .title .date{ color:#999;}
|
||||
.widgetContainer.black .widgetUlistB li .title .hour{ color:#888;}
|
||||
|
||||
/* widgetOlistA */
|
||||
.widgetContainer.black .widgetOlistA li,
|
||||
.widgetContainer.black .widgetOlistA li a{ color:#999;}
|
||||
.widgetContainer.black .widgetOlistA li sup{ color:#666;}
|
||||
|
||||
/* widgetDlistA */
|
||||
.widgetContainer.black .widgetDlistA dt{ color:#999;}
|
||||
.widgetContainer.black .widgetDlistA dd,
|
||||
.widgetContainer.black .widgetDlistA dd a{ color:#888;}
|
||||
|
||||
/* widgetGalleryA */
|
||||
.widgetContainer.black .widgetGalleryA li .title{ color:#999;}
|
||||
.widgetContainer.black .widgetGalleryA li .replyNum a{ color:#ff1a1a;}
|
||||
.widgetContainer.black .widgetGalleryA li .trackbackNum a{ color:#66c;}
|
||||
.widgetContainer.black .widgetGalleryA li .author{ color:#999;}
|
||||
.widgetContainer.black .widgetGalleryA li .date{ color:#999;}
|
||||
.widgetContainer.black .widgetGalleryA li .hour{ color:#888;}
|
||||
|
||||
/* widgetGalleryB */
|
||||
.widgetContainer.black .widgetGalleryB li{ border-color:#7f7f7f;}
|
||||
.widgetContainer.black .widgetGalleryB li .title{ color:#999;}
|
||||
.widgetContainer.black .widgetGalleryB li .replyNum a{ color:#ff1a1a;}
|
||||
.widgetContainer.black .widgetGalleryB li .trackbackNum a{ color:#66c;}
|
||||
.widgetContainer.black .widgetGalleryB li .author{ color:#999;}
|
||||
.widgetContainer.black .widgetGalleryB li .date{ color:#999;}
|
||||
.widgetContainer.black .widgetGalleryB li .hour{ color:#888;}
|
||||
|
||||
/* widgetZineA */
|
||||
.widgetContainer.black .widgetZineA li .board{ color:#999; background:url(../img/black/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetContainer.black .widgetZineA li .title{ color:#999;}
|
||||
.widgetContainer.black .widgetZineA li .replyNum a{ color:#ff1a1a;}
|
||||
.widgetContainer.black .widgetZineA li .trackbackNum a{ color:#66c;}
|
||||
.widgetContainer.black .widgetZineA li .author{ color:#999;}
|
||||
.widgetContainer.black .widgetZineA li .date{ color:#999;}
|
||||
.widgetContainer.black .widgetZineA li .hour{ color:#888;}
|
||||
.widgetContainer.black .widgetZineA li .text{ color:#888;}
|
||||
|
||||
/* widgetZineB */
|
||||
.widgetContainer.black .widgetZineB li .board{ color:#999; background:url(../img/black/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetContainer.black .widgetZineB li{ border-color:#7f7f7f;}
|
||||
.widgetContainer.black .widgetZineB li .title{ color:#999;}
|
||||
.widgetContainer.black .widgetZineB li .replyNum a{ color:#ff1a1a;}
|
||||
.widgetContainer.black .widgetZineB li .trackbackNum a{ color:#66c;}
|
||||
.widgetContainer.black .widgetZineB li .author{ color:#999;}
|
||||
.widgetContainer.black .widgetZineB li .date{ color:#999;}
|
||||
.widgetContainer.black .widgetZineB li .hour{ color:#888;}
|
||||
.widgetContainer.black .widgetZineB li .text{ color:#888;}
|
||||
|
||||
/* widgetLogin */
|
||||
.widgetContainer.black .widgetLogin label{ color:#999;}
|
||||
.widgetContainer.black .widgetLogin .help a{ color:#ccc;}
|
||||
.widgetContainer.black .widgetLogin .help li{ background:url(../img/black/lineTextDiv.gif) no-repeat left center;}
|
||||
|
||||
/* widgetLastLogin */
|
||||
.widgetContainer.black .widgetLastLogin dt{ color:#999;}
|
||||
.widgetContainer.black .widgetLastLogin dd{ color:#888;}
|
||||
.widgetContainer.black .widgetLastLogin a{ color:#333;}
|
||||
.widgetContainer.black .widgetLastLogin li{ background:url(../img/black/iconInfoMine.gif) no-repeat left center;}
|
||||
|
||||
/* widgetMyInfo */
|
||||
.widgetContainer.black .widgetMyInfo li a{ color:#999;}
|
||||
.widgetContainer.black .widgetMyInfo li{ background:url(../img/black/iconMyInfo.gif) no-repeat left 1px;}
|
||||
|
||||
/* widgetTree */
|
||||
.widgetContainer.black .widgetTree{ color:#999;}
|
||||
.widgetContainer.black .widgetTree a{ color:#999;}
|
||||
|
||||
/* widgetCounter */
|
||||
.widgetContainer.black .widgetCounter dt{ color:#999;}
|
||||
.widgetContainer.black .widgetCounter dd{ color:#888;}
|
||||
|
||||
/* widgetLanguage */
|
||||
.widgetContainer.black .widgetLanguage p a{ color:#b3b3b3;}
|
||||
.widgetContainer.black .widgetLanguage .langList{ background:#fff; border:1px solid #ccc;}
|
||||
.widgetContainer.black .widgetLanguage .langList a{ color:#333;}
|
||||
|
||||
/* Widget Tree */
|
||||
.widgetContainer.black .widgetTree ul{ background:url(../img/black/lineTreeVr.gif) repeat-y 0 -1px;}
|
||||
.widgetContainer.black .widgetTree ul li{ background:url(../img/black/lineTreeHr.gif) no-repeat 1px 5px !important;}
|
||||
.widgetContainer.black .widgetTree ul li button{ background:url(../img/black/buttonTreeCollapse.gif) no-repeat;}
|
||||
.widgetContainer.black .widgetTree ul li.nav_tree_last{ background:url(../img/black/lineTreeLastHr.gif) no-repeat 0 5px !important;}
|
||||
|
||||
|
||||
/* widgetTabA */
|
||||
.widgetContainer.black .widgetTabA{ border-color:#999;}
|
||||
.widgetContainer.black .widgetTabA li,
|
||||
.widgetContainer.black .widgetTabA li a{ background-image:url(../img/black/buttonWidgetTab.gif);}
|
||||
.widgetContainer.black .widgetTabA li a{ color:#999;}
|
||||
|
||||
/* widgetTabB */
|
||||
.widgetContainer.black .widgetTabB li a{ color:#999;}
|
||||
|
||||
/* widgetTabC */
|
||||
.widgetContainer.black .widgetTabC{ border-color:#7f7f7f;}
|
||||
.widgetContainer.black .widgetTabC li{ border-color:#7f7f7f; background:#222;}
|
||||
.widgetContainer.black .widgetTabC li a{ color:#999;}
|
||||
.widgetContainer.black .widgetTabC li a:hover,
|
||||
.widgetContainer.black .widgetTabC li a:active,
|
||||
.widgetContainer.black .widgetTabC li a:focus{ background:#333;}
|
||||
|
||||
/* widgetThumb */
|
||||
.widgetContainer.black .widgetThumb{ color:#999;}
|
||||
.widgetContainer.black .widgetThumb a{ color:#999;}
|
||||
.widgetContainer.black .widgetThumb .hour{ color:#888;}
|
||||
|
||||
/* widgetTagCloud */
|
||||
.widgetContainer.black .widgetTagCloud li a{ color:#999;}
|
||||
.widgetContainer.black .widgetTagCloud li.level1 a{ color:#333;}
|
||||
.widgetContainer.black .widgetTagCloud li.level2 a{ color:#666;}
|
||||
.widgetContainer.black .widgetTagCloud li.level3 a{ color:#999;}
|
||||
.widgetContainer.black .widgetTagCloud li.level4 a{ color:#fff;}
|
||||
|
||||
/* widgetCalendar */
|
||||
.widgetContainer.black .widgetCalendarNavigation button{ color:#999;}
|
||||
.widgetContainer.black .widgetCalendar caption{ color:#999;}
|
||||
.widgetContainer.black .widgetCalendar th{ background:#333; color:#fff;}
|
||||
.widgetContainer.black .widgetCalendar th.sun,
|
||||
.widgetContainer.black .widgetCalendar td.sun,
|
||||
.widgetContainer.black .widgetCalendar td em{ color:#ff1a1a;}
|
||||
.widgetContainer.black .widgetCalendar td,
|
||||
.widgetContainer.black .widgetCalendar td a{ color:#999;}
|
||||
.widgetContainer.black .widgetCalendar td.sun a{ color:#ff1a1a;}
|
||||
|
||||
/* widgetPoint */
|
||||
.widgetContainer.black .widgetPoint dt{ color:#999;}
|
||||
|
||||
/* widgetMenuA */
|
||||
.widgetContainer.black .widgetMenuA{ border-color:#7f7f7f;}
|
||||
.widgetContainer.black .widgetMenuA li{ border-color:#7f7f7f;}
|
||||
.widgetContainer.black .widgetMenuA li a{ color:#999; background-image:url(../img/black/iconMenuAnormal.gif);}
|
||||
.widgetContainer.black .widgetMenuA li.active a{ background-image:url(../img/black/iconMenuAactive.gif);}
|
||||
|
||||
/* widgetMenuB */
|
||||
.widgetContainer.black .widgetMenuB{ border-color:#7f7f7f;}
|
||||
.widgetContainer.black .widgetMenuB li{ border-color:#7f7f7f;}
|
||||
.widgetContainer.black .widgetMenuB li a{ color:#999; background-image:url(../img/black/iconMenuAnormal.gif);}
|
||||
.widgetContainer.black .widgetMenuB li.active a{ background-image:url(../img/black/iconMenuAactive.gif);}
|
||||
.widgetContainer.black .widgetMenuB li ul{ border-color:#777; background:#000;}
|
||||
.widgetContainer.black .widgetMenuB li li.first{ background-image:url(../img/black/arrowMenuB.gif);}
|
||||
|
||||
address.period { color:#333; }
|
||||
|
Before Width: | Height: | Size: 236 B |
|
Before Width: | Height: | Size: 99 B |
|
Before Width: | Height: | Size: 56 B |
|
Before Width: | Height: | Size: 44 B |
|
Before Width: | Height: | Size: 44 B |
|
Before Width: | Height: | Size: 57 B |
|
Before Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 43 B |
|
Before Width: | Height: | Size: 54 B |
|
Before Width: | Height: | Size: 55 B |
|
Before Width: | Height: | Size: 55 B |
|
Before Width: | Height: | Size: 55 B |
|
Before Width: | Height: | Size: 55 B |
|
Before Width: | Height: | Size: 55 B |
|
Before Width: | Height: | Size: 55 B |
|
Before Width: | Height: | Size: 60 B |
|
Before Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 236 B |
|
Before Width: | Height: | Size: 99 B |
|
Before Width: | Height: | Size: 72 B |
|
Before Width: | Height: | Size: 1 KiB |
|
Before Width: | Height: | Size: 125 B |
|
Before Width: | Height: | Size: 49 B |
|
Before Width: | Height: | Size: 49 B |
|
Before Width: | Height: | Size: 56 B |
|
Before Width: | Height: | Size: 44 B |
|
Before Width: | Height: | Size: 43 B |
|
Before Width: | Height: | Size: 44 B |
|
Before Width: | Height: | Size: 57 B |
|
Before Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 43 B |
|
|
@ -1,5 +0,0 @@
|
|||
<?php
|
||||
$lang->new_members = 'New Members';
|
||||
$lang->document_ranking = 'Rank by documents';
|
||||
$lang->comment_ranking = 'Rank by replies';
|
||||
?>
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* @file layouts/cafeXE/lang/jp.lang.php
|
||||
* @author 翻訳:ミニミ
|
||||
* @brief 日本語言語パッケージ(基本的な内容のみ)
|
||||
**/
|
||||
|
||||
$lang->new_members = '新規会員';
|
||||
$lang->document_ranking = '書き込みランキング';
|
||||
$lang->comment_ranking = 'コメント数ランキング';
|
||||
?>
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
<?php
|
||||
$lang->new_members = '신입 회원 소식';
|
||||
$lang->document_ranking = '게시글 랭킹';
|
||||
$lang->comment_ranking = '댓글 랭킹';
|
||||
?>
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
<?php
|
||||
$lang->new_members = '新会员';
|
||||
$lang->document_ranking = '发帖排行';
|
||||
$lang->comment_ranking = '评论排行';
|
||||
?>
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
<?php
|
||||
$lang->new_members = '最新會員';
|
||||
$lang->document_ranking = '主題排行';
|
||||
$lang->comment_ranking = '評論排行';
|
||||
?>
|
||||
|
|
@ -1,116 +0,0 @@
|
|||
<!--%import("./lang")-->
|
||||
<!--%import("css/layout.css")-->
|
||||
<!--%import("css/layout@cafe.css")-->
|
||||
<!--%import("css/widget.css")-->
|
||||
|
||||
<!--@if($layout_info->colorset == "black")-->
|
||||
<!--%import("css/layout@black.css")-->
|
||||
{@ $middle_widget_colorset = "black" }
|
||||
<!--@else-->
|
||||
<!--%import("css/layout@white.css")-->
|
||||
{@ $middle_widget_colorset = "white" }
|
||||
<!--@end-->
|
||||
|
||||
<!--// 모양 설정 > 본문 위치 -->
|
||||
<!--@if($layout_info->content_position == "right")-->{@$_posClass = "cafeXeEC"}<!--@else-->{@$_posClass = "cafeXeCE"}<!--@end-->
|
||||
|
||||
<!--// indexUrl 설정 -->
|
||||
<!--@if(!$layout_info->index_url)-->{@$layout_info->index_url = Context::getRequestUri()}<!--@end-->
|
||||
|
||||
<!--// 로고 영역 이미지 -->
|
||||
<!--@if($layout_info->logo_background_image)-->
|
||||
<style type="text/css"> #cafeXeHeader {background:#FFFFFF url("{$layout_info->logo_background_image}") repeat left top !important; } </style>
|
||||
<!--@end-->
|
||||
|
||||
<!--// 내용 영역 이미지 -->
|
||||
<!--@if($layout_info->content_background_image)-->
|
||||
<style type="text/css"> #cafeXeContainer {background:#FFFFFF url("{$layout_info->content_background_image}") repeat left top !important; } </style>
|
||||
<!--@end-->
|
||||
|
||||
<div class="cafeXe">
|
||||
<div class="cafeXeFixed">
|
||||
<div id="cafeXeContainer" class="{$_posClass}">
|
||||
<!-- #header -->
|
||||
<div id="cafeXeHeader">
|
||||
<div class="cafeXeHeader"><a href="#content" class="skipToContent">Skip to content</a>
|
||||
<!--@if($layout_info->logo_image)-->
|
||||
<h1 class="cafeXeH1"><a href="{$layout_info->index_url}" class="cafeXeA"><img src="{$layout_info->logo_image}" title="{$layout_info->logo_text}" /></a></h1>
|
||||
<!--@elseif($layout_info->logo_text)-->
|
||||
<h1 class="cafeXeH1"><a href="{$layout_info->index_url}" class="cafeXeA">{$layout_info->logo_text}</a></h1>
|
||||
<!--@else-->
|
||||
<h1 class="cafeXeH1"><a href="{$layout_info->index_url}" class="cafeXeA">Cafe<sup>XE</sup></a></h1>
|
||||
<!--@end-->
|
||||
|
||||
<form action="{getUrl()}" method="post" class="widgetSearch">
|
||||
<fieldset>
|
||||
<!--@if($vid)-->
|
||||
<input type="hidden" name="vid" value="{$vid}" />
|
||||
<!--@end-->
|
||||
<input type="hidden" name="mid" value="{$mid}" />
|
||||
<input type="hidden" name="act" value="IS" />
|
||||
<input type="hidden" name="search_target" value="title" />
|
||||
<!--<legend>{$lang->cmd_search}</legend>-->
|
||||
<input type="text" name="is_keyword" class="widgetXeInputText" title="{$lang->cmd_search}" />
|
||||
<input type="image" src="./img/white/buttonSearch.gif" value="{$lang->cmd_search}" class="widgetSearch" />
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
<p class="cafeXeUrl"><a href="{$layout_info->index_url}" class="cafeXeA">{$layout_info->index_url}</a></p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!-- /#header -->
|
||||
<hr class="cafeXeHr" />
|
||||
<!-- #body -->
|
||||
<div id="cafeXeBody">
|
||||
<div id="cafeXeContent">
|
||||
{$content}
|
||||
</div>
|
||||
<hr class="cafeXeHr" />
|
||||
<div class="cafeXeExtension cafeXeE1">
|
||||
<!--// Left/Right Widget -->
|
||||
|
||||
<!--// Site Status -->
|
||||
<!--@if($site_module_info->site_srl>0)-->
|
||||
<img class="zbxe_widget_output" widget="site_info" skin="default" colorset="{$middle_widget_colorset}" widgetstyle="simple" ws_colorset="{$middle_widget_colorset}" ws_title="{$lang->cafe_info}" ws_more_url="" ws_more_text=""/>
|
||||
<!--@end-->
|
||||
|
||||
<!--// Login Info Widget -->
|
||||
<img class="zbxe_widget_output" widget="login_info" skin="default" colorset="{$middle_widget_colorset}" widgetstyle="simple" ws_colorset="{$middle_widget_colorset}" ws_title="<!--@if($is_logged)-->{$logged_info->nick_name}<!--@else-->{$lang->cmd_login}<!--@end-->" ws_more_url="" ws_more_text=""/>
|
||||
|
||||
<!--// Menu Widget -->
|
||||
<img class="zbxe_widget_output" widget="navigator" skin="tree" colorset="{$middle_widget_colorset}" widgetstyle="simple" ws_colorset="{$middle_widget_colorset}" ws_title="{$lang->menu}" />
|
||||
|
||||
<!--// Visitor Status Widget -->
|
||||
<img class="zbxe_widget_output" widget="counter_status" skin="default" colorset="{$middle_widget_colorset}" widgetstyle="simple" ws_colorset="{$middle_widget_colorset}" ws_title="{$lang->counter}" />
|
||||
</div>
|
||||
</div>
|
||||
<!-- /#body -->
|
||||
<hr class="cafeXeHr" />
|
||||
<!-- #knee -->
|
||||
<div id="cafeXeKnee">
|
||||
<div class="cafeXeExtension">
|
||||
<!--// Bottom Widget -->
|
||||
<img class="zbxe_widget_output" widget="member_group" skin="default" colorset="black" widgetstyle="simple" ws_colorset="black" ws_title="{$lang->new_members}" list_count="5" style="width:219px;float:left;margin-right:28px;"/>
|
||||
<img class="zbxe_widget_output" widget="rank_count" rankby="document" skin="default" colorset="black" widgetstyle="simple" ws_colorset="black" ws_title="{$lang->document_ranking}" list_count="5" style="width:219px;float:left;margin-right:28px;"/>
|
||||
<img class="zbxe_widget_output" widget="rank_count" rankby="comment" skin="default" colorset="black" widgetstyle="simple" ws_colorset="black" ws_title="{$lang->comment_ranking}" list_count="5" style="width:219px;float:left;margin-right:28px;"/>
|
||||
<img class="zbxe_widget_output" widget="logged_members" skin="default" colorset="black" widgetstyle="simple" ws_colorset="black" ws_title="{$lang->logged_users}" list_count="99999" style="width:219px; float:left;margin-right:28px;" />
|
||||
</div>
|
||||
</div>
|
||||
<!-- /#knee -->
|
||||
<hr class="cafeXeHr" />
|
||||
<!-- #footer -->
|
||||
<div id="cafeXeFooter">
|
||||
<div class="cafeXeFooter">
|
||||
<address class="cafeXeAddress">
|
||||
Powered by <a href="http://www.xpressengine.com" onclick="window.open(this.href);return false;"><abbr title="Xpress Engine">XE</abbr></a>.
|
||||
</address>
|
||||
|
||||
<!-- 언어 선택 위젯 -->
|
||||
<img class="zbxe_widget_output" widget="language_select" skin="default" />
|
||||
</div>
|
||||
</div>
|
||||
<!-- /#footer -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -1,220 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<layout version="0.2">
|
||||
<title xml:lang="ko">XE 블로그 기본 스킨</title>
|
||||
<title xml:lang="jp">XEブログのデフォルトスキン</title>
|
||||
<title xml:lang="zh-CN">XE博客默认皮肤</title>
|
||||
<title xml:lang="en">Default Skin of XE blog</title>
|
||||
<title xml:lang="ge">Standard-Skin von XE Blog</title>
|
||||
<title xml:lang="es">Cuidado de la Piel por defecto de XE blog</title>
|
||||
<title xml:lang="ru">По умолчанию Кожа XE блоге</title>
|
||||
<title xml:lang="zh-TW">XE部落格預設面板</title>
|
||||
<description xml:lang="ko">
|
||||
XE 블로그 기본 스킨입니다.
|
||||
디자인 : 서기정 (http://blog.naver.com/addcozy)
|
||||
HTML/CSS : 소지훈
|
||||
</description>
|
||||
<description xml:lang="jp">
|
||||
XEブログの基本スキンです。
|
||||
デザイン:ソギジョン (http://blog.naver.com/addcozy)
|
||||
HTML/CSS : Ju-Hoon So
|
||||
</description>
|
||||
<description xml:lang="zh-CN">
|
||||
XE博客默认皮肤。
|
||||
设计 : Ki-Jeong Seo (http://blog.naver.com/addcozy)
|
||||
HTML/CSS : Ju-Hoon So
|
||||
</description>
|
||||
<description xml:lang="en">
|
||||
This is default skin of XE blog.
|
||||
Design : Ki-Jeong Seo (http://blog.naver.com/addcozy)
|
||||
HTML/CSS : Ju-Hoon So
|
||||
</description>
|
||||
<description xml:lang="ge">
|
||||
Dies ist der Standard-Skin XE-Blog.
|
||||
Design: Ki-Seo Jeong (http://blog.naver.com/addcozy)
|
||||
HTML / CSS: Ju-Hoon Also
|
||||
</description>
|
||||
<description xml:lang="es">
|
||||
Esto es por defecto de la piel XE blog.
|
||||
Diseño: Ki-Jeong Seo (http://blog.naver.com/addcozy)
|
||||
HTML/CSS : Ju-Hoon So
|
||||
</description>
|
||||
<description xml:lang="ru">
|
||||
Это умолчанию кожи XE блоге.
|
||||
Дизайн: Ki-Jeong Seo (http://blog.naver.com/addcozy)
|
||||
HTML/CSS : Ju-Hoon So
|
||||
</description>
|
||||
<description xml:lang="zh-TW">
|
||||
XE部落格預設面板。
|
||||
設計 : Ki-Jeong Seo (http://blog.naver.com/addcozy)
|
||||
HTML/CSS : Ju-Hoon So
|
||||
</description>
|
||||
<version>0.1</version>
|
||||
<date>2008-02-26</date>
|
||||
<link>http://blog.nzeo.com</link>
|
||||
|
||||
<author email_address="zero@xpressengine.com" link="http://blog.nzeo.com">
|
||||
<name xml:lang="ko">zero</name>
|
||||
<name xml:lang="jp">zero</name>
|
||||
<name xml:lang="zh-CN">zero</name>
|
||||
<name xml:lang="en">zero</name>
|
||||
<name xml:lang="ge">zero</name>
|
||||
<name xml:lang="es">zero</name>
|
||||
<name xml:lang="ru">zero</name>
|
||||
<name xml:lang="zh-TW">zero</name>
|
||||
</author>
|
||||
|
||||
<extra_vars>
|
||||
<var name="colorset" type="select">
|
||||
<title xml:lang="ko">컬러셋</title>
|
||||
<title xml:lang="jp">カラーセット</title>
|
||||
<title xml:lang="zh-CN">颜色</title>
|
||||
<title xml:lang="en">Colorset</title>
|
||||
<title xml:lang="ge">Colorset</title>
|
||||
<title xml:lang="es">Set de Colores</title>
|
||||
<title xml:lang="ru">Colorset</title>
|
||||
<title xml:lang="zh-TW">顏色設定</title>
|
||||
<description xml:lang="ko">원하시는 컬러셋을 선택해주세요.</description>
|
||||
<description xml:lang="jp">カラーセットを選択して下さい。</description>
|
||||
<description xml:lang="zh-CN">请选择颜色。</description>
|
||||
<description xml:lang="en">Please select a colorset you want.</description>
|
||||
<description xml:lang="ge">Bitte wählen Sie ein colorset Sie wollen.</description>
|
||||
<description xml:lang="ru">Выберите colorset хотите.</description>
|
||||
<description xml:lang="es">Seleccione set de colores que desea.</description>
|
||||
<description xml:lang="zh-TW">請選擇顏色。</description>
|
||||
<options value="blue">
|
||||
<title xml:lang="ko">파란색 (기본)</title>
|
||||
<title xml:lang="jp">青 (デフォールト)</title>
|
||||
<title xml:lang="zh-CN">蓝色 (default)</title>
|
||||
<title xml:lang="en">Blue (default)</title>
|
||||
<title xml:lang="ge">Blue (Standard)</title>
|
||||
<title xml:lang="es">Azul (default)</title>
|
||||
<title xml:lang="ru">Blue (default)</title>
|
||||
<title xml:lang="zh-TW">藍色(預設)</title>
|
||||
</options>
|
||||
<options value="gray">
|
||||
<title xml:lang="ko">회색</title>
|
||||
<title xml:lang="jp">灰色</title>
|
||||
<title xml:lang="zh-CN">灰色背景</title>
|
||||
<title xml:lang="en">Gray</title>
|
||||
<title xml:lang="ge">Gray</title>
|
||||
<title xml:lang="es">Gray</title>
|
||||
<title xml:lang="ru">Gray</title>
|
||||
<title xml:lang="zh-TW">灰色</title>
|
||||
</options>
|
||||
<options value="orange">
|
||||
<title xml:lang="ko">오렌지</title>
|
||||
<title xml:lang="jp">オレンジ</title>
|
||||
<title xml:lang="zh-CN">Orange</title>
|
||||
<title xml:lang="en">Orange</title>
|
||||
<title xml:lang="ge">Orange</title>
|
||||
<title xml:lang="es">Orange</title>
|
||||
<title xml:lang="ru">Orange</title>
|
||||
<title xml:lang="zh-TW">橘色</title>
|
||||
</options>
|
||||
<options value="violet">
|
||||
<title xml:lang="ko">보라색</title>
|
||||
<title xml:lang="jp">紫</title>
|
||||
<title xml:lang="zh-CN">Violet</title>
|
||||
<title xml:lang="en">Violet</title>
|
||||
<title xml:lang="ge">Violett</title>
|
||||
<title xml:lang="es">Violet</title>
|
||||
<title xml:lang="ru">Violet</title>
|
||||
<title xml:lang="zh-TW">紫色</title>
|
||||
</options>
|
||||
<options value="green">
|
||||
<title xml:lang="ko">초록색</title>
|
||||
<title xml:lang="jp">緑</title>
|
||||
<title xml:lang="zh-CN">绿色</title>
|
||||
<title xml:lang="en">Green</title>
|
||||
<title xml:lang="ge">Grün</title>
|
||||
<title xml:lang="es">Verde</title>
|
||||
<title xml:lang="ru">Green</title>
|
||||
<title xml:lang="zh-TW">綠色</title>
|
||||
</options>
|
||||
</var>
|
||||
<var name="target_mid" type="text">
|
||||
<title xml:lang="ko">기본 모듈</title>
|
||||
<title xml:lang="jp">デフォルトモジュール</title>
|
||||
<title xml:lang="zh-CN">默认模块</title>
|
||||
<title xml:lang="en">Basic module</title>
|
||||
<title xml:lang="ge">Basismodul</title>
|
||||
<title xml:lang="es">Módulo Básico</title>
|
||||
<title xml:lang="ru">Основной модуль</title>
|
||||
<title xml:lang="zh-TW">預設模組</title>
|
||||
<description xml:lang="ko">기본 모듈을 지정해주시면 레이아웃에서 표시되는 위젯들이 정상적으로 동작을 하게 됩니다</description>
|
||||
<description xml:lang="jp">デフォルトモジュールを指定するとレイアウトで表示されるウィジェットが正常に作動するようになります。</description>
|
||||
<description xml:lang="zh-CN">为了让博客系统中的控件正常运作,在这里必须得指定默认版面模块名。</description>
|
||||
<description xml:lang="en">The widgets that are being displayed in the layout will work properly if you select the basic module</description>
|
||||
<description xml:lang="ge">Die Widgets, die angezeigt werden im Layout wird ordnungsgemäß funktionieren, wenn Sie das Basismodul</description>
|
||||
<description xml:lang="es">Los reproductores que se muestran en el diseño funcionará correctamente si selecciona el módulo básico</description>
|
||||
<description xml:lang="ru">В виджеты, которые отображаются в формате будет работать правильно, если вы выбираете основной модуль</description>
|
||||
<description xml:lang="zh-TW">要讓部落格系統中的控件正常運作,必須要指定預設討論板模組名稱。</description>
|
||||
</var>
|
||||
<var name="background_image" type="image">
|
||||
<title xml:lang="ko">배경 이미지</title>
|
||||
<title xml:lang="jp">背景イメージ</title>
|
||||
<title xml:lang="zh-CN">背景图片</title>
|
||||
<title xml:lang="en">Background Image</title>
|
||||
<title xml:lang="es">Imagen de fondo</title>
|
||||
<title xml:lang="ru">Фоновое изображение</title>
|
||||
<title xml:lang="zh-TW">背景圖片</title>
|
||||
<description xml:lang="ko">배경 이미지를 사용하시려면 등록해주세요.</description>
|
||||
<description xml:lang="jp">背景イメージを使う場合は、登録して下さい。</description>
|
||||
<description xml:lang="zh-CN">要想使用背景图片请在这里上传。</description>
|
||||
<description xml:lang="en">Please input if you want to use background image.</description>
|
||||
<description xml:lang="ge">Bitte geben Sie, wenn Sie verwenden wollen Hintergrundbild.</description>
|
||||
<description xml:lang="es">Entre, por favor, si desea utilizar la imagen de fondo.</description>
|
||||
<description xml:lang="ru">Введите, если вы хотите использовать фоновое изображение.</description>
|
||||
<description xml:lang="zh-TW">請在這裡上傳想要使用的背景圖片。</description>
|
||||
</var>
|
||||
<var name="profile_image" type="image">
|
||||
<title xml:lang="ko">프로필 이미지</title>
|
||||
<title xml:lang="jp">プロフィールイメージ</title>
|
||||
<title xml:lang="zh-CN">博客头像</title>
|
||||
<title xml:lang="en">Profile Image</title>
|
||||
<title xml:lang="ge">Profil Bilder</title>
|
||||
<title xml:lang="es">Perfil de Imagen</title>
|
||||
<title xml:lang="ru">Профиль Изображение</title>
|
||||
<title xml:lang="zh-TW">部落格頭像</title>
|
||||
<description xml:lang="ko">프로필 이미지를 입력해 주세요 (가로 사이즈는 160px이 가장 보기 좋습니다)</description>
|
||||
<description xml:lang="jp">プロフィールイメージを入力して下さい(横幅は「160px」が一番適しています)。</description>
|
||||
<description xml:lang="zh-CN">请上传博客个性头像(推荐宽度为160px)。</description>
|
||||
<description xml:lang="en">Please input profile image (It is recommended to set width as 160px)</description>
|
||||
<description xml:lang="ge">itte geben Sie Ihre Image-Profil (Es wird empfohlen, Breite 160px)</description>
|
||||
<description xml:lang="es">Por favor, el perfil de entrada de imagen (Se recomienda configurar el ancho de 160px)</description>
|
||||
<description xml:lang="ru">Введите профиля изображения (Рекомендуется устанавливать ширину, 160px)</description>
|
||||
<description xml:lang="zh-TW">請上傳部落格頭像(最適寬度 160px)。</description>
|
||||
</var>
|
||||
<var name="profile" type="textarea">
|
||||
<title xml:lang="ko">프로필</title>
|
||||
<title xml:lang="jp">プロフィール</title>
|
||||
<title xml:lang="zh-CN">简介</title>
|
||||
<title xml:lang="en">Profile</title>
|
||||
<title xml:lang="ge">Profil</title>
|
||||
<title xml:lang="es">Perfil</title>
|
||||
<title xml:lang="ru">Профиль</title>
|
||||
<title xml:lang="zh-TW">簡介</title>
|
||||
<description lang="ko">간단한 프로필을 입력해주세요</description>
|
||||
<description lang="jp">簡単なプロフィールを入力して下さい。</description>
|
||||
<description lang="zh-CN">请输入简单介绍。</description>
|
||||
<description lang="en">Please input your simple profile</description>
|
||||
<description lang="ge">Bitte geben Sie Ihre Simple Profile</description>
|
||||
<description lang="es">Por favor, introduzca su perfil simple</description>
|
||||
<description lang="ru">Введите простое профиль</description>
|
||||
<description lang="zh-TW">請輸入簡單說明。</description>
|
||||
</var>
|
||||
</extra_vars>
|
||||
|
||||
<menus>
|
||||
<menu name="top_menu" maxdepth="1" default="true">
|
||||
<title xml:lang="ko">상단 메뉴</title>
|
||||
<title xml:lang="jp">上段用メニュー</title>
|
||||
<title xml:lang="zh-CN">菜单</title>
|
||||
<title xml:lang="en">Top Menu</title>
|
||||
<title xml:lang="ge">Top-Menü</title>
|
||||
<title xml:lang="es">Menú superior</title>
|
||||
<title xml:lang="ru">Главное меню</title>
|
||||
<title xml:lang="zh-TW">主選單</title>
|
||||
</menu>
|
||||
</menus>
|
||||
</layout>
|
||||
|
|
@ -1,87 +0,0 @@
|
|||
@charset "utf-8";
|
||||
/*
|
||||
NHN UIT Lab. WebStandardization Team (http://html.nhndesign.com/)
|
||||
Kim, Ji Min 070809-20070903
|
||||
*/
|
||||
|
||||
#blog {margin:0 auto; width:970px;}
|
||||
|
||||
#content { width:100%; }
|
||||
|
||||
/* Global Navigation */
|
||||
.blogNavigation {overflow:hidden; width:780px;}
|
||||
|
||||
ul.blogGlobal {padding:0; margin:0; list-style:none; overflow:hidden; float:right; margin:10px 0 10px 0; }
|
||||
ul.blogGlobal li {float:left; margin-left:-1px; padding:0 .6em;}
|
||||
ul.blogGlobal li a {text-decoration:none; font-size:.9em; letter-spacing:-1px;}
|
||||
|
||||
ul.blogMenu {padding:0; list-style:none; overflow:hidden; float:right; margin:0 0 10px 0; }
|
||||
ul.blogMenu li {float:left; margin-left:-1px; padding:0 .8em;}
|
||||
ul.blogMenu li a {text-decoration:none; font:bold .9em tahoma;}
|
||||
ul.blogMenu li a.on {}
|
||||
|
||||
/* Content Box */
|
||||
.contentBox { float:left; width:780px; }
|
||||
.contentBox .centerBg {padding-top:1em;}
|
||||
.contentBox .topBg {width:100%; height:10px; font-size:0;}
|
||||
.contentBox .bottomBg {width:100%; height:10px; font-size:0;}
|
||||
.contentArea {width:740px; margin:0 auto;}
|
||||
|
||||
.blogWidgetAreaBox { width:190px; padding:0; margin:0; float:left; overflow:hidden;}
|
||||
|
||||
/* Profile */
|
||||
.blogProfile {width:170px; margin:0 0 10px 10px; }
|
||||
.blogProfile h1 {padding:0; margin:10px 0 8px 2px; font-size:1em; line-height:1.2em;}
|
||||
.blogProfile ul.profileMenu {float:left; margin-left:-4px; overflow:hidden;}
|
||||
.blogProfile ul.profileMenu li {float:left; margin-left:-1px; padding:0 .7em;}
|
||||
.blogProfile ul.profileMenu li a {text-decoration:none; font-size:.9em;}
|
||||
|
||||
/* title bg box */
|
||||
.blogTitleBox {width:170px; height:25px; margin:0 0 5px 10px;}
|
||||
.blogTitleBox h2 {margin:0; padding:5px 0 0 12px; font:bold .9em tahoma;}
|
||||
.blogTitleBox h2 a { text-decoration:none; }
|
||||
|
||||
/* category */
|
||||
|
||||
/* widget Box */
|
||||
.widgetBox {width:170px; margin:0 0 10px 10px;}
|
||||
|
||||
/* search box */
|
||||
.blogSearch { margin:0 auto; width:170px; }
|
||||
.blogSearch fieldset {padding:0; margin:0; border:none;}
|
||||
.blogSearch legend {display:none;}
|
||||
.blogSearch input {float:left; vertical-align:middle;}
|
||||
.blogSearch img {float:left; margin-left:2px; vertical-align:middle;}
|
||||
|
||||
/* Widget */
|
||||
.blog_widget_ h2 {margin:0 0 15px 0; padding:5px 0 0 12px; font:bold .9em tahoma;}
|
||||
.blog_widget_ .items {list-style:none; padding:0; margin:0; margin-top:10px; overflow-x:hidden; width:170px;}
|
||||
.blog_widget_ .items li { padding:0 10px 0 14px; margin-bottom:5px; }
|
||||
.blog_widget_ .items li a { text-decoration:none; font-size:1em; }
|
||||
|
||||
/* Calender */
|
||||
.widget_calendar {position:relative; float:left; width:170px; }
|
||||
.widget_calendar caption {width:170px; height:25px; padding-top:.3em; font:bold 1.1em tahoma;}
|
||||
.widget_calendar caption em {font:bold 1em tahoma; font-style:normal;}
|
||||
.widget_calendar caption .back {position:absolute; left:.6em; top:.6em;}
|
||||
.widget_calendar caption .next {position:absolute; right:.6em; top:.6em;}
|
||||
.widget_calendar table {padding:0; margin:0; width:170px; }
|
||||
|
||||
.widget_calendar th {padding:1.3em 0 .5em 0; font-size:.9em; font-weight:normal;}
|
||||
.widget_calendar th.sun {color:#00afcf;}
|
||||
|
||||
.widget_calendar td {height:1.5em; padding-right:.7em; text-align:right; font:.9em tahoma;}
|
||||
|
||||
.widget_calendar td a {text-decoration:none; font:.9em tahoma;}
|
||||
.widget_calendar td {text-decoration:none; font:.9em tahoma;}
|
||||
|
||||
.widget_calendar td.sun a {text-decoration:none; }
|
||||
.widget_calendar td.sun {text-decoration:none; }
|
||||
|
||||
.widget_calendar td.today a {text-decoration:none; font-weight:bold;}
|
||||
.widget_calendar td.today {text-decoration:none; font-weight:bold; }
|
||||
|
||||
.widget_calendar td.posted a {text-decoration:underline;}
|
||||
.widget_calendar td.posted {text-decoration:underline;}
|
||||
|
||||
.zbXE { width:960px; text-align:center; margin:20px auto 20px auto;}
|
||||
|
|
@ -1,55 +0,0 @@
|
|||
@charset "utf-8";
|
||||
/*
|
||||
NHN UIT Lab. WebStandardization Team (http://html.nhndesign.com/)
|
||||
Kim, Ji Min 070809-20070903
|
||||
*/
|
||||
|
||||
body { color:#444444; background:#ffffff url(../images/blue/bg_blog.jpg) no-repeat center top;}
|
||||
|
||||
/* Input Style Definition */
|
||||
.inputTypeText {border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6; background:#ffffff;}
|
||||
.inputTypeText:hover,
|
||||
.inputTypeText:focus { background:#f4f4f4;}
|
||||
.inputTypeTextArea {border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6 !important; background:#ffffff;}
|
||||
|
||||
/* Global Navigation */
|
||||
ul.blogMenu li {background:url(../images/blue/division_d7.gif) no-repeat left .2em;}
|
||||
ul.blogMenu li a {color:#666666;}
|
||||
ul.blogMenu li a.on {color:#33cc33;}
|
||||
|
||||
ul.blogGlobal li {background:url(../images/blue/division_d7.gif) no-repeat left .2em;}
|
||||
ul.blogGlobal li a {color:#3f4040;}
|
||||
|
||||
/* Profile */
|
||||
.blogProfile h1 {color:#333333;}
|
||||
.blogProfile ul.profileMenu li {background:url(../images/blue/division_cc.gif) no-repeat left top;}
|
||||
.blogProfile ul.profileMenu li a {color:#3f4040;;}
|
||||
|
||||
/* title bg box */
|
||||
.blogTitleBox {background:url(../images/blue/box_blog_title.gif) no-repeat left top;}
|
||||
.blogTitleBox h2 {color:#00afcf;}
|
||||
|
||||
/* Content Box */
|
||||
.contentBox .centerBg {background:url(../images/blue/box_blog_bg.gif) repeat-y left top;}
|
||||
.contentBox .topBg {background:url(../images/blue/box_blog_top.gif) no-repeat left top;}
|
||||
.contentBox .bottomBg {background:url(../images/blue/box_blog_bot.gif) no-repeat left top;}
|
||||
|
||||
/* Widget */
|
||||
.blog_widget_ {background:url(../images/blue/box_blog_title.gif) no-repeat left top;}
|
||||
.blog_widget_ h2 {color:#00afcf;}
|
||||
.blog_widget_ .items li {background:url(../images/blue/bullet_3x3_1.gif) no-repeat 5px 5px; }
|
||||
.blog_widget_ .items li a {color:#3f4040;}
|
||||
|
||||
/* Calender */
|
||||
.widget_calendar caption {color:#00afcf; background:url(../images/blue/box_blog_title.gif) no-repeat left top;}
|
||||
.widget_calendar caption em {color:#33cc34;}
|
||||
.widget_calendar caption .back {background:url("../images/blue/btn_back.gif") no-repeat left top; width:13px; height:13px;}
|
||||
.widget_calendar caption .next {background:url("../images/blue/btn_next.gif") no-repeat left top; width:13px; height:13px;}
|
||||
.widget_calendar th {color:#6a6a6a;}
|
||||
.widget_calendar th.sun {color:#00afcf;}
|
||||
.widget_calendar td {color:#6a6a6a;}
|
||||
.widget_calendar td a {color:#6a6a6a;}
|
||||
.widget_calendar td.sun a {color:#00afcf;}
|
||||
.widget_calendar td.sun {color:#00afcf;}
|
||||
.widget_calendar td.today a {color:#31c733;}
|
||||
.widget_calendar td.today {color:#31c733;}
|
||||
|
|
@ -1,57 +0,0 @@
|
|||
@charset "utf-8";
|
||||
/*
|
||||
NHN UIT Lab. WebStandardization Team (http://html.nhndesign.com/)
|
||||
Kim, Ji Min 070809-20070903
|
||||
*/
|
||||
|
||||
body {color:#3a3a3a; background:#b9bcc3 url(../images/gray/bg_blog.jpg) no-repeat center top;}
|
||||
|
||||
/* Input Style Definition */
|
||||
.inputTypeText {border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6; background:#ffffff;}
|
||||
.inputTypeText:hover,
|
||||
.inputTypeText:focus { background:#f4f4f4;}
|
||||
.inputTypeTextArea {border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6 !important; background:#ffffff;}
|
||||
|
||||
/* Global Navigation */
|
||||
ul.blogMenu li {background:url(../images/gray/division_95.gif) no-repeat left .2em;}
|
||||
ul.blogMenu li a {color:#666666;}
|
||||
ul.blogMenu li a.on {color:#181818;}
|
||||
|
||||
ul.blogGlobal li {background:url(../images/gray/division_95.gif) no-repeat left .2em;}
|
||||
ul.blogGlobal li a {color:#666666;}
|
||||
|
||||
/* Profile */
|
||||
.blogProfile h1 {color:#181818;}
|
||||
.blogProfile ul.profileMenu li {background:url(../images/gray/division_95.gif) no-repeat left top;}
|
||||
.blogProfile ul.profileMenu li a {color:#6a6a6a;;}
|
||||
|
||||
/* title bg box */
|
||||
.blogTitleBox {background:url(../images/gray/box_blog_title.gif) no-repeat left top;}
|
||||
.blogTitleBox h2 {color:#181818;}
|
||||
|
||||
/* Content Box */
|
||||
.contentBox .centerBg {background:url(../images/gray/box_blog_bg.gif) repeat-y left top;}
|
||||
.contentBox .topBg {background:url(../images/gray/box_blog_top.gif) no-repeat left top;}
|
||||
.contentBox .bottomBg {background:url(../images/gray/box_blog_bot.gif) no-repeat left top;}
|
||||
|
||||
/* Widget */
|
||||
.blog_widget_ {background:url(../images/gray/box_blog_title.gif) no-repeat left top;}
|
||||
.blog_widget_ h2 {color:#181818;}
|
||||
.blog_widget_ .items li {background:url(../images/gray/bullet_3x3_1.gif) no-repeat 5px 5px; }
|
||||
.blog_widget_ .items li a {color:#3f4040;}
|
||||
|
||||
/* Calender */
|
||||
.widget_calendar caption {color:#797b7e; background:url(../images/gray/box_blog_title.gif) no-repeat left top;}
|
||||
.widget_calendar caption em {color:#181818;}
|
||||
.widget_calendar caption .back {background:url("../images/gray/btn_back.gif") no-repeat left top; width:13px; height:13px;}
|
||||
.widget_calendar caption .next {background:url("../images/gray/btn_next.gif") no-repeat left top; width:13px; height:13px;}
|
||||
.widget_calendar th {color:#6a6a6a;}
|
||||
.widget_calendar th.sun {color:#181818;}
|
||||
.widget_calendar td {color:#6a6a6a;}
|
||||
.widget_calendar td a {color:#6a6a6a;}
|
||||
.widget_calendar td {color:#6a6a6a;}
|
||||
.widget_calendar td.sun a {color:#181818;}
|
||||
.widget_calendar td.sun {color:#181818;}
|
||||
.widget_calendar td.today a {color:#181818;}
|
||||
.widget_calendar td.today {color:#181818;}
|
||||
|
||||
|
|
@ -1,57 +0,0 @@
|
|||
@charset "utf-8";
|
||||
/*
|
||||
NHN UIT Lab. WebStandardization Team (http://html.nhndesign.com/)
|
||||
Kim, Ji Min 070809-20070903
|
||||
*/
|
||||
|
||||
body {color:#444444; background:#ffffff url(../images/green/bg_blog.jpg) no-repeat center top;}
|
||||
|
||||
/* Input Style Definition */
|
||||
.inputTypeText {border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6; background:#ffffff;}
|
||||
.inputTypeText:hover,
|
||||
.inputTypeText:focus { background:#f4f4f4;}
|
||||
.inputTypeTextArea {border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6 !important; background:#ffffff;}
|
||||
|
||||
/* Global Navigation */
|
||||
ul.blogMenu li {background:url(../images/green/division_f2.gif) no-repeat left .2em;}
|
||||
ul.blogMenu li a {color:#666666;}
|
||||
ul.blogMenu li a.on {color:#00afcf;}
|
||||
|
||||
ul.blogGlobal li {background:url(../images/green/division_f2.gif) no-repeat left .2em;}
|
||||
ul.blogGlobal li a {color:#3f4040;}
|
||||
|
||||
/* Profile */
|
||||
.blogProfile h1 {color:#333333;}
|
||||
.blogProfile ul.profileMenu li {background:url(../images/green/division_cc.gif) no-repeat left top;}
|
||||
.blogProfile ul.profileMenu li a {color:#3f4040;;}
|
||||
|
||||
/* title bg box */
|
||||
.blogTitleBox {background:url(../images/green/box_blog_title.gif) no-repeat left top;}
|
||||
.blogTitleBox h2 {color:#31c100;}
|
||||
|
||||
/* Content Box */
|
||||
.contentBox .centerBg {background:url(../images/green/box_blog_bg.gif) repeat-y left top;}
|
||||
.contentBox .topBg {background:url(../images/green/box_blog_top.gif) no-repeat left top;}
|
||||
.contentBox .bottomBg {background:url(../images/green/box_blog_bot.gif) no-repeat left top;}
|
||||
|
||||
/* Widget */
|
||||
.blog_widget_ {background:url(../images/green/box_blog_title.gif) no-repeat left top;}
|
||||
.blog_widget_ h2 {color:#31c100;}
|
||||
.blog_widget_ .items li {background:url(../images/green/bullet_3x3_1.gif) no-repeat 5px 5px; }
|
||||
.blog_widget_ .items li a {color:#3f4040;}
|
||||
|
||||
/* Calender */
|
||||
.widget_calendar caption {color:#31c100; background:url(../images/green/box_blog_title.gif) no-repeat left top;}
|
||||
.widget_calendar caption em {color:#00afcf;}
|
||||
.widget_calendar caption .back {background:url("../images/green/btn_back.gif") no-repeat left top; width:13px; height:13px;}
|
||||
.widget_calendar caption .next {background:url("../images/green/btn_next.gif") no-repeat left top; width:13px; height:13px;}
|
||||
.widget_calendar th {color:#6a6a6a;}
|
||||
.widget_calendar th.sun {color:#31c100;}
|
||||
.widget_calendar td {color:#6a6a6a;}
|
||||
.widget_calendar td a {color:#6a6a6a;}
|
||||
.widget_calendar td {color:#6a6a6a;}
|
||||
.widget_calendar td.sun a {color:#31c100;}
|
||||
.widget_calendar td.sun {color:#31c100;}
|
||||
.widget_calendar td.today a {color:#00afcf;}
|
||||
.widget_calendar td.today {color:#00afcf;}
|
||||
|
||||
|
|
@ -1,57 +0,0 @@
|
|||
@charset "utf-8";
|
||||
/*
|
||||
NHN UIT Lab. WebStandardization Team (http://html.nhndesign.com/)
|
||||
Kim, Ji Min 070809-20070903
|
||||
*/
|
||||
|
||||
body {color:#999999; background:#181818 url(../images/orange/bg_blog.jpg) no-repeat center top;}
|
||||
|
||||
/* Input Style Definition */
|
||||
.inputTypeText {border-color:#333333 #666666 #666666 #333333; background:transparent; color:#aaaaaa;}
|
||||
.inputTypeText:hover,
|
||||
.inputTypeText:focus { background:#000000;}
|
||||
.inputTypeTextArea {border-color:#333333 #666666 #666666 #333333!important; background:transparent;}
|
||||
|
||||
/* Global Navigation */
|
||||
ul.blogMenu li {background:url(../images/orange/division_66.gif) no-repeat left .2em;}
|
||||
ul.blogMenu li a {color:#666666;}
|
||||
ul.blogMenu li a.on {color:#ff6f4a;}
|
||||
|
||||
ul.blogGlobal li {background:url(../images/orange/division_66.gif) no-repeat left .2em;}
|
||||
ul.blogGlobal li a {color:#999999;}
|
||||
|
||||
/* Profile */
|
||||
.blogProfile h1 {color:#ff6f4a;}
|
||||
.blogProfile ul.profileMenu li {background:url(../images/orange/division_66.gif) no-repeat left top;}
|
||||
.blogProfile ul.profileMenu li a {color:#999999;}
|
||||
|
||||
/* title bg box */
|
||||
.blogTitleBox {background:url(../images/orange/box_blog_title.gif) no-repeat left top;}
|
||||
.blogTitleBox h2 {color:#ff6f4a;}
|
||||
|
||||
/* Content Box */
|
||||
.contentBox .centerBg {background:url(../images/orange/box_blog_bg.gif) repeat-y left top;}
|
||||
.contentBox .topBg {background:url(../images/orange/box_blog_top.gif) no-repeat left top;}
|
||||
.contentBox .bottomBg {background:url(../images/orange/box_blog_bot.gif) no-repeat left top;}
|
||||
|
||||
/* Widget */
|
||||
.blog_widget_ {background:url(../images/orange/box_blog_title.gif) no-repeat left top;}
|
||||
.blog_widget_ h2 {color:#ff6f4a;}
|
||||
.blog_widget_ .items li {background:url(../images/orange/bullet_3x3_1.gif) no-repeat 5px 5px;}
|
||||
.blog_widget_ .items li a {color:#999999;}
|
||||
|
||||
/* Calender */
|
||||
.widget_calendar caption {color:#ff6f4a; background:url(../images/orange/box_blog_title.gif) no-repeat left top;}
|
||||
.widget_calendar caption em {color:#ff6f4a;}
|
||||
.widget_calendar caption .back {background:url("../images/orange/btn_back.gif") no-repeat left top; width:13px; height:13px;}
|
||||
.widget_calendar caption .next {background:url("../images/orange/btn_next.gif") no-repeat left top; width:13px; height:13px;}
|
||||
.widget_calendar th {color:#666666;}
|
||||
.widget_calendar th.sun {color:#ff6f4a;}
|
||||
.widget_calendar td {color:#666666;}
|
||||
.widget_calendar td a {color:#666666;}
|
||||
.widget_calendar td {color:#666666;}
|
||||
.widget_calendar td.sun a {color:#ff6f4a;}
|
||||
.widget_calendar td.sun {color:#ff6f4a;}
|
||||
.widget_calendar td.today a {color:#ff6f4a;}
|
||||
.widget_calendar td.today {color:#ff6f4a;}
|
||||
|
||||
|
|
@ -1,57 +0,0 @@
|
|||
@charset "utf-8";
|
||||
/*
|
||||
NHN UIT Lab. WebStandardization Team (http://html.nhndesign.com/)
|
||||
Kim, Ji Min 070809-20070903
|
||||
*/
|
||||
|
||||
body {color:#444444; background:#ffffff url(../images/violet/bg_blog.jpg) no-repeat center top;}
|
||||
|
||||
/* Input Style Definition */
|
||||
.inputTypeText {border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6; background:#ffffff;}
|
||||
.inputTypeText:hover,
|
||||
.inputTypeText:focus { background:#f4f4f4;}
|
||||
.inputTypeTextArea {border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6 !important; background:#ffffff;}
|
||||
|
||||
/* Global Navigation */
|
||||
ul.blogMenu li {background:url(../images/violet/division_d7.gif) no-repeat left .2em;}
|
||||
ul.blogMenu li a {color:#666666;}
|
||||
ul.blogMenu li a.on {color:#5db000;}
|
||||
|
||||
ul.blogGlobal li {background:url(../images/violet/division_d7.gif) no-repeat left .2em;}
|
||||
ul.blogGlobal li a {color:#3f4040;}
|
||||
|
||||
/* Profile */
|
||||
.blogProfile h1 {color:#333333;}
|
||||
.blogProfile ul.profileMenu li {background:url(../images/violet/division_cc.gif) no-repeat left top;}
|
||||
.blogProfile ul.profileMenu li a {color:#3f4040;;}
|
||||
|
||||
/* title bg box */
|
||||
.blogTitleBox {background:url(../images/violet/box_blog_title.gif) no-repeat left top;}
|
||||
.blogTitleBox h2 {color:#9285bc;}
|
||||
|
||||
/* Content Box */
|
||||
.contentBox .centerBg {background:url(../images/violet/box_blog_bg.gif) repeat-y left top;}
|
||||
.contentBox .topBg {background:url(../images/violet/box_blog_top.gif) no-repeat left top;}
|
||||
.contentBox .bottomBg {background:url(../images/violet/box_blog_bot.gif) no-repeat left top;}
|
||||
|
||||
/* Widget */
|
||||
.blog_widget_ {background:url(../images/violet/box_blog_title.gif) no-repeat left top;}
|
||||
.blog_widget_ h2 {color:#9285bc;}
|
||||
.blog_widget_ .items li {background:url(../images/violet/bullet_3x3_1.gif) no-repeat 5px 5px; }
|
||||
.blog_widget_ .items li a {color:#3f4040;}
|
||||
|
||||
/* Calender */
|
||||
.widget_calendar caption {color:#9285bc; background:url(../images/violet/box_blog_title.gif) no-repeat left top;}
|
||||
.widget_calendar caption em {color:#33cc34;}
|
||||
.widget_calendar caption .back {background:url("../images/violet/btn_back.gif") no-repeat left top; width:13px; height:13px;}
|
||||
.widget_calendar caption .next {background:url("../images/violet/btn_next.gif") no-repeat left top; width:13px; height:13px;}
|
||||
.widget_calendar th {color:#6a6a6a;}
|
||||
.widget_calendar th.sun {color:#5db000;}
|
||||
.widget_calendar td {color:#6a6a6a;}
|
||||
.widget_calendar td a {color:#6a6a6a;}
|
||||
.widget_calendar td {color:#6a6a6a;}
|
||||
.widget_calendar td.sun a {color:#5db000;}
|
||||
.widget_calendar td.sun {color:#5db000;}
|
||||
.widget_calendar td.today a {color:#5db000;}
|
||||
.widget_calendar td.today {color:#5db000;}
|
||||
|
||||
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 117 B |
|
Before Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 126 B |
|
Before Width: | Height: | Size: 115 B |
|
Before Width: | Height: | Size: 352 B |
|
Before Width: | Height: | Size: 481 B |
|
Before Width: | Height: | Size: 462 B |
|
Before Width: | Height: | Size: 59 B |
|
Before Width: | Height: | Size: 59 B |
|
Before Width: | Height: | Size: 635 B |
|
Before Width: | Height: | Size: 676 B |
|
Before Width: | Height: | Size: 44 B |
|
Before Width: | Height: | Size: 44 B |
|
Before Width: | Height: | Size: 44 B |
|
Before Width: | Height: | Size: 309 B |
|
Before Width: | Height: | Size: 46 B |
|
Before Width: | Height: | Size: 46 B |
|
Before Width: | Height: | Size: 101 B |