Skip to content
Snippets Groups Projects
Commit eb7fb108 authored by Demian Katz's avatar Demian Katz
Browse files

Merge pull request #37 from crhallberg/newlist

Added new list button to MyResearch.
parents 98e07b4d 54a60f02
No related merge requests found
...@@ -16,6 +16,12 @@ ...@@ -16,6 +16,12 @@
(<?=$this->escapeHtml($current['count'])?>) (<?=$this->escapeHtml($current['count'])?>)
</li> </li>
<? endforeach; ?> <? 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> </ul>
</div> </div>
<? endif; ?> <? endif; ?>
......
...@@ -12,6 +12,7 @@ li a.hidden {display:none} ...@@ -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 } /* IE6 */
*+html .centered-pills ul.nav-pills { display:inline } /* IE7 */ *+html .centered-pills ul.nav-pills { display:inline } /* IE7 */
.modal-body { max-height:600px } .modal-body { max-height:600px }
.nav-list i[class^="icon-"] { margin:0;padding:0;text-align:center;width:16px }
.pad { padding:12px } .pad { padding:12px }
.pager { margin:0 0 8px 0 } .pager { margin:0 0 8px 0 }
.pointer { cursor:pointer } .pointer { cursor:pointer }
......
...@@ -9,6 +9,7 @@ ...@@ -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> <a href="<?=$this->url('userList', array('id' => $current['value']))?>"><?=$this->escapeHtml($current['displayText'])?> <span class="pull-right"><?=$this->escapeHtml($current['count'])?></span></a>
</li> </li>
<? endforeach; ?> <? 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> </ul>
<? endif; ?> <? endif; ?>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment