Bug fixes
This commit is contained in:
parent
997aaa7f14
commit
461b7ccb88
|
@ -4,8 +4,10 @@ Search Firefox tabs and get a list or automatic direct to the searched tab.
|
||||||
# Download
|
# Download
|
||||||
https://addons.mozilla.org/en-US/firefox/addon/tab-search-and-manage/
|
https://addons.mozilla.org/en-US/firefox/addon/tab-search-and-manage/
|
||||||
|
|
||||||
# Version: 1.3.4
|
# Version: 1.3.5
|
||||||
Changed out tab control scheme.
|
* Fixed search backspaceing not working
|
||||||
|
* Fixed controls being over search bar
|
||||||
|
* applied thin scrollbar
|
||||||
|
|
||||||
***Note:
|
***Note:
|
||||||
To get tab hiding functionality, you must go to <b>about:config</b> and search for <b>extensions.webextensions.tabhide.enabled</b>. Set it to <b>true</b> by double clicking it. Then tabs can be shown or hidden via the eyes.
|
To get tab hiding functionality, you must go to <b>about:config</b> and search for <b>extensions.webextensions.tabhide.enabled</b>. Set it to <b>true</b> by double clicking it. Then tabs can be shown or hidden via the eyes.
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
|
/* System */
|
||||||
html, body { overflow-x: hidden; }
|
html, body { overflow-x: hidden; }
|
||||||
|
|
||||||
|
|
||||||
|
/* IDs */
|
||||||
#masterContainer, div[id*="listZone"], .block {
|
#masterContainer, div[id*="listZone"], .block {
|
||||||
display: block;
|
display: block;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
|
@ -13,6 +16,7 @@ html, body { overflow-x: hidden; }
|
||||||
|
|
||||||
#controls {
|
#controls {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
z-index: 999;
|
||||||
top: 0;
|
top: 0;
|
||||||
background: rgba(255,255,255, 1);
|
background: rgba(255,255,255, 1);
|
||||||
margin-left: 1.4em;
|
margin-left: 1.4em;
|
||||||
|
@ -20,10 +24,9 @@ html, body { overflow-x: hidden; }
|
||||||
|
|
||||||
#tabControls {
|
#tabControls {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
z-index: 120;
|
z-index: 555;
|
||||||
height: 128px;
|
height: 128px;
|
||||||
padding: 0em 0.4em 0.4em 0.4em;
|
padding: 0em 0.4em 0.4em 0.4em;
|
||||||
width: auto;
|
|
||||||
background-color: rgba(9,107,120, 0.85);
|
background-color: rgba(9,107,120, 0.85);
|
||||||
color: rgb(255,255,255);
|
color: rgb(255,255,255);
|
||||||
}
|
}
|
||||||
|
@ -51,7 +54,6 @@ html, body { overflow-x: hidden; }
|
||||||
}
|
}
|
||||||
|
|
||||||
#searchBar, #errorZone {
|
#searchBar, #errorZone {
|
||||||
z-index: 888;
|
|
||||||
width: 630px;
|
width: 630px;
|
||||||
background: rgb(255,255,255);
|
background: rgb(255,255,255);
|
||||||
color: rgba(9,107,120, 0.85);
|
color: rgba(9,107,120, 0.85);
|
||||||
|
@ -74,12 +76,15 @@ html, body { overflow-x: hidden; }
|
||||||
|
|
||||||
#listZone {
|
#listZone {
|
||||||
background-color: rgba(255,255,255, 1);
|
background-color: rgba(255,255,255, 1);
|
||||||
float: left;
|
max-height: 450px;
|
||||||
|
overflow: auto;
|
||||||
|
scroll-snap-type: y mandatory;
|
||||||
width: 630px;
|
width: 630px;
|
||||||
height: auto;
|
|
||||||
margin: 1.5em;
|
margin: 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Classes */
|
||||||
.block, .windowIdHeaders {
|
.block, .windowIdHeaders {
|
||||||
display: block;
|
display: block;
|
||||||
clear: right;
|
clear: right;
|
||||||
|
@ -110,6 +115,11 @@ html, body { overflow-x: hidden; }
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.scroller {
|
||||||
|
scrollbar-color: #00000084 #ffffff64;
|
||||||
|
scrollbar-width: thin;
|
||||||
|
}
|
||||||
|
|
||||||
.closeImg, .hiderImg {
|
.closeImg, .hiderImg {
|
||||||
padding: 0.2em;
|
padding: 0.2em;
|
||||||
width: 28px;
|
width: 28px;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"name": "Tab Search and Manage",
|
"name": "Tab Search and Manage",
|
||||||
"version": "1.3.4",
|
"version": "1.3.5",
|
||||||
"description": "This plugin can search, drag-n-drop ordering, and (un)hide all or some tabs.",
|
"description": "This plugin can search, drag-n-drop ordering, and (un)hide all or some tabs.",
|
||||||
|
|
||||||
"applications": {
|
"applications": {
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<input id="searchBar" type="text" placeholder="Search tabs..." value="" autofocus />
|
<input id="searchBar" type="text" placeholder="Search tabs..." value="" autofocus />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="listZone" class="container"></div>
|
<div id="listZone" class="container scroller"></div>
|
||||||
<div id="errorZone" style="display: none;"></div>
|
<div id="errorZone" style="display: none;"></div>
|
||||||
|
|
||||||
<div id="bottomControls">
|
<div id="bottomControls">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
document.getElementById("searchBar").onkeypress = function () {
|
document.getElementById("searchBar").onkeyup = function () {
|
||||||
searchTabs();
|
searchTabs();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue