/*
 Firefox 4: numbered tabs
 http://userstyles.org/styles/46767
 BEGIN
*/
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

/* § tabs:
*/

/* - readable
*/
.tabbrowser-tabs
{ font-size: 11pt
}

/* - autowidth
*/
.tabbrowser-tab:not([pinned]) 
{ min-width: 32px !important
/* */
; width: 0 !important
/* */
; max-width: none  !important
}

/* - numbered
*/
.tabbrowser-tabs
{ counter-reset: tabs
}
.tabbrowser-tab
{ counter-increment: tabs
}
.tabbrowser-tab:after 
{ content: counter(tabs)
; position: absolute
; font-weight: bold
; font-size: 10pt
; color: #fff !important
}
.tabbrowser-tab:nth-child(8) ~ .tabbrowser-tab:after
{ content: ""
}
.tabbrowser-tab:nth-child(8) ~ .tabbrowser-tab:last-child:after
{ content: "9"
}
.tabbrowser-tab[selected]:after
{ content: "" !important
}

/*
 END
 Firefox 4: numbered tabs
*/