Merge pull request #67 from hideheader/menu-item-order

[option] List actions before styles in the popup
This commit is contained in:
Jason Barnabe 2015-03-15 12:40:54 -05:00
commit 8811e9d441
6 changed files with 49 additions and 9 deletions

View File

@ -185,6 +185,10 @@
"message": "Options", "message": "Options",
"description": "Heading for options section on manage page." "description": "Heading for options section on manage page."
}, },
"popupStylesFirst": {
"message": "List styles before commands in the toolbar button menu",
"description": "Label for the checkbox controlling section order in the toolbar button menu."
},
"prefShowBadge": { "prefShowBadge": {
"message": "Show number of styles active for the current site on the toolbar button", "message": "Show number of styles active for the current site on the toolbar button",
"description": "Label for the checkbox controlling toolbar badge text." "description": "Label for the checkbox controlling toolbar badge text."

View File

@ -91,6 +91,7 @@
.update-done .check-update { .update-done .check-update {
display: none; display: none;
} }
.hidden {display: none}
@media(max-width:675px) { @media(max-width:675px) {
#header { #header {
@ -143,6 +144,7 @@
<div id="options"> <div id="options">
<h2 id="options-heading"></h2> <h2 id="options-heading"></h2>
<input id="show-badge" type="checkbox"><label id="show-badge-label" for="show-badge"></label> <input id="show-badge" type="checkbox"><label id="show-badge-label" for="show-badge"></label>
<div><input id="popup.stylesFirst" type="checkbox"><label id="stylesFirst-label" for="popup.stylesFirst"></label></div>
</div> </div>
</div> </div>
<div id="installed"></div> <div id="installed"></div>

View File

@ -348,6 +348,7 @@ tE("show-badge-label", "prefShowBadge");
tE("manage.onlyEnabled-label", "manageOnlyEnabled"); tE("manage.onlyEnabled-label", "manageOnlyEnabled");
tE("manage.onlyEdited-label", "manageOnlyEdited"); tE("manage.onlyEdited-label", "manageOnlyEdited");
tE("filters", "manageFilters"); tE("filters", "manageFilters");
tE("stylesFirst-label", "popupStylesFirst");
document.getElementById("check-all-updates").addEventListener("click", checkUpdateAll, false); document.getElementById("check-all-updates").addEventListener("click", checkUpdateAll, false);
@ -363,3 +364,5 @@ function initFilter(className, node) {
} }
initFilter("enabled-only", document.getElementById("manage.onlyEnabled")); initFilter("enabled-only", document.getElementById("manage.onlyEnabled"));
initFilter("edited-only", document.getElementById("manage.onlyEdited")); initFilter("edited-only", document.getElementById("manage.onlyEdited"));
loadPrefs({"popup.stylesFirst": true});

View File

@ -21,17 +21,47 @@
a, a:visited { a, a:visited {
color: black; color: black;
} }
.entry { .entry {
padding-bottom: 0.5em; padding: 0.5em 0;
margin-bottom: 0.5em;
border-bottom: 1px solid black; border-bottom: 1px solid black;
} }
.entry:first-child {
padding-top: 0;
}
.entry:last-child {
border-bottom: none;
}
body > DIV {
border-bottom: 1px solid black;
}
body > DIV:last-of-type,
body.blocked > DIV {
border-bottom: none;
}
#installed {
margin-top: 0.5em;
}
body > .actions {
margin-top: 0.5em;
}
.actions > div, #unavailable { .actions > div, #unavailable {
margin-bottom: 0.75em; margin-bottom: 0.75em;
} }
#unavailable { #unavailable {
border: none;
}
#unavailable:empty {
display: none; display: none;
} }
body.blocked #installed,
body.blocked #find-styles,
body.blocked #write-style {
display: none;
}
/* Never shown, but can be enabled with a style */ /* Never shown, but can be enabled with a style */
.enable, .disable { .enable, .disable {
display: none; display: none;

View File

@ -4,15 +4,16 @@ styleTemplate.innerHTML = "<input class='checker' type='checkbox'><div class='st
var writeStyleTemplate = document.createElement("a"); var writeStyleTemplate = document.createElement("a");
writeStyleTemplate.className = "write-style-link"; writeStyleTemplate.className = "write-style-link";
if (!prefs.getPref("popup.stylesFirst")) {
document.body.insertBefore(document.querySelector("body > .actions"), document.getElementById("installed"));
}
chrome.tabs.getSelected(null, function(tab) { chrome.tabs.getSelected(null, function(tab) {
var urlWillWork = /^(file|http|https|chrome\-extension):.*/.exec(tab.url); var urlWillWork = /^(file|http|https|chrome\-extension):/.exec(tab.url);
if (!urlWillWork) { if (!urlWillWork) {
["installed", "find-styles", "write-style"].forEach(function(id) { document.body.classList.add("blocked");
document.getElementById(id).style.display = "none"; tE("unavailable", "stylishUnavailableForURL");
});
document.getElementById("unavailable").style.display = "block";
return;
} }
chrome.extension.sendMessage({method: "getStyles", matchUrl: tab.url}, showStyles); chrome.extension.sendMessage({method: "getStyles", matchUrl: tab.url}, showStyles);
@ -178,7 +179,6 @@ function handleDelete(id) {
tE("open-manage-link", "openManage"); tE("open-manage-link", "openManage");
tE("write-style-for", "writeStyleFor"); tE("write-style-for", "writeStyleFor");
tE("find-styles-link", "findStylesForSite"); tE("find-styles-link", "findStylesForSite");
tE("unavailable", "stylishUnavailableForURL");
["find-styles-link", "open-manage-link"].forEach(function(id) { ["find-styles-link", "open-manage-link"].forEach(function(id) {
document.getElementById(id).addEventListener("click", openLink, false); document.getElementById(id).addEventListener("click", openLink, false);

View File

@ -166,6 +166,7 @@ var prefs = {
"popup.breadcrumbs": true, // display "New style" links as URL breadcrumbs "popup.breadcrumbs": true, // display "New style" links as URL breadcrumbs
"popup.breadcrumbs.usePath": false, // use URL path for "this URL" "popup.breadcrumbs.usePath": false, // use URL path for "this URL"
"popup.enabledFirst": true, // display enabled styles before disabled styles "popup.enabledFirst": true, // display enabled styles before disabled styles
"popup.stylesFirst": true, // display enabled styles before disabled styles
"manage.onlyEnabled": false, // display only enabled styles "manage.onlyEnabled": false, // display only enabled styles
"manage.onlyEdited": false, // display only styles created locally "manage.onlyEdited": false, // display only styles created locally