-rw-r--r-- | content/fireflix-panel.xul | 29 | ||||
-rw-r--r-- | content/fireflix.css | 4 | ||||
-rw-r--r-- | locale/en-US/fireflix.dtd | 4 |
3 files changed, 22 insertions, 15 deletions
diff --git a/content/fireflix-panel.xul b/content/fireflix-panel.xul index b961edb..2356c82 100644 --- a/content/fireflix-panel.xul +++ b/content/fireflix-panel.xul @@ -97,22 +97,24 @@ </popup> </popupset> <vbox class="wholething" flex="1"> <groupbox context="auth_menu"> <caption label="&panel.auth_info;"/> <hbox> - <label id="auth_info" value="&panel.no_auth_info;" flex="1" disabled="true" crop="end"/> - <button id="b_auth" command="cmd_auth_auth"/> - <button id="b_auth_done" command="cmd_auth_done" hidden="true"/> - <button command="cmd_auth_open_flickr" + <vbox pack="center" flex="1"> + <label id="auth_info" value="&panel.no_auth_info;" disabled="true" crop="end"/> + </vbox> + <button class="lean" id="b_auth" command="cmd_auth_auth"/> + <button class="lean" id="b_auth_done" command="cmd_auth_done" hidden="true"/> + <button class="lean" command="cmd_auth_open_flickr" tooltiptext="&panel.auth.flickr.tip;"/> - <button command="cmd_help"/> + <button class="lean" command="cmd_help"/> </hbox> </groupbox> <tabbox flex="1" id="fireflix_tabs"> <tabs> <tab label="&panel.tabs.search;"/> <tab label="&panel.tabs.sets;"/> @@ -121,35 +123,36 @@ </tabs> <tabpanels flex="1"> <tabpanel id="tabpanel_search" flex="1"> <vbox flex="1"> <groupbox class="search_params" orient="vertical" onkeypress="if(event.keyCode==event.DOM_VK_RETURN) fireflix.foundphotos.search_photos()"> <hbox> - <label control="search_for" value="&panel.search.search_for.label;" - accesskey="s"/> + <vbox pack="center"> + <label control="search_for" value="&panel.search.search_for.label;" accesskey="s"/> + </vbox> <textbox id="search_for" flex="1"/> </hbox> <hbox> <checkbox id="search_tags" label="&panel.search.mode.tagsonly.label;" tooltiptext="&panel.search.mode.tagsonly.tip;" checked="false" accesskey="t" /> <checkbox id="search_mine" label="&panel.search.mode.mine.label;" checked="true" accesskey="m"/> <spacer flex="1"/> - <button command="cmd_search"/> + <button class="lean" command="cmd_search"/> </hbox> </groupbox> <hbox> - <button command="cmd_search_prev_page"/> + <button class="lean" command="cmd_search_prev_page"/> <spacer flex="1"/> <label id="search_page" hidden="true"/> <spacer flex="1"/> - <button command="cmd_search_next_page"/> + <button class="lean" command="cmd_search_next_page"/> </hbox> <tree id="searchresults" rows="2" flex="1" onselect="fireflix.foundphotos.on_select()" ondblclick="fireflix.foundphotos.on_cmd_open(event)" onkeypress="if(event.keyCode==event.DOM_VK_RETURN) fireflix.foundphotos.on_cmd_open(event)"> <treecols> <treecol id="sr_title" label="&panel.search.col.title.label;" flex="2" crop="end" align="start" /> @@ -265,21 +268,21 @@ <textbox id="upload_tags" oninput="fireflix.uploads.propsToSel('tags')"/> </row> <!-- TODO: description, public, friend, family --> </rows> </grid> </groupbox> <hbox> - <button command="cmd_uploads_add" /> + <button class="lean" command="cmd_uploads_add" /> <spacer flex="1"/> - <button command="cmd_uploads_remove" /> + <button class="lean" command="cmd_uploads_remove" /> <spacer flex="1"/> - <button command="cmd_uploads_clear" /> + <button class="lean" command="cmd_uploads_clear" /> </hbox> <hbox pack="center"> <button command="cmd_uploads_upload" flex="1"/> </hbox> </vbox> </tabpanel> </tabpanels> diff --git a/content/fireflix.css b/content/fireflix.css index 47455f6..4fba5d3 100644 --- a/content/fireflix.css +++ b/content/fireflix.css @@ -115,8 +115,12 @@ html p { html div.copyright { font-size: 60%; text-align: right; } html div.copyright a { text-decoration: none; } + +button.lean { + min-width: 1ex; +} diff --git a/locale/en-US/fireflix.dtd b/locale/en-US/fireflix.dtd index 88ec6fb..0e158c3 100644 --- a/locale/en-US/fireflix.dtd +++ b/locale/en-US/fireflix.dtd @@ -30,18 +30,18 @@ <!ENTITY panel.search.cmd_search.label "Search" > <!ENTITY panel.search.search_for.label "Search for:" > <!ENTITY panel.search.mode.tagsonly.label "tags"> <!ENTITY panel.search.mode.tagsonly.tip "Search tags only"> <!ENTITY panel.search.mode.mine.label "mine"> <!ENTITY panel.search.col.title.label "Title"> <!ENTITY panel.search.cmd_search_open.label "Open"> -<!ENTITY panel.search.cmd_search_prev_page.label "«"> -<!ENTITY panel.search.cmd_search_next_page.label "»"> +<!ENTITY panel.search.cmd_search_prev_page.label " « "> +<!ENTITY panel.search.cmd_search_next_page.label " » "> <!ENTITY panel.sets.name.label "Set"> <!ENTITY panel.sets.name.tip "Photoset name"> <!ENTITY panel.sets.photos.label "Photos"> <!ENTITY panel.sets.photos.tip "Number of photos in set"> <!ENTITY panel.sets.cmd_refresh_sets "Refresh"> <!ENTITY panel.sets.cmd_properties "Properties"> |