diff --git a/themes/blueprint/templates/Recommend/FavoriteFacets.phtml b/themes/blueprint/templates/Recommend/FavoriteFacets.phtml index 802c9a48293564737555aeac8a8504948b3f1270..ff8343a82a26baa6a8da76ad278463185954143e 100644 --- a/themes/blueprint/templates/Recommend/FavoriteFacets.phtml +++ b/themes/blueprint/templates/Recommend/FavoriteFacets.phtml @@ -16,6 +16,12 @@ (<?=$this->escapeHtml($current['count'])?>) </li> <? endforeach; ?> + <li> + <a href="<?=$this->url('editList', array('id'=>'NEW'))?>" title="<?=$this->transEsc('Create a List') ?>"> + <?=$this->transEsc('Create a List') ?> + </a> + <img src="<?=$this->imageLink('silk/add.png')?>" style="margin-left:2px;vertical-align:text-bottom"/> + </li> </ul> </div> <? endif; ?> diff --git a/themes/bootstrap/css/screen.css b/themes/bootstrap/css/screen.css index b9d7eb149ff4bac891ada8745c132f14dd54510c..37e07169bc757f0febf372935b367f7e6c900132 100644 --- a/themes/bootstrap/css/screen.css +++ b/themes/bootstrap/css/screen.css @@ -12,6 +12,7 @@ li a.hidden {display:none} * html .centered-pills ul.nav-pills { display:inline } /* IE6 */ *+html .centered-pills ul.nav-pills { display:inline } /* IE7 */ .modal-body { max-height:600px } +.nav-list i[class^="icon-"] { margin:0;padding:0;text-align:center;width:16px } .pad { padding:12px } .pager { margin:0 0 8px 0 } .pointer { cursor:pointer } diff --git a/themes/bootstrap/templates/Recommend/FavoriteFacets.phtml b/themes/bootstrap/templates/Recommend/FavoriteFacets.phtml index cd221930b8e29cebfc5bc98c3cce5b7969a688b0..ea62ff471db583991d0424cb434c7d6b29abc1a7 100644 --- a/themes/bootstrap/templates/Recommend/FavoriteFacets.phtml +++ b/themes/bootstrap/templates/Recommend/FavoriteFacets.phtml @@ -9,6 +9,7 @@ <a href="<?=$this->url('userList', array('id' => $current['value']))?>"><?=$this->escapeHtml($current['displayText'])?> <span class="pull-right"><?=$this->escapeHtml($current['count'])?></span></a> </li> <? endforeach; ?> + <li><a href="<?=$this->url('editList', array('id'=>'NEW'))?>" title="<?=$this->transEsc('Create a List') ?>"><?=$this->transEsc('Create a List') ?> <span class="pull-right"><i class="icon-plus"></i></span></a></li> </ul> <? endif; ?>