Posted in linux linux4afrika bei 3sat – neues

Das Computermagazin neues berichtete am Wochenende über ein Projekt welches vom Freiburger Verein FreiOSS (Freiburger Open Source Netzwerk) ins Leben gerufen wurde. Eine sehr interessantes Projekt wie ich finde.

Alle Informationen dazu findet man hier… linux4afrika-Projekt



Posted in linux horizontale tabs in firefox

You can place your tabs horizontally stacked along the sides of your browser window with this added to your .mozilla/firefox/[userhash].[profilename]/chrome/userChrome.css :

/* Display the tabbar on the left */
#content > tabbox {
-moz-box-orient: horizontal;
}

.tabbrowser-strip {
-moz-box-orient: vertical;
/* note: you can set this to -moz-scrollbars-vertical instead,
but then the scrollbar will *always* be visible. this way
there is never a scrollbar, so it behaves like the tab bar
normally does */
overflow: -moz-scrollbars-none;
}

.tabbrowser-tabs {
-moz-box-orient: horizontal;
min-width: 20ex; /* you may want to increase this value */
-mox-box-pack: start;
-moz-box-align: start;
}

.tabbrowser-tabs > hbox {
-moz-box-orient: vertical;
-moz-box-align: stretch;
-moz-box-pack: start;
}
.tabbrowser-tabs > hbox > tab {
-moz-box-align: start;
-moz-box-orient: horizontal;
}

/* remove the close-tab button */
.tabbrowser-tabs > stack {
display: none;
}

Quelle weiterlesen…



13 queries. 0.148