SHOW:
|
|
- or go back to the newest paste.
| 1 | @layout.latte | |
| 2 | ||
| 3 | <div id ="artIconMenu"> | |
| 4 | {include Panel/iconMenu.latte}
| |
| 5 | </div> | |
| 6 | ||
| 7 | iconMenu.latte | |
| 8 | <a n:href="Articles:addArticle" class="btn-add"></a> | |
| 9 | <a n:href="Articles:edit" class="btn-edit"></a> | |
| 10 | ||
| 11 | CSS | |
| 12 | ||
| 13 | #artIconMenu | |
| 14 | {
| |
| 15 | ||
| 16 | float:right; | |
| 17 | } | |
| 18 | ||
| 19 | #articonmenu a {
| |
| 20 | display:block; | |
| 21 | width:50px; | |
| 22 | height:50px; | |
| 23 | } | |
| 24 | ||
| 25 | ||
| 26 | .btn-add | |
| 27 | {
| |
| 28 | background:url(../images/icons/edit.png) no-repeat; | |
| 29 | } | |
| 30 | .btn-edit | |
| 31 | {
| |
| 32 | background:url(../images/icons/edit.png) no-repeat; | |
| 33 | } |