Skip to content
This repository has been archived by the owner on Mar 15, 2018. It is now read-only.

Commit

Permalink
featured app tool fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
spasovski committed Dec 13, 2012
1 parent 3d9eff9 commit 299b0e0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
12 changes: 7 additions & 5 deletions media/css/zamboni/admin_features.css
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,6 @@ th {
margin-left: 4px;
vertical-align: middle;
}
.featured-app .dashboard a {
position: relative;
top: 3px;
}
.featured-app .dashboard a:hover {
text-decoration: none;
}
Expand Down Expand Up @@ -235,7 +231,13 @@ ul.ui-autocomplete {
.ui-datepicker .ui-datepicker-header {
height: 25px;
}

.featured-app .manage-link {
text-indent: -9999px;
display: inline-block;
width: 23px;
height: 23px;
background: url(../../img/mkt/icons/settings.png) no-repeat 0 -24px;
}
.localepicker {
height: 150px;
}
9 changes: 4 additions & 5 deletions mkt/zadmin/templates/zadmin/featured_apps_ajax.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@
<img src="{{ row.app.icon_url }}" class="logo">
<h2><a href="{{ row.app.get_detail_url() }}">{{ row.app.name }}</a></h2>
<div class="dashboard">
<a href="{{ row.app.get_dev_url() }}">
<img alt="{{ _('Manage featured graphics') }}"
title="{{ _('Manage featured graphics') }}"
src="{{ MEDIA_URL }}img/mkt/icons/settings.png">
<a href="{{ row.app.get_dev_url() }}"
title="Manage featured graphics" class="manage-link">
manage
</a>
{% if not row.app.promo %}
<em class="icon warning"
Expand Down Expand Up @@ -42,7 +41,7 @@ <h2><a href="{{ row.app.get_detail_url() }}">{{ row.app.name }}</a></h2>
</ul>
<p>
<label for="localepicker">{{ _('Regions / Carriers') }}</label>
<select class="localepicker" multiple id="localepicker">
<select class="localepicker" multiple>
{%- for locName, loc in regions -%}
<option value="{{ loc.id }}"
{{- " selected" if loc.id in selected_regions -}}
Expand Down

0 comments on commit 299b0e0

Please sign in to comment.