mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-25 14:19:58 +09:00
블로그 XE_BLOG에 컬러셋 추가. 기본 위젯에도 컬러셋 추가
git-svn-id: http://xe-core.googlecode.com/svn/trunk@2057 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
dcaae4ecc9
commit
c3df0e908c
171 changed files with 872 additions and 300 deletions
|
|
@ -0,0 +1,6 @@
|
|||
.newestDocument { position:relative; border:1px solid #e0e1db; background:url(../images/cyan/bgBoxTypeB.gif) repeat-x left top; margin-bottom:.7em; }
|
||||
.newestDocument h2 { position:relative; border-left:1px solid #ffffff; border-right:1px solid #ffffff; padding:7px 0 0 12px; height:21px; _height:20px; font-size:1em; color:#54564b; font-family:Tahoma;}
|
||||
/*:first-child+html .boxTypeB h2 { height:20px;} */
|
||||
.newestDocument .documentList { padding:1.2em; overflow:hidden;}
|
||||
.newestDocument .documentList li { display:block; color:#a4a4a4; margin-right:.1em; overflow:hidden;}
|
||||
.newestDocument .documentList li a { color:#a4a4a4; line-height:1.5em; }
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
.newestDocument { position:relative; border:1px solid #e0e1db; background:url(../images/green/bgBoxTypeB.gif) repeat-x left top; margin-bottom:.7em; }
|
||||
.newestDocument h2 { position:relative; border-left:1px solid #ffffff; border-right:1px solid #ffffff; padding:7px 0 0 12px; height:21px; _height:20px; font-size:1em; color:#54564b; font-family:Tahoma;}
|
||||
/*:first-child+html .boxTypeB h2 { height:20px;} */
|
||||
.newestDocument .documentList { padding:1.2em; overflow:hidden;}
|
||||
.newestDocument .documentList li { display:block; color:#a4a4a4; margin-right:.1em; overflow:hidden;}
|
||||
.newestDocument .documentList li a { color:#a4a4a4; line-height:1.5em; }
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
.newestDocument { position:relative; border:1px solid #e0e1db; background:url(../images/purple/bgBoxTypeB.gif) repeat-x left top; margin-bottom:.7em; }
|
||||
.newestDocument h2 { position:relative; border-left:1px solid #ffffff; border-right:1px solid #ffffff; padding:7px 0 0 12px; height:21px; _height:20px; font-size:1em; color:#54564b; font-family:Tahoma;}
|
||||
/*:first-child+html .boxTypeB h2 { height:20px;} */
|
||||
.newestDocument .documentList { padding:1.2em; overflow:hidden;}
|
||||
.newestDocument .documentList li { display:block; color:#a4a4a4; margin-right:.1em; overflow:hidden;}
|
||||
.newestDocument .documentList li a { color:#a4a4a4; line-height:1.5em; }
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
.newestDocument { position:relative; border:1px solid #e0e1db; background:url(../images/red/bgBoxTypeB.gif) repeat-x left top; margin-bottom:.7em; }
|
||||
.newestDocument h2 { position:relative; border-left:1px solid #ffffff; border-right:1px solid #ffffff; padding:7px 0 0 12px; height:21px; _height:20px; font-size:1em; color:#54564b; font-family:Tahoma;}
|
||||
/*:first-child+html .boxTypeB h2 { height:20px;} */
|
||||
.newestDocument .documentList { padding:1.2em; overflow:hidden;}
|
||||
.newestDocument .documentList li { display:block; color:#a4a4a4; margin-right:.1em; overflow:hidden;}
|
||||
.newestDocument .documentList li a { color:#a4a4a4; line-height:1.5em; }
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 207 B |
Binary file not shown.
|
After Width: | Height: | Size: 205 B |
Binary file not shown.
|
After Width: | Height: | Size: 197 B |
Binary file not shown.
|
After Width: | Height: | Size: 196 B |
|
|
@ -1,6 +1,14 @@
|
|||
<!-- 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
|
||||
|
||||
<!--@if($colorset=="normal"||!$colorset)-->
|
||||
<!--@if($colorset=="cyan")-->
|
||||
<!--%import("css/cyan.css")-->
|
||||
<!--@elseif($colorset=="green")-->
|
||||
<!--%import("css/green.css")-->
|
||||
<!--@elseif($colorset=="red")-->
|
||||
<!--%import("css/red.css")-->
|
||||
<!--@elseif($colorset=="purple")-->
|
||||
<!--%import("css/purple.css")-->
|
||||
<!--@else-->
|
||||
<!--%import("css/normal.css")-->
|
||||
<!--@end-->
|
||||
|
||||
|
|
|
|||
|
|
@ -21,5 +21,29 @@
|
|||
<title xml:lang="zh-CN">默认颜色</title>
|
||||
<title xml:lang="en">Default color</title>
|
||||
</color>
|
||||
<color name="cyan">
|
||||
<title xml:lang="ko">청록색</title>
|
||||
<title xml:lang="jp">cyan</title>
|
||||
<title xml:lang="zh-CN">cyan</title>
|
||||
<title xml:lang="en">cyan</title>
|
||||
</color>
|
||||
<color name="green">
|
||||
<title xml:lang="ko">초록색</title>
|
||||
<title xml:lang="jp">green</title>
|
||||
<title xml:lang="zh-CN">green</title>
|
||||
<title xml:lang="en">green</title>
|
||||
</color>
|
||||
<color name="red">
|
||||
<title xml:lang="ko">빨간색</title>
|
||||
<title xml:lang="jp">red</title>
|
||||
<title xml:lang="zh-CN">red</title>
|
||||
<title xml:lang="en">red</title>
|
||||
</color>
|
||||
<color name="purple">
|
||||
<title xml:lang="ko">보라색</title>
|
||||
<title xml:lang="jp">purple</title>
|
||||
<title xml:lang="zh-CN">purple</title>
|
||||
<title xml:lang="en">purple</title>
|
||||
</color>
|
||||
</colorset>
|
||||
</skin>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue