Changed theme to differentiate from Tab Groups plugin.

This commit is contained in:
Maxim Stewart 2018-05-16 17:27:26 -05:00
parent b3ed754fc4
commit 38972fd87c
15 changed files with 19 additions and 26 deletions

View File

@ -4,13 +4,12 @@ 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-smarter/ https://addons.mozilla.org/en-US/firefox/addon/tab-search-smarter/
# Version: 1.2.0 # Version: 1.2.2
Changed how new-tab works in the plugin... Changed theme to differentiate from Tab Groups plugin.
# Images # Images
![1 new list style](images/pic3.jpg) ![1 Default list style without interacting with tab. ](images/pic1.png)
![2 new search stylelit](images/pic4.jpg) ![2 Hovoring on tab. ](images/pic2.png)
![3 drag and drop functionality](images/pic5.jpg) ![3 List of tabs matching search. ](images/pic3.png)
![4 old list style](images/pic1.jpg) ![4 Search failed response. ](images/pic4.png)
![5 old search style](images/pic2.jpg)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 77 KiB

BIN
images/pic1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

BIN
images/pic2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 192 KiB

BIN
images/pic3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 213 KiB

BIN
images/pic4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 196 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

View File

@ -8,8 +8,7 @@ html, body {
} }
#masterContainer { #masterContainer {
background-image: url("../backgrounds/bg1.jpg"); background: radial-gradient(circle,#000000,#676767);
background-repeat: repeat;
width: 710px; width: 710px;
height: auto; height: auto;
} }
@ -18,13 +17,13 @@ html, body {
position: fixed; position: fixed;
top: 0; top: 0;
background: rgba(255,255,255, 1); background: rgba(255,255,255, 1);
margin-left: 1.5em; margin-left: 1.4em;
} }
#udArrows { #udArrows {
position: fixed; position: fixed;
bottom: 0; bottom: 0;
margin-left: 40%; margin-left: 36%;
} }
#udArrows button { #udArrows button {
@ -44,12 +43,12 @@ html, body {
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);
border-color: rgba(9,107,120, 0.85);
text-align: center; text-align: center;
border-color: rgba(0,0,0, 0.85);
border-style: solid;
} }
#searchBar { #searchBar {
border-style: solid;
padding: 0.5em; padding: 0.5em;
font-size: 2em; font-size: 2em;
} }
@ -57,12 +56,12 @@ html, body {
#errorZone { #errorZone {
color: red; color: red;
border-style: dotted; border-style: dotted;
margin: 6em 0em 0em 2em; margin: 6em 0em 2em 2em;
padding: 0.5em 0em 0.5em 0em; padding: 0.5em 0em 0.5em 0em;
} }
#listZone { #listZone {
background-color: rgba(9,107,120, 0.85); background-color: rgba(255,255,255, 1);
float: left; float: left;
width: 630px; width: 630px;
height: auto; height: auto;
@ -71,7 +70,7 @@ html, body {
.block { .block {
display: block; display: block;
background-color: rgba(158, 181, 219, 0.53); background-color: rgba(89, 89, 89, 0.8);
color: rgba(255,255,255,1); color: rgba(255,255,255,1);
float: left; float: left;
width: 125px; width: 125px;
@ -82,8 +81,8 @@ html, body {
} }
.block:hover { .block:hover {
cursor: pointer; cursor: pointer;
background-color: rgba(255, 255, 255, 0.8); background-color: rgba(152, 152, 152, 0.8);
color: rgba(64,64,64, 0.84); color: rgba(255, 255, 255, 0.84);
} }
.block-focused { .block-focused {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 420 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 446 B

View File

@ -1,7 +1,7 @@
{ {
"manifest_version": 2, "manifest_version": 2,
"name": "Tab Search", "name": "Tab Search",
"version": "1.2.0", "version": "1.2.2",
"description": "Search Tabs and switch to them quickly.", "description": "Search Tabs and switch to them quickly.",
"applications": { "applications": {
@ -16,14 +16,9 @@
"96": "icons/tabsSearch_96.png" "96": "icons/tabsSearch_96.png"
}, },
"web_accessible_resources": [ "web_accessible_resources": [ "icons/*.png" ],
"icons/*.png",
"backgrounds/*.jpg"
],
"permissions": [ "permissions": [ "tabs" ],
"tabs"
],
"browser_action": { "browser_action": {
"default_icon": "icons/tabsSearch_48.png", "default_icon": "icons/tabsSearch_48.png",