diff options
author | Egil Moeller <egil.moller@freecode.no> | 2010-03-27 19:05:32 +0100 |
---|---|---|
committer | Egil Moeller <egil.moller@freecode.no> | 2010-03-27 19:05:32 +0100 |
commit | 09cf289402efbd795616a121855a69c89f9678af (patch) | |
tree | fc895b6f53286ca7f53ad70ba874b374dd63c9d0 | |
parent | 986223d46f950105596890f2cb82eda0eea2f71b (diff) | |
download | etherpad-09cf289402efbd795616a121855a69c89f9678af.tar.gz etherpad-09cf289402efbd795616a121855a69c89f9678af.tar.xz etherpad-09cf289402efbd795616a121855a69c89f9678af.zip |
More styling of the tag browser
-rw-r--r-- | etherpad/src/plugins/twitterStyleTags/static/css/tagBrowser.css | 32 | ||||
-rw-r--r-- | etherpad/src/plugins/twitterStyleTags/templates/tagBrowser.ejs | 40 |
2 files changed, 35 insertions, 37 deletions
diff --git a/etherpad/src/plugins/twitterStyleTags/static/css/tagBrowser.css b/etherpad/src/plugins/twitterStyleTags/static/css/tagBrowser.css index 4234d03..d05ad63 100644 --- a/etherpad/src/plugins/twitterStyleTags/static/css/tagBrowser.css +++ b/etherpad/src/plugins/twitterStyleTags/static/css/tagBrowser.css @@ -1,3 +1,12 @@ +.padtag a, +.padtag a:visited, +a.padtag, +a.padtag:visited, +a.anti_padtag, +a.anti_padtag:visited { + line-height: 1.7em; +} + dt { padding-bottom: 2pt; } @@ -8,12 +17,7 @@ dd { } h1 { - font-size: 14pt; - margin-top: 10pt; -} - -h2 { - font-size: 10pt; + font-size: 12pt; margin-top: 5pt; } @@ -31,14 +35,12 @@ h2 { padding: 10pt; margin: 5pt; border: 1px solid #9C9C9C; + width: 40%; } .query-refiner h1 { - margin-top: 0; -} - -.query-refiner h2 { margin-bottom: 2pt; + margin-top: 0; } #home-newpad { @@ -65,4 +67,14 @@ h2 { -webkit-border-top-right-radius: 3pt; -webkit-border-bottom-left-radius: 3pt; -webkit-border-bottom-right-radius: 3pt; +} + +#editbarinner { + line-height: 36px; + font-size: 16px; + padding-left: 6pt; +} + +#editbarinner a { + font-size: 12px; }
\ No newline at end of file diff --git a/etherpad/src/plugins/twitterStyleTags/templates/tagBrowser.ejs b/etherpad/src/plugins/twitterStyleTags/templates/tagBrowser.ejs index 024ec9b..74f721a 100644 --- a/etherpad/src/plugins/twitterStyleTags/templates/tagBrowser.ejs +++ b/etherpad/src/plugins/twitterStyleTags/templates/tagBrowser.ejs @@ -76,47 +76,33 @@ limitations under the License. */ %> <div id="editbarright"><!-- --></div> <div id="editbarinner"> - <a unselectable="on" href="javascript:void (window.pad&&pad.editbarClick('bold'));" class="editbarbutton bold" title="Bold (ctrl-B)"> </a> - <a unselectable="on" href="javascript:void (window.pad&&pad.editbarClick('italic'));" class="editbarbutton italic" title="Italics (ctrl-I)"> </a> - <a unselectable="on" href="javascript:void (window.pad&&pad.editbarClick('underline'));" class="editbarbutton underline" title="Underline (ctrl-U)"> </a> - <a unselectable="on" href="javascript:void (window.pad&&pad.editbarClick('strikethrough'));" class="editbarbutton strikethrough" title="Strikethrough"> </a> - <a unselectable="on" href="javascript:void (window.pad&&pad.editbarClick('clearauthorship'));" class="editbarbutton clearauthorship" title="Clear Authorship Colors"> </a> - <a unselectable="on" href="javascript:void (window.pad&&pad.editbarClick('undo'));" class="editbarbutton undo" title="Undo (ctrl-Z)"> </a> - <a unselectable="on" href="javascript:void (window.pad&&pad.editbarClick('redo'));" class="editbarbutton redo" title="Redo (ctrl-Y)"> </a> - <a unselectable="on" href="javascript:void (window.pad&&pad.editbarClick('insertunorderedlist'));" class="editbarbutton insertunorderedlist" title="Toggle Bullet List"> </a> - <a unselectable="on" href="javascript:void (window.pad&&pad.editbarClick('indent'));" class="editbarbutton indent" title="Indent List"> </a> - <a unselectable="on" href="javascript:void (window.pad&&pad.editbarClick('outdent'));" class="editbarbutton outdent" title="Unindent List"> </a> - <a unselectable="on" href="javascript:void (window.pad&&pad.editbarClick('save'));" class="editbarbutton save" title="Save Revision"> </a> + Query: + <% if (tags.length == 0 && antiTags.length == 0) { %> + Please select some tags below to browse for pads + <% } else { %> + <% for (i = 0; i < tags.length; i++) { %> + <a href="/ep/tag/?query=<%= tagsToQuery(tags.filter(function (tag) { return tag != tags[i]}), antiTags) %>" class="padtag" title="<%= tags[i] %> matches">#<%= tags[i] %></a> + <% } %> + <% for (i = 0; i < antiTags.length; i++) { %> + <a href="/ep/tag/?query=<%= tagsToQuery(tags, antiTags.filter(function (tag) { return tag != antiTags[i]})) %>" class="anti_padtag" title="<%= antiTags[i] %> matches">!#<%= antiTags[i] %></a> + <% } %> + <% } %> </div> </div> <div style="height: 268px;" id="editorcontainerbox"> <div id="editorcontainer" style="padding:5pt; height: 600pt;"> <div class="query-refiner"> - <h1>Refine your query</h1> - <h2>Search for pads that have the tag</h2> + <h1>Search for pads that have the tag</h1> <% for (i = 0; i < newTags.length; i++) { %> <a href="/ep/tag/?query=<%= tagsToQuery(tags.concat([newTags[i].tagname]),antiTags) %>" class="padtag" title="<%= newTags[i].matches %> matches">#<%= newTags[i].tagname %></a> <% } %> - <h2>Search for pads that <em>don't</em> have the tag</h2> + <h1>Search for pads that <em>don't</em> have the tag</h1> <% for (i = 0; i < newTags.length; i++) { %> <a href="/ep/tag/?query=<%= tagsToQuery(tags,antiTags.concat([newTags[i].tagname])) %>" class="anti_padtag" title="<%= newTags[i].antimatches %> matches">!#<%= newTags[i].tagname %></a> <% } %> </div> - <span class="label">Current query:</span> - <% if (tags.length == 0 && antiTags.length == 0) { %> - < No current query; please select some tags below to search for pads > - <% } else { %> - <% for (i = 0; i < tags.length; i++) { %> - <a href="/ep/tag/?query=<%= tagsToQuery(tags.filter(function (tag) { return tag != tags[i]}), antiTags) %>" class="padtag" title="<%= tags[i] %> matches">#<%= tags[i] %></a> - <% } %> - <% for (i = 0; i < antiTags.length; i++) { %> - <a href="/ep/tag/?query=<%= tagsToQuery(tags, antiTags.filter(function (tag) { return tag != antiTags[i]})) %>" class="anti_padtag" title="<%= antiTags[i] %> matches">!#<%= antiTags[i] %></a> - <% } %> - <% } %> - - <h1>Matching pads</h1> <dl> <% for (i = 0; i < matchingPads.length; i++) { %> <% |