Skip to content

Commit

Permalink
add tags hint
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspeklak committed May 22, 2013
1 parent 4c1fbdd commit 0e91539
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
11 changes: 11 additions & 0 deletions public/stylesheets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ a {
.tags {
margin: 1em 0;
color: darkgreen;
position:relative;
}
.tags h2 {
font-size: 14px;
Expand All @@ -14,6 +15,16 @@ a {
display: inline-block;
min-width:10px;
}

.tags:after{
position:absolute;
top: 3em;
left: 0;
color: #ccc;
font-size:9px;
content: "add tags as comma separated list";
}

.drop-here {
border: 5px dashed #ccc;
margin-top: 2em;
Expand Down
5 changes: 4 additions & 1 deletion views/layout.jade
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ html
link(rel='stylesheet', href='/stylesheets/style.css')
style
.content:before{
content: "#{__("drop-images-and-other-media")}"
content: "#{__("drop-images-and-other-media")}";
}
.tags:after {
content: "#{__("tags-description")}";
}
script(type='text/javascript', src='/vendor/requirejs/require.min.js')
script(type='text/javascript', src='/vendor/sprintf.min.js')
Expand Down

0 comments on commit 0e91539

Please sign in to comment.