Beiträge von Fox2Fox
-
-
Schade. Danke euch.
-
Wenn ich in die Adressleiste z.B. about:config?filter=browser.sessionstore.restore_on_demand eingebe, wird nicht mehr der Eintrag aufgerufen. Klappte ja bisher, nun aber nicht mehr.
Gibt es eine Alternative, um direkt zu einer bestimmten Einstellung unter about:config zu kommen?
-
-
Schau dir mal about-support.txt an, ist völlig unübersichtlich.
-
Teste dieses script, bei mir funktioniert es
JavaScript
Alles anzeigen// ==UserScript== // @name zzzz-MultiRowTab_LiteforFx48.uc.js // @namespace http://space.geocities.yahoo.co.jp/gl/alice0775 // @description 多段タブもどき実験版 CSS入れ替えまくりLiteバージョン // @include main // @compatibility Firefox 71 // @author Alice0775 // @version 2016/08/05 00:00 Firefox 48 // @version 2016/05/01 00:01 hide favicon if busy // @version 2016/03/09 00:01 Bug 1222490 - Actually remove panorama for Fx45+ // @version 2016/02/09 00:01 workaround css for lwt // @version 2016/02/09 00:00 // ==/UserScript== "use strict"; MultiRowTabLiteforFx(); function MultiRowTabLiteforFx() { var css =` @-moz-document url-prefix("chrome://browser/content/browser.xhtml") { /* ツールバーの調節 */ [tabsintitlebar="true"][sizemode="maximized"] #navigator-toolbox { padding-top: 8px !important; } #titlebar,#tabbrowser-tabs { -moz-appearance: none !important; } /* タブバーのタイトルバーボタンが縦長にならないようにする */ [tabsintitlebar="true"] #TabsToolbar > .titlebar-buttonbox-container, #main-window[inFullscreen="true"] #window-controls { display: block; } /* 多段タブ */ tabs > arrowscrollbox { display: block; } scrollbox[part][orient="horizontal"] { display: flex; flex-wrap: wrap; } tabs tab[fadein]:not([pinned]) { flex-grow: 1; } tabs tab,.tab-background { height: var(--tab-min-height); z-index: 1 !important; } tab > .tab-stack { width: 100%; } /* タブバー 左右のドラッグ領域 非表示 左右 → hbox.titlebar-spacer 左 → hbox.titlebar-spacer[type="pre-tabs"] 右 → hbox.titlebar-spacer[type="post-tabs"] */ 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; } } `; var sss = Cc['@mozilla.org/content/style-sheet-service;1'].getService(Ci.nsIStyleSheetService); var uri = makeURI('data:text/css;charset=UTF=8,' + encodeURIComponent(css)); sss.loadAndRegisterSheet(uri, sss.AGENT_SHEET); var css =` tabs tab { border-left: solid 1px hsla(0,0%,50%,.5) !important; border-right: solid 1px hsla(0,0%,50%,.5) !important; } tabs tab:after,tabs tab:before { display: none !important; } `; var sss = Cc['@mozilla.org/content/style-sheet-service;1'].getService(Ci.nsIStyleSheetService); var uri = makeURI('data:text/css;charset=UTF=8,' + encodeURIComponent(css)); sss.loadAndRegisterSheet(uri, sss.AUTHOR_SHEET); gBrowser.tabContainer.clearDropIndicator = function() { var tabs = this.allTabs; for (let i = 0, len = tabs.length; i < len; i++) { tabs[i].style.removeProperty("border-left-color"); tabs[i].style.removeProperty("border-right-color"); } } gBrowser.tabContainer.addEventListener("dragleave", function(event) { this.clearDropIndicator(event); }, true); gBrowser.tabContainer.on_dragover = function(event) { this.clearDropIndicator(); var effects = this._getDropEffectForTabDrag(event); var ind = this._tabDropIndicator; if (effects == "" || effects == "none") { ind.hidden = true; return; } event.preventDefault(); event.stopPropagation(); var arrowScrollbox = this.arrowScrollbox; // autoscroll the tab strip if we drag over the scroll // buttons, even if we aren't dragging a tab, but then // return to avoid drawing the drop indicator var pixelsToScroll = 0; if (this.getAttribute("overflow") == "true") { switch (event.originalTarget) { case arrowScrollbox._scrollButtonUp: pixelsToScroll = arrowScrollbox.scrollIncrement * -1; break; case arrowScrollbox._scrollButtonDown: pixelsToScroll = arrowScrollbox.scrollIncrement; break; } if (pixelsToScroll) { arrowScrollbox.scrollByPixels( (RTL_UI ? -1 : 1) * pixelsToScroll, true ); } } /* let draggedTab = event.dataTransfer.mozGetDataAt(TAB_DROP_TYPE, 0); if ( (effects == "move" || effects == "copy") && this == draggedTab.container ) { ind.hidden = true; if (!this._isGroupTabsAnimationOver()) { // Wait for grouping tabs animation to finish return; } this._finishGroupSelectedTabs(draggedTab); if (effects == "move") { this._animateTabMove(event); return; } } this._finishAnimateTabMove(); */ if (effects == "link") { let tab = this._getDragTargetTab(event, true); if (tab) { if (!this._dragTime) { this._dragTime = Date.now(); } if (Date.now() >= this._dragTime + this._dragOverDelay) { this.selectedItem = tab; } ind.hidden = true; return; } } var rect = arrowScrollbox.getBoundingClientRect(); var newMargin; if (pixelsToScroll) { // if we are scrolling, put the drop indicator at the edge // so that it doesn't jump while scrolling let scrollRect = arrowScrollbox.scrollClientRect; let minMargin = scrollRect.left - rect.left; let maxMargin = Math.min( minMargin + scrollRect.width, scrollRect.right ); if (RTL_UI) { [minMargin, maxMargin] = [ this.clientWidth - maxMargin, this.clientWidth - minMargin, ]; } newMargin = pixelsToScroll > 0 ? maxMargin : minMargin; } else { let newIndex = this._getDropIndex(event, effects == "link"); let children = this.allTabs; if (newIndex == children.length) { let tabRect = children[newIndex - 1].getBoundingClientRect(); if (RTL_UI) { newMargin = rect.right - tabRect.left; } else { newMargin = tabRect.right - rect.left; } children[newIndex - 1].style.setProperty("border-right-color","red","important"); } else { let tabRect = children[newIndex].getBoundingClientRect(); if (RTL_UI) { newMargin = rect.right - tabRect.right; } else { newMargin = tabRect.left - rect.left; } children[newIndex].style.setProperty("border-left-color","red","important"); } } ind.hidden = false; newMargin += ind.clientWidth / 2; if (RTL_UI) { newMargin *= -1; } ind.style.transform = "translate(" + Math.round(newMargin) + "px)"; ind.style.marginInlineStart = -ind.clientWidth + "px"; } gBrowser.tabContainer.on_drop = function(event) { this.clearDropIndicator(); var dt = event.dataTransfer; var dropEffect = dt.dropEffect; var draggedTab; let movingTabs; if (dt.mozTypesAt(0)[0] == TAB_DROP_TYPE) { // tab copy or move draggedTab = dt.mozGetDataAt(TAB_DROP_TYPE, 0); // not our drop then if (!draggedTab) { return; } movingTabs = draggedTab._dragData.movingTabs; draggedTab.container._finishGroupSelectedTabs(draggedTab); } this._tabDropIndicator.hidden = true; event.stopPropagation(); if (draggedTab && dropEffect == "copy") { // copy the dropped tab (wherever it's from) let newIndex = this._getDropIndex(event, false); let draggedTabCopy; for (let tab of movingTabs) { let newTab = gBrowser.duplicateTab(tab); gBrowser.moveTabTo(newTab, newIndex++); if (tab == draggedTab) { draggedTabCopy = newTab; } } if (draggedTab.container != this || event.shiftKey) { this.selectedItem = draggedTabCopy; } } else if (draggedTab && draggedTab.container == this) { let oldTranslateX = Math.round(draggedTab._dragData.translateX); let tabWidth = Math.round(draggedTab._dragData.tabWidth); let translateOffset = oldTranslateX % tabWidth; let newTranslateX = oldTranslateX - translateOffset; if (oldTranslateX > 0 && translateOffset > tabWidth / 2) { newTranslateX += tabWidth; } else if (oldTranslateX < 0 && -translateOffset > tabWidth / 2) { newTranslateX -= tabWidth; } let dropIndex = this._getDropIndex(event, false); // "animDropIndex" in draggedTab._dragData && // draggedTab._dragData.animDropIndex; let incrementDropIndex = true; if (dropIndex && dropIndex > movingTabs[0]._tPos) { dropIndex--; incrementDropIndex = false; } let animate = gBrowser.animationsEnabled; if (oldTranslateX && oldTranslateX != newTranslateX && animate) { for (let tab of movingTabs) { tab.setAttribute("tabdrop-samewindow", "true"); tab.style.transform = "translateX(" + newTranslateX + "px)"; let onTransitionEnd = transitionendEvent => { if ( transitionendEvent.propertyName != "transform" || transitionendEvent.originalTarget != tab ) { return; } tab.removeEventListener("transitionend", onTransitionEnd); tab.removeAttribute("tabdrop-samewindow"); this._finishAnimateTabMove(); if (dropIndex !== false) { gBrowser.moveTabTo(tab, dropIndex); if (incrementDropIndex) { dropIndex++; } } gBrowser.syncThrobberAnimations(tab); }; tab.addEventListener("transitionend", onTransitionEnd); } } else { this._finishAnimateTabMove(); if (dropIndex !== false) { for (let tab of movingTabs) { gBrowser.moveTabTo(tab, dropIndex); if (incrementDropIndex) { dropIndex++; } } } } } else if (draggedTab) { let newIndex = this._getDropIndex(event, false); let newTabs = []; for (let tab of movingTabs) { let newTab = gBrowser.adoptTab(tab, newIndex++, tab == draggedTab); newTabs.push(newTab); } // Restore tab selection gBrowser.addRangeToMultiSelectedTabs( newTabs[0], newTabs[newTabs.length - 1] ); } else { // Pass true to disallow dropping javascript: or data: urls let links; try { links = browserDragAndDrop.dropLinks(event, true); } catch (ex) {} if (!links || links.length === 0) { return; } let inBackground = Services.prefs.getBoolPref( "browser.tabs.loadInBackground" ); if (event.shiftKey) { inBackground = !inBackground; } let targetTab = this._getDragTargetTab(event, true); let userContextId = this.selectedItem.getAttribute("usercontextid"); let replace = !!targetTab; let newIndex = this._getDropIndex(event, true); let urls = links.map(link => link.url); let csp = browserDragAndDrop.getCSP(event); let triggeringPrincipal = browserDragAndDrop.getTriggeringPrincipal( event ); (async () => { if ( urls.length >= Services.prefs.getIntPref("browser.tabs.maxOpenBeforeWarn") ) { // Sync dialog cannot be used inside drop event handler. let answer = await OpenInTabsUtils.promiseConfirmOpenInTabs( urls.length, window ); if (!answer) { return; } } gBrowser.loadTabs(urls, { inBackground, replace, allowThirdPartyFixup: true, targetTab, newIndex, userContextId, triggeringPrincipal, csp, }); })(); } if (draggedTab) { delete draggedTab._dragData; } } gBrowser.tabContainer._getDropIndex = function(event, isLink) { var tabs = this.allTabs; var tab = this._getDragTargetTab(event, isLink); if (!RTL_UI) { for (let i = tab ? tab._tPos : 0; i < tabs.length; i++) { if ( event.screenY < tabs[i].screenY + tabs[i].getBoundingClientRect().height ) { if ( event.screenX < tabs[i].screenX + tabs[i].getBoundingClientRect().width / 2 ) { return i; } if ( event.screenX > tabs[i].screenX + tabs[i].getBoundingClientRect().width / 2 && event.screenX < tabs[i].screenX + tabs[i].getBoundingClientRect().width ) { return i + 1; } } } } else { for (let i = tab ? tab._tPos : 0; i < tabs.length; i++) { if ( event.screenY < tabs[i].screenY + tabs[i].getBoundingClientRect().height ) { if ( event.screenX < tabs[i].screenX + tabs[i].getBoundingClientRect().width && event.screenX > tabs[i].screenX + tabs[i].getBoundingClientRect().width / 2 ) { return i; } if ( event.screenX < tabs[i].screenX + tabs[i].getBoundingClientRect().width / 2 ) { return i + 1; } } } } return tabs.length; } } -
-
Das Problem habe ich auch, ja, aber dein Skript hat da wohl keinen Einfluss drauf, denn da geht es um eine mehrzeilige Tableiste.
Habe mich vertan. Klar geht es nicht um die Tableiste, sondern um die Lesezeichensymbolleiste.
Für die mehrzeilige Lesezeichensymbolleiste habe ich diesen Code.
Vielleicht gibt es ja doch bald eine Lösung.
CSS
Alles anzeigen/* Lesezeichenleiste mehrreihig */ #personal-bookmarks { --bookmark_items_height: 20px; --bookmark_items_lines: 3; /* Anzahl der angezeigten Reihen*/ } /* Abstand der Lesezeichen untereinander, die Werte können angepasst werden */ #personal-bookmarks { display: block!important; -moz-window-dragging: no-drag !important; } #personal-bookmarks #PlacesToolbar { display: block; min-height: 0; overflow-x: hidden; overflow-y: auto; max-height: calc( var(--bookmark_items_lines) * var(--bookmark_items_height) ); } #personal-bookmarks #PlacesToolbar > hbox { display: -moz-stack !important; left: 0px; right: 0px; width: 100%; } #personal-bookmarks #PlacesToolbar #PlacesToolbarItems { overflow-x: visible; overflow-y: visible; } #personal-bookmarks #PlacesToolbar #PlacesToolbarItems > box { display: block; } #personal-bookmarks #PlacesToolbar > .bookmark-item{ visibility: visible !important; } #personal-bookmarks #PlacesToolbar .chevron{ visibility: collapse; } #personal-bookmarks #PlacesToolbar > hbox > hbox{ overflow-x: hidden; overflow-y: hidden; } #personal-bookmarks #PlacesToolbar #PlacesToolbarDropIndicator[collapsed="true"], #personal-bookmarks #PlacesToolbar #PlacesToolbarDropIndicator{ display: none; } #PlacesToolbarItems > .scrollbox-innerbox { display: flex; flex-wrap: wrap; overflow-x: hidden !important; overflow-y: visible !important; max-height: calc(var(--bookmark_items_height)*(var(--bookmark_items_lines))) !important } #personal-bookmarks > .arrowscrollbox{ min-height: unset !important; } #personal-bookmarks .scrollbox-innerbox{ display: flex; flex-wrap: wrap; } #PersonalToolbar { min-height: var(--bookmark_items_height) !important; max-height: calc(var(--bookmark_items_height)*(var(--bookmark_items_lines))) !important; } #PlacesToolbar, #PlacesToolbarItems { overflow: visible; display: block; } -
Nach dem heutigen Nightly-Update sind die Lesezeichen in der Lesezeichensymbolleiste alle untereinander. Und auf der rechten Seite befindet sich eine Scroll-Leiste.
Diese CSS habe ich für die Leiste
CSS
Alles anzeigen@-moz-document url("chrome://places/content/places.xhtml"){ /* Lesezeichenleiste mehrreihig */ #personal-bookmarks { --bookmark_items_height: 29px; --bookmark_items_lines: 2; /* Anzahl der angezeigten Reihen*/ } /* Abstand der Lesezeichen untereinander, die Werte können angepasst werden */ /* Zum aktivieren die Auskommentierungszeichen /*..am Anfang und Ende der Zeile bitte entfernen*/ #personal-bookmarks #PlacesToolbar toolbarbutton.bookmark-item{ padding-top: 4px !important; padding-bottom: 6px !important; /* margin-top: -2px !important; */ /* margin-bottom: -2px !important; */ vertical-align: middle!important; } #personal-bookmarks { display: block!important; -moz-window-dragging: no-drag !important; } #personal-bookmarks #PlacesToolbar { display: block; min-height: 0; overflow-x: hidden; overflow-y: auto; max-height: calc( var(--bookmark_items_lines) * var(--bookmark_items_height) ); } #personal-bookmarks #PlacesToolbar > hbox { display: -moz-stack !important; left: 0px; right: 0px; width: 100%; } #personal-bookmarks #PlacesToolbar #PlacesToolbarItems { overflow-x: visible; overflow-y: visible; } #personal-bookmarks #PlacesToolbar #PlacesToolbarItems > box { display: block; } #personal-bookmarks #PlacesToolbar > .bookmark-item{ visibility: visible !important; } #personal-bookmarks #PlacesToolbar .chevron{ visibility: collapse; } #personal-bookmarks #PlacesToolbar > hbox > hbox{ overflow-x: hidden; overflow-y: hidden; } #personal-bookmarks #PlacesToolbar #PlacesToolbarDropIndicator[collapsed="true"], #personal-bookmarks #PlacesToolbar #PlacesToolbarDropIndicator{ display: none; } #PlacesToolbarItems > .scrollbox-innerbox { display: flex; flex-wrap: wrap; overflow-x: hidden !important; overflow-y: visible !important; max-height: calc(var(--bookmark_items_height)*(var(--bookmark_items_lines))) !important } #personal-bookmarks > .arrowscrollbox{ min-height: unset !important; } #personal-bookmarks .scrollbox-innerbox{ display: flex; flex-wrap: wrap; } #PersonalToolbar { min-height: var(--bookmark_items_height) !important; max-height: calc(var(--bookmark_items_height)*(var(--bookmark_items_lines))) !important; } #PlacesToolbar, #PlacesToolbarItems { overflow: visible; display: block; } /* Damit wird eine Trennline neben den Lesezeichen wieder angezeigt wenn erwünscht */ #personal-bookmarks #PlacesToolbar toolbarseparator{ -moz-appearance: none !important; visibility: visible !important; display: inline; text-shadow: none !important; border-left: 2px solid ThreeDShadow !important; margin-right:3px!important; } }Wie bekomme ich die Lesezeichen wieder nebeneinander, mehrreihig und ohne Scroll-Leiste?
-
Abermals ein Danke!
-
Ist das eigentlich ein Sicherheitsproblem bzw. welche Auswirkungen kann dieser Zustand haben?
-
OK, Danke noch mal. Gebe es so weiter.
-
Herzlichen Dank!
In deinem Code-Feld stehen 3 x die gleichen Inhalte. Ist das so korrekt und gewollt?Habe gerade gesehen, dass Aufzählung 1 und 2 identisch ist und nicht alle 3.
-
Ein an mich herangetragenes Problem.
Die Seite https://adventgemeinde-ruhrort.adventist.eu/ zeigt, dass die Verbindung nicht sicher ist.
Leider gibt es keinen Verantwortlichen mehr; derjenige, der die Seite eingerichtet hat, ist nicht mehr verfügbar.
Die Frage, die sich stellt: Was ist zu tun, um die Seite sicher zu machen?
-
Für mich kann das Thema geschlossen werden, da keine zielführenden Hinweise ...
Du solltest korrekt zitieren. Und die Vorschau bemühen, wenn du dir nicht sicher bist.
-
Dann lasse die Funde löschen und teile mit, ob dein geschildertes Problem noch auftaucht.
-
Unter Hilfe => Informationen zur Fehlerbehebung kopierst du den Inhalt des Feldes durch Drücken der Schaltfläche „Text in die Zwischenablage kopieren“ und fügst den Inhalt in deinen nächsten Beitrag per Code </> ein Anleitung
-
Diese 37 Funde gehören aber alle ausschließlich zu vorinstallierter Software, welche bereits seit Jahren auf dem Laptop ist.
Dann hättest du 37 false positive!
Mit Administrator-Rechten machst du bitte einen Scan mit Malwarebytes
Wichtig: Nach dem Scan nichts löschen! Füge das Scanergebnis per Code </> ein.
-
Vielen Dank für die Info, aber leider hat der Scan keine Probleme gefunden.
Detected: 6
Sechs Funde bedeuten auch keine Probleme, oder?
Du solltest das aktuelle Scanergebnis posten"
-
Und auch dunkel draußen, da kann man schon mal etwas übersehen
Dann mal Licht einschalten

