Navigation Menu

Skip to content

Commit

Permalink
Fixes CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
heynemann committed Jul 31, 2011
1 parent fa20f66 commit 304e53b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion myimgat/apps/wall/static/wall/css/crop-popin.css
Expand Up @@ -61,4 +61,12 @@
visibility: hidden;
}


.markup {
font-family: courier;
font-size: 13px;
background-color: #333;
color: white;
width: 580px;
height: 78px;
padding: 10px;
}
2 changes: 1 addition & 1 deletion myimgat/apps/wall/static/wall/js/crop-popin.js
Expand Up @@ -33,7 +33,6 @@
data["id"] = this.image.id;
data[this.token.get('name')] = this.token.get('value');
this.request.addEvent('success', function(url) {
self.shareArea.fade('out');
self.croppedLink.set('href', url);
self.croppedLink.set('text', self.image.title);
self.embedURL.set('text', url);
Expand All @@ -49,6 +48,7 @@
this.showTab(tab);
}
this.element.addClass('show');
this.shareArea.fade('out');
return this;
},

Expand Down
2 changes: 1 addition & 1 deletion myimgat/apps/wall/templates/wall/popin.html
Expand Up @@ -17,7 +17,7 @@ <h2>image title</h2>
<div class="share-details">
<h3>Share this url: <a href="#" target="_blank" class="url"></a></h3>
<h3>Embed:</h3>
<p>&lt;a href=&quot;<span class="comment-page"></span>&quot;&gt;&lt;img src=&quot;<span class="url"></span>&quot; alt=&quot;<span class="title"></span>&quot; /&gt;&lt;/a&gt;</p>
<p class="markup">&lt;a href=&quot;<span class="comment-page"></span>&quot;&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&lt;img <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;src=&quot;<span class="url"></span>&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;alt=&quot;<span class="title"></span>&quot; /&gt;<br />&lt;/a&gt;</p>
</div>
{% csrf_token %}
</div>
Expand Down

0 comments on commit 304e53b

Please sign in to comment.