Und auch dunkel draußen, da kann man schon mal etwas übersehen
Dann mal Licht einschalten
Und auch dunkel draußen, da kann man schon mal etwas übersehen
Dann mal Licht einschalten
Dann muss BrokenHeart seinen Code mal anpassen
Folgende Regel hinzufügen, sollte reichen:
Den hatte ich für das gif installiert gehabt.
Ja, Andreas, den ersten Code aus #1 mit meinem alten Code , zusammen sieht es dann so aus, ohne daran etwas zu ändern.
Danke für den Tipp. Da lässt sich was machen.
Grüße
FuchsFan
Danke für den Tipp.
Gerne doch...wie immer
Folgende Regel hinzufügen, sollte reichen:
Ich danke dir, auch das funktioniert.
Grüße
FuchsFan
Ich danke dir, auch das funktioniert.
Bitte schön...
Den Tipp habe ich übrigens bereits im Beitrag #43 beschrieben. Nur mal so erwähnt
Dein Einwand ist absolut berechtigt. Es würde mich auch treffen, wenn mein Tipp offensichtlich überlesen wird und andere gelobt werden. Ehrlich gesagt habe ich ihn gelesen, ihn aber nicht sofort ausprobiert. Asche auf mein Haupt! War nicht die feine englische Art von mir. Daher noch mal ausdrücklich mein Dankeschön und sorry.
Den Tipp habe ich übrigens bereits im Beitrag #43 beschrieben. Nur mal so erwähnt
Und er ist gut...
Obwohl ich schon seit ewigen Zeiten den Notepad++ benutze, ist dieses 'Feature' vollkommen an mir vorübergegangen.
Danke!
jetzt weiß ich woran es liegt, dass bei mir die "Schließen-Kreuze/Button" in den einzelnen Tabs verschwunden sind...
Mir waren die Tabs zu breit und ich habe die Breite von 234 auf 130 angepaßt..
/* Feste Breite des einzelnem Tabs */
.tabbrowser-tab:not([pinned]) {
min-width: 130px !important;
}
Jetzt gefällt mir die Breite, aber das Kreuz ist weg...
Vielleicht könntet ihr doch nochmal schauen, ob man da was "machen kann"?
Danke im voraus!
Ich nehme an, dass man an der Überlappung der Internetseite beim Code "Tableiste unten" nichts weiter ändern kann?!?
Jetzt gefällt mir die Breite, aber das Kreuz ist weg...
Kannst ja mal den Code probieren, den verwende ich dafür:
/************* Tabschliessen-Button ****************/
.tab-close-button.close-icon{
display: -moz-box !important;
width: 20px; height: 20px !important;
border: none !important;
background-color: none !important;
}
.tab-close-button {
color: red !important; /* Farbe des Kreuzes */
}
Alles anzeigen
So sieht es dann mit Breite 130px aus, Kreuz ist da.
von 234 auf 130 angepaßt..
Nicht wirklich, du hast lediglich eine Mindestbreite damit festgelegt.
min-width: 130px !important;
Und selbst bei einer festen Breite von 130px ist das x noch vorhanden.
Du kannst aber das x verschieben, darum teste bitte mal:
ich bin euch sehr dankbar
Was mich davon betrifft...war gern geschehen
Andreas und BrokenHeart , das ist aus dem Code von #37 geworden, ich bin euch sehr dankbar. Hätte nicht geglaubt, dass es noch machbar wäre. Das ist das Ergebnis, aus einem jungfräulichen Firefox gemacht.
Sieht gut aus, der 'entjungferte' Firefox...
Sieht gut aus, der 'entjungferte' Firefox...
Danke, du bringst mich in Verlegenheit.
Grüße
FuchsFan
andreas oder BrokenHeart,
kann vielleicht jemand von Euch noch den CSS-Code für "Unten" veröffentlichen? Wenn ich das irgendwie zusammen wurschtele sind die Tabs zwar unterhalb der Lesezeichensymbolleiste aber haben nicht die Themefarben, oder aber eine Zeile der mehrzeiligen Tabs sind unterhalb und der Rest reicht oberhalb in die Leisten des Firefox hinein (passen sich aber dann dem Theme an).
Hier mal mein kompletter Code:
/* ----------------------------*/
/* Mehrzeilige Tabreihen unten (Code von 2002Andreas) */
/* ----------------------------*/
@-moz-document url(chrome://browser/content/browser.xhtml) {
#TabsToolbar {
position: absolute !important;
display:block !important;
bottom: 0 !important;
width: 100vw !important;
}
#tabbrowser-tabs {
width: 100vw !important;
}
#main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {
padding-bottom: var(--tab-min-height) !important;
}
/* Tab-Höhe */
.tabbrowser-tab {
min-height: 28px !important;
max-height: 28px !important;
vertical-align: bottom !important;
margin-top: 1px !important;
margin-bottom: 1px !important;
}
/* Feste Breite des einzelnem Tabs */
.tabbrowser-tab:not([pinned]) {
min-width: 234px !important;
}
/* Platz für Scrollbar schaffen */
.tabbrowser-tabs {
margin-right: -41px !important;
}
scrollbox[part][orient="horizontal"] {
background: lightgrey !important;
position: absolute !important;
display:block !important;
/* display: flex; */
/* flex-wrap: wrap; */
/* overflow: visible !important; */
/* overflow-x: hidden !important; */
overflow-y: scroll !important;
min-height: 30px !important; /* Tab-Höhe(28px) + 2px */
max-height: calc( 3 * 30px ) !important; /* Anzahl der Tabreihen * Minimal-Höhe */
-moz-window-dragging: no-drag !important;
}
/* Buttons/Zwischenräume Ausblenden */
hbox.titlebar-spacer,
#alltabs-button,tabs tab:not([fadein]),
[class="scrollbutton-up"],
[class="scrollbutton-up"] + spacer,
scrollbox[part][orient="horizontal"] + spacer,
[class="scrollbutton-down"] {
display: none;
}
/* -----------------------------*/
/* Tab: Optische Anpassungen */
/* -----------------------------*/
#tabbrowser-tabs :not([fokus]){
opacity: 1!important;
}
/* Schriftart/Schriftgröße ändern */
.tabbrowser-tab .tab-label {
text-shadow: 1px 1px 0px #000000 !important;
font-weight: 500 !important;
font-size: 12px !important;
font-family: "Arial" !important;
color: white !important;
}
.tabbrowser-tab .tab-label:not(:-moz-lwtheme) {
text-shadow: none !important;
color: black !important;
}
.tabbrowser-tab .tab-label[selected="true"] {
text-shadow: 1px 1px 0px #000000 !important;
color: white !important;
font-weight: 500 !important;
font-size: 12px !important;
font-family: "Arial" !important;
}
/* Tab-Line entfernen */
#TabsToolbar .tabbrowser-tab .tab-line {
display: none !important;
}
/* Tab-Höhe */
.tabbrowser-tab {
min-height: 28px !important;
max-height: 28px !important;
vertical-align: bottom !important;
margin-top: 1px !important;
margin-bottom: 1px !important;
}
/* Tab-Rahmen entfernen */
#TabsToolbar .tabbrowser-tab[visuallyselected="true"],
#TabsToolbar .tabbrowser-tab,
#TabsToolbar .tabbrowser-tab .tab-background {
background: unset !important;
border-top: unset !important;
outline: none !important;
}
/* Tab-Schließen-Button entfernen *//*
.tabbrowser-tab .tab-close-button {
visibility: collapse !important;
}
*/
/* Tab-Icon ausrichten *//*
.tab-throbber:not([pinned]),
.tab-sharing-icon-overlay:not([pinned]),
.tab-icon-pending:not([pinned]),
.tab-icon-image:not([pinned])
{
margin-top: -1px !important;
}
*/
/*------------------*/
/* Tab-Hintergrund */
/*------------------*/
/*--- selektiert ---*/
.tab-background[selected=true]:not(:-moz-lwtheme) > spacer {
background-image: linear-gradient( rgba(103,171,224,1), rgba(10,58,95,1) ), none !important; /* blau */
/*background-image: linear-gradient( rgba(230,175,175,1), rgba(84,25,25,1) ), none !important;*/ /* rot */
filter: drop-shadow(4px 3px 2px rgba(0,0,0,0.33)) drop-shadow(-4px 3px 2px rgba(0,0,0,0.33)) !important;
}
.tab-background[selected=true]:-moz-lwtheme > spacer {
background-image: linear-gradient( rgba(103,171,224,1), rgba(10,58,95,1) ), none !important;
filter: drop-shadow(3px 3px 2px rgba(0,0,0,0.33)) drop-shadow(-2px 3px 2px rgba(0,0,0,0.33)) !important;
}
/*--- hover(nicht selektiert) ---*/
.tabbrowser-tab:hover > .tab-stack > .tab-background:not([selected=true]):not(:-moz-lwtheme) > spacer {
background-image: linear-gradient( rgba(255,255,255,1), rgba(115,115,115,1) ), none !important;
filter: brightness(130%) contrast(95%) drop-shadow(1px 1px 1px rgba(0,0,0,0.33)) drop-shadow(-1px 1px 1px rgba(0,0,0,0.33)) !important;
}
.tabbrowser-tab:hover > .tab-stack > .tab-background:not([selected=true]):-moz-lwtheme > spacer {
background-image: linear-gradient( rgba(225,225,225,0.66), rgba(100,125,145,0.66) ), none !important;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
}
/*--- nicht selektiert ---*/
.tab-background:not([selected=true]):not(:-moz-lwtheme) > spacer {
background-image: linear-gradient( rgba(255,255,255,1), rgba(125,125,125,1) ), none !important;
filter: brightness(115%) contrast(90%) drop-shadow(1px 1px 1px rgba(0,0,0,0.33)) drop-shadow(-1px 1px 1px rgba(0,0,0,0.33)) !important;
}
.tab-background:not([selected=true]):-moz-lwtheme > spacer {
background-image: linear-gradient( rgba(255,255,255,0.33), rgba(110,110,110,0.33) ), none !important;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
}
/*--- Multi-selektiert ---*/
.tab-background[multiselected=true]:not([selected=true]) > spacer {
background-image: linear-gradient( rgba(225,225,225,1), rgba(50,98,135,1) ), none !important;
}
.tabbrowser-tab:hover > .tab-stack > .tab-background[multiselected=true]:not([selected=true]) > spacer {
background-image: linear-gradient( rgba(225,225,225,1), rgba(50,98,135,1) ), none !important;
}
}
/* Seitennavigation (Vor- und Zurückbutton) bei Aktivität Einfärbung mit gleicher Farbe wie aktiver Tab */
#back-button:not([disabled="true"]) .toolbarbutton-icon , #forward-button:not([disabled="true"]) .toolbarbutton-icon {
fill: red !important;
background: yellow !important;
}
/* Einträge aus Seiten-Kontextmenü entfernen
* Remove "Send Page to Device", "Send Link to Device",
* "Send Tab to Device", "View Hintergrundbild" "Send Pocket" from context menu.
*
* Contributor(s): PilzAdam
* https://github.com/Timvde/UserChrome-Tweaks/blob/master/context-menu/remove-send-to-device.css
*/
#context-sendpagetodevice, #context-sep-sendpagetodevice,
#context-sendlinktodevice, #context-sep-sendlinktodevice,
#context-viewbgimage,
#context-savelinktopocket, #context-pocket,
#context_sendTabToDevice, #context_sendTabToDevice_separator,
#screenshots_mozilla_org_create-screenshot,
menu[label="Search Page on TinEye"],
menu[label="Search Image on TinEye"],
menu[label="Video DownloadHelper"],
menu[label="Zoom Page WE"],
menuitem[label="Element blockieren"]
{display:none!important;}
/* Do not remove the @namespace line -- it's required for correct functioning */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
/* Lesezeichen verwalten - Ordnericon stehend gelb */
@-moz-document url-prefix("chrome://browser/content/places/places.xul") {
treechildren::-moz-tree-image(container) {
fill:orange !important;}
}
/* Lesezeichensymbolleiste - Ordnericon gelb */
@-moz-document url-prefix(chrome://browser/content/browser.xhtml),
url("chrome://browser/content/places/places.xhtml") {
.bookmark-item[container="true"]{
list-style-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAd5JREFUeNqMU79rFUEQ/vbuodFEEkzAImBpkUabFP4ldpaJhZXYm/RiZWsv/hkWFglBUyTIgyAIIfgIRjHv3r39MePM7N3LcbxAFvZ2b2bn22/mm3XMjF+HL3YW7q28YSIw8mBKoBihhhgCsoORot9d3/ywg3YowMXwNde/PzGnk2vn6PitrT+/PGeNaecg4+qNY3D43vy16A5wDDd4Aqg/ngmrjl/GoN0U5V1QquHQG3q+TPDVhVwyBffcmQGJmSVfyZk7R3SngI4JKfwDJ2+05zIg8gbiereTZRHhJ5KCMOwDFLjhoBTn2g0ghagfKeIYJDPFyibJVBtTREwq60SpYvh5++PpwatHsxSm9QRLSQpEVSd7/TYJUb49TX7gztpjjEffnoVw66+Ytovs14Yp7HaKmUXeX9rKUoMoLNW3srqI5fWn8JejrVkK0QcrkFLOgS39yoKUQe292WJ1guUHG8K2o8K00oO1BTvXoW4yasclUTgZYJY9aFNfAThX5CZRmczAV52oAPoupHhWRIUUAOoyUIlYVaAa/VbLbyiZUiyFbjQFNwiZQSGl4IDy9sO5Wrty0QLKhdZPxmgGcDo8ejn+c/6eiK9poz15Kw7Dr/vN/z6W7q++091/AQYA5mZ8GYJ9K0AAAAAASUVORK5CYII=") !important;
}
}
/* Lesezeichen Sidebar - Ordnericon stehend gelb */
@-moz-document url("chrome://browser/content/places/bookmarksSidebar.xul") {
treechildren::-moz-tree-image(container) {
list-style-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAd5JREFUeNqMU79rFUEQ/vbuodFEEkzAImBpkUabFP4ldpaJhZXYm/RiZWsv/hkWFglBUyTIgyAIIfgIRjHv3r39MePM7N3LcbxAFvZ2b2bn22/mm3XMjF+HL3YW7q28YSIw8mBKoBihhhgCsoORot9d3/ywg3YowMXwNde/PzGnk2vn6PitrT+/PGeNaecg4+qNY3D43vy16A5wDDd4Aqg/ngmrjl/GoN0U5V1QquHQG3q+TPDVhVwyBffcmQGJmSVfyZk7R3SngI4JKfwDJ2+05zIg8gbiereTZRHhJ5KCMOwDFLjhoBTn2g0ghagfKeIYJDPFyibJVBtTREwq60SpYvh5++PpwatHsxSm9QRLSQpEVSd7/TYJUb49TX7gztpjjEffnoVw66+Ytovs14Yp7HaKmUXeX9rKUoMoLNW3srqI5fWn8JejrVkK0QcrkFLOgS39yoKUQe292WJ1guUHG8K2o8K00oO1BTvXoW4yasclUTgZYJY9aFNfAThX5CZRmczAV52oAPoupHhWRIUUAOoyUIlYVaAa/VbLbyiZUiyFbjQFNwiZQSGl4IDy9sO5Wrty0QLKhdZPxmgGcDo8ejn+c/6eiK9poz15Kw7Dr/vN/z6W7q++091/AQYA5mZ8GYJ9K0AAAAAASUVORK5CYII=") !important;}
}
/* use these to hide the icons or the label text - auskommentiert
#PlacesToolbarItems > .bookmark-item > .toolbarbutton-icon {display:none!important}
#PlacesToolbarItems > .bookmark-item > .toolbarbutton-text {display!important}
*/
Alles anzeigen
....und das Erscheinungsbild siehe Dateianhang. Die mehrzeiligen Tabs überlagern die anzuzeigende Seite.
Version 2 (favorisierte Version):
Hier nochmal eine andere Version (ist wie meine einzeilige Version und auch mit den Themefarben und verdeckt nicht die HTML-Seite - nur leider oben. Wenn Du mir das verbessern könntest und die mehrzeileigen Tab nach unten verschieben könntest?
Der gesamte Code:
/* Tableiste mehrreihig */
@-moz-document url(chrome://browser/content/browser.xhtml){
:root {
--tabs-lines: 3!important;
--tab_min_width_mlt: 150px;
--tab_max_width_mlt: 150px;
--tab-min-height_mlt: var(--tab-min-height,33px);
}
#tabbrowser-tabs {
min-height: unset !important;
padding-inline-start: 0px !important;
}
.scrollbutton-up[orient="horizontal"][part]~spacer,
.scrollbutton-up[orient="horizontal"][part],
.scrollbutton-down[orient="horizontal"][part] {
display: none !important;
}
scrollbox[part][orient="horizontal"] {
display: flex;
flex-wrap: wrap;
overflow-y: auto;
max-height: calc(var(--tab-min-height_mlt) * var(--tabs-lines));
}
#tabbrowser-tabs > .tabbrowser-arrowscrollbox {
overflow: -moz-hidden-unscrollable;
display: block;
margin-bottom: -1px !important;
}
.tabbrowser-tab {
height: var(--tab-min-height_mlt);
border: 1px solid black !important;
}
#tabbrowser-tabs .tabbrowser-tab[pinned] {
position: static !important;
margin-inline-start: 0px !important;
}
.tabbrowser-tab[fadein]:not([pinned]) {
flex-grow: 1;
min-width: var(--tab_min_width_mlt) !important;
max-width: var(--tab_max_width_mlt) !important;
}
.tabbrowser-tab > stack {
width: 100%;
height: 100%;
}
#tabbrowser-tabs .scrollbutton-up,
#tabbrowser-tabs .scrollbutton-down,
#alltabs-button,
:root:not([customizing]) #TabsToolbar #new-tab-button,
#tabbrowser-tabs spacer,
.tabbrowser-tab::after {
display: none !important;
}
#TabsToolbar #tabbrowser-tabs .tabbrowser-tab[pinned] .tab-close-button {
visibility: hidden !important;
display: block !important;
-moz-margin-start: -18px !important;
}
#main-window[tabsintitlebar] #tabbrowser-tabs {
-moz-window-dragging: no-drag !important;
}
}
/* Seitennavigation (Vor- und Zurückbutton) bei Aktivität Einfärbung mit gleicher Farbe wie aktiver Tab */
#back-button:not([disabled="true"]) .toolbarbutton-icon , #forward-button:not([disabled="true"]) .toolbarbutton-icon {
fill: red !important;
background: yellow !important;
}
/* Rot blau animierte Tab-Linien */
.tab-line[selected=true] {
height: 3px!important;
background-color: red!important;}
.tab-line:not([selected=true]) {
height: 3px!important;
background-color:blue!important;}
/* Passive Tabs einfärben (wegen Theme auskommentiert) und Schrift verdicken */
/*.tab-background{
background-color:blue!important;}*/
.tabbrowser-tab{
font-weight:bold;}
/* Aktiven Tab gelb einfärben mit schwarzer (dicker) Schrift */
.tabbrowser-tab[selected="true"]{
font-weight:bold;
color: black!important;}
.tab-background[selected="true"]{
background:yellow!important;}
/* Einträge aus Seiten-Kontextmenü entfernen
* Remove "Send Page to Device", "Send Link to Device",
* "Send Tab to Device", "View Hintergrundbild" "Send Pocket" from context menu.
*
* Contributor(s): PilzAdam
* https://github.com/Timvde/UserChrome-Tweaks/blob/master/context-menu/remove-send-to-device.css
*/
#context-sendpagetodevice, #context-sep-sendpagetodevice,
#context-sendlinktodevice, #context-sep-sendlinktodevice,
#context-viewbgimage,
#context-savelinktopocket, #context-pocket,
#context_sendTabToDevice, #context_sendTabToDevice_separator,
#screenshots_mozilla_org_create-screenshot,
menu[label="Search Page on TinEye"],
menu[label="Search Image on TinEye"],
menu[label="Video DownloadHelper"],
menu[label="Zoom Page WE"],
menuitem[label="Element blockieren"]
{display:none!important;}
/* Do not remove the @namespace line -- it's required for correct functioning */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
/* Lesezeichen verwalten - Ordnericon stehend gelb */
@-moz-document url-prefix("chrome://browser/content/places/places.xul") {
treechildren::-moz-tree-image(container) {
fill:orange !important;}
}
/* Lesezeichensymbolleiste - Ordnericon gelb */
@-moz-document url-prefix(chrome://browser/content/browser.xhtml),
url("chrome://browser/content/places/places.xhtml") {
.bookmark-item[container="true"]{
list-style-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAd5JREFUeNqMU79rFUEQ/vbuodFEEkzAImBpkUabFP4ldpaJhZXYm/RiZWsv/hkWFglBUyTIgyAIIfgIRjHv3r39MePM7N3LcbxAFvZ2b2bn22/mm3XMjF+HL3YW7q28YSIw8mBKoBihhhgCsoORot9d3/ywg3YowMXwNde/PzGnk2vn6PitrT+/PGeNaecg4+qNY3D43vy16A5wDDd4Aqg/ngmrjl/GoN0U5V1QquHQG3q+TPDVhVwyBffcmQGJmSVfyZk7R3SngI4JKfwDJ2+05zIg8gbiereTZRHhJ5KCMOwDFLjhoBTn2g0ghagfKeIYJDPFyibJVBtTREwq60SpYvh5++PpwatHsxSm9QRLSQpEVSd7/TYJUb49TX7gztpjjEffnoVw66+Ytovs14Yp7HaKmUXeX9rKUoMoLNW3srqI5fWn8JejrVkK0QcrkFLOgS39yoKUQe292WJ1guUHG8K2o8K00oO1BTvXoW4yasclUTgZYJY9aFNfAThX5CZRmczAV52oAPoupHhWRIUUAOoyUIlYVaAa/VbLbyiZUiyFbjQFNwiZQSGl4IDy9sO5Wrty0QLKhdZPxmgGcDo8ejn+c/6eiK9poz15Kw7Dr/vN/z6W7q++091/AQYA5mZ8GYJ9K0AAAAAASUVORK5CYII=") !important;
}
}
/* Lesezeichen Sidebar - Ordnericon stehend gelb */
@-moz-document url("chrome://browser/content/places/bookmarksSidebar.xul") {
treechildren::-moz-tree-image(container) {
list-style-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAd5JREFUeNqMU79rFUEQ/vbuodFEEkzAImBpkUabFP4ldpaJhZXYm/RiZWsv/hkWFglBUyTIgyAIIfgIRjHv3r39MePM7N3LcbxAFvZ2b2bn22/mm3XMjF+HL3YW7q28YSIw8mBKoBihhhgCsoORot9d3/ywg3YowMXwNde/PzGnk2vn6PitrT+/PGeNaecg4+qNY3D43vy16A5wDDd4Aqg/ngmrjl/GoN0U5V1QquHQG3q+TPDVhVwyBffcmQGJmSVfyZk7R3SngI4JKfwDJ2+05zIg8gbiereTZRHhJ5KCMOwDFLjhoBTn2g0ghagfKeIYJDPFyibJVBtTREwq60SpYvh5++PpwatHsxSm9QRLSQpEVSd7/TYJUb49TX7gztpjjEffnoVw66+Ytovs14Yp7HaKmUXeX9rKUoMoLNW3srqI5fWn8JejrVkK0QcrkFLOgS39yoKUQe292WJ1guUHG8K2o8K00oO1BTvXoW4yasclUTgZYJY9aFNfAThX5CZRmczAV52oAPoupHhWRIUUAOoyUIlYVaAa/VbLbyiZUiyFbjQFNwiZQSGl4IDy9sO5Wrty0QLKhdZPxmgGcDo8ejn+c/6eiK9poz15Kw7Dr/vN/z6W7q++091/AQYA5mZ8GYJ9K0AAAAAASUVORK5CYII=") !important;}
}
/* use these to hide the icons or the label text - auskommentiert
#PlacesToolbarItems > .bookmark-item > .toolbarbutton-icon {display:none!important}
#PlacesToolbarItems > .bookmark-item > .toolbarbutton-text {display!important}
*/
Alles anzeigen
und die Vorschau:
Danke im voraus...
-volker-
2002Andreas: bei mir waren die Kreuze weg... auch mit deinem Zusatz-Code... wahrscheinlich waren sie/war es bei dir sichtbar, weil du nur einen Tab geöffnet hattest und dieser zwangsläufig der aktive war?
FuchsFan: Der Code funktioniert, VIELEN DANK! Vielleicht magst Du nochmal Deinen gesamten css-Code hier einstellen? Dein FF sehr gut aus
Danke nochmals an alle, die sich hier so toll engagieren! Hut ab - Einfach klasse, diese Unterstützung!
(nach dem Update auf 71 habe ich schon wieder die Hände über'm Kopf zusammengeschlagen... aber dass das hier so schnell wieder gelöst wird, ist einfach super!)
weil du nur einen Tab geöffnet hattest
Siehe meinen Screenshot in Beitrag Nr. 47 dazu:
Aber egal, wenn es jetzt auch bei dir funktioniert
in #47 haben Deine Tabs aber wahrscheinlich noch eine Breite von 234px?
Vielleicht magst Du nochmal Deinen gesamten css-Code hier einstellen?
Daran soll es nicht liegen, habe kein Problem damit.
Aber , um das Aussehen zu erreichen, gehören 7 Scripte, 29 Chrome-css- und 3 Content-css-Dateien dazu. So, wenn du das so übernehmen willst, so musst du die Zip-Datei entpacken und den Ordner Chrome in deinem Profil austauschen. Lege dir aber von deinem vorher eine Sicherung an. Außerdem sei dazu gesagt, dass alles für mein Laptop mit Auflösung 1920x1080 eingerichtet ist. Das abzuändern sollte aber keine Schwierigkeiten bedeuten, musst einfach hier nachfragen. So , dann versuche es .