How-To enhance Firefox with plugin - Stylish

From Krm
Revision as of 23:53, 4 January 2010 by Keshav (Talk | contribs)

Jump to: navigation, search

Stylish allows you to enhance web interfaces by allowing you to change/override css styles used in web pages.

Contents


Stylish for Google MapMaker

a

Stylish for Google MapMaker

b

Stylish for UBNT AirControl

Have you wished that UBNT would let us maximize the window size so that we could view more info on the AirControl window ? Here's my Stylish script which does the job.

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("aircontrol.keshav.com.np"), url-prefix("http://aircontrol.keshav.com.np") {

/* Reclaim realestate on both sides of the window */
#document {
margin:5px auto 0 !important;
width:99% !important;
}

/* Move up the Devices | Firmware | System Log */
#tabsDiv {
padding:0px 0 0;
}
  
/* add horiz scrollbar to sidebar */
.rich-tree {
overflow-x:auto !important;
}

/* adjust main window size */
#contentarea {
width:100% !important;
}

}
Personal tools