Changeset 1816 for plugins/apostropheBlogPlugin/trunk
- Timestamp:
- 07/21/10 15:51:42 (22 months ago)
- Location:
- plugins/apostropheBlogPlugin/trunk
- Files:
-
- 1 removed
- 17 modified
- 3 copied
-
. (modified) (1 prop)
-
config/app.yml (deleted)
-
config/app.yml.sample (copied) (copied from plugins/apostropheBlogPlugin/branches/1.4/config/app.yml.sample)
-
lib/actions/BaseaBlogActions.class.php (modified) (1 diff)
-
lib/actions/BaseaBlogSingleSlotComponents.class.php (modified) (2 diffs)
-
lib/form/PluginaBlogEngineForm.class.php (copied) (copied from plugins/apostropheBlogPlugin/branches/1.4/lib/form/PluginaBlogEngineForm.class.php)
-
lib/form/PluginaEventEngineForm.class.php (copied) (copied from plugins/apostropheBlogPlugin/branches/1.4/lib/form/PluginaEventEngineForm.class.php)
-
lib/form/aBlogEngineForm.class.php (modified) (1 diff)
-
lib/form/aEventEngineForm.class.php (modified) (1 diff)
-
lib/form/doctrine/PluginaBlogItemForm.class.php (modified) (4 diffs)
-
lib/model/doctrine/PluginaBlogCategoryTable.class.php (modified) (1 diff)
-
lib/model/doctrine/PluginaBlogItem.class.php (modified) (1 diff)
-
lib/model/doctrine/PluginaBlogPost.class.php (modified) (1 diff)
-
lib/model/doctrine/PluginaEvent.class.php (modified) (1 diff)
-
lib/model/doctrine/PluginaEventTable.class.php (modified) (2 diffs)
-
modules/aBlogAdmin/templates/_form.php (modified) (6 diffs)
-
modules/aBlogAdmin/templates/_formScripts.php (modified) (2 diffs)
-
modules/aBlogAdmin/templates/editSuccess.php (modified) (5 diffs)
-
modules/aEventAdmin/templates/_form.php (modified) (7 diffs)
-
modules/aEventAdmin/templates/editSuccess.php (modified) (1 diff)
-
web/css/aBlog.css (modified) (7 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
plugins/apostropheBlogPlugin/trunk
-
plugins/apostropheBlogPlugin/trunk/lib/actions/BaseaBlogActions.class.php
r1665 r1816 29 29 ->leftJoin($this->modelClass.'.Categories c'); 30 30 $categoryIds = array(); 31 $this->blogCategories = $this->page->BlogCategories;31 $this->blogCategories = aBlogCategoryTable::getCategoriesForPage($this->page); 32 32 foreach($this->page->BlogCategories as $blogCategory) 33 33 { -
plugins/apostropheBlogPlugin/trunk/lib/actions/BaseaBlogSingleSlotComponents.class.php
r1593 r1816 27 27 } 28 28 } 29 29 30 30 public function executeNormalView() 31 31 { 32 32 $this->setup(); 33 33 $this->values = $this->slot->getArrayValue(); 34 $this->aBlogItem = new aBlogItem;34 $this->aBlogItem = new $this->modelClass(); 35 35 if(isset($this->values['blog_item'])) 36 36 { … … 46 46 $this->options['excerptLength'] = $this->getOption('excerptLength', 200); 47 47 $this->options['maxImages'] = $this->getOption('maxImages', 1); 48 } 48 } 49 49 } -
plugins/apostropheBlogPlugin/trunk/lib/form/aBlogEngineForm.class.php
r879 r1816 1 1 <?php 2 2 3 class aBlogEngineForm extends aPageForm3 class aBlogEngineForm extends PluginaBlogEngineForm 4 4 { 5 public function configure()6 {7 $this->useFields();8 $q = Doctrine::getTable('aBlogPost')->addCategories();9 $this->setWidget('blog_categories_list', new sfWidgetFormDoctrineChoice(array('multiple' => true, 'query' => $q, 'model' => 'aBlogCategory')));10 $this->widgetSchema->setLabel('blog_categories_list', 'blog Categories');11 $this->widgetSchema->setHelp('blog_categories_list','(Defaults to All Cateogories)');12 $this->setValidator('blog_categories_list', new sfValidatorDoctrineChoice(array('multiple' => true, 'query' => $q, 'model' => 'aBlogCategory', 'required' => false)));13 $this->widgetSchema->setNameFormat('enginesettings[%s]');14 $this->widgetSchema->setFormFormatterName('aAdmin');15 }16 5 } -
plugins/apostropheBlogPlugin/trunk/lib/form/aEventEngineForm.class.php
r879 r1816 1 1 <?php 2 2 3 class aEventEngineForm extends aPageForm3 class aEventEngineForm extends PluginaEventEngineForm 4 4 { 5 public function configure()6 {7 $this->useFields();8 $q = Doctrine::getTable('aEvent')->addCategories();9 $this->setWidget('blog_categories_list', new sfWidgetFormDoctrineChoice(array('multiple' => true, 'query' => $q, 'model' => 'aBlogCategory')));10 $this->widgetSchema->setLabel('blog_categories_list', 'blog Categories');11 $this->widgetSchema->setHelp('blog_categories_list','(Defaults to All Cateogories)');12 $this->setValidator('blog_categories_list', new sfValidatorDoctrineChoice(array('multiple' => true, 'query' => $q, 'model' => 'aBlogCategory', 'required' => false)));13 $this->widgetSchema->setNameFormat('enginesettings[%s]');14 $this->widgetSchema->setFormFormatterName('aAdmin');15 }16 5 } -
plugins/apostropheBlogPlugin/trunk/lib/form/doctrine/PluginaBlogItemForm.class.php
r1744 r1816 38 38 } 39 39 40 if(!$user->hasCredential('admin')) 41 { 42 unset($this['author_id']); 43 } 44 45 $templates = sfConfig::get('app_'.$this->engine.'_templates'); 40 $templates = sfConfig::get('app_'.$this->engine.'_templates', $this->getObject()->getTemplateDefaults()); 46 41 $templateChoices = array(); 47 42 foreach ($templates as $key => $template) … … 89 84 } 90 85 91 $q = Doctrine::getTable('sfGuardUser')->createQuery('u'); 92 93 if ($candidateGroup && $sufficientGroup) 94 { 95 $q->leftJoin('u.groups g')->addWhere('(g.name IN (?, ?)) OR (u.is_super_admin IS TRUE)', array($candidateGroup, $sufficientGroup)); 96 } 97 $this->setWidget('author_id', 98 new sfWidgetFormDoctrineChoice(array('model' => 'sfGuardUser', 'query' => $q))); 99 $this->setValidator('author_id', 100 new sfValidatorDoctrineChoice(array('model' => 'sfGuardUser', 'query' => $q, 'required' => false))); 86 if($user->hasCredential('admin')) 87 { 88 $q = Doctrine::getTable('sfGuardUser')->createQuery('u'); 89 90 if ($candidateGroup && $sufficientGroup) 91 { 92 $q->leftJoin('u.groups g')->addWhere('(g.name IN (?, ?)) OR (u.is_super_admin IS TRUE)', array($candidateGroup, $sufficientGroup)); 93 } 94 $this->setWidget('author_id', 95 new sfWidgetFormDoctrineChoice(array('model' => 'sfGuardUser', 'query' => $q))); 96 $this->setValidator('author_id', 97 new sfValidatorDoctrineChoice(array('model' => 'sfGuardUser', 'query' => $q, 'required' => false))); 98 } 99 else 100 { 101 unset($this['author_id']); 102 } 101 103 102 104 $this->setWidget('published_at', new sfWidgetFormJQueryDateTime( … … 106 108 $this->getWidgetSchema()->setDefault('published_at', date('Y-m-d H:i:s')); 107 109 108 // $this->widgetSchema['tags'] = new sfWidgetFormInput(array('default' => implode(', ', $this->getObject()->getTags())), array('class' => 'tag-input', 'autocomplete' => 'off'));109 // $this->validatorSchema['tags'] = new sfValidatorString(array('required' => false));110 //$this->widgetSchema['tags'] = new sfWidgetFormInput(array('default' => implode(', ', $this->getObject()->getTags())), array('class' => 'tag-input', 'autocomplete' => 'off')); 111 //$this->validatorSchema['tags'] = new sfValidatorString(array('required' => false)); 110 112 111 113 $this->validatorSchema->setPostValidator( … … 157 159 protected function doSave($con = null) 158 160 { 159 $tags = $this->values['tags'];160 $tags = preg_replace('/\s\s+/', ' ', $tags);161 $tags = str_replace(', ', ',', $tags);162 163 $this->object->setTags($tags);164 161 if(isset($this['categories_list_add'])) 165 162 { -
plugins/apostropheBlogPlugin/trunk/lib/model/doctrine/PluginaBlogCategoryTable.class.php
r1735 r1816 75 75 return $tags; 76 76 } 77 78 public static function getCategoriesForPage($page) 79 { 80 return Doctrine::getTable('aBlogCategory')->createQuery('c') 81 ->innerJoin('c.Pages as p') 82 ->where('p.id = ?', $page['id']) 83 ->orderBy('c.name') 84 ->execute(); 85 } 77 86 78 87 -
plugins/apostropheBlogPlugin/trunk/lib/model/doctrine/PluginaBlogItem.class.php
r1748 r1816 366 366 public function getAreas() 367 367 { 368 $templates = sfConfig::get('app_'.$this->engine.'_templates' );368 $templates = sfConfig::get('app_'.$this->engine.'_templates', self::getTemplateDefaults()); 369 369 return $templates[$this['template']]['areas']; 370 370 } -
plugins/apostropheBlogPlugin/trunk/lib/model/doctrine/PluginaBlogPost.class.php
r1294 r1816 15 15 public $engine = 'aBlog'; 16 16 17 public static function getTemplateDefaults() 18 { 19 return array( 20 'singleColumnTemplate' => array( 21 'name' => 'Single Column', 22 'areas' => array('blog-body') 23 ), 24 'twoColumnTemplate' => array( 25 'name' => 'Two Column', 26 'areas' => array('blog-body', 'blog-sidebar') 27 ) 28 ); 29 } 30 17 31 public function getVirtualPageSlug() 18 32 { -
plugins/apostropheBlogPlugin/trunk/lib/model/doctrine/PluginaEvent.class.php
r1294 r1816 15 15 public $engine = 'aEvent'; 16 16 17 public static function getTemplateDefaults() 18 { 19 return array( 20 'singleColumnTemplate' => array( 21 'name' => 'Single Column', 22 'areas' => array('blog-body') 23 ) 24 ); 25 } 26 17 27 public function getVirtualPageSlug() 18 28 { -
plugins/apostropheBlogPlugin/trunk/lib/model/doctrine/PluginaEventTable.class.php
r1666 r1816 3 3 /** 4 4 * PluginaEventTable 5 * 5 * 6 6 * This class has been auto-generated by the Doctrine ORM Framework 7 7 */ … … 9 9 { 10 10 protected $categoryColumn = 'events'; 11 11 12 12 /** 13 13 * Returns an instance of this class. -
plugins/apostropheBlogPlugin/trunk/modules/aBlogAdmin/templates/_form.php
r1750 r1816 23 23 </a> 24 24 <div id="a-blog-item-update" class="a-btn big a-publish-post">Saved</div> 25 25 26 26 <div class="post-status option"> 27 27 <?php echo $form['status']->render() ?> 28 28 </div> 29 29 30 30 <?php echo __('Publish now or', array(), 'apostrophe_blog') ?> <a href="#" onclick="return false;" class="post-date-toggle a-sidebar-toggle"><?php echo __('set a date', array(), 'apostrophe_blog') ?></a> 31 31 … … 46 46 <h4><?php echo __('Author', array(), 'apostrophe_blog') ?>: 47 47 <?php if (isset($form['author_id'])): ?> 48 </h4> 48 </h4> 49 49 <div class="author_id option"> 50 50 <?php echo $form['author_id']->render() ?> 51 <?php echo $form['author_id']->renderError() ?> 51 <?php echo $form['author_id']->renderError() ?> 52 52 </div> 53 53 <?php else: ?> 54 <span><?php echo $a_blog_post->Author ?></span></h4> 54 <span><?php echo $a_blog_post->Author ?></span></h4> 55 55 <?php endif ?> 56 56 </div> … … 65 65 <?php else: ?> 66 66 <hr/> 67 <div class="post-editors-options option show-editors" id="editors-section"> 67 <div class="post-editors-options option show-editors" id="editors-section"> 68 68 <?php endif ?> 69 69 … … 71 71 <?php echo $form['editors_list']->render()?> 72 72 <?php echo $form['editors_list']->renderError() ?> 73 73 74 74 </div> 75 75 </div> … … 94 94 <hr /> 95 95 <div class="comments section"> 96 <h4><a href="#" class="allow_comments_toggle <?php echo ($a_blog_post['allow_comments'])? 'enabled' : 'disabled' ?>"><span class="enabled" title="<?php echo __('Click to disable comments', array(), 'apostrophe_blog') ?>"><?php echo __('Comments are enabled', array(), 'apostrophe_blog') ?></span><span class="disabled" title="<?php echo __('Click to enable comments', array(), 'apostrophe_blog') ?>"><?php echo __('Comments are disabled', array(), 'apostrophe_blog') ?></span></a></h4> 96 <h4><a href="#" class="allow_comments_toggle <?php echo ($a_blog_post['allow_comments'])? 'enabled' : 'disabled' ?>"><span class="enabled" title="<?php echo __('Click to disable comments', array(), 'apostrophe_blog') ?>"><?php echo __('Comments are enabled', array(), 'apostrophe_blog') ?></span><span class="disabled" title="<?php echo __('Click to enable comments', array(), 'apostrophe_blog') ?>"><?php echo __('Comments are disabled', array(), 'apostrophe_blog') ?></span></a></h4> 97 97 <div class="allow_comments option"> 98 98 <?php echo $form['allow_comments']->render() ?> … … 109 109 <h4><?php echo __('Categories', array(), 'apostrophe_blog') ?></h4> 110 110 <?php if($sf_user->hasCredential('admin')): ?> 111 <?php echo link_to('edit categories','@a_blog_category_admin', array('class' => 'edit-categories', )) ?> 111 <?php echo link_to('edit categories','@a_blog_category_admin', array('class' => 'edit-categories', )) ?> 112 112 <?php endif ?> 113 113 <?php echo $form['categories_list']->render() ?> -
plugins/apostropheBlogPlugin/trunk/modules/aBlogAdmin/templates/_formScripts.php
r1750 r1816 1 <script type="text/javascript" charset="utf-8"> 1 <script type="text/javascript" charset="utf-8"> 2 2 function aBlogUpdateMulti() { aBlogUpdateForm('<?php echo url_for('a_blog_admin_update',$a_blog_post) ?>'); } 3 3 $(document).ready(function(){ 4 4 5 5 $('#a-admin-form').change(function(event) { 6 6 if (!( event.target.className == 'a-multiple-select-input' && event.target.options[0].selected == true || event.target.name == 'add-text' || event.target.name == 'a-ignored' )) … … 33 33 aBlogPublishBtn('<?php echo $a_blog_post->status ?>','<?php echo url_for('a_blog_admin_update',$a_blog_post) ?>'); 34 34 aMultipleSelect('#categories-section', { 'choose-one': '<?php echo __('Choose Categories', array(), 'apostrophe_blog') ?>' <?php if($sf_user->hasCredential('admin')): ?>, 'add': '<?php echo __('+ New Category', array(), 'apostrophe_blog') ?>'<?php endif ?>, 'onChange': aBlogUpdateMulti }); 35 aMultipleSelect('#editors-section', { 'choose-one': '<?php echo __('Choose Editors', array(), 'apostrophe_blog') ?>','onChange': aBlogUpdateMulti }); 35 aMultipleSelect('#editors-section', { 'choose-one': '<?php echo __('Choose Editors', array(), 'apostrophe_blog') ?>','onChange': aBlogUpdateMulti }); 36 36 37 37 }); -
plugins/apostropheBlogPlugin/trunk/modules/aBlogAdmin/templates/editSuccess.php
r1746 r1816 4 4 5 5 <div class="a-admin-container <?php echo $sf_params->get('module') ?>"> 6 6 7 7 <?php slot('a-subnav') ?> 8 8 <div class="a-subnav-wrapper blog"> 9 <div class="a-subnav-inner"> 9 <div class="a-subnav-inner"> 10 10 <ul class="a-admin-action-controls"> 11 11 <li><a href="<?php echo url_for('@a_blog_admin'); ?>" class="a-btn big alt"><?php echo __('View All Posts', array(), 'apostrophe-blog') ?></a></li> 12 12 <?php include_partial('list_actions', array('helper' => $helper)) ?> 13 13 </ul> 14 <?php include_partial('aBlogAdmin/form_bar') ?> 14 <?php include_partial('aBlogAdmin/form_bar') ?> 15 15 <div class="a-admin-title-sentence"> 16 16 <h3 class="new-item"><?php echo __('You are creating a new post.', array(), 'apostrophe_blog') ?></h3> 17 <h3 class="draft-item"><?php echo __('You are working on a draft post.', array(), 'apostrophe_blog') ?></h3> 17 <h3 class="draft-item"><?php echo __('You are working on a draft post.', array(), 'apostrophe_blog') ?></h3> 18 18 <h3 class="published-item"><?php echo __('You are editing a published post.', array(), 'apostrophe_blog') ?></h3> 19 19 <span class="flash-message"> <?php echo __('Post Saved at', array(), 'apostrophe_blog') ?></span> 20 20 </div> 21 </div> 21 </div> 22 22 </div> 23 23 <?php end_slot() ?> 24 24 25 25 <?php include_partial('flashes') ?> 26 27 <div class="a-admin-content main"> 28 26 27 <div class="a-admin-content main"> 28 29 29 <?php if (0): ?> <?php // We aren't using status messages right now ?> 30 30 <dl id="a-blog-item-status-messages"></dl> 31 31 <?php endif ?> 32 32 33 33 <div id="a-blog-item-title-interface" class="a-blog-item-title-interface"> 34 34 <input type="text" id="a_blog_item_title_interface" value="<?php echo ($a_blog_post->title == 'untitled')? '':$a_blog_post->title ?>" /> … … 37 37 <li><a href="#" class="a-btn a-save big"><?php echo __('Save', array(), 'apostrophe_blog') ?></a></li> 38 38 <li><a href="#" class="a-btn a-cancel no-label big"><?php echo __('Cancel', array(), 'apostrophe_blog') ?></a></li> 39 </ul> 40 </div> 39 </ul> 40 </div> 41 41 42 42 <div id="a-blog-item-permalink-interface"> 43 <h6>Permalink:</h6> 43 <h6>Permalink:</h6> 44 44 <div class="a-blog-item-permalink-wrapper url"> 45 <span><?php echo aTools::urlForPage($a_blog_post->findBestEngine()->getSlug()).'/' ?>< /span>45 <span><?php echo aTools::urlForPage($a_blog_post->findBestEngine()->getSlug()).'/' ?><?php echo date('Y/m/d/', strtotime($a_blog_post->getPublishedAt())) ?></span> 46 46 </div> 47 47 <div class="a-blog-item-permalink-wrapper slug"> … … 50 50 <li><a href="#" class="a-btn a-save mini"><?php echo __('Save', array(), 'apostrophe_blog') ?></a></li> 51 51 <li><a href="#" class="a-btn a-cancel no-label mini"><?php echo __('Cancel', array(), 'apostrophe_blog') ?></a></li> 52 </ul> 52 </ul> 53 53 </div> 54 54 </div> … … 65 65 </div> 66 66 </div> 67 67 68 68 <?php if (isset($a_blog_post['updated_at'])): ?> 69 69 <div id="post-last-saved" class="post-updated-at option"> … … 71 71 <b>Last Saved:</b> 72 72 <span></span> 73 </h6> 73 </h6> 74 74 </div> 75 75 <?php endif ?> 76 76 77 77 <div class="a-admin-footer"> 78 78 <?php include_partial('form_footer', array('a_blog_post' => $a_blog_post, 'form' => $form, 'configuration' => $configuration)) ?> -
plugins/apostropheBlogPlugin/trunk/modules/aEventAdmin/templates/_form.php
r1750 r1816 46 46 <div class="start_date"> 47 47 <?php echo $form['start_date']->render(array('beforeShow' => 'aBlogSetDateRange', 'onClose' => 'aBlogUpdateMulti')) ?> 48 <?php echo $form['start_date']->renderError() ?> 48 <?php echo $form['start_date']->renderError() ?> 49 49 </div> 50 50 <h4>End Date</h4> 51 51 <div class="end_date"> 52 52 <?php echo $form['end_date']->render(array('beforeShow' => 'aBlogSetDateRange', 'onClose' => 'aBlogUpdateMulti')) ?> 53 <?php echo $form['end_date']->renderError() ?> 53 <?php echo $form['end_date']->renderError() ?> 54 54 </div> 55 55 </div> … … 65 65 <h4><?php echo __('Author', array(), 'apostrophe_blog') ?> 66 66 <?php if ($sf_user->hasCredential('admin')): ?> 67 </h4> 67 </h4> 68 68 <div class="author_id option"> 69 69 <?php echo $form['author_id']->render() ?> 70 <?php echo $form['author_id']->renderError() ?> 70 <?php echo $form['author_id']->renderError() ?> 71 71 </div> 72 72 <?php else: ?>: <span><?php echo $a_event->Author ?></span></h4><?php endif ?> … … 74 74 </div> 75 75 76 <?php // Blog Post Editors ?> 76 <?php // Blog Post Editors ?> 77 77 <?php if(isset($form['editors_list'])): ?> 78 78 <div class="post-editors"> … … 83 83 <?php else: ?> 84 84 <hr/> 85 <div class="post-editors-options option show-editors" id="editors-section"> 85 <div class="post-editors-options option show-editors" id="editors-section"> 86 86 <?php endif ?> 87 87 … … 89 89 <?php echo $form['editors_list']->render()?> 90 90 <?php echo $form['editors_list']->renderError() ?> 91 91 92 92 </div> 93 93 </div> … … 111 111 <hr /> 112 112 <div class="comments section"> 113 <h4><a href="#" class="allow_comments_toggle <?php echo ($a_event['allow_comments'])? 'enabled' : 'disabled' ?>"><span class="enabled" title="<?php echo __('Click to disable comments', array(), 'apostrophe_blog') ?>"><?php echo __('Comments are enabled', array(), 'apostrophe_blog') ?></span><span class="disabled" title="<?php echo __('Click to enable comments', array(), 'apostrophe_blog') ?>"><?php echo __('Comments are disabled', array(), 'apostrophe_blog') ?></span></a></h4> 113 <h4><a href="#" class="allow_comments_toggle <?php echo ($a_event['allow_comments'])? 'enabled' : 'disabled' ?>"><span class="enabled" title="<?php echo __('Click to disable comments', array(), 'apostrophe_blog') ?>"><?php echo __('Comments are enabled', array(), 'apostrophe_blog') ?></span><span class="disabled" title="<?php echo __('Click to enable comments', array(), 'apostrophe_blog') ?>"><?php echo __('Comments are disabled', array(), 'apostrophe_blog') ?></span></a></h4> 114 114 <div class="allow_comments option"> 115 115 <?php echo $form['allow_comments']->render() ?> 116 116 <?php echo $form['allow_comments']->renderError() ?> 117 </div> 117 </div> 118 118 </div> 119 119 <?php endif ?> … … 125 125 <h4><?php echo __('Categories', array(), 'apostrophe_blog') ?></h4> 126 126 <?php if($sf_user->hasCredential('admin')): ?> 127 <?php echo link_to('edit categories','@a_blog_category_admin', array('class' => 'edit-categories', )) ?> 127 <?php echo link_to('edit categories','@a_blog_category_admin', array('class' => 'edit-categories', )) ?> 128 128 <?php endif ?> 129 129 <?php echo $form['categories_list']->render() ?> -
plugins/apostropheBlogPlugin/trunk/modules/aEventAdmin/templates/editSuccess.php
r1746 r1816 43 43 <h6>Permalink:</h6> 44 44 <div class="a-blog-item-permalink-wrapper url"> 45 <span><?php echo aTools::urlForPage($a_event->findBestEngine()->getSlug()).'/' ?>< /span>45 <span><?php echo aTools::urlForPage($a_event->findBestEngine()->getSlug()).'/' ?><?php echo date('Y/m/d/', strtotime($a_event->getStartDate())) ?></span> 46 46 </div> 47 47 <div class="a-blog-item-permalink-wrapper slug"> -
plugins/apostropheBlogPlugin/trunk/web/css/aBlog.css
-
Property
svn:mergeinfo set
to
/plugins/apostropheBlogPlugin/branches/1.4/web/css/aBlog.css merged eligible
r1750 r1816 179 179 center bottom, 180 180 rgb(255,255,255) 0%, 181 rgb(247,247,247) 100% 181 rgb(247,247,247) 100% 182 182 ); 183 183 background-image: -webkit-gradient( … … 425 425 .a-admin-sidebar .section.event-date div.start_date 426 426 { 427 margin-bottom: 5px; 427 margin-bottom: 5px; 428 428 } 429 429 … … 441 441 width: 200px !important; 442 442 width: auto; /* ? For IE */ 443 float: right; 443 float: left; /* Was float:right, but this broke in IE */ 444 display:inline; 444 445 clear: both; 445 446 } … … 467 468 font-family: Arial, sans-serif; 468 469 border: 1px solid #ddd; 469 padding: 3px 4px;470 padding: 3px 0px; 470 471 border: 1px solid rgba(0,0,0,0.2); 471 472 -moz-border-radius: 3px; … … 607 608 { 608 609 font-size: 18px; 609 color: #999; 610 color: #999; 610 611 } 611 612 … … 614 615 .a-admin-title-sentence h3.draft-item 615 616 { 616 display: none; 617 display: none; 617 618 } 618 619 … … 836 837 #a-blog-item-status-messages 837 838 { 838 background: rgba(0,0,0,0.05); 839 background: rgba(0,0,0,0.05); 839 840 line-height: 24px; 840 841 font-size: 16px; -
Property
svn:mergeinfo set
to

