Autore Topic: firefox144 - le schede si spostano casualmente durante il trascinamento  (Letto 164 volte)

0 Utenti e 1 Visitatore stanno visualizzando questo topic.

Offline Schwanz

  • Post: 1778
in questa nuova versione, con molte schede aperte (da 6 in poi), quando sposto una a destra o sinistra, il pulsante  + di nuova scheda si nasconde e non rimane fisso e si visualizza solo quando rilascio la scheda e poi si spostano casualmente, quale è il parametro di about;config per far ripristinare il comportamento che faceva fino alla versione 143? questo nuovo comportamento è fastidioso e fa confusione.



come vedete, su waterfox il pulsante aggiungi nuova scheda rimane sempre visibile
« Ultima modifica: 15 Ottobre 2025 10:44:22 da Schwanz »

Offline Schwanz

  • Post: 1778
il problema è che se io tengo premuto una scheda e lo trascino a destra o sinistra, mi trascina anche le altre accanto, quindi vengono trascinate insieme anzichè rimanere ferme.

anche se browser.tabs.groups.enabled e browser.tabs.allowTabDetach sono impostati in false, me li trascina ugualmente.

il pulsante + rimane visibile se apro solo 5 schede
« Ultima modifica: 15 Ottobre 2025 15:13:31 da Schwanz »

Offline Schwanz

  • Post: 1778
la causa è che in userchrome.css avevo messo tempo fa questo codice per cambiare la dimensione delle schede che fino a firefox 142 funzionava col pulsante + visibile, quindi come posso fare in modo di ottenere la lunghezza di 250px senza dover nascondere il pulsante di nuova scheda? intendo dire che quando apro il browser, alla sola scheda aperta la dimensione deve essere di 250px che è la stessa di firefox 56.0.2

Codice: [Seleziona]
/* APERTURA SCHEDE INFINITE */
.tabbrowser-tab:not([pinned]) {
   max-width:250px !important;
   min-width:55px !important; }

.tabbrowser-tab:not([fadein]) {
   max-width:1px !important;
   min-width:1px !important; }

in about:config se uso questi due parametri non fanno effetto
« Ultima modifica: 15 Ottobre 2025 15:52:44 da Schwanz »

Offline Schwanz

  • Post: 1778
ho anche questo codice e aggiungendo max-width lo allarga, ma il pulsante + scompare se ne apro 6

stranamente con questo metodo mi funziona nel pc fisso di windows10, nel portatile di windows11 no.

Citazione
/* DIMENSIONE ALTEZZA DELLE SCHEDE */
.tabbrowser-tab[selected] {
  max-height: 28px !important;
  min-height: 28px !important;
  max-width: 250px !important;
  font-size: 9.5pt !important;
}   
tab:not([selected="true"]) {
  max-height: 28px !important;
  min-height: 28px !important;
  max-width: 250px !important;
  font-size: 9.5pt !important; }
« Ultima modifica: 15 Ottobre 2025 17:17:15 da Schwanz »

Offline Schwanz

  • Post: 1778
ecco la dimensione della scheda, nella seconda immagine, la scheda ha lunghezza più corta per questo desidero allungarla

Offline Schwanz

  • Post: 1778
ci sono quasi riuscito, il pulsante + resta visibile con la scheda a 250px, però quando apro solo 5 schede, cliccando su una scheda si allunga, ma quando apro la sesta scheda, la larghezza è la stessa delle altre. il problema è il selected che vedete in rosso, ho provato a scrivere pinned, e poi grouped, ma non va perchè il pulsante nuova scheda si nasconde quando trascino.



ho aggiunto max-width, e ho rimosso l'altro codice /* APERTURA SCHEDE INFINITE */
Citazione
/* DIMENSIONE ALTEZZA DELLE SCHEDE */
.tabbrowser-tab[selected] {
  max-height: 28px !important;
  min-height: 28px !important;
  max-width: 250px !important;
  font-size: 9.6pt !important; 

.tab:not([selected="true"]) {
  max-height: 28px !important;
  min-height: 28px !important;
  max-width: 250px !important;
  font-size: 9.6pt !important; }
« Ultima modifica: 16 Ottobre 2025 00:15:15 da Schwanz »

Offline Schwanz

  • Post: 1778
sono riuscito a mantenere la larghezza delle scheda quando ci clicco, il pulsante nuova scheda ancora si nasconde.

quindi la differenza è che se io metto entrambi i codici, il pulsante nuova scheda si nasconde e cliccando su una scheda non si allunga, mentre se tengo solo /* DIMENSIONE ALTEZZA DELLE SCHEDE */ il pulsante è visibile, ma cliccando su una scheda, si allunga,

la parte in rosso è quello che ho tolto
Citazione
/* DIMENSIONE ALTEZZA DELLE SCHEDE */
.tabbrowser-tab[selected] {
  max-height: 28px !important;
  min-height: 28px !important;
  max-width: 250px !important;
  font-size: 9.6pt !important; 

tab:not([selected="true"]) {
  max-height: 28px !important;
  min-height: 28px !important;
  max-width: 250px !important;
  font-size: 9.6pt !important; }



/* APERTURA SCHEDE INFINITE */
.tabbrowser-tab:not([pinned]) {
   max-width:250px !important;
   min-width:55px !important; }

.tabbrowser-tab:not([fadein]) {
   max-width:1px !important;
   min-width:1px !important; }
« Ultima modifica: 16 Ottobre 2025 16:48:26 da Schwanz »

Offline Schwanz

  • Post: 1778
vedo che nessuno mi vuole aiutare, eppure mi sto sforzando a spiegare bene in modo preciso il mio problema, non capisco......
« Ultima modifica: 17 Ottobre 2025 10:25:05 da Schwanz »

Offline Schwanz

  • Post: 1778
le uniche due cose che vorrei ottenere e ve lo mostrate nelle immagini gif:

1. RENDERE LA LARGHEZZA DELLA SCHEDA CHE CI HO CLICCATO UGUALE ALLE ALTRE (in rosso sono quelle che ho eliminato)! IL PROBLEMA E' CHE APPENA TRASCINO, LA SCHEDA FA NASCONDERE IL PULSANTE DI NUOVA SCHEDA FINCHE' LO RILASCIO SPOSTANDOLO IN UN'ALTRA POSIZIONE! ELIMINANDO max-width: 250px !important; LA SCHEDA SI ALLUNGA QUANDO CI CLICCO E IL PULSANTE + RENDE VISIBILE QUANDO TRASCINO, INVECE SE LO ELIMINO, LA SCHEDA ATTIVA E' UGUALE ALLE ALTRE, MA IL PULSANTE + SI NASCONDE QUANDO TRASCINO!
Citazione
/* DIMENSIONE ALTEZZA DELLE SCHEDE */
.tabbrowser-tab[selected] {
  max-height: 28px !important;
  min-height: 28px !important;
  max-width: 250px !important;
  font-size: 9.6pt !important;
}
tab:not([selected="true"]) {
  max-height: 28px !important;
  min-height: 28px !important;
  max-width: 250px !important;
  font-size: 9.6pt !important; }


/* APERTURA SCHEDE INFINITE */
.tabbrowser-tab:not([pinned]) {
   max-width:250px !important;
   min-width:55px !important; }


.tabbrowser-tab:not([fadein]) {
   max-width:1px !important;
   min-width:1px !important; }

2. ANZICHE' USARE I MIEI DUE CODICI, VOGLIO SOLO AVERE UN NUOVO CODICE PER LA LARGHEZZA DI 250PX QUANDO NON E' CLICCATO ALL'AVVIO DEL BROWSER! QUESTO CODICE E' QUELLO IN CUI HO SEMPRE AVUTO FINORA SENZA QUELLE IN ROSSO, E QUINDI LA SCHEDA ATTIVA DIVENTA PIU' CORTA DI 250PX CHE E' DI DEFAULT DEL BROWSER E CHE LO RENDE VISIBILE IL PULSANTE DI NUOVA SCHEDA QUANDO TRASCINO SENZA CHE SI NASCONDE FINCHE' LO RILASCIO!
Citazione
/* DIMENSIONE ALTEZZA DELLE SCHEDE */
.tabbrowser-tab[selected] {
  max-height: 28px !important;
  min-height: 28px !important;
  max-width: 250px !important;
  font-size: 9.6pt !important;
}
tab:not([selected="true"]) {
  max-height: 28px !important;
  min-height: 28px !important;
  max-width: 250px !important;
  font-size: 9.6pt !important; }



/* APERTURA SCHEDE INFINITE */
.tabbrowser-tab:not([pinned]) {
   max-width:250px !important;
   min-width:55px !important; }

.tabbrowser-tab:not([fadein]) {
   max-width:1px !important;
   min-width:1px !important; }

ecco come si presenta col codice che ho sempre avuto, aprendo solo 5 schede, il pulsante + si vede  quando trascino


appena apro la sesta scheda, lo nasconde, sembra che la scheda e il + si trascinano insieme finchè lo rilascio, oppure che la scheda trascinata sovrappone il +, non si capisce quale è il vero comportamento, dovrei cercare qualcosa tipo switch o split ma non trovo i codici nelle ricerche anche in inglese per dividere la scheda dal +, oppure fare in modo di bloccare il + quando trascino
« Ultima modifica: 18 Ottobre 2025 15:28:46 da Schwanz »

0 Utenti e 1 Visitatore stanno visualizzando questo topic.