public
Description: A Firefox extension that merges your search box into your awesome bar and adds live web search to the mix.
Homepage: http://searchery.ianloic.com/
Clone URL: git://github.com/ianloic/searchery.git
try to stop the search-engines section taking over
ianloic (author)
Thu Jul 03 11:21:08 -0700 2008
commit  c2bf73e6064579e95090f6a16b1bfe6674defbb1
tree    9a7984de181f38e3f4bc5c6a3d744f1c8e0603eb
parent  240337e959734ac8e462040fcc07e54d0384b8b3
...
32
33
34
35
 
36
37
38
...
196
197
198
199
 
200
201
202
203
204
205
206
 
207
208
209
...
32
33
34
 
35
36
37
38
...
196
197
198
 
199
200
201
202
203
204
205
 
206
207
208
209
0
@@ -32,7 +32,7 @@
0
     <content ignorekeys="true" flex="1">
0
       <xul:vbox anonid="searchery-sections" flex="1">
0
         <xul:searchery-section title="History and Bookmarks"
0
- id="searchery-places" selected="true">
0
+ id="searchery-places" selected="true" flex="1">
0
           <xul:richlistbox anonid="richlistbox" class="autocomplete-richlistbox"
0
                            flex="1"/>
0
         </xul:searchery-section>
0
@@ -196,14 +196,14 @@
0
       <children/>
0
     </content>
0
     <implementation>
0
- <constructor><![CDATA[
0
+ <constructor><![CDATA[
0
         // the popup we're in
0
         this.popup = document.getBindingParent(this);
0
 
0
         // our id
0
         this._id = this.getAttribute('id');
0
         // make up a pref name
0
- this._enabled_pref = 'extensions.searchery.section-enabled.' +
0
+ this._enabled_pref = 'extensions.searchery.section-enabled.' +
0
             this._id;
0
         // restore the disabled state
0
         this.disabled = this.disabled;
...
33
34
35
 
36
37
38
...
33
34
35
36
37
38
39
0
@@ -33,6 +33,7 @@ searchery-section#searchery-places {
0
 }
0
 searchery-section#searchery-engines {
0
   -moz-binding: url(chrome://searchery/content/bindings.xml#engines-section) !important;
0
+ max-height: 20%; /* otherwise it gets too big */
0
 }
0
 searchery-section#searchery-google {
0
   -moz-binding: url(chrome://searchery/content/websearch.xml#google-section) !important;

Comments

    No one has commented yet.