mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-19 03:09:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1847 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
ab374b12f2
commit
cb3246888e
29 changed files with 635 additions and 22 deletions
|
|
@ -70,7 +70,7 @@ h4 .view { color:#158692; padding-right:.6em; font:bold .9em Tahoma; background:
|
|||
.clear { clear:both; }
|
||||
.nospace { margin:0; padding:0; }
|
||||
|
||||
.buttonTypeA { display:block; cursor:pointer; background:url(../images/buttonTypeACenter.gif) repeat-x left center; line-height:100%; overflow:visible; color:#3f4040; margin:0 1px; white-space:nowrap; }
|
||||
.buttonTypeA { display:block; cursor:pointer; background:url(../images/buttonTypeACenter.gif) repeat-x left center; line-height:100%; overflow:visible; color:#3f4040; margin:0 1px; white-space:nowrap; font-size:.9em;}
|
||||
.buttonTypeA:hover { text-decoration:none;}
|
||||
.buttonTypeA img { vertical-align:middle;}
|
||||
.buttonTypeA input { border:none; cursor:pointer; background:url(../images/white/buttonTypeACenter.gif) repeat-x left center; line-height:100%; overflow:visible; color:#3f4040; margin:0 1px; white-space:nowrap;border:0px; vertical-align:middle; }
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ IE7 Only
|
|||
*/
|
||||
|
||||
/* default.css - Type Selector Definition */
|
||||
* { margin:0; padding:0; font-family:"돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif;}
|
||||
* { margin:0; padding:0; }
|
||||
html, body { }
|
||||
html { width:100%; position:relative;}
|
||||
body { font-size:.75em; width:100%; background:#2f2f2f; margin:0;}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
<?php
|
||||
/**
|
||||
* @class blogAdminModel
|
||||
|
|
|
|||
|
|
@ -84,7 +84,7 @@ div#searchBox fieldset { border:none;}
|
|||
div#searchBox fieldset legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em;}
|
||||
|
||||
/* buttonType */
|
||||
.buttonTypeA { display:block; cursor:pointer; background:url(../images/white/buttonTypeACenter.gif) repeat-x left center; line-height:100%; overflow:visible; color:#3f4040; margin:0 1px; white-space:nowrap;border:0px;}
|
||||
.buttonTypeA { display:block; cursor:pointer; background:url(../images/white/buttonTypeACenter.gif) repeat-x left center; line-height:100%; overflow:visible; color:#3f4040; margin:0 1px; white-space:nowrap;border:0px; font-size:.9em;}
|
||||
.buttonTypeA:hover { text-decoration:none;}
|
||||
.buttonTypeA img { vertical-align:middle;}
|
||||
.buttonTypeA input { border:none; cursor:pointer; background:url(../images/white/buttonTypeACenter.gif) repeat-x left center; line-height:100%; overflow:visible; color:#3f4040; margin:0 1px; white-space:nowrap;border:0px; vertical-align:middle; }
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ Jeong, Chan Myeong 070601~070630
|
|||
/* boardList */
|
||||
.boardList { width:100%; position:relative; border:1px solid #e0e1db;}
|
||||
.boardList tr.notice { background:#f8f8f8;}
|
||||
.boardList tr.notice .num { font:.9em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif; font-weight:bold;}
|
||||
.boardList tr.notice .num { font-size:.9em }
|
||||
.boardList tr.bg1 { background:#ffffff}
|
||||
.boardList tr.bg2 { background:#fbfbfb;}
|
||||
.boardList th { color:#3e3f3e; font-weight:normal; border-bottom:1px solid #ffffff; padding:.8em .5em .5em .5em; background:#ffffff url(../images/white/lineBoardListTh.gif) no-repeat left bottom;}
|
||||
|
|
@ -55,7 +55,7 @@ Jeong, Chan Myeong 070601~070630
|
|||
.boardList td.title,
|
||||
.boardList td.title a { color:#444444;}
|
||||
.boardList td.title a:visited { color:#777777;}
|
||||
.boardList td.author { color:#333333; font:.95em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif;}
|
||||
.boardList td.author { color:#333333; font-size:.95em }
|
||||
.boardList td.author a { font-size:1em; color:#333333;}
|
||||
.boardList td.reading { font:.8em Tahoma; color:#999999; text-align:center;}
|
||||
.boardList td.recommend { font:bold .8em Tahoma; color:#ff6600; text-align:center;}
|
||||
|
|
|
|||
17
modules/board/lang/jp.lang.php
Normal file
17
modules/board/lang/jp.lang.php
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
/**
|
||||
* @file ko.lang.php
|
||||
* @author zero (zero@nzeo.com) 翻訳:RisaPapa
|
||||
* @brief 掲示板(board)モジュルの基本言語パッケージ
|
||||
**/
|
||||
|
||||
$lang->board = "掲示板";
|
||||
|
||||
// ボタンに使用する用語
|
||||
$lang->cmd_board_list = '掲示板リスト';
|
||||
$lang->cmd_module_config = '掲示板共通設定';
|
||||
$lang->cmd_view_info = '掲示板情報';
|
||||
$lang->move_target_module = "移動対象モジュル";
|
||||
|
||||
$lang->about_board = "掲示板を生成、管理できる掲示板モジュルです。\n生成後、リストからモジュル名を選択すると詳細な設定ができます。\n掲示板のモジュル名はURLになりますので注意してください。 (ex : http://ドメイン/zb/?mid=モジュル名)";
|
||||
?>
|
||||
|
|
@ -38,7 +38,7 @@ Jeong, Chan Myeong 070601~070630
|
|||
/* boardList */
|
||||
.boardList { width:100%; position:relative; border:1px solid #e0e1db;}
|
||||
.boardList tr.notice { background:#f8f8f8;}
|
||||
.boardList tr.notice .num { font:.9em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif; font-weight:bold;}
|
||||
.boardList tr.notice .num { font-size:.9em; font-weight:bold;}
|
||||
.boardList tr.bg1 { background:#ffffff}
|
||||
.boardList tr.bg2 { background:#fbfbfb;}
|
||||
.boardList th { color:#3e3f3e; font-weight:normal; border-bottom:1px solid #ffffff; padding:.8em .5em .5em .5em; background:#ffffff url(../images/white/lineBoardListTh.gif) no-repeat left bottom;}
|
||||
|
|
@ -66,7 +66,7 @@ Jeong, Chan Myeong 070601~070630
|
|||
.boardList td.title,
|
||||
.boardList td.title a { color:#444444;}
|
||||
.boardList td.title a:visited { color:#777777;}
|
||||
.boardList td.author { color:#333333; font:.95em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif;}
|
||||
.boardList td.author { color:#333333; font-size:.95em;}
|
||||
.boardList td.author a { font-size:1em; color:#333333;}
|
||||
.boardList td.reading { font:.8em Tahoma; color:#999999; text-align:center;}
|
||||
.boardList td.recommend { font:bold .8em Tahoma; color:#ff6600; text-align:center;}
|
||||
|
|
@ -111,7 +111,7 @@ Jeong, Chan Myeong 070601~070630
|
|||
.pageNavigation .current { position:relative; margin-left:-4px; font:bold 1em Tahoma; color:#ff6600; display:inline-block; padding:1px 7px 1px 6px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
|
||||
|
||||
/* buttonType */
|
||||
.buttonTypeA { display:block; cursor:pointer; background:url(../images/white/buttonTypeACenter.gif) repeat-x left center; line-height:100%; overflow:visible; color:#3f4040; margin:0 1px; white-space:nowrap;border:0px;}
|
||||
.buttonTypeA { display:block; cursor:pointer; background:url(../images/white/buttonTypeACenter.gif) repeat-x left center; line-height:100%; overflow:visible; color:#3f4040; margin:0 1px; white-space:nowrap;border:0px; font-size:.9em;}
|
||||
.buttonTypeA:hover { text-decoration:none;}
|
||||
.buttonTypeA img { vertical-align:middle;}
|
||||
.buttonTypeA .leftCap { width:2px; height:24px; background:url(../images/white/buttonTypeALeft.gif) no-repeat; margin:0 .3em 0 0; position:relative; left:-1px;}
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ Jeong, Chan Myeong 070601~070630
|
|||
/* boardList */
|
||||
.boardList { width:100%; position:relative; border:1px solid #e0e1db;}
|
||||
.boardList tr.notice { background:#f8f8f8;}
|
||||
.boardList tr.notice .num { font:.9em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif; font-weight:bold;}
|
||||
.boardList tr.notice .num { font-size:.9em; font-weight:bold;}
|
||||
.boardList tr.bg1 { background:#ffffff}
|
||||
.boardList tr.bg2 { background:#fbfbfb;}
|
||||
.boardList th { color:#3e3f3e; font-weight:normal; border-bottom:1px solid #ffffff; padding:.8em .5em .5em .5em; background:#ffffff url(../images/white/lineBoardListTh.gif) no-repeat left bottom;}
|
||||
|
|
@ -66,7 +66,7 @@ Jeong, Chan Myeong 070601~070630
|
|||
.boardList td.title,
|
||||
.boardList td.title a { color:#444444;}
|
||||
.boardList td.title a:visited { color:#777777;}
|
||||
.boardList td.author { color:#333333; font:.95em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif;}
|
||||
.boardList td.author { color:#333333; font-size:.95em;}
|
||||
.boardList td.author a { font-size:1em; color:#333333;}
|
||||
.boardList td.reading { font:.8em Tahoma; color:#999999; text-align:center;}
|
||||
.boardList td.recommend { font:bold .8em Tahoma; color:#ff6600; text-align:center;}
|
||||
|
|
@ -111,10 +111,10 @@ Jeong, Chan Myeong 070601~070630
|
|||
.pageNavigation .current { position:relative; margin-left:-4px; font:bold 1em Tahoma; color:#ff6600; display:inline-block; padding:1px 7px 1px 6px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
|
||||
|
||||
/* buttonType */
|
||||
.buttonTypeA { display:block; cursor:pointer; background:url(../images/white/buttonTypeACenter.gif) repeat-x left center; line-height:100%; overflow:visible; color:#3f4040; margin:0 1px; white-space:nowrap;border:0px;}
|
||||
.buttonTypeA { display:block; cursor:pointer; background:url(../images/white/buttonTypeACenter.gif) repeat-x left center; line-height:100%; overflow:visible; color:#3f4040; margin:0 1px; white-space:nowrap;border:0px; font-size:.9em;}
|
||||
.buttonTypeA:hover { text-decoration:none;}
|
||||
.buttonTypeA img { vertical-align:middle;}
|
||||
.buttonTypeA .leftCap { width:2px; height:24px; background:url(../images/white/buttonTypeALeft.gif) no-repeat; margin:0 .3em 0 0; position:relative; left:-1px;}
|
||||
.buttonTypeA .leftCap { width:2px; height:24px; background:url(../images/white/buttonTypeALeft.gif) no-repeat; margin:0 .3em 0 -1px; position:relative; left:-1px;}
|
||||
.buttonTypeA .rightCap { width:2px; height:24px; background:url(../images/white/buttonTypeARight.gif) no-repeat; margin:0 -1px 0 .4em;}
|
||||
.buttonTypeA .icon { margin:0 .2em;}
|
||||
.buttonTypeA input { border:none; cursor:pointer; background:url(../images/white/buttonTypeACenter.gif) repeat-x left center; line-height:100%; overflow:visible; color:#3f4040; margin:0 1px; white-space:nowrap;border:0px; vertical-align:middle; }
|
||||
|
|
@ -122,7 +122,7 @@ Jeong, Chan Myeong 070601~070630
|
|||
.buttonTypeB { display:block; cursor:pointer; background:url(../images/white/buttonTypeBCenter.gif) repeat-x left center; line-height:100%; overflow:visible; color:#3f4040; margin:0 1px; font-size:.9em; white-space:nowrap;}
|
||||
.buttonTypeB:hover { text-decoration:none;}
|
||||
.buttonTypeB img { vertical-align:middle;}
|
||||
.buttonTypeB .leftCap { width:2px; height:21px; background:url(../images/white/buttonTypeBLeft.gif) no-repeat; margin:0 .3em 0 0; position:relative; left:-1px;}
|
||||
.buttonTypeB .leftCap { width:2px; height:21px; background:url(../images/white/buttonTypeBLeft.gif) no-repeat; margin:0 .3em 0 1px; position:relative; left:-1px;}
|
||||
.buttonTypeB .rightCap { width:2px; height:21px; background:url(../images/white/buttonTypeBRight.gif) no-repeat; margin:0 -1px 0 .4em;}
|
||||
.buttonTypeB .icon { margin:0 .2em;}
|
||||
.buttonTypeB input { border:none; cursor:pointer; background:url(../images/white/buttonTypeBCenter.gif) repeat-x left center; line-height:100%; overflow:visible; color:#3f4040; margin:0 1px; white-space:nowrap;border:0px; vertical-align:middle; }
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ Jeong, Chan Myeong 070601~070630
|
|||
/* boardList */
|
||||
.boardList { width:100%; position:relative; border:1px solid #e0e1db;}
|
||||
.boardList tr.notice { background:#f8f8f8;}
|
||||
.boardList tr.notice .num { font:.9em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif; font-weight:bold;}
|
||||
.boardList tr.notice .num { font-size:.9em; font-weight:bold;}
|
||||
.boardList tr.bg1 { background:#ffffff}
|
||||
.boardList tr.bg2 { background:#fbfbfb;}
|
||||
.boardList th { color:#3e3f3e; font-weight:normal; border-bottom:1px solid #ffffff; padding:.8em .5em .5em .5em; background:#ffffff url(../images/white/lineBoardListTh.gif) no-repeat left bottom;}
|
||||
|
|
@ -66,7 +66,7 @@ Jeong, Chan Myeong 070601~070630
|
|||
.boardList td.title,
|
||||
.boardList td.title a { color:#444444;}
|
||||
.boardList td.title a:visited { color:#777777;}
|
||||
.boardList td.author { color:#333333; font:.95em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif;}
|
||||
.boardList td.author { color:#333333; font-size:.95em}
|
||||
.boardList td.author a { font-size:1em; color:#333333;}
|
||||
.boardList td.reading { font:.8em Tahoma; color:#999999; text-align:center;}
|
||||
.boardList td.recommend { font:bold .8em Tahoma; color:#ff6600; text-align:center;}
|
||||
|
|
@ -111,7 +111,7 @@ Jeong, Chan Myeong 070601~070630
|
|||
.pageNavigation .current { position:relative; margin-left:-4px; font:bold 1em Tahoma; color:#ff6600; display:inline-block; padding:1px 7px 1px 6px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
|
||||
|
||||
/* buttonType */
|
||||
.buttonTypeA { display:block; cursor:pointer; background:url(../images/white/buttonTypeACenter.gif) repeat-x left center; line-height:100%; overflow:visible; color:#3f4040; margin:0 1px; white-space:nowrap;border:0px;}
|
||||
.buttonTypeA { display:block; cursor:pointer; background:url(../images/white/buttonTypeACenter.gif) repeat-x left center; line-height:100%; overflow:visible; color:#3f4040; margin:0 1px; white-space:nowrap;border:0px; font-size:.9em;}
|
||||
.buttonTypeA:hover { text-decoration:none;}
|
||||
.buttonTypeA img { vertical-align:middle;}
|
||||
.buttonTypeA .leftCap { width:2px; height:24px; background:url(../images/white/buttonTypeALeft.gif) no-repeat; margin:0 .3em 0 0; position:relative; left:-1px;}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ IE7 Only
|
|||
*/
|
||||
|
||||
/* default.css - Type Selector Definition */
|
||||
* { margin:0; padding:0; font-family:"돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif;}
|
||||
* { margin:0; padding:0; }
|
||||
html, body {}
|
||||
html { width:100%; position:relative;}
|
||||
body { position:relative; font-size:.75em; width:100%; background:#4d4d4d url(../images/installBg.gif) repeat-x;}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue