From e1cbd4761352292c2ecbde60dfbc1bfe2876df01 Mon Sep 17 00:00:00 2001 From: robert Date: Tue, 14 Jan 2003 22:14:41 +0000 Subject: [PATCH] add navigation buttons, as well as downloads, history, and print. make big home icon bigger --- EarlyBlue/browser/browser.css | 72 +++++++----------- EarlyBlue/browser/icons/back-disabled.gif | Bin 0 -> 95 bytes .../browser/icons/back-small-disabled.gif | Bin 0 -> 102 bytes EarlyBlue/browser/icons/back-small.gif | Bin 0 -> 102 bytes EarlyBlue/browser/icons/back.gif | Bin 0 -> 95 bytes .../browser/icons/downloads-disabled.gif | Bin 0 -> 100 bytes .../icons/downloads-small-disabled.gif | Bin 0 -> 82 bytes EarlyBlue/browser/icons/downloads-small.gif | Bin 0 -> 82 bytes EarlyBlue/browser/icons/downloads.gif | Bin 0 -> 100 bytes EarlyBlue/browser/icons/forward-disabled.gif | Bin 0 -> 98 bytes .../browser/icons/forward-small-disabled.gif | Bin 0 -> 102 bytes EarlyBlue/browser/icons/forward-small.gif | Bin 0 -> 102 bytes EarlyBlue/browser/icons/forward.gif | Bin 0 -> 98 bytes EarlyBlue/browser/icons/history-disabled.gif | Bin 0 -> 106 bytes .../browser/icons/history-small-disabled.gif | Bin 0 -> 83 bytes EarlyBlue/browser/icons/history-small.gif | Bin 0 -> 83 bytes EarlyBlue/browser/icons/history.gif | Bin 0 -> 106 bytes EarlyBlue/browser/icons/home-disabled.gif | Bin 98 -> 101 bytes EarlyBlue/browser/icons/home.gif | Bin 98 -> 101 bytes EarlyBlue/browser/icons/print-disabled.gif | Bin 0 -> 95 bytes .../browser/icons/print-small-disabled.gif | Bin 0 -> 105 bytes EarlyBlue/browser/icons/print-small.gif | Bin 0 -> 80 bytes EarlyBlue/browser/icons/print.gif | Bin 0 -> 95 bytes EarlyBlue/browser/icons/reload-disabled.gif | Bin 0 -> 102 bytes .../browser/icons/reload-small-disabled.gif | Bin 0 -> 80 bytes EarlyBlue/browser/icons/reload-small.gif | Bin 0 -> 80 bytes EarlyBlue/browser/icons/reload.gif | Bin 0 -> 102 bytes EarlyBlue/browser/icons/stop-disabled.gif | Bin 0 -> 92 bytes .../browser/icons/stop-small-disabled.gif | Bin 0 -> 106 bytes EarlyBlue/browser/icons/stop-small.gif | Bin 0 -> 106 bytes EarlyBlue/browser/icons/stop.gif | Bin 0 -> 92 bytes 31 files changed, 28 insertions(+), 44 deletions(-) create mode 100755 EarlyBlue/browser/icons/back-disabled.gif create mode 100644 EarlyBlue/browser/icons/back-small-disabled.gif create mode 100644 EarlyBlue/browser/icons/back-small.gif create mode 100755 EarlyBlue/browser/icons/back.gif create mode 100644 EarlyBlue/browser/icons/downloads-disabled.gif create mode 100644 EarlyBlue/browser/icons/downloads-small-disabled.gif create mode 100644 EarlyBlue/browser/icons/downloads-small.gif create mode 100644 EarlyBlue/browser/icons/downloads.gif create mode 100755 EarlyBlue/browser/icons/forward-disabled.gif create mode 100644 EarlyBlue/browser/icons/forward-small-disabled.gif create mode 100644 EarlyBlue/browser/icons/forward-small.gif create mode 100755 EarlyBlue/browser/icons/forward.gif create mode 100644 EarlyBlue/browser/icons/history-disabled.gif create mode 100644 EarlyBlue/browser/icons/history-small-disabled.gif create mode 100644 EarlyBlue/browser/icons/history-small.gif create mode 100644 EarlyBlue/browser/icons/history.gif create mode 100755 EarlyBlue/browser/icons/print-disabled.gif create mode 100644 EarlyBlue/browser/icons/print-small-disabled.gif create mode 100644 EarlyBlue/browser/icons/print-small.gif create mode 100755 EarlyBlue/browser/icons/print.gif create mode 100644 EarlyBlue/browser/icons/reload-disabled.gif create mode 100644 EarlyBlue/browser/icons/reload-small-disabled.gif create mode 100644 EarlyBlue/browser/icons/reload-small.gif create mode 100755 EarlyBlue/browser/icons/reload.gif create mode 100755 EarlyBlue/browser/icons/stop-disabled.gif create mode 100644 EarlyBlue/browser/icons/stop-small-disabled.gif create mode 100644 EarlyBlue/browser/icons/stop-small.gif create mode 100755 EarlyBlue/browser/icons/stop.gif diff --git a/EarlyBlue/browser/browser.css b/EarlyBlue/browser/browser.css index 98fbad31..ca12ea51 100644 --- a/EarlyBlue/browser/browser.css +++ b/EarlyBlue/browser/browser.css @@ -192,32 +192,32 @@ toolbar[mode="text"] .toolbarbutton-text { #back-button { /* -moz-binding: url("chrome://browser/skin/browser.xml#toolbar-menu-button"); */ - list-style-image: url("chrome://browser/skin/back.gif"); + list-style-image: url("chrome://browser/skin/icons/back.gif"); } #back-button[disabled="true"] { - list-style-image: url("chrome://browser/skin/back-disabled.gif"); + list-style-image: url("chrome://browser/skin/icons/back-disabled.gif"); } #forward-button { /* -moz-binding: url("chrome://browser/skin/browser.xml#toolbar-menu-button"); */ - list-style-image: url("chrome://browser/skin/forward.gif"); + list-style-image: url("chrome://browser/skin/icons/forward.gif"); } #forward-button[disabled="true"] { - list-style-image: url("chrome://browser/skin/forward-disabled.gif"); + list-style-image: url("chrome://browser/skin/icons/forward-disabled.gif"); } #reload-button { - list-style-image: url("chrome://browser/skin/reload.gif"); + list-style-image: url("chrome://browser/skin/icons/reload.gif"); } #reload-button[disabled="true"] { - list-style-image: url("chrome://browser/skin/reload-disabled.gif"); + list-style-image: url("chrome://browser/skin/icons/reload-disabled.gif"); } #stop-button { - list-style-image: url("chrome://browser/skin/stop.gif"); + list-style-image: url("chrome://browser/skin/icons/stop.gif"); } #stop-button[disabled="true"] { - list-style-image: url("chrome://browser/skin/stop-disabled.gif"); + list-style-image: url("chrome://browser/skin/icons/stop-disabled.gif"); } #home-button { @@ -228,10 +228,10 @@ toolbar[mode="text"] .toolbarbutton-text { } #print-button { - list-style-image: url("chrome://browser/skin/print.gif"); + list-style-image: url("chrome://browser/skin/icons/print.gif"); } #print-button[disabled="true"] { - list-style-image: url("chrome://browser/skin/print-disabled.gif"); + list-style-image: url("chrome://browser/skin/icons/print-disabled.gif"); } #new-tab-button { @@ -257,14 +257,10 @@ toolbar[mode="text"] .toolbarbutton-text { } #downloads-button { - -moz-image-region: rect(0px 192px 32px 160px); -} -#downloads-button:hover, -#downloads-button[checked="true"] { - -moz-image-region: rect(32px 192px 64px 160px); + list-style-image: url("chrome://browser/skin/icons/downloads.gif"); } #downloads-button[disabled="true"] { - -moz-image-region: rect(64px 192px 96px 160px); + list-style-image: url("chrome://browser/skin/icons/downloads-disabled.gif"); } #bookmarks-button { @@ -275,14 +271,10 @@ toolbar[mode="text"] .toolbarbutton-text { } #history-button { - -moz-image-region: rect(0px 224px 32px 192px); -} -#history-button:hover, -#history-button[checked="true"] { - -moz-image-region: rect(32px 224px 64px 192px); + list-style-image: url("chrome://browser/skin/icons/history.gif"); } #history-button[disabled="true"] { - -moz-image-region: rect(64px 224px 96px 192px); + list-style-image: url("chrome://browser/skin/icons/history-disabled.gif"); } @@ -293,31 +285,31 @@ toolbar[iconsize="small"] .toolbarbutton-1 { } toolbar[iconsize="small"] #back-button { - list-style-image: url("chrome://browser/skin/back.gif"); + list-style-image: url("chrome://browser/skin/icons/back-small.gif"); } toolbar[iconsize="small"] #back-button[disabled="true"] { - list-style-image: url("chrome://browser/skin/back-disabled.gif"); + list-style-image: url("chrome://browser/skin/icons/back-small-disabled.gif"); } toolbar[iconsize="small"] #forward-button { - list-style-image: url("chrome://browser/skin/forward.gif"); + list-style-image: url("chrome://browser/skin/icons/forward-small.gif"); } toolbar[iconsize="small"] #forward-button[disabled="true"] { - list-style-image: url("chrome://browser/skin/forward-disabled.gif"); + list-style-image: url("chrome://browser/skin/icons/forward-small-disabled.gif"); } toolbar[iconsize="small"] #reload-button { - list-style-image: url("chrome://browser/skin/reload.gif"); + list-style-image: url("chrome://browser/skin/icons/reload-small.gif"); } toolbar[iconsize="small"] #reload-button[disabled="true"] { - list-style-image: url("chrome://browser/skin/reload-disabled.gif"); + list-style-image: url("chrome://browser/skin/icons/reload-small-disabled.gif"); } toolbar[iconsize="small"] #stop-button { - list-style-image: url("chrome://browser/skin/stop.gif"); + list-style-image: url("chrome://browser/skin/icons/stop-small.gif"); } toolbar[iconsize="small"] #stop-button[disabled="true"] { - list-style-image: url("chrome://browser/skin/stop-disabled.gif"); + list-style-image: url("chrome://browser/skin/icons/stop-small-disabled.gif"); } toolbar[iconsize="small"] #home-button { @@ -328,21 +320,17 @@ toolbar[iconsize="small"] #home-button[disabled="true"] { } toolbar[iconsize="small"] #print-button { - list-style-image: url("chrome://browser/skin/print.gif"); + list-style-image: url("chrome://browser/skin/icons/print-small.gif"); } toolbar[iconsize="small"] #print-button[disabled="true"] { - list-style-image: url("chrome://browser/skin/print-disabled.gif"); + list-style-image: url("chrome://browser/skin/icons/print-small-disabled.gif"); } toolbar[iconsize="small"] #downloads-button { - -moz-image-region: rect(0px 120px 20px 100px); -} -toolbar[iconsize="small"] #downloads-button:hover, -toolbar[iconsize="small"] #downloads-button[checked="true"] { - -moz-image-region: rect(20px 120px 40px 100px); + list-style-image: url("chrome://browser/skin/icons/downloads-small.gif"); } toolbar[iconsize="small"] #downloads-button[disabled="true"] { - -moz-image-region: rect(40px 120px 60px 100px) !important; + list-style-image: url("chrome://browser/skin/icons/downloads-small-disabled.gif"); } toolbar[iconsize="small"] #new-tab-button { @@ -375,14 +363,10 @@ toolbar[iconsize="small"] #bookmarks-button[disabled="true"] { } toolbar[iconsize="small"] #history-button { - -moz-image-region: rect(0px 140px 20px 120px); -} -toolbar[iconsize="small"] #history-button:hover, -toolbar[iconsize="small"] #history-button[checked="true"] { - -moz-image-region: rect(20px 140px 40px 120px); + list-style-image: url("chrome://browser/skin/icons/history-small.gif"); } toolbar[iconsize="small"] #history-button[disabled="true"] { - -moz-image-region: rect(40px 140px 60px 120px) !important; + list-style-image: url("chrome://browser/skin/icons/history-small-disabled.gif"); } diff --git a/EarlyBlue/browser/icons/back-disabled.gif b/EarlyBlue/browser/icons/back-disabled.gif new file mode 100755 index 0000000000000000000000000000000000000000..115114eeafbb793972d7fc30e0de1b44a6d71af3 GIT binary patch literal 95 zcmZ?wbhEHb6lV}+XkcJyXlVHV|G(l-7DfgJMg|=QAOOiQFq!rAubh3LzoFURZ`GTl y?ynzsMp{hl&0Mf@SIm=Z>lB}DDoi(ju2aAJ`sOV@JLS?jtk+F3U$&Wn!5RQ5za^3Y literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/back-small-disabled.gif b/EarlyBlue/browser/icons/back-small-disabled.gif new file mode 100644 index 0000000000000000000000000000000000000000..24c2166740b506258e3bb2ca7c994c8ea6f2c5b9 GIT binary patch literal 102 zcmZ?wbhEHb6krfwXkcJyXlVHV|G(ltQRkx6#FEq$h4Rdj426)4R0VfW-v9>1pDc`A z42%pq3_t+V!oZ}`)4!5&_XU}zKqD@FGmGqBm0s$7ORmh}zrJxc_o{WKp(e%8SsAPW DQKKNP literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/back-small.gif b/EarlyBlue/browser/icons/back-small.gif new file mode 100644 index 0000000000000000000000000000000000000000..5653f120f2aac40aa32ec0eeaeb19082248ba49b GIT binary patch literal 102 zcmZ?wbhEHb6krfwXkcJSOFQ%b|9{1QqRvIBi6yBi3gww4844j8sS56%z5xu1KUo;L z7#JCJ7=Qqzg@H+>r++2m?h7(afks^VW)|7MD!tVEmRy;`e|_U@?p5ndLrsdGvocr% E09kz?#sB~S literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/back.gif b/EarlyBlue/browser/icons/back.gif new file mode 100755 index 0000000000000000000000000000000000000000..443c4a6c449eb26fbfb485725f2a6fba1d2e4c73 GIT binary patch literal 95 zcmZ?wbhEHb6lV}+XkcJSOFQ%b|9{1wEQ|~cj0`#qKmd|qU^46JUpf0ge?zms->Nr9 y-CsZOjI@~8o4H`+u9zp+)+s*QRG4o5T&I5b_03y+cFLu5Sg)I6zHBoCgEas!@g=GN literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/downloads-disabled.gif b/EarlyBlue/browser/icons/downloads-disabled.gif new file mode 100644 index 0000000000000000000000000000000000000000..ec8abbe340af2b7db0e4cb899a08bf86e07a18e3 GIT binary patch literal 100 zcmZ?wbhEHb6lV}+XkcJyXlVHV|G(l-7DfgJMg|=QAOOiQFj@EXublnhToOb3snq93 zOIOb^JkMb#BUE-ja$>-$toh!%*It(psfn~+_lvRAXr4<(k3zeZfbgX?o|AVlF<1it Dfe9oD literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/downloads-small-disabled.gif b/EarlyBlue/browser/icons/downloads-small-disabled.gif new file mode 100644 index 0000000000000000000000000000000000000000..16691a42b184b96fa5bc07af0e4e55acd9033b0c GIT binary patch literal 82 zcmZ?wbhEHb6krfwXkcJyXlVHV|G(l-7DfgJMg|=QAOOiQFlqM4FF3(*^HH_o+Q^l& kPFHTuo!~C}P;yo(Tc6GrujDfcd106Q`WA(TGB8*J00s{mzW@LL literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/downloads-small.gif b/EarlyBlue/browser/icons/downloads-small.gif new file mode 100644 index 0000000000000000000000000000000000000000..a1adbe3963bac5477a23f4a94d32bc01b5dc1ef1 GIT binary patch literal 82 zcmZ?wbhEHb6krfwXkcJSOFQ%b|9{1wEQ|~cj0`#qKmd|qVAAZ7UvPrs=A&xEwUH}l kovz%RJHcJ{q2#PowmzLLUdd+?^1?3p^(_hwWni!d01OEm*8l(j literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/downloads.gif b/EarlyBlue/browser/icons/downloads.gif new file mode 100644 index 0000000000000000000000000000000000000000..b428aedeb40e6417e2abde0e18a5f69c3aff3c88 GIT binary patch literal 100 zcmZ?wbhEHb6lV}+XkcJSOFQ%b|9{1wEQ|~cj0`#qKmd|qV6yJ%Upf21xg>`6Q>o97 zmad*-c%H*fMyTw51pDc`A z42%pq3_t+V!oZ}`)4!7A^@W(Givd!4HdbZ7GiF{1^^%O6xnq^?H_vNo=S|B`vocr% E0C~S6K>z>% literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/forward-small.gif b/EarlyBlue/browser/icons/forward-small.gif new file mode 100644 index 0000000000000000000000000000000000000000..09c38d0db2fba65239cb80f9721c4165cb299767 GIT binary patch literal 102 zcmZ?wbhEHb6krfwXkcJSOFQ%b|9{1QqRvIBi6yBi3gww4844j8sS56%z5xu1KUo;L z7#JCJ7=Qqzg@H+>r++2K>kBbW7Xzg9Y^=(DXUx13>LnRBbH^&(Z=ToG&YPB>W@WGj E0D+kzSpWb4 literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/forward.gif b/EarlyBlue/browser/icons/forward.gif new file mode 100755 index 0000000000000000000000000000000000000000..c3c9f29334293db7ed194b407e91f0187c3bcdf1 GIT binary patch literal 98 zcmZ?wbhEHb6lV}+XkcJSOFQ%b|9{1wEQ|~cj0`#qKmd|qV6yD#U%C6h{D$TLzgs$+ zZ9c54nWWe^v0{pN04GQXm93x`D;m* IAS;74045bBFaQ7m literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/history-small-disabled.gif b/EarlyBlue/browser/icons/history-small-disabled.gif new file mode 100644 index 0000000000000000000000000000000000000000..1c0117b02eecd6fc5ca7f2ed9657d67b0b78f0ed GIT binary patch literal 83 zcmZ?wbhEHb6krfwXkcJyXlVHV|G(l-7DfgJMg|=QAOOiQFlqJlXC64a>&j%23r`G6 l%wAn+y`MN$S)z0a$E=R7MFnfl8fI@ldn)xpzXk(?H2`6K9_j!9 literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/history-small.gif b/EarlyBlue/browser/icons/history-small.gif new file mode 100644 index 0000000000000000000000000000000000000000..a1b1288eac9cb68f550ffde9c13cf262299341c6 GIT binary patch literal 83 zcmZ?wbhEHb6krfwXkcJSOFQ%b|9{1wEQ|~cj0`#qKmd|qVAAU8&pdE;*Okd47oHfD ln7z8tdOvZhvP9_;j#(XDiwf49HO$_A_EhSHehmf&YXE1D9|8aX literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/history.gif b/EarlyBlue/browser/icons/history.gif new file mode 100644 index 0000000000000000000000000000000000000000..d4bcf5aa62fbe8d0c8f3d5c649626e0c61dbca28 GIT binary patch literal 106 zcmZ?wbhEHb6lV}+XkcJSPCobl|9{1wEQ|~cj0`#qKmd|qU~=r~U&;RVz8KS`BVL6k zy34gIxm5BZ+NxAf_`Efrm9wcxZr(B91X^4F3q IK~@H904&-iL;wH) literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/home-disabled.gif b/EarlyBlue/browser/icons/home-disabled.gif index de5916c46573b9d54949fe157540d507f1a7d618..c9dc5434709bb9f933d921735a5edc3250b9aaec 100644 GIT binary patch delta 68 zcmV-K0K5NUWsoL6JdBU2%k2i912oVm;oaG8E`47pf=wx&XsWDe!os6A*70#!xQ8)$ aAIYhLJE5-v4=UIE+6c+^PMg@eN)T}>~wt#`b8UV@lBP9R; literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/print-small-disabled.gif b/EarlyBlue/browser/icons/print-small-disabled.gif new file mode 100644 index 0000000000000000000000000000000000000000..30302e77e2f8a6e765d06e2bb4d7fac355a90abf GIT binary patch literal 105 zcmZ?wbhEHb6krfwXkcJyXlVHV|G(ltQRkx6#FEq$h4Rdj426)4R0VfW-v9>1pDc`A z42%pq3_t+V!oZ~7(?9dTT8@Mo#Z6uJO>z&vs%$@zxxhK?^rfxgp1lQgmZtljUpL#H HmBAVS3;-oR literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/print-small.gif b/EarlyBlue/browser/icons/print-small.gif new file mode 100644 index 0000000000000000000000000000000000000000..e75d79d2314f359aa1ab786d1941d9d6dfb24ab6 GIT binary patch literal 80 zcmZ?wbhEHb6krfwXkcJSOFQ%b|9{1wER0+Xj0`#qKmd|qU{detpLt*{M?#I_rmp)Y ixrbj>wx7sc;GA~)($;X#-hw$x(|ymcn{Cg^U=0BD+8qG^ literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/print.gif b/EarlyBlue/browser/icons/print.gif new file mode 100755 index 0000000000000000000000000000000000000000..d2adbbf0eda2cc1ad3b32ca336b428fddfae017a GIT binary patch literal 95 zcmZ?wbhEHb6lV}+XkcJSOFQ%b|9{1wEQ|~cj0`#qKmd|qU^46JUwQg0gK|NZl1F~m x&4@px*A#otrn9}=G)eN*%J-J`>7Cx8&$ITtDJ}@ojS2`ksaby}Z2<#=H2~2kBRv2B literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/reload-disabled.gif b/EarlyBlue/browser/icons/reload-disabled.gif new file mode 100644 index 0000000000000000000000000000000000000000..56b9f2fa4108d27ae2c6482bed344d41ee7fae3a GIT binary patch literal 102 zcmZ?wbhEHb6lV}+XkcJyXlVHV|G(l-7DfgJMg|=QAOOiQFxmF>uRP7T_a39jvR4}0 zB46=lUOwKr_~wFR>YDw#CSB*Am&fXFe(u!f8_BK>j`B*!Ex%4ORNNeythDre)*=Q5 FYXI%YCW`<7 literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/reload-small-disabled.gif b/EarlyBlue/browser/icons/reload-small-disabled.gif new file mode 100644 index 0000000000000000000000000000000000000000..513b22f69d8c00fbfc71fd7b30e67888c9662542 GIT binary patch literal 80 zcmZ?wbhEHb6krfwXkcJyXlVHV|G(l-7Dg@xMg|=QAOOiQFsb+SujDw*wy0Uxt2{T_ hJY!$r+~=(#!85x;vy@-g9k=Mr(Y?O(oHQ$gH2|nN8ZQ6< literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/reload-small.gif b/EarlyBlue/browser/icons/reload-small.gif new file mode 100644 index 0000000000000000000000000000000000000000..a8b553486092a2754997eecf7ad42d1b94c48040 GIT binary patch literal 80 zcmZ?wbhEHb6krfwXkcJSOFQ%b|9{1wER0+Xj0`#qKmd|qU{detU&(QrZBetXS9xx< hdB(oLxzAfgf@gMxW+}g}J8sdLqkDbnIcZh~YXGhT8b<&C literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/reload.gif b/EarlyBlue/browser/icons/reload.gif new file mode 100755 index 0000000000000000000000000000000000000000..347aa72f34fc75ad264a325c4082fd9401221ece GIT binary patch literal 102 zcmZ?wbhEHb6lV}+XkcJSOFQ%b|9{1wEQ|~cj0`#qKmd|qV6yG$UwN8w?>$D5Wv?{0 zMZV(AynMWK@y!Lt)HVBeO}frKFOSvV{M@O{H&xz`*vz7|&(yqO=h_72``A^399S?b$e6*&sGFSruv-u+P literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/stop-small-disabled.gif b/EarlyBlue/browser/icons/stop-small-disabled.gif new file mode 100644 index 0000000000000000000000000000000000000000..5c5883cec1f77171b1e87f767891e62db3be6b7a GIT binary patch literal 106 zcmZ?wbhEHb6krfwXkcJSOFQ%b|9{1QqRvIBi6yBi3gww4844j8sS56%z5xu1KUo;L z7#JCJ7=Qqzg@H+KB0jsHOf<?+3=b=SNvVAo6~sdWZ3&s;6Ot8w_d IJ0pWN00F2Y*#H0l literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/stop-small.gif b/EarlyBlue/browser/icons/stop-small.gif new file mode 100644 index 0000000000000000000000000000000000000000..5c5883cec1f77171b1e87f767891e62db3be6b7a GIT binary patch literal 106 zcmZ?wbhEHb6krfwXkcJSOFQ%b|9{1QqRvIBi6yBi3gww4844j8sS56%z5xu1KUo;L z7#JCJ7=Qqzg@H+KB0jsHOf<?+3=b=SNvVAo6~sdWZ3&s;6Ot8w_d IJ0pWN00F2Y*#H0l literal 0 HcmV?d00001 diff --git a/EarlyBlue/browser/icons/stop.gif b/EarlyBlue/browser/icons/stop.gif new file mode 100755 index 0000000000000000000000000000000000000000..a260ac82eb406bb4f739d63c76b0b5788162c1f2 GIT binary patch literal 92 zcmZ?wbhEHb6lV}+XkcJSOFQ%b|9{1wEQ|~cj0`#qKmd|qU^4FMUwQiN{)RbQHg&x` vTiI+@=_u}Ysbk^%pA*$rXDt=lrCob#5ns2?@}G?HJ09{h`DjgNWv~VSy5l1Y literal 0 HcmV?d00001 -- 2.35.3