Skip to content

Commit

Permalink
minor fixes for whitelist urls options
Browse files Browse the repository at this point in the history
  • Loading branch information
autonome committed Nov 29, 2018
1 parent 3233c5c commit e0752f8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions _locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"description": "Label for option for whether to put tabs to sleep in the active window."
},
"optionExcludedWebsites": {
"message": "Prevent the following websites from being retired",
"description": "Comma separated list of websites URLs."
"message": "Keep these URLs alive (separated by commas)",
"description": "Comma separated list of website URLs."
}
}
1 change: 0 additions & 1 deletion background.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@
for (let i in tabs) {
let tab = tabs[i];
if (websiteIsExcluded(tab)) {
console.log(tab.url, "excluded");
continue;
}
let isOld = await tabIsOld(tab.id);
Expand Down
10 changes: 8 additions & 2 deletions options.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,18 @@ div.dg.main li.save-row {
display: none;
}

/* set minimum width so that text field labels show completely */
/* set minimum width so that text field labels show reasonably */
#gui_css {
min-width: 300px;
min-width: 400px;
}

/* hide the close button entirely */
.dg.main .close-button {
display: none;
}

/* let property names expand to the size of their text contents */
.dg li:not(.folder) {
height: auto;
min-height: 27px;
}

0 comments on commit e0752f8

Please sign in to comment.