Changeset 6451
- Timestamp:
- Apr 9, 2008, 6:11:58 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/trunk/webapp_biz/modules/pc/templates/common/layout.tpl
r6333 r6451 11 11 <link rel="stylesheet" href="./xhtml_style.php" type="text/css" /> 12 12 <script type="text/javascript" src="./js/prototype.js"></script> 13 <script type="text/javascript" src="./js/Selection.js"></script> 13 14 <script type="text/javascript" src="./js/pne.js"></script> 15 <script type="text/javascript" src="./js/tiny_mce/tiny_mce.js"></script> 14 16 <style type="text/css"> 15 17 .border_01 { border: #({$INC_HEADER_color_config.border_01}) 1px solid; } … … 34 36 body { background-color: #({$INC_HEADER_color_config.bg_12}); } 35 37 .container { background-color: #({$INC_HEADER_color_config.bg_13}); } 38 39 /* 文字装飾 */ 40 ({if $INC_HEADER_decoration_config.op_b}) 41 span.op_b { 42 text-decoration : underline; 43 font-style : inherit; 44 font-weight : bold; 45 color : inherit; 46 font-size: inherit; 47 } 48 ({/if}) 49 50 ({if $INC_HEADER_decoration_config.op_u}) 51 span.op_u { 52 text-decoration : underline; 53 font-style : inherit; 54 font-weight : inherit; 55 color : inherit; 56 font-size: inherit; 57 } 58 ({/if}) 59 60 ({if $INC_HEADER_decoration_config.op_s}) 61 span.op_s { 62 text-decoration : line-through; 63 font-style : inherit; 64 font-weight : inherit; 65 color : inherit; 66 font-size: inherit; 67 } 68 ({/if}) 69 70 ({if $INC_HEADER_decoration_config.op_i}) 71 span.op_i { 72 text-decoration : inherit; 73 font-style : italic; 74 font-weight : inherit; 75 color : inherit; 76 font-size: inherit; 77 } 78 ({/if}) 79 80 ({if $INC_HEADER_decoration_config.op_large}) 81 span.op_large { 82 text-decoration : inherit; 83 font-style : inherit; 84 font-weight : inherit; 85 color : inherit; 86 font-size : 20px; 87 } 88 ({/if}) 89 90 ({if $INC_HEADER_decoration_config.op_small}) 91 span.op_small { 92 text-decoration : inherit; 93 font-style : inherit; 94 font-weight : inherit; 95 color : inherit; 96 font-size : 8px; 97 } 98 ({/if}) 99 100 ({if !$INC_HEADER_decoration_config.op_color}) 101 span.op_color { 102 text-decoration : inherit; 103 font-style : inherit; 104 font-weight : inherit; 105 color : #000 !important; 106 font-size: inherit; 107 } 108 ({else}) 109 span.op_color { 110 text-decoration : inherit; 111 font-style : inherit; 112 font-weight : inherit; 113 color : inherit; 114 font-size: inherit; 115 } 116 ({/if}) 117 36 118 </style> 119 120 <script type="text/javascript"> 121 function pne_mce_editor_get_config() 122 { 123 return { 124 op_b : { 125 isEnabled : ({$INC_HEADER_decoration_config.op_b}), 126 imageURL : "({t_img_url_skin filename=deco_op_b})" 127 }, 128 op_u : { 129 isEnabled : ({$INC_HEADER_decoration_config.op_u}), 130 imageURL : "({t_img_url_skin filename=deco_op_u})" 131 }, 132 op_s : { 133 isEnabled : ({$INC_HEADER_decoration_config.op_s}), 134 imageURL : "({t_img_url_skin filename=deco_op_s})" 135 }, 136 op_i : { 137 isEnabled : ({$INC_HEADER_decoration_config.op_i}), 138 imageURL : "({t_img_url_skin filename=deco_op_i})" 139 }, 140 op_large : { 141 isEnabled : ({$INC_HEADER_decoration_config.op_large}), 142 imageURL : "({t_img_url_skin filename=deco_op_large})" 143 }, 144 op_small : { 145 isEnabled : ({$INC_HEADER_decoration_config.op_small}), 146 imageURL : "({t_img_url_skin filename=deco_op_small})" 147 }, 148 op_color : { 149 isEnabled : ({$INC_HEADER_decoration_config.op_color}), 150 imageURL : "({t_img_url_skin filename=deco_op_color})" 151 } 152 } 153 } 154 </script> 37 155 </head> 38 156 <body id="pc_page_({$INC_HEADER_page_name})"><div id="Body">
Note: See TracChangeset
for help on using the changeset viewer.