Changeset 1088
- Timestamp:
- 04/28/10 17:38:30 (22 months ago)
- Location:
- plugins/apostropheBlogPlugin/trunk
- Files:
-
- 2 modified
-
data/generator/sfDoctrineModule/aBlogAdmin/template/templates/_list_th_tabular.php (modified) (1 diff)
-
web/css/aBlog.css (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plugins/apostropheBlogPlugin/trunk/data/generator/sfDoctrineModule/aBlogAdmin/template/templates/_list_th_tabular.php
r1083 r1088 28 28 29 29 [?php if ('<?php echo $name ?>' == $sort[0]): ?] 30 [?php ($sort[1] == 'asc')? $sortLabel = __("Ascending", array(), 'a-admin'): __("Descending", array(), 'a-admin'); ?] 30 31 [?php ($sort[1] == 'asc')? $sortLabel = __("Descending", array(), 'a-admin'): $sortLabel = __("Ascending", array(), 'a-admin'); ?] 31 32 32 33 [?php echo link_to( 33 image_tag(((sfConfig::get('app_aAdmin_web_dir',false))?sfConfig::get('app_aAdmin_web_dir'):'/apostrophePlugin').'/images/'.$sort[1].'-on.png', array('alt' => __($sortLabel, array(), 'a-admin'))), 34 '<?php echo $this->getModuleName() ?>/index?sort=<?php echo $name ?>&sort_type='.($sort[1] == 'asc' ? 'desc' : 'asc'), array('class' => 'a-sort-arrow asc', 'title' => __($sortLabel, array(), 'a-admin')) 35 ) ?] 34 $sortLabel, 35 '<?php echo $this->getModuleName() ?>/index?sort=<?php echo $name ?>&sort_type='.($sort[1] == 'asc' ? 'desc' : 'asc'), 36 array('class' => 'a-btn flag flag-right nobg icon a-sort-arrow sorting '.$sort[1], 'title' => __($sortLabel, array(), 'a-admin'))) 37 ?] 38 36 39 [?php else: ?] 40 37 41 [?php echo link_to( 38 image_tag(((sfConfig::get('app_aAdmin_web_dir',false))?sfConfig::get('app_aAdmin_web_dir'):'/apostrophePlugin').'/images/desc.png', array('alt' => __('desc', array(), 'a-admin'))), 39 '<?php echo $this->getModuleName() ?>/index?sort=<?php echo $name ?>&sort_type='.($sort[1] == 'asc' ? 'desc' : 'asc'), array('class' => 'a-sort-arrow desc', 'title' => __('Descending', array(), 'a-admin')) 40 ) ?] 42 __("Ascending", array(), 'a-admin'), 43 '<?php echo $this->getModuleName() ?>/index?sort=<?php echo $name ?>&sort_type=asc', 44 array('class' => 'a-btn flag flag-right nobg icon a-sort-arrow asc', 'title' => __('Ascending', array(), 'a-admin'))) 45 ?] 46 41 47 [?php endif; ?] 42 48 -
plugins/apostropheBlogPlugin/trunk/web/css/aBlog.css
r1083 r1088 141 141 font-size: 12px; 142 142 min-width: 120px; 143 width: auto !important; 144 width: 120px; 143 width: auto; 145 144 z-index: 100; 146 145 -moz-border-radius: 2px; … … 241 240 /* Tags Sort Box */ 242 241 243 .a- column-tags_list .filternav244 { 245 width: 2 40px;242 .a-admin-list th.a-column-tags_list .filternav 243 { 244 width: 220px; 246 245 } 247 246 … … 256 255 .a-column-tags_list .filternav span 257 256 { 258 width: 100%; 257 float: left; 258 clear: both; 259 padding-left: 20px; 259 260 margin-top: 5px; 260 261 } … … 269 270 font-size: 14px; 270 271 color: #ccc; 271 padding: 0 5px; 272 width: 20px; 273 margin-left: -20px; 274 text-align: center; 272 275 } 273 276

