mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-27 22:33:10 +09:00
widgetContainer를 사용하는 XE 룰을 따르는 위젯들의 colorset이 한 페이지에 white/black2개가 모두 쓰일때 오동작하는 것을 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5830 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
5e81309067
commit
905fba6fa7
84 changed files with 1840 additions and 1939 deletions
|
|
@ -1,10 +1,8 @@
|
|||
<!--@if($colorset == "black")-->
|
||||
<!--%import("./css/black.css")-->
|
||||
<!--@elseif($colorset == "white" || $colorset == "normal")-->
|
||||
<!--%import("./css/white.css")-->
|
||||
<!--@if($colorset == "black" || $colorset == "white")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="widgetContainer">
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<ul class="widgetUlistA">
|
||||
<!--@foreach($widget_info->archive_list as $val)-->
|
||||
<li><a href="{getSiteUrl($widget_info->domain,'mid',$widget_info->module_info->mid,'search_target','regdate','search_keyword',$val->month)}">{zdate($val->month,'Y. m')}</a> ({number_format($val->count)})</li>
|
||||
|
|
|
|||
|
|
@ -1,4 +0,0 @@
|
|||
@charset "utf-8";
|
||||
.widgetUlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetUlistA li{ list-style:none; font-family:tahoma; font-size:9px;}
|
||||
.widgetUlistA li a { color:#999; font-size:12px;}
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
@charset "utf-8";
|
||||
.widgetUlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetUlistA li { list-style:none; font-family:tahoma; font-size:9px; }
|
||||
.widgetUlistA li a{ color:#666; font-size:12px;}
|
||||
8
widgets/archive_list/skins/default/css/widget.css
Normal file
8
widgets/archive_list/skins/default/css/widget.css
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
@charset "utf-8";
|
||||
.widgetUlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetUlistA li { list-style:none; font-family:tahoma; font-size:9px; }
|
||||
.widgetUlistA li a{ color:#666; font-size:12px;}
|
||||
|
||||
.widgetContainer.black .widgetUlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetContainer.black .widgetUlistA li{ list-style:none; font-family:tahoma; font-size:9px;}
|
||||
.widgetContainer.black .widgetUlistA li a { color:#999; font-size:12px;}
|
||||
|
|
@ -1,10 +1,8 @@
|
|||
<!--@if($colorset=="black")-->
|
||||
<!--%import("css/black.css")-->
|
||||
<!--@elseif($colorset=="white"||$colorset=="normal")-->
|
||||
<!--%import("css/white.css")-->
|
||||
<!--@if($colorset == "black" || $colorset == "white")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="widgetContainer">
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<div class="widgetCalendarNavigation">
|
||||
<button type="button" class="prevYear" onclick="location.href='{getUrl('search_target','regdate','search_keyword',$widget_info->prev_year)}'"><<</button> <button type="button" class="prevMonth" onclick="location.href='{getUrl('search_target','regdate','search_keyword',$widget_info->prev_month)}'"><</button>
|
||||
<button type="button" class="nextMonth" onclick="location.href='{getUrl('search_target','regdate','search_keyword',$widget_info->next_month)}'">></button> <button type="button" class="nextYear" onclick="location.href='{getUrl('search_target','regdate','search_keyword',$widget_info->next_year)}'">>></button>
|
||||
|
|
|
|||
|
|
@ -1,32 +0,0 @@
|
|||
@charset "utf-8";
|
||||
.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;}
|
||||
.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:12px; font-family:Tahoma; font-weight:normal;}
|
||||
.widgetCalendar td,
|
||||
.widgetCalendar td a{ font-size:11px; font-family:Tahoma;}
|
||||
.widgetCalendar td em{ font-style:normal;}
|
||||
.widgetCalendarNavigation button{ color:#999;}
|
||||
.widgetCalendar caption{ color:#999;}
|
||||
.widgetCalendar th{ background:#333; color:#fff;}
|
||||
.widgetCalendar th.sun,
|
||||
.widgetCalendar td.sun,
|
||||
.widgetCalendar td em{ color:#ff1a1a;}
|
||||
.widgetCalendar td,
|
||||
.widgetCalendar td a{ color:#999;}
|
||||
.widgetCalendar td.sun a{ color:#ff1a1a;}
|
||||
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
@charset "utf-8";
|
||||
.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;}
|
||||
.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:12px; font-family:Tahoma; font-weight:normal;}
|
||||
.widgetCalendar td,
|
||||
.widgetCalendar td a{ font-size:11px; font-family:Tahoma;}
|
||||
.widgetCalendar td em{ font-style:normal;}
|
||||
.widgetCalendarNavigation button{ color:#333;}
|
||||
.widgetCalendar caption{ color:#333;}
|
||||
.widgetCalendar th{ background:#eee; color:#333;}
|
||||
.widgetCalendar th.sun,
|
||||
.widgetCalendar td.sun,
|
||||
.widgetCalendar td em{ color:#ff1a1a;}
|
||||
.widgetCalendar td,
|
||||
.widgetCalendar td a{ color:#666;}
|
||||
.widgetCalendar td.sun a{ color:#ff1a1a;}
|
||||
|
||||
63
widgets/calendar/skins/default/css/widget.css
Normal file
63
widgets/calendar/skins/default/css/widget.css
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
@charset "utf-8";
|
||||
.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;}
|
||||
.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:12px; font-family:Tahoma; font-weight:normal;}
|
||||
.widgetCalendar td,
|
||||
.widgetCalendar td a{ font-size:11px; font-family:Tahoma;}
|
||||
.widgetCalendar td em{ font-style:normal;}
|
||||
.widgetCalendarNavigation button{ color:#333;}
|
||||
.widgetCalendar caption{ color:#333;}
|
||||
.widgetCalendar th{ background:#eee; color:#333;}
|
||||
.widgetCalendar th.sun,
|
||||
.widgetCalendar td.sun,
|
||||
.widgetCalendar td em{ color:#ff1a1a;}
|
||||
.widgetCalendar td,
|
||||
.widgetCalendar td a{ color:#666;}
|
||||
.widgetCalendar td.sun a{ color:#ff1a1a;}
|
||||
|
||||
.widgetContainer.black .widgetContainer a{ text-decoration:none;}
|
||||
.widgetContainer.black .widgetContainer a:hover,
|
||||
.widgetContainer.black .widgetContainer a:active,
|
||||
.widgetContainer.black .widgetContainer a:focus{ text-decoration:underline;} .widgetContainer img{ border:0;}
|
||||
.widgetContainer.black .widgetContainer sup{ position:relative; line-height:1; display:inline-block; margin:-5px 0; *padding:0 1px;}
|
||||
.widgetContainer.black .widgetContainer form{ margin:0; padding:0;}
|
||||
.widgetContainer.black .widgetContainer fieldset{ border:0; margin:0; padding:0;}
|
||||
.widgetContainer.black .widgetCalendarNavigation{ position:relative; height:15px; margin-bottom:-15px; z-index:10;}
|
||||
.widgetContainer.black .widgetCalendarNavigation button{ position:absolute; top:0; font-size:10px; font-family:Tahoma; background:none; border:0; padding:0; cursor:pointer;}
|
||||
.widgetContainer.black .widgetCalendarNavigation button.prevYear{ left:0;}
|
||||
.widgetContainer.black .widgetCalendarNavigation button.prevMonth{ left:25px;}
|
||||
.widgetContainer.black .widgetCalendarNavigation button.nextYear{ right:0;}
|
||||
.widgetContainer.black .widgetCalendarNavigation button.nextMonth{ right:25px;}
|
||||
.widgetContainer.black .widgetCalendar{ position:relative; border:0; width:100%;}
|
||||
.widgetContainer.black .widgetCalendar caption { position:relative; padding-bottom:5px; text-align:center; font-size:12px; font-weight:bold; font-family:Tahoma;}
|
||||
.widgetContainer.black .widgetCalendar th,
|
||||
.widgetContainer.black .widgetCalendar td{ border:0; text-align:center; padding:5px 0;}
|
||||
.widgetContainer.black .widgetCalendar th{ font-size:12px; font-family:Tahoma; font-weight:normal;}
|
||||
.widgetContainer.black .widgetCalendar td,
|
||||
.widgetContainer.black .widgetCalendar td a{ font-size:11px; font-family:Tahoma;}
|
||||
.widgetContainer.black .widgetCalendar td em{ font-style:normal;}
|
||||
.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;}
|
||||
|
||||
|
|
@ -1,14 +1,11 @@
|
|||
<!--%import("js/category.js")-->
|
||||
|
||||
<!--@if($colorset == "black")-->
|
||||
<!--%import("./css/black.css")-->
|
||||
<!--@elseif($colorset == "white" || $colorset == "normal")-->
|
||||
<!--%import("./css/white.css")-->
|
||||
<!--@end-->
|
||||
|
||||
{@ $_pDepth = 0;}
|
||||
|
||||
<div class="widgetContainer">
|
||||
<!--@if($colorset == "black" || $colorset == "white")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<div class="widgetTree">
|
||||
<a href="{getSiteUrl($widget_info->domain,'','mid',$widget_info->module_info->mid)}" class="title">{$widget_info->module_info->browser_title}</a> <span>({$widget_info->total_document_count})</span>
|
||||
<ul>
|
||||
|
|
|
|||
|
|
@ -1,36 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* Widget Tree */
|
||||
.widgetTree { margin-top:10px;}
|
||||
.widgetTree a.title { background:url(../img/black/folder.gif) no-repeat left top; padding-left:20px;}
|
||||
.widgetTree span { font-size:9px; font-family:tahoma; padding:0; margin:0; color:#333;}
|
||||
.widgetTree ul span { margin-left:15px; }
|
||||
.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; margin-left:8px;}
|
||||
.widgetTree ul li{ list-style:none; position:relative; padding:3px 0 2px 8px; white-space:nowrap;}
|
||||
.widgetTree ul li a,
|
||||
.widgetTree ul li span.nav_tree_label{ position:relative; left:16px; _left /**/:0; top:0;}
|
||||
.widgetTree ul li a {text-decoration:none; }
|
||||
.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 -2px -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;}
|
||||
|
||||
/* widgetTree */
|
||||
.widgetTree{ color:#999;}
|
||||
.widgetTree a { color:#999; text-decoration:none;}
|
||||
|
||||
/* Widget Tree */
|
||||
.widgetTree ul{ background:url(../img/black/lineTreeVr.gif) repeat-y 0 -1px;}
|
||||
.widgetTree ul li{ background:url(../img/black/lineTreeHr.gif) no-repeat 1px 5px !important;}
|
||||
.widgetTree ul li button{ background:url(../img/black/buttonTreeCollapse.gif) no-repeat;}
|
||||
.widgetTree ul li.nav_tree_last{ background:url(../img/black/lineTreeLastHr.gif) no-repeat 0 5px !important;}
|
||||
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* Widget Tree */
|
||||
.widgetTree { margin-top:10px;}
|
||||
.widgetTree a.title { background:url(../img/white/folder.gif) no-repeat left top; padding-left:20px;}
|
||||
.widgetTree span { font-size:9px; font-family:tahoma; padding:0; margin:0; color:#999;}
|
||||
.widgetTree ul span { margin-left:15px; }
|
||||
.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; margin-left:8px;}
|
||||
.widgetTree ul li{ list-style:none; position:relative; padding:3px 0 2px 8px; white-space:nowrap;}
|
||||
.widgetTree ul li a,
|
||||
.widgetTree ul li span.nav_tree_label{ position:relative; left:16px; _left /**/:0; top:0;}
|
||||
.widgetTree ul li a {text-decoration:none; }
|
||||
.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 -2px -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;}
|
||||
|
||||
/* widgetTree */
|
||||
.widgetTree{ color:#333;}
|
||||
.widgetTree a{ color:#333; text-decoration:none;}
|
||||
|
||||
/* Widget Tree */
|
||||
.widgetTree ul{ background:url(../img/white/lineTreeVr.gif) repeat-y 0 -1px;}
|
||||
.widgetTree ul li{ background:url(../img/white/lineTreeHr.gif) no-repeat 1px 5px !important;}
|
||||
.widgetTree ul li button{ background:url(../img/white/buttonTreeCollapse.gif) no-repeat;}
|
||||
.widgetTree ul li.nav_tree_last{ background:url(../img/white/lineTreeLastHr.gif) no-repeat 0 5px !important;}
|
||||
|
||||
69
widgets/category/skins/default/css/widget.css
Normal file
69
widgets/category/skins/default/css/widget.css
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* Widget Tree */
|
||||
.widgetTree { margin-top:10px;}
|
||||
.widgetTree a.title { background:url(../img/white/folder.gif) no-repeat left top; padding-left:20px;}
|
||||
.widgetTree span { font-size:9px; font-family:tahoma; padding:0; margin:0; color:#999;}
|
||||
.widgetTree ul span { margin-left:15px; }
|
||||
.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; margin-left:8px;}
|
||||
.widgetTree ul li{ list-style:none; position:relative; padding:3px 0 2px 8px; white-space:nowrap;}
|
||||
.widgetTree ul li a,
|
||||
.widgetTree ul li span.nav_tree_label{ position:relative; left:16px; _left /**/:0; top:0;}
|
||||
.widgetTree ul li a {text-decoration:none; }
|
||||
.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 -2px -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;}
|
||||
|
||||
/* widgetTree */
|
||||
.widgetTree{ color:#333;}
|
||||
.widgetTree a{ color:#333; text-decoration:none;}
|
||||
|
||||
/* Widget Tree */
|
||||
.widgetTree ul{ background:url(../img/white/lineTreeVr.gif) repeat-y 0 -1px;}
|
||||
.widgetTree ul li{ background:url(../img/white/lineTreeHr.gif) no-repeat 1px 5px !important;}
|
||||
.widgetTree ul li button{ background:url(../img/white/buttonTreeCollapse.gif) no-repeat;}
|
||||
.widgetTree ul li.nav_tree_last{ background:url(../img/white/lineTreeLastHr.gif) no-repeat 0 5px !important;}
|
||||
|
||||
.widgetContainer.black .widgetTree { margin-top:10px;}
|
||||
.widgetContainer.black .widgetTree a.title { background:url(../img/black/folder.gif) no-repeat left top; padding-left:20px;}
|
||||
.widgetContainer.black .widgetTree span { font-size:9px; font-family:tahoma; padding:0; margin:0; color:#333;}
|
||||
.widgetContainer.black .widgetTree ul span { margin-left:15px; }
|
||||
.widgetContainer.black .widgetTree *{ margin:0; padding:0; font-size:12px;}
|
||||
.widgetContainer.black .widgetTree a strong{ letter-spacing:-1px; cursor:pointer; _cursor /**/:hand;}
|
||||
.widgetContainer.black .widgetTree ul{ position:relative; display:block; padding:3px 0 0 0 !important; zoom:1; margin-left:8px;}
|
||||
.widgetContainer.black .widgetTree ul li{ list-style:none; position:relative; padding:3px 0 2px 8px; white-space:nowrap;}
|
||||
.widgetContainer.black .widgetTree ul li a,
|
||||
.widgetContainer.black .widgetTree ul li span.nav_tree_label{ position:relative; left:16px; _left /**/:0; top:0;}
|
||||
.widgetContainer.black .widgetTree ul li a {text-decoration:none; }
|
||||
.widgetContainer.black .widgetTree ul li a.selected {font-weight:bold;}
|
||||
.widgetContainer.black .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 -2px -2px; text-indent:-10000px; *text-indent:0; *font:0/0 Sans-serif; border:none; cursor:pointer; _cursor /**/:hand;}
|
||||
.widgetContainer.black .widgetTree ul li ul{ display:none; padding:2px 0 0 0 !important; margin:0 0 -2px 6px; background-position:left top;}
|
||||
.widgetContainer.black .widgetTree ul li ul li{ display:none;}
|
||||
.widgetContainer.black .widgetTree ul li.nav_tree_on button{ background-position:0 -13px; *background-position:2px -11px;}
|
||||
.widgetContainer.black .widgetTree ul li.nav_tree_off button{ background-position:0 0; *background-position:2px 2px;}
|
||||
.widgetContainer.black .widgetTree ul li.nav_tree_on ul{ display:block;}
|
||||
.widgetContainer.black .widgetTree ul li.nav_tree_on ul li{ display:block;}
|
||||
.widgetContainer.black .widgetTree ul li.nav_tree_off ul{ display:none;}
|
||||
.widgetContainer.black .widgetTree ul li.nav_tree_off ul li{ display:none;}
|
||||
.widgetContainer.black .widgetTree .icon{ position:relative; left:16px;}
|
||||
|
||||
/* widgetTree */
|
||||
.widgetContainer.black .widgetTree{ color:#999;}
|
||||
.widgetContainer.black .widgetTree a { color:#999; text-decoration:none;}
|
||||
|
||||
/* 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;}
|
||||
|
||||
|
|
@ -1,13 +1,10 @@
|
|||
<!--%import("./js/content_widget.js")-->
|
||||
<!--@if($colorset == "black")-->
|
||||
|
||||
<!--@if($colorset == "black" || $colorset == "white")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--%import("./css/black.css")-->
|
||||
<!--@else-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--%import("./css/white.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="widgetContainer">
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<!--@if($widget_info->tab_type == "tab_left")-->
|
||||
<!--#include("./_tab_left.html")-->
|
||||
<!--@elseif($widget_info->tab_type == "tab_top")-->
|
||||
|
|
|
|||
|
|
@ -1,43 +0,0 @@
|
|||
@charset "utf-8";
|
||||
.widgetTabC{ border-color:#7f7f7f;}
|
||||
.widgetTabC li{ border-color:#7f7f7f; background:#222;}
|
||||
.widgetTabC li a{ color:#999;}
|
||||
.widgetTabC li a:hover,
|
||||
.widgetTabC li a:active,
|
||||
.widgetTabC li a:focus{ background:#333;}
|
||||
.widgetTabA{ border-color:#999;}
|
||||
.widgetTabA li,
|
||||
.widgetTabA li a{ background-image:url(../img/black/buttonWidgetTab.gif);}
|
||||
.widgetTabA li a{ color:#999;}
|
||||
|
||||
.widgetTableA td.title a{ color:#999;}
|
||||
.widgetTableA td .board{ color:#999; background:url(../img/black/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetTableA td .notice{ color:#ff1a1a; background:url(../img/black/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetTableA td .category{ color:#999; background:url(../img/black/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetTableA td .replyNum{ color:#ff1a1a;}
|
||||
.widgetTableA td .trackbackNum{ color:#66c;}
|
||||
.widgetTableA td .author { color:#999;}
|
||||
.widgetTableA td .date{ color:#999;}
|
||||
.widgetTableA td .hour{ color:#888;}
|
||||
|
||||
.widgetGalleryA li .title{ color:#999;}
|
||||
.widgetGalleryA li .replyNum a{ color:#ff1a1a;}
|
||||
.widgetGalleryA li .trackbackNum a{ color:#66c;}
|
||||
.widgetGalleryA li .author{ color:#999;}
|
||||
.widgetGalleryA li .date{ color:#999;}
|
||||
.widgetGalleryA li .hour{ color:#888;}
|
||||
|
||||
.widgetThumb{ color:#999;}
|
||||
.widgetThumb a{ color:#999;}
|
||||
.widgetThumb .hour{ color:#888;}
|
||||
|
||||
.widgetZineA li .board{ color:#999; background:url(../img/black/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetZineA li .title{ color:#999;}
|
||||
.widgetZineA li .replyNum a{ color:#ff1a1a;}
|
||||
.widgetZineA li .trackbackNum a{ color:#66c;}
|
||||
.widgetZineA li .author{ color:#999;}
|
||||
.widgetZineA li .category{ color:#999; background:url(../img/black/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetZineA li .date{ color:#999;}
|
||||
.widgetZineA li .hour{ color:#888;}
|
||||
.widgetZineA li .text{ color:#888;}
|
||||
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
@charset "utf-8";
|
||||
.widgetTabC{ border-color:#e5e5e5;}
|
||||
.widgetTabC li{ border-color:#e5e5e5; background:#f8f8f8;}
|
||||
.widgetTabC li a{ color:#333;}
|
||||
.widgetTabC li a:hover,
|
||||
.widgetTabC li a:active,
|
||||
.widgetTabC li a:focus{ background:#eee;}
|
||||
.widgetTabA{ border-color:#666;}
|
||||
.widgetTabA li,
|
||||
.widgetTabA li a{ background-image:url(../img/white/buttonWidgetTab.gif);}
|
||||
.widgetTabA li a{ color:#333;}
|
||||
|
||||
.widgetTableA td.title a{ color:#333;}
|
||||
.widgetTableA td .board{ color:#333; background:url(../img/white/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetTableA td .notice{ color:#ff1a1a; background:url(../img/white/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetTableA td .category{ color:#333; background:url(../img/white/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetTableA td .replyNum a{ color:#ff1a1a;}
|
||||
.widgetTableA td .trackbackNum a{ color:#66c;}
|
||||
.widgetTableA td .author { color:#333;}
|
||||
.widgetTableA td .date{ color:#333;}
|
||||
.widgetTableA td .hour{ color:#888;}
|
||||
|
||||
.widgetGalleryA li .title{ color:#333;}
|
||||
.widgetGalleryA li .replyNum a{ color:#ff1a1a;}
|
||||
.widgetGalleryA li .trackbackNum a{ color:#66c;}
|
||||
.widgetGalleryA li .author{ color:#333;}
|
||||
.widgetGalleryA li .date{ color:#333;}
|
||||
.widgetGalleryA li .hour{ color:#888;}
|
||||
|
||||
.widgetThumb{ color:#333;}
|
||||
.widgetThumb a{ color:#333;}
|
||||
.widgetThumb .hour{ color:#888;}
|
||||
|
||||
.widgetZineA li .board{ color:#333; background:url(../img/white/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetZineA li .title{ color:#666;}
|
||||
.widgetZineA li .replyNum a{ color:#ff1a1a;}
|
||||
.widgetZineA li .trackbackNum a{ color:#66c;}
|
||||
.widgetZineA li .author{ color:#333;}
|
||||
.widgetZineA li .category{ color:#333; background:url(../img/white/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetZineA li .date{ color:#333;}
|
||||
.widgetZineA li .hour{ color:#888;}
|
||||
.widgetZineA li .text{ color:#888;}
|
||||
|
||||
|
|
@ -96,3 +96,87 @@ dl.widgetDivider dd{ display:none; margin:0;}
|
|||
.widgetZineA li .date{ font:11px Tahoma;}
|
||||
.widgetZineA li .hour{ font:11px Tahoma;}
|
||||
|
||||
.widgetTabC{ border-color:#e5e5e5;}
|
||||
.widgetTabC li{ border-color:#e5e5e5; background:#f8f8f8;}
|
||||
.widgetTabC li a{ color:#333;}
|
||||
.widgetTabC li a:hover,
|
||||
.widgetTabC li a:active,
|
||||
.widgetTabC li a:focus{ background:#eee;}
|
||||
.widgetTabA{ border-color:#666;}
|
||||
.widgetTabA li,
|
||||
.widgetTabA li a{ background-image:url(../img/white/buttonWidgetTab.gif);}
|
||||
.widgetTabA li a{ color:#333;}
|
||||
|
||||
.widgetTableA td.title a{ color:#333;}
|
||||
.widgetTableA td .board{ color:#333; background:url(../img/white/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetTableA td .notice{ color:#ff1a1a; background:url(../img/white/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetTableA td .category{ color:#333; background:url(../img/white/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetTableA td .replyNum a{ color:#ff1a1a;}
|
||||
.widgetTableA td .trackbackNum a{ color:#66c;}
|
||||
.widgetTableA td .author { color:#333;}
|
||||
.widgetTableA td .date{ color:#333;}
|
||||
.widgetTableA td .hour{ color:#888;}
|
||||
|
||||
.widgetGalleryA li .title{ color:#333;}
|
||||
.widgetGalleryA li .replyNum a{ color:#ff1a1a;}
|
||||
.widgetGalleryA li .trackbackNum a{ color:#66c;}
|
||||
.widgetGalleryA li .author{ color:#333;}
|
||||
.widgetGalleryA li .date{ color:#333;}
|
||||
.widgetGalleryA li .hour{ color:#888;}
|
||||
|
||||
.widgetThumb{ color:#333;}
|
||||
.widgetThumb a{ color:#333;}
|
||||
.widgetThumb .hour{ color:#888;}
|
||||
|
||||
.widgetZineA li .board{ color:#333; background:url(../img/white/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetZineA li .title{ color:#666;}
|
||||
.widgetZineA li .replyNum a{ color:#ff1a1a;}
|
||||
.widgetZineA li .trackbackNum a{ color:#66c;}
|
||||
.widgetZineA li .author{ color:#333;}
|
||||
.widgetZineA li .category{ color:#333; background:url(../img/white/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetZineA li .date{ color:#333;}
|
||||
.widgetZineA li .hour{ color:#888;}
|
||||
.widgetZineA li .text{ color:#888;}
|
||||
|
||||
.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;}
|
||||
.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;}
|
||||
|
||||
.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:#999; 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;}
|
||||
|
||||
.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;}
|
||||
|
||||
.widgetContainer.black .widgetThumb{ color:#999;}
|
||||
.widgetContainer.black .widgetThumb a{ color:#999;}
|
||||
.widgetContainer.black .widgetThumb .hour{ color:#888;}
|
||||
|
||||
.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 .category{ color:#999; background:url(../img/black/lineTextDiv.gif) no-repeat right center;}
|
||||
.widgetContainer.black .widgetZineA li .date{ color:#999;}
|
||||
.widgetContainer.black .widgetZineA li .hour{ color:#888;}
|
||||
.widgetContainer.black .widgetZineA li .text{ color:#888;}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
<!--@if($colorset == "black")-->
|
||||
<!--%import("./css/black.css")-->
|
||||
<!--@elseif($colorset == "white" || $colorset == "normal")-->
|
||||
<!--%import("./css/white.css")-->
|
||||
<!--@if($colorset == "black" || $colorset == "white")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="widgetContainer">
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<dl class="widgetCounter">
|
||||
<dt>{$lang->today} :</dt>
|
||||
<dd>{number_format($today_counter->unique_visitor)}</dd>
|
||||
|
|
|
|||
|
|
@ -1,10 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* 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;}
|
||||
.widgetCounter dt{ color:#999;}
|
||||
.widgetCounter dd{ color:#888;}
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* 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;}
|
||||
.widgetCounter dt{ color:#333;}
|
||||
.widgetCounter dd{ color:#888;}
|
||||
18
widgets/counter_status/skins/default/css/widget.css
Normal file
18
widgets/counter_status/skins/default/css/widget.css
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* 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;}
|
||||
.widgetCounter dt{ color:#333;}
|
||||
.widgetCounter dd{ color:#888;}
|
||||
|
||||
.widgetContainer.black .widgetCounter{ font-size:12px; margin:0;}
|
||||
.widgetContainer.black .widgetCounter dt,
|
||||
.widgetContainer.black .widgetCounter dd{ height:18px;}
|
||||
.widgetContainer.black .widgetCounter dt{ float:left; clear:left;}
|
||||
.widgetContainer.black .widgetCounter dd{ font-size:11px; font-family:Tahoma;}
|
||||
.widgetContainer.black .widgetCounter dt{ color:#999;}
|
||||
.widgetContainer.black .widgetCounter dd{ color:#888;}
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
.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;}
|
||||
|
||||
.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/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;}
|
||||
|
||||
.widgetTableC{ border-color:#7f7f7f;}
|
||||
.widgetTableC td{ border-color:#7f7f7f;}
|
||||
.widgetTableC td.title a{ color:#ccc;}
|
||||
.widgetTableC td.title dd{ color:#888;}
|
||||
.widgetTableC td.lastDoc p a{ color:#ccc;}
|
||||
.widgetTableC td.lastDoc .author{ color:#888;}
|
||||
.widgetTableC td.lastDoc .time{ color:#888;}
|
||||
|
|
@ -1,35 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
.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;}
|
||||
|
||||
.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/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;}
|
||||
|
||||
/* widgetTableC */
|
||||
.widgetTableC{ border-color:#e5e5e5;}
|
||||
.widgetTableC td{ border-color:#e5e5e5;}
|
||||
.widgetTableC td.title a{ color:#333;}
|
||||
.widgetTableC td.title dd{ color:#888;}
|
||||
.widgetTableC td.lastDoc p a{ color:#333;}
|
||||
.widgetTableC td.lastDoc .author{ color:#888;}
|
||||
.widgetTableC td.lastDoc .time{ color:#888;}
|
||||
|
||||
|
||||
64
widgets/forum/skins/default/css/widget.css
Normal file
64
widgets/forum/skins/default/css/widget.css
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
@charset "utf-8";
|
||||
|
||||
.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;}
|
||||
|
||||
.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/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;}
|
||||
|
||||
/* widgetTableC */
|
||||
.widgetTableC{ border-color:#e5e5e5;}
|
||||
.widgetTableC td{ border-color:#e5e5e5;}
|
||||
.widgetTableC td.title a{ color:#333;}
|
||||
.widgetTableC td.title dd{ color:#888;}
|
||||
.widgetTableC td.lastDoc p a{ color:#333;}
|
||||
.widgetTableC td.lastDoc .author{ color:#888;}
|
||||
.widgetTableC td.lastDoc .time{ color:#888;}
|
||||
|
||||
.widgetContainer.black .widgetContainer a{ text-decoration:none;}
|
||||
.widgetContainer.black .widgetContainer a:hover,
|
||||
.widgetContainer.black .widgetContainer a:active,
|
||||
.widgetContainer.black .widgetContainer a:focus{ text-decoration:underline;}
|
||||
.widgetContainer.black .widgetContainer img{ border:0;}
|
||||
.widgetContainer.black .widgetContainer sup{ position:relative; line-height:1; display:inline-block; margin:-5px 0; *padding:0 1px;}
|
||||
.widgetContainer.black .widgetContainer form{ margin:0; padding:0;}
|
||||
.widgetContainer.black .widgetContainer fieldset{ border:0; margin:0; padding:0;}
|
||||
|
||||
.widgetContainer.black .widgetTableC { width:100%; font-size:12px; position:relative; border:0; border-top:1px solid;}
|
||||
.widgetContainer.black .widgetTableC td{ border:0; line-height:1.5; white-space:nowrap; vertical-align:top; padding:10px; border-bottom:1px solid;}
|
||||
.widgetContainer.black .widgetTableC td.title,
|
||||
.widgetContainer.black .widgetTableC td.lastDoc{ width:100%; white-space:nowrap;}
|
||||
.widgetContainer.black .widgetTableC td.docNum{}
|
||||
.widgetContainer.black .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/iconForumNum.gif) no-repeat 0 0;}
|
||||
.widgetContainer.black .widgetTableC td.title a{ font-weight:bold; text-decoration:underline !important;}
|
||||
.widgetContainer.black .widgetTableC td.title dl{ margin:0;}
|
||||
.widgetContainer.black .widgetTableC td.title dd{ margin:0;}
|
||||
.widgetContainer.black .widgetTableC td.lastDoc p{ margin:0;}
|
||||
.widgetContainer.black .widgetTableC td .author{ margin-right:5px;}
|
||||
.widgetContainer.black .widgetTableC td .time{ font-size:11px; font-family:Tahoma;}
|
||||
.widgetContainer.black .widgetTableC td .time .date{ margin-right:5px;}
|
||||
|
||||
.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;}
|
||||
|
|
@ -1,10 +1,8 @@
|
|||
<!--@if($colorset=="black")-->
|
||||
<!--%import("./css/black.css")-->
|
||||
<!--@elseif($colorset=="white")-->
|
||||
<!--%import("./css/white.css")-->
|
||||
<!--@if($colorset == "black" || $colorset == "white")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="widgetContainer">
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<table class="widgetTableC" border="1" cellspacing="0">
|
||||
<tbody>
|
||||
<!--@foreach($widget_info->modules as $val)-->
|
||||
|
|
|
|||
|
|
@ -1,10 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* 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;}
|
||||
.widgetLanguage p a{ color:#b3b3b3;}
|
||||
.widgetLanguage .langList { background:#fff; border:1px solid #ccc;}
|
||||
.widgetLanguage .langList a{ color:#333;}
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* 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;}
|
||||
.widgetLanguage p a{ color:#b3b3b3;}
|
||||
.widgetLanguage .langList { background:#fff; border:1px solid #ccc;}
|
||||
.widgetLanguage .langList a{ color:#333;}
|
||||
18
widgets/language_select/skins/default/css/widget.css
Normal file
18
widgets/language_select/skins/default/css/widget.css
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* 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;}
|
||||
.widgetLanguage p a{ color:#b3b3b3;}
|
||||
.widgetLanguage .langList { background:#fff; border:1px solid #ccc;}
|
||||
.widgetLanguage .langList a{ color:#333;}
|
||||
|
||||
.widgetContainer.black .widgetLanguage p{ float:right; margin:0;}
|
||||
.widgetContainer.black .widgetLanguage .langList { display:none; position:absolute; margin:0; padding:0; z-index:999;}
|
||||
.widgetContainer.black .widgetLanguage .langList li{ list-style:none;}
|
||||
.widgetContainer.black .widgetLanguage .langList li a{ font-size:12px; display:block; padding:2px 5px;}
|
||||
.widgetContainer.black .widgetLanguage p a{ color:#b3b3b3;}
|
||||
.widgetContainer.black .widgetLanguage .langList { background:#fff; border:1px solid #ccc;}
|
||||
.widgetContainer.black .widgetLanguage .langList a{ color:#333;}
|
||||
|
|
@ -1,10 +1,9 @@
|
|||
<!--@if($colorset == "black")-->
|
||||
<!--%import("./css/black.css")-->
|
||||
<!--@elseif($colorset == "white" || $colorset == "normal")-->
|
||||
<!--%import("./css/white.css")-->
|
||||
<!--@end-->
|
||||
<!--%import("./js/language_select.js")-->
|
||||
<div class="widgetContainer">
|
||||
<!--@if($colorset == "black" || $colorset == "white")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<div class="widgetLanguage">
|
||||
<p><a href="#" class="cafeXeA language_selector">Language:{$lang_supported[$lang_type]}</a></p>
|
||||
<ul class="langList" class="" style="right: 3px;">
|
||||
|
|
|
|||
|
|
@ -1,7 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* widgetUlistA */
|
||||
.widgetUlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetUlistA li{ list-style:none;}
|
||||
.widgetUlistA li a { text-decoration:none; }
|
||||
.widgetUlistA li a{ color:#999;}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* widgetUlistA */
|
||||
.widgetUlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetUlistA li{ list-style:none;}
|
||||
.widgetUlistA li a { text-decoration:none; }
|
||||
.widgetUlistA li a{ color:#666;}
|
||||
12
widgets/logged_members/skins/default/css/widget.css
Normal file
12
widgets/logged_members/skins/default/css/widget.css
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* widgetUlistA */
|
||||
.widgetUlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetUlistA li{ list-style:none;}
|
||||
.widgetUlistA li a { text-decoration:none; }
|
||||
.widgetUlistA li a{ color:#666;}
|
||||
|
||||
.widgetContainer.black .widgetUlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetContainer.black .widgetUlistA li{ list-style:none;}
|
||||
.widgetContainer.black .widgetUlistA li a { text-decoration:none; }
|
||||
.widgetContainer.black .widgetUlistA li a{ color:#999;}
|
||||
|
|
@ -1,10 +1,8 @@
|
|||
<!--@if($colorset == "black")-->
|
||||
<!--%import("./css/black.css")-->
|
||||
<!--@elseif($colorset == "white" || $colorset == "normal")-->
|
||||
<!--%import("./css/white.css")-->
|
||||
<!--@if($colorset == "black" || $colorset == "white")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="widgetContainer">
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<ul class="widgetUlistA">
|
||||
<!--@foreach($widget_info->member_list as $key => $val)-->
|
||||
<li><a href="#" class="member_{$val->member_srl}">{htmlspecialchars($val->nick_name)}</a></li>
|
||||
|
|
|
|||
|
|
@ -1,17 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* widgetLogin */
|
||||
.widgetLogin label{ color:#999;}
|
||||
.widgetLogin .help a{ color:#ccc;}
|
||||
.widgetLogin .help li{ background:url(../img/black/lineTextDiv.gif) no-repeat left center;}
|
||||
|
||||
/* widgetLastLogin */
|
||||
.widgetLastLogin dt{ color:#999;}
|
||||
.widgetLastLogin dd{ color:#888;}
|
||||
.widgetLastLogin a{ color:#333;}
|
||||
.widgetLastLogin li{ background:url(../img/black/iconInfoMine.gif) no-repeat left center;}
|
||||
|
||||
/* widgetMyInfo */
|
||||
.widgetMyInfo li a{ color:#999;}
|
||||
.widgetMyInfo li{ background:url(../img/black/iconMyInfo.gif) no-repeat left 1px;}
|
||||
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* widgetLogin */
|
||||
.widgetLogin label{ color:#333;}
|
||||
.widgetLogin .help a{ color:#333;}
|
||||
.widgetLogin .help li{ background:url(../img/white/lineTextDiv.gif) no-repeat left center;}
|
||||
|
||||
/* widgetLastLogin */
|
||||
.widgetLastLogin dt{ color:#333;}
|
||||
.widgetLastLogin dd{ color:#888;}
|
||||
.widgetLastLogin a{ color:#333;}
|
||||
.widgetLastLogin li{ background:url(../img/white/iconInfoMine.gif) no-repeat left center;}
|
||||
|
||||
/* widgetMyInfo */
|
||||
.widgetMyInfo li a{ color:#666;}
|
||||
.widgetMyInfo li{ background:url(../img/white/iconMyInfo.gif) no-repeat left 1px;}
|
||||
|
||||
|
|
@ -22,3 +22,34 @@
|
|||
.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;}
|
||||
|
||||
/* widgetLogin */
|
||||
.widgetLogin label{ color:#333;}
|
||||
.widgetLogin .help a{ color:#333;}
|
||||
.widgetLogin .help li{ background:url(../img/white/lineTextDiv.gif) no-repeat left center;}
|
||||
|
||||
/* widgetLastLogin */
|
||||
.widgetLastLogin dt{ color:#333;}
|
||||
.widgetLastLogin dd{ color:#888;}
|
||||
.widgetLastLogin a{ color:#333;}
|
||||
.widgetLastLogin li{ background:url(../img/white/iconInfoMine.gif) no-repeat left center;}
|
||||
|
||||
/* widgetMyInfo */
|
||||
.widgetMyInfo li a{ color:#666;}
|
||||
.widgetMyInfo li{ background:url(../img/white/iconMyInfo.gif) no-repeat left 1px;}
|
||||
|
||||
/* 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;}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,12 +1,8 @@
|
|||
<!--// colorset의 값에 따라 css 파일을 import 한다 -->
|
||||
<!--%import("./filter/login.xml")-->
|
||||
<!--%import("./filter/openid_login.xml")-->
|
||||
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@if($colorset=="black")-->
|
||||
<!--%import("./css/black.css")-->
|
||||
<!--@elseif($colorset=="white" || $colorset=="default")-->
|
||||
<!--%import("./css/white.css")-->
|
||||
<!--@if($colorset == "black" || $colorset == "white")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<script type="text/javascript">
|
||||
|
|
@ -14,7 +10,7 @@
|
|||
xAddEventListener(window, "load", function(){ xGetElementById("formLogin").user_id.focus(); });
|
||||
</script>
|
||||
|
||||
<div class="widgetContainer">
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<!--// XE Login -->
|
||||
<form action="./" method="post" onsubmit="return procFilter(this, widget_login)" id="formLogin" class="widgetLogin">
|
||||
<fieldset>
|
||||
|
|
|
|||
|
|
@ -1,13 +1,10 @@
|
|||
<!--%import("./filter/logout.xml")-->
|
||||
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@if($colorset=="black")-->
|
||||
<!--%import("./css/black.css")-->
|
||||
<!--@elseif($colorset=="white" || $colorset=="default")-->
|
||||
<!--%import("./css/white.css")-->
|
||||
<!--@if($colorset == "black" || $colorset == "white")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="widgetContainer">
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<dl class="widgetLastLogin">
|
||||
<dt>{$lang->last_login}:</dt>
|
||||
<dd>{zDate($logged_info->last_login, "Y-m-d H:i")}</dd>
|
||||
|
|
|
|||
|
|
@ -1,6 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* widgetUlistA */
|
||||
.widgetUlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetUlistA li{ list-style:none;}
|
||||
.widgetUlistA li a{ color:#999; text-decoration:none;}
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* widgetUlistA */
|
||||
.widgetUlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetUlistA li{ list-style:none;}
|
||||
.widgetUlistA li a{ color:#666; text-decoration:none;}
|
||||
10
widgets/member_group/skins/default/css/widget.css
Normal file
10
widgets/member_group/skins/default/css/widget.css
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* widgetUlistA */
|
||||
.widgetUlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetUlistA li{ list-style:none;}
|
||||
.widgetUlistA li a{ color:#666; text-decoration:none;}
|
||||
|
||||
.widgetContainer.black .widgetUlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetContainer.black .widgetUlistA li{ list-style:none;}
|
||||
.widgetContainer.black .widgetUlistA li a{ color:#999; text-decoration:none;}
|
||||
|
|
@ -1,11 +1,8 @@
|
|||
<!--@if($colorset == "black")-->
|
||||
<!--%import("./css/black.css")-->
|
||||
<!--@elseif($colorset == "white" || $colorset == "normal")-->
|
||||
<!--%import("./css/white.css")-->
|
||||
<!--@if($colorset == "black" || $colorset == "white")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="widgetContainer">
|
||||
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<ul class="widgetUlistA">
|
||||
<!--@foreach($widget_info->member_list as $key => $val)-->
|
||||
<li><a href="#" onclick="return false;" class="member_{$val->member_srl}">{htmlspecialchars($val->nick_name)}</a></li>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
<!--%import("./js/navigator.js")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
|
||||
<script type="text/javascript">
|
||||
if(typeof(widget_navigator) != 'Object') var widget_navigator={};
|
||||
|
|
@ -8,7 +7,9 @@ widget_navigator[{$widget_info->menu_srl}] = new WidgetNavigator({$widget_info->
|
|||
widget_navigator[{$widget_info->menu_srl}].load('{$widget_info->xml_file}');
|
||||
</script>
|
||||
|
||||
<div class="widgetContainer">
|
||||
<!--%import("./css/widget.css")-->
|
||||
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<div class="widgetMenuC widgetMenuC{$colorset}">
|
||||
<ul class="widget_navigator_{$widget_info->menu_srl} navigator" menu_srl='{$widget_info->menu_srl}'>
|
||||
<!--@foreach($widget_info->arranged_menu as $key => $val)-->
|
||||
|
|
|
|||
|
|
@ -1,33 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* Widget Tree */
|
||||
.widgetTree { margin-top:10px;}
|
||||
.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 a,
|
||||
.widgetTree ul li span.nav_tree_label{ position:relative; left:16px; _left /**/:0; top:0;}
|
||||
.widgetTree ul li a {text-decoration:none; }
|
||||
.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 -2px -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;}
|
||||
|
||||
/* widgetTree */
|
||||
.widgetTree{ color:#999;}
|
||||
.widgetTree a { color:#999;}
|
||||
|
||||
/* Widget Tree */
|
||||
.widgetTree ul{ background:url(../img/black/lineTreeVr.gif) repeat-y 0 -1px;}
|
||||
.widgetTree ul li{ background:url(../img/black/lineTreeHr.gif) no-repeat 1px 5px !important;}
|
||||
.widgetTree ul li button{ background:url(../img/black/buttonTreeCollapse.gif) no-repeat;}
|
||||
.widgetTree ul li.nav_tree_last{ background:url(../img/black/lineTreeLastHr.gif) no-repeat 0 5px !important;}
|
||||
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* Widget Tree */
|
||||
.widgetTree { margin-top:10px;}
|
||||
.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 a,
|
||||
.widgetTree ul li span.nav_tree_label{ position:relative; left:16px; _left /**/:0; top:0;}
|
||||
.widgetTree ul li a {text-decoration:none; }
|
||||
.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 -2px -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;}
|
||||
|
||||
/* widgetTree */
|
||||
.widgetTree{ color:#333;}
|
||||
.widgetTree a{ color:#333;}
|
||||
|
||||
/* Widget Tree */
|
||||
.widgetTree ul{ background:url(../img/white/lineTreeVr.gif) repeat-y 0 -1px;}
|
||||
.widgetTree ul li{ background:url(../img/white/lineTreeHr.gif) no-repeat 1px 5px !important;}
|
||||
.widgetTree ul li button{ background:url(../img/white/buttonTreeCollapse.gif) no-repeat;}
|
||||
.widgetTree ul li.nav_tree_last{ background:url(../img/white/lineTreeLastHr.gif) no-repeat 0 5px !important;}
|
||||
|
||||
64
widgets/navigator/skins/tree/css/widget.css
Normal file
64
widgets/navigator/skins/tree/css/widget.css
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* Widget Tree */
|
||||
.widgetTree { margin-top:10px;}
|
||||
.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 a,
|
||||
.widgetTree ul li span.nav_tree_label{ position:relative; left:16px; _left /**/:0; top:0;}
|
||||
.widgetTree ul li a {text-decoration:none; }
|
||||
.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 -2px -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;}
|
||||
|
||||
/* widgetTree */
|
||||
.widgetTree{ color:#333;}
|
||||
.widgetTree a{ color:#333;}
|
||||
|
||||
/* Widget Tree */
|
||||
.widgetTree ul{ background:url(../img/white/lineTreeVr.gif) repeat-y 0 -1px;}
|
||||
.widgetTree ul li{ background:url(../img/white/lineTreeHr.gif) no-repeat 1px 5px !important;}
|
||||
.widgetTree ul li button{ background:url(../img/white/buttonTreeCollapse.gif) no-repeat;}
|
||||
.widgetTree ul li.nav_tree_last{ background:url(../img/white/lineTreeLastHr.gif) no-repeat 0 5px !important;}
|
||||
|
||||
/* Widget Tree */
|
||||
.widgetContainer.black .widgetTree { margin-top:10px;}
|
||||
.widgetContainer.black .widgetTree *{ margin:0; padding:0; font-size:12px;}
|
||||
.widgetContainer.black .widgetTree a strong{ letter-spacing:-1px; cursor:pointer; _cursor /**/:hand;}
|
||||
.widgetContainer.black .widgetTree ul{ position:relative; display:block; padding:3px 0 0 0 !important; zoom:1;}
|
||||
.widgetContainer.black .widgetTree ul li{ list-style:none; position:relative; padding:3px 0 2px 8px; white-space:nowrap;}
|
||||
.widgetContainer.black .widgetTree ul li a,
|
||||
.widgetContainer.black .widgetTree ul li span.nav_tree_label{ position:relative; left:16px; _left /**/:0; top:0;}
|
||||
.widgetContainer.black .widgetTree ul li a {text-decoration:none; }
|
||||
.widgetContainer.black .widgetTree ul li a.selected {font-weight:bold;}
|
||||
.widgetContainer.black .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 -2px -2px; text-indent:-10000px; *text-indent:0; *font:0/0 Sans-serif; border:none; cursor:pointer; _cursor /**/:hand;}
|
||||
.widgetContainer.black .widgetTree ul li ul{ display:none; padding:2px 0 0 0 !important; margin:0 0 -2px 6px; background-position:left top;}
|
||||
.widgetContainer.black .widgetTree ul li ul li{ display:none;}
|
||||
.widgetContainer.black .widgetTree ul li.nav_tree_on button{ background-position:0 -13px; *background-position:2px -11px;}
|
||||
.widgetContainer.black .widgetTree ul li.nav_tree_off button{ background-position:0 0; *background-position:2px 2px;}
|
||||
.widgetContainer.black .widgetTree ul li.nav_tree_on ul{ display:block;}
|
||||
.widgetContainer.black .widgetTree ul li.nav_tree_on ul li{ display:block;}
|
||||
.widgetContainer.black .widgetTree ul li.nav_tree_off ul{ display:none;}
|
||||
.widgetContainer.black .widgetTree ul li.nav_tree_off ul li{ display:none;}
|
||||
.widgetContainer.black .widgetTree .icon{ position:relative; left:16px;}
|
||||
|
||||
/* widgetTree */
|
||||
.widgetContainer.black .widgetTree{ color:#999;}
|
||||
.widgetContainer.black .widgetTree a { color:#999;}
|
||||
|
||||
/* 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;}
|
||||
|
||||
|
|
@ -1,14 +1,12 @@
|
|||
<!--%import("./js/navigator.js")-->
|
||||
|
||||
<!--@if($colorset == "black")-->
|
||||
<!--%import("./css/black.css")-->
|
||||
<!--@elseif($colorset == "white")-->
|
||||
<!--%import("./css/white.css")-->
|
||||
<!--@end-->
|
||||
|
||||
{@ $_pDepth = 0;}
|
||||
|
||||
<div class="widgetContainer">
|
||||
<!--@if($colorset == "black" || $colorset == "white")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<div class="widgetTree">
|
||||
<ul>
|
||||
<!--@foreach($widget_info->arranged_menu as $key => $val)-->
|
||||
|
|
|
|||
|
|
@ -1,20 +0,0 @@
|
|||
@charset "utf-8";
|
||||
.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;}
|
||||
|
||||
.widgetMenuA{ border-color:#7f7f7f;}
|
||||
.widgetMenuA li{ border-color:#7f7f7f;}
|
||||
.widgetMenuA li a{ color:#999; background-image:url(../img/black/iconMenuAnormal.gif);}
|
||||
.widgetMenuA li.active a{ background-image:url(../img/black/iconMenuAactive.gif);}
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
@charset "utf-8";
|
||||
.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;}
|
||||
|
||||
.widgetMenuA{ border-color:#e5e5e5;}
|
||||
.widgetMenuA li{ border-color:#e5e5e5;}
|
||||
.widgetMenuA li a{ color:#333; background-image:url(../img/white/iconMenuAnormal.gif);}
|
||||
.widgetMenuA li.active a{ background-image:url(../img/white/iconMenuAactive.gif);}
|
||||
39
widgets/navigator/skins/vertNavigator/css/widget.css
Normal file
39
widgets/navigator/skins/vertNavigator/css/widget.css
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
@charset "utf-8";
|
||||
.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;}
|
||||
|
||||
.widgetMenuA{ border-color:#e5e5e5;}
|
||||
.widgetMenuA li{ border-color:#e5e5e5;}
|
||||
.widgetMenuA li a{ color:#333; background-image:url(../img/white/iconMenuAnormal.gif);}
|
||||
.widgetMenuA li.active a{ background-image:url(../img/white/iconMenuAactive.gif);}
|
||||
.widgetContainer.black .widgetMenuA{ position:relative; margin:0; padding:0; font-size:12px; line-height:1.2; border-top:1px solid;}
|
||||
.widgetContainer.black .widgetMenuA li{ position:relative; list-style:none; border-bottom:1px solid; *zoom:1;}
|
||||
.widgetContainer.black .widgetMenuA li sup{ font-size:10px; font-family:Tahoma; line-height:1; color:#888; font-weight:normal;}
|
||||
.widgetContainer.black .widgetMenuA li li.active sup{ color:#ff1a1a;}
|
||||
.widgetContainer.black .widgetMenuA li li{ padding:0; border:0;}
|
||||
.widgetContainer.black .widgetMenuA li ul{ display:none; margin:0 0 10px 20px; padding:0;}
|
||||
.widgetContainer.black .widgetMenuA li.active ul{ display:block;}
|
||||
.widgetContainer.black .widgetMenuA li a{ position:relative; display:block; padding:7px 0 7px 10px; background-repeat:no-repeat; background-position:0 center; text-decoration:none !important;}
|
||||
.widgetContainer.black .widgetMenuA li.active a{ font-weight:bold;}
|
||||
.widgetContainer.black .widgetMenuA li.active li a{ font-weight:normal; padding:1px 0; background:none !important;}
|
||||
.widgetContainer.black .widgetMenuA li li.active a{ color:#ff1a1a;}
|
||||
.widgetContainer.black .widgetMenuA li.active li a:hover,
|
||||
.widgetContainer.black .widgetMenuA li.active li a:active,
|
||||
.widgetContainer.black .widgetMenuA li.active li a:focus{ text-decoration:underline !important;}
|
||||
|
||||
.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);}
|
||||
|
|
@ -1,11 +1,9 @@
|
|||
<!--@if($colorset == "black")-->
|
||||
<!--%import("./css/black.css")-->
|
||||
<!--@elseif($colorset == "white")-->
|
||||
<!--%import("./css/white.css")-->
|
||||
{@ $_pDepth = 0;}
|
||||
<!--@if($colorset == "black" || $colorset == "white")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@end-->
|
||||
|
||||
{@ $_pDepth = 0;}
|
||||
<div class="widgetContainer">
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<ul class="widgetMenuA dhtml">
|
||||
<!--@foreach($widget_info->arranged_menu as $key => $val)-->
|
||||
<!--@if($val->text)-->
|
||||
|
|
|
|||
|
|
@ -1,31 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
.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;}
|
||||
|
||||
.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;}
|
||||
|
||||
.widgetUlistB li .author img{ border-color:#666;}
|
||||
.widgetUlistB li .title{ border-color:#333; color:#999; background:#000;}
|
||||
.widgetUlistB li .title a{ color:#3399ff;}
|
||||
.widgetUlistB li .title .arrow{ background:url(../img/black/arrowUlistB.gif) no-repeat;}
|
||||
.widgetUlistB li .title .deco{ background:#000;}
|
||||
.widgetUlistB li .title .date{ color:#999;}
|
||||
.widgetUlistB li .title .hour{ color:#888;}
|
||||
|
|
@ -30,3 +30,24 @@
|
|||
.widgetUlistB li .title .deco{ background:#fff;}
|
||||
.widgetUlistB li .title .date{ color:#333;}
|
||||
.widgetUlistB li .title .hour{ color:#888;}
|
||||
|
||||
.widgetContainer.black .widgetUlistB{ margin:0; padding:0; font-size:12px; line-height:1.5; *zoom:1;}
|
||||
.widgetContainer.black .widgetUlistB:after{ content:""; display:block; clear:both;}
|
||||
.widgetContainer.black .widgetUlistB li{ position:relative; list-style:none; margin-bottom:10px; *zoom:1;}
|
||||
.widgetContainer.black .widgetUlistB li .author{ float:left; margin-right:-42px;}
|
||||
.widgetContainer.black .widgetUlistB li .author img{ border:1px solid;}
|
||||
.widgetContainer.black .widgetUlistB li .title{ position:relative; margin:0 0 0 60px; border:2px solid; padding:10px 15px; *zoom:1;}
|
||||
.widgetContainer.black .widgetUlistB li .title a{ text-decoration:underline;}
|
||||
.widgetContainer.black .widgetUlistB li .title .arrow{ position:absolute; top:16px; left:-6px; display:block; overflow:hidden; width:6px; height:7px; font-size:0; line-height:0;}
|
||||
.widgetContainer.black .widgetUlistB li .title .deco{ position:absolute; display:block; overflow:hidden; width:1px; height:1px; font-size:0; line-height:0;}
|
||||
.widgetContainer.black .widgetUlistB li .title .deco .topLeft{}
|
||||
.widgetContainer.black .widgetUlistB li .title .date{ font-size:11px; font-family:Tahoma;}
|
||||
.widgetContainer.black .widgetUlistB li .title .hour{ font-size:11px; font-family:Tahoma;}
|
||||
|
||||
.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;}
|
||||
|
|
@ -1,10 +1,8 @@
|
|||
<!--@if($colorset=="black")-->
|
||||
<!--%import("./css/black.css")-->
|
||||
<!--@elseif($colorset=="white")-->
|
||||
<!--%import("./css/white.css")-->
|
||||
<!--@if($colorset == "black" || $colorset == "white")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="widgetContainer">
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<ul class="widgetUlistB">
|
||||
<!--@foreach($planet_list as $no => $item)-->
|
||||
<li>
|
||||
|
|
|
|||
|
|
@ -1,21 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
.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;}
|
||||
|
||||
.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;}
|
||||
.widgetPoint dt{ color:#999;}
|
||||
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
.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;}
|
||||
|
||||
.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;}
|
||||
.widgetPoint dt{ color:#333;}
|
||||
|
||||
40
widgets/point_status/skins/default/css/widget.css
Normal file
40
widgets/point_status/skins/default/css/widget.css
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
@charset "utf-8";
|
||||
|
||||
.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;}
|
||||
|
||||
.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;}
|
||||
.widgetPoint dt{ color:#333;}
|
||||
|
||||
.widgetContainer.black .widgetContainer a{ text-decoration:none;}
|
||||
.widgetContainer.black .widgetContainer a:hover,
|
||||
.widgetContainer.black .widgetContainer a:active,
|
||||
.widgetContainer.black .widgetContainer a:focus{ text-decoration:underline;}
|
||||
.widgetContainer.black .widgetContainer img{ border:0;}
|
||||
.widgetContainer.black .widgetContainer sup{ position:relative; line-height:1; display:inline-block; margin:-5px 0; *padding:0 1px;}
|
||||
.widgetContainer.black .widgetContainer form{ margin:0; padding:0;}
|
||||
.widgetContainer.black .widgetContainer fieldset{ border:0; margin:0; padding:0;}
|
||||
|
||||
.widgetContainer.black .widgetPoint{ margin:0; *zoom:1; clear:both;}
|
||||
.widgetContainer.black .widgetPoint:after{ content:""; display:block; clear:both;}
|
||||
.widgetContainer.black .widgetPoint dt{ font-size:12px; font-family:Tahoma; font-weight:bold;}
|
||||
.widgetContainer.black .widgetPoint dd{ margin:0;}
|
||||
.widgetContainer.black .widgetPoint dd.graph{ height:5px; overflow:hidden; background:#e5e5e5; font-size:0; line-height:0;}
|
||||
.widgetContainer.black .widgetPoint dd.graph img{ width:0%;}
|
||||
.widgetContainer.black .widgetPoint dd.point{ font-size:10px; font-family:Tahoma; float:left; color:#888;}
|
||||
.widgetContainer.black .widgetPoint dd.percentage{ font-size:10px; font-family:Tahoma; float:right; color:#888;}
|
||||
.widgetContainer.black .widgetPoint dt{ color:#999;}
|
||||
|
||||
|
|
@ -1,10 +1,8 @@
|
|||
<!--@if($colorset=="black")-->
|
||||
<!--%import("./css/black.css")-->
|
||||
<!--@elseif($colorset=="white" || $colorset=="default")-->
|
||||
<!--%import("./css/white.css")-->
|
||||
<!--@if($colorset == "black" || $colorset == "white")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="widgetContainer">
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<dl class="widgetPoint">
|
||||
<dt>Level. {$widget_info->level}</dt>
|
||||
<dd class="graph"><img src="./img/white/linePoint.gif" width="1" height="5" alt="{$widget_info->per}%" style="width:{$widget_info->per}%" /></dd>
|
||||
|
|
|
|||
|
|
@ -1,17 +0,0 @@
|
|||
@charset "utf-8";
|
||||
.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;}
|
||||
.widgetOlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetOlistA li{ margin-left:25px;}
|
||||
.widgetOlistA li,
|
||||
.widgetOlistA li a{ color:#999;}
|
||||
.widgetOlistA li sup{ color:#666; font-size:10px; font-family:tahoma;}
|
||||
|
||||
address.period { font-style:normal; font-size:10px; font-family:tahoma; text-align:right;}
|
||||
address.period { color:#666; }
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
@charset "utf-8";
|
||||
.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;}
|
||||
.widgetOlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetOlistA li{ margin-left:25px;}
|
||||
.widgetOlistA li,
|
||||
.widgetOlistA li a{ color:#666;}
|
||||
.widgetOlistA li sup{ color:#AAA; font-size:10px; font-family:tahoma;}
|
||||
|
||||
address.period { font-style:normal; font-size:10px; font-family:tahoma; text-align:right;}
|
||||
address.period { color:#AAA; }
|
||||
34
widgets/rank_count/skins/default/css/widget.css
Normal file
34
widgets/rank_count/skins/default/css/widget.css
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
@charset "utf-8";
|
||||
.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;}
|
||||
.widgetOlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetOlistA li{ margin-left:25px;}
|
||||
.widgetOlistA li,
|
||||
.widgetOlistA li a{ color:#666;}
|
||||
.widgetOlistA li sup{ color:#AAA; font-size:10px; font-family:tahoma;}
|
||||
|
||||
address.period { font-style:normal; font-size:10px; font-family:tahoma; text-align:right;}
|
||||
address.period { color:#AAA; }
|
||||
|
||||
.widgetContainer.black .widgetContainer a{ text-decoration:none;}
|
||||
.widgetContainer.black .widgetContainer a:hover,
|
||||
.widgetContainer.black .widgetContainer a:active,
|
||||
.widgetContainer.black .widgetContainer a:focus{ text-decoration:underline;}
|
||||
.widgetContainer.black .widgetContainer img{ border:0;}
|
||||
.widgetContainer.black .widgetContainer sup{ position:relative; line-height:1; display:inline-block; margin:-5px 0; *padding:0 1px;}
|
||||
.widgetContainer.black .widgetContainer form{ margin:0; padding:0;}
|
||||
.widgetContainer.black .widgetContainer fieldset{ border:0; margin:0; padding:0;}
|
||||
.widgetContainer.black .widgetOlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetContainer.black .widgetOlistA li{ margin-left:25px;}
|
||||
.widgetContainer.black .widgetOlistA li,
|
||||
.widgetContainer.black .widgetOlistA li a{ color:#999;}
|
||||
.widgetContainer.black .widgetOlistA li sup{ color:#666; font-size:10px; font-family:tahoma;}
|
||||
|
||||
.widgetContainer.black address.period { font-style:normal; font-size:10px; font-family:tahoma; text-align:right;}
|
||||
.widgetContainer.black address.period { color:#666; }
|
||||
|
|
@ -1,10 +1,8 @@
|
|||
<!--@if($colorset == "black")-->
|
||||
<!--%import("./css/black.css")-->
|
||||
<!--@elseif($colorset == "white" || $colorset == "normal")-->
|
||||
<!--%import("./css/white.css")-->
|
||||
<!--@if($colorset == "black" || $colorset == "white")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="widgetContainer">
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<ol class="widgetOlistA">
|
||||
{@ $no = 1}
|
||||
<!--@foreach($widget_info->data as $val)-->
|
||||
|
|
|
|||
|
|
@ -1,14 +0,0 @@
|
|||
@charset "utf-8";
|
||||
.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;}
|
||||
.widgetOlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetOlistA li{ margin-left:25px;}
|
||||
.widgetOlistA li,
|
||||
.widgetOlistA li a{ color:#999;}
|
||||
.widgetOlistA li sup{ color:#666; font-size:10px; font-family:tahoma; padding-left:10px;}
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
@charset "utf-8";
|
||||
.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;}
|
||||
.widgetOlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetOlistA li{ margin-left:25px;}
|
||||
.widgetOlistA li,
|
||||
.widgetOlistA li a{ color:#666;}
|
||||
.widgetOlistA li sup{ color:#AAA; font-size:10px; font-family:tahoma; padding-left:10px;}
|
||||
27
widgets/rank_point/skins/default/css/widget.css
Normal file
27
widgets/rank_point/skins/default/css/widget.css
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
@charset "utf-8";
|
||||
.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;}
|
||||
.widgetOlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetOlistA li{ margin-left:25px;}
|
||||
.widgetOlistA li,
|
||||
.widgetOlistA li a{ color:#666;}
|
||||
.widgetOlistA li sup{ color:#AAA; font-size:10px; font-family:tahoma; padding-left:10px;}
|
||||
.widgetContainer.black .widgetContainer a{ text-decoration:none;}
|
||||
.widgetContainer.black .widgetContainer a:hover,
|
||||
.widgetContainer.black .widgetContainer a:active,
|
||||
.widgetContainer.black .widgetContainer a:focus{ text-decoration:underline;}
|
||||
.widgetContainer.black .widgetContainer img{ border:0;}
|
||||
.widgetContainer.black .widgetContainer sup{ position:relative; line-height:1; display:inline-block; margin:-5px 0; *padding:0 1px;}
|
||||
.widgetContainer.black .widgetContainer form{ margin:0; padding:0;}
|
||||
.widgetContainer.black .widgetContainer fieldset{ border:0; margin:0; padding:0;}
|
||||
.widgetContainer.black .widgetOlistA { margin:0; padding:0; font-size:12px; line-height:1.5;}
|
||||
.widgetContainer.black .widgetOlistA li{ margin-left:25px;}
|
||||
.widgetContainer.black .widgetOlistA li,
|
||||
.widgetContainer.black .widgetOlistA li a{ color:#999;}
|
||||
.widgetContainer.black .widgetOlistA li sup{ color:#666; font-size:10px; font-family:tahoma; padding-left:10px;}
|
||||
|
|
@ -1,10 +1,8 @@
|
|||
<!--@if($colorset == "black")-->
|
||||
<!--%import("./css/black.css")-->
|
||||
<!--@elseif($colorset == "white" || $colorset == "normal")-->
|
||||
<!--%import("./css/white.css")-->
|
||||
<!--@if($colorset == "black" || $colorset == "white")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="widgetContainer">
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<ol class="widgetOlistA">
|
||||
{@ $no = 1}
|
||||
<!--@foreach($widget_info->point_list as $val)-->
|
||||
|
|
|
|||
|
|
@ -1,6 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* widgetDlistA */
|
||||
.widgetDlistA dt{ color:#999;}
|
||||
.widgetDlistA dd,
|
||||
.widgetDlistA dd a{ color:#888;}
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
@charset "utf-8";
|
||||
|
||||
/* widgetDlistA */
|
||||
.widgetDlistA dt{ color:#333;}
|
||||
.widgetDlistA dd,
|
||||
.widgetDlistA dd a{ color:#888;}
|
||||
|
|
@ -6,3 +6,10 @@
|
|||
.widgetDlistA dt{ float:left; clear:left; margin-right:5px; white-space:nowrap;}
|
||||
.widgetDlistA dd{ clear:right; white-space:nowrap; font-family:Tahoma;}
|
||||
|
||||
.widgetDlistA dt{ color:#333;}
|
||||
.widgetDlistA dd,
|
||||
.widgetDlistA dd a{ color:#888;}
|
||||
|
||||
.widgetContainer.black .widgetDlistA dt{ color:#999;}
|
||||
.widgetContainer.black .widgetDlistA dd,
|
||||
.widgetContainer.black .widgetDlistA dd a{ color:#888;}
|
||||
|
|
|
|||
|
|
@ -1,19 +1,10 @@
|
|||
<!--%import("./js/site_info.js")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
|
||||
<!--@if($colorset=="black")-->
|
||||
<!--%import("./css/black.css")-->
|
||||
<!--@elseif($colorset=="white" || $colorset=="default")-->
|
||||
<!--%import("./css/white.css")-->
|
||||
<!--@else-->
|
||||
<!--@if($layout_info->colorset=="black")-->
|
||||
<!--%import("./css/black.css")-->
|
||||
<!--@else-->
|
||||
<!--%import("./css/white.css")-->
|
||||
<!--@end-->
|
||||
<!--@if($colorset == "black" || $colorset == "white")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="widgetContainer">
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<dl class="widgetDlistA">
|
||||
<dt>{$lang->member}:</dt>
|
||||
<dd>{number_format($widget_info->member_count)}</dd>
|
||||
|
|
|
|||
|
|
@ -1,21 +0,0 @@
|
|||
@charset "utf-8";
|
||||
.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;}
|
||||
.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.level4 a{ font-size:11px;}
|
||||
.widgetTagCloud li.level3 a{ font-size:12px;}
|
||||
.widgetTagCloud li.level2 a{ font-size:14px; font-weight:bold;}
|
||||
.widgetTagCloud li.level1 a{ font-size:18px; font-weight:bold;}
|
||||
.widgetTagCloud li a{ color:#999;}
|
||||
.widgetTagCloud li.level4 a{ color:#333;}
|
||||
.widgetTagCloud li.level3 a{ color:#666;}
|
||||
.widgetTagCloud li.level2 a{ color:#999;}
|
||||
.widgetTagCloud li.level1 a{ color:#fff;}
|
||||
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
@charset "utf-8";
|
||||
.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;}
|
||||
.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.level4 a{ font-size:11px;}
|
||||
.widgetTagCloud li.level3 a{ font-size:12px;}
|
||||
.widgetTagCloud li.level2 a{ font-size:14px; font-weight:bold;}
|
||||
.widgetTagCloud li.level1 a{ font-size:18px; font-weight:bold;}
|
||||
.widgetTagCloud li a{ color:#666;}
|
||||
.widgetTagCloud li.level4 a{ color:#999;}
|
||||
.widgetTagCloud li.level3 a{ color:#666;}
|
||||
.widgetTagCloud li.level2 a{ color:#333;}
|
||||
.widgetTagCloud li.level1 a{ color:#000;}
|
||||
|
||||
41
widgets/tag_list/skins/default/css/widget.css
Normal file
41
widgets/tag_list/skins/default/css/widget.css
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
@charset "utf-8";
|
||||
.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;}
|
||||
.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.level4 a{ font-size:11px;}
|
||||
.widgetTagCloud li.level3 a{ font-size:12px;}
|
||||
.widgetTagCloud li.level2 a{ font-size:14px; font-weight:bold;}
|
||||
.widgetTagCloud li.level1 a{ font-size:18px; font-weight:bold;}
|
||||
.widgetTagCloud li a{ color:#666;}
|
||||
.widgetTagCloud li.level4 a{ color:#999;}
|
||||
.widgetTagCloud li.level3 a{ color:#666;}
|
||||
.widgetTagCloud li.level2 a{ color:#333;}
|
||||
.widgetTagCloud li.level1 a{ color:#000;}
|
||||
|
||||
.widgetContainer.black .widgetContainer a{ text-decoration:none;}
|
||||
.widgetContainer.black .widgetContainer a:hover,
|
||||
.widgetContainer.black .widgetContainer a:active,
|
||||
.widgetContainer.black .widgetContainer a:focus{ text-decoration:underline;}
|
||||
.widgetContainer.black .widgetContainer img{ border:0;}
|
||||
.widgetContainer.black .widgetContainer sup{ position:relative; line-height:1; display:inline-block; margin:-5px 0; *padding:0 1px;}
|
||||
.widgetContainer.black .widgetContainer form{ margin:0; padding:0;}
|
||||
.widgetContainer.black .widgetContainer fieldset{ border:0; margin:0; padding:0;}
|
||||
.widgetContainer.black .widgetTagCloud { text-align:justify; font-size:12px; line-height:1.5; margin:0; padding:0;}
|
||||
.widgetContainer.black .widgetTagCloud li{ display:inline; white-space:nowrap; list-style:none;}
|
||||
.widgetContainer.black .widgetTagCloud li.level4 a{ font-size:11px;}
|
||||
.widgetContainer.black .widgetTagCloud li.level3 a{ font-size:12px;}
|
||||
.widgetContainer.black .widgetTagCloud li.level2 a{ font-size:14px; font-weight:bold;}
|
||||
.widgetContainer.black .widgetTagCloud li.level1 a{ font-size:18px; font-weight:bold;}
|
||||
.widgetContainer.black .widgetTagCloud li a{ color:#999;}
|
||||
.widgetContainer.black .widgetTagCloud li.level4 a{ color:#333;}
|
||||
.widgetContainer.black .widgetTagCloud li.level3 a{ color:#666;}
|
||||
.widgetContainer.black .widgetTagCloud li.level2 a{ color:#999;}
|
||||
.widgetContainer.black .widgetTagCloud li.level1 a{ color:#fff;}
|
||||
|
||||
|
|
@ -1,10 +1,8 @@
|
|||
<!--@if($colorset=="black")-->
|
||||
<!--%import("./css/black.css")-->
|
||||
<!--@elseif($colorset=="white")-->
|
||||
<!--%import("./css/white.css")-->
|
||||
<!--@if($colorset == "black" || $colorset == "white")-->
|
||||
<!--%import("./css/widget.css")-->
|
||||
<!--@end-->
|
||||
|
||||
<div class="widgetContainer">
|
||||
<div class="widgetContainer<!--@if($colorset=="black")--> black<!--@end-->">
|
||||
<ul class="widgetTagCloud">
|
||||
<!--@foreach($widget_info->tag_list as $val)-->
|
||||
<li class="level{$val->rank}">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue