Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

how to disable drag tab animation

136 views
Skip to first unread message

dindog

unread,
Aug 6, 2011, 2:15:03 AM8/6/11
to
Bug 455694 – Implement animation for tab reordering and detaching (via
drag and drop)
https://bugzilla.mozilla.org/show_bug.cgi?id=455694

1.break some addon function.
2.don't like animation.

Asa Dotzler

unread,
Aug 6, 2011, 2:30:40 AM8/6/11
to
dindog wrote:
> Bug 455694 � Implement animation for tab reordering and detaching (via

This feature is not intended to be user-configurable.

- A

Pavel Cvrček

unread,
Aug 6, 2011, 6:01:58 AM8/6/11
to Asa Dotzler
Dne 6.8.2011 8:30, Asa Dotzler napsal(a):
>> Bug 455694 – Implement animation for tab reordering and detaching (via

>> drag and drop)
>> https://bugzilla.mozilla.org/show_bug.cgi?id=455694
>>
>> 1.break some addon function.
>> 2.don't like animation.
>
> This feature is not intended to be user-configurable.

I like new animation but why we don't want a option to disable it? We
have browser.tabs.animate for enable/disable open/close tab animation. I
ask because I think it will be frequent question in our local support
forum after FF 8 release.

Regards,

--
Pavel Cvrček <pcv...@mozilla.cz>
http://www.mozilla.cz/

Matthew Turnbull

unread,
Aug 7, 2011, 2:04:06 AM8/7/11
to dev-apps...@lists.mozilla.org
Indeed. I've already written up most of my thoughts here:
https://bugzilla.mozilla.org/show_bug.cgi?id=675444#c5

Affected behavior aside, it would be nice to disable just the drag
animation, 'cause it's damned annoying.

Preventing tabs from resizing, when a tab was closed, made dealing with
tabs much easier. This just replaces it with an equally painful annoyance.

--
Bluefang-Logic Networks:

Scaled for your pleasure.

Shawn Wilsher

unread,
Aug 7, 2011, 9:12:17 PM8/7/11
to dev-apps...@lists.mozilla.org
On 8/6/2011 3:01 AM, Pavel Cvrček wrote:
> I like new animation but why we don't want a option to disable it? We
> have browser.tabs.animate for enable/disable open/close tab animation. I
> ask because I think it will be frequent question in our local support
> forum after FF 8 release.
The cost of providing this option is not free. There is additional code
complexity overhead, test coverage overhead, and developer mindshare
overhead (you have to be aware of more things that could break).

Cheers,

Shawn

Martijn

unread,
Aug 8, 2011, 10:17:04 AM8/8/11
to Pavel Cvrček, dev-apps...@lists.mozilla.org
On Sat, Aug 6, 2011 at 12:01 PM, Pavel Cvrček <pcv...@mozilla.cz> wrote:
> Dne 6.8.2011 8:30, Asa Dotzler napsal(a):
>>>
>>> Bug 455694 – Implement animation for tab reordering and detaching (via
>>> drag and drop)
>>> https://bugzilla.mozilla.org/show_bug.cgi?id=455694
>>>
>>> 1.break some addon function.
>>> 2.don't like animation.
>>
>> This feature is not intended to be user-configurable.
>
> I like new animation but why we don't want a option to disable it? We have
> browser.tabs.animate for enable/disable open/close tab animation. I ask
> because I think it will be frequent question in our local support forum
> after FF 8 release.

It's actually quite easy to disable the tab reorder animation, if the
only thing you want is disable the tab animation.
Just add this to your userChrome.css file:
.tabbrowser-tabs[drag=detach] > .tabbrowser-tab[dragged]:not(:only-child) {
-moz-transition: max-width 0ms ease-out !important;
}
.tabbrowser-tabs[drag=move] > .tabbrowser-tab[fadein]:not([dragged]) {
-moz-transition: -moz-transform 0ms ease-out !important;
}
.tabbrowser-tabs[drag=finish] > .tabbrowser-tab[dragged][fadein] {
-moz-transition: -moz-transform 0ms ease-out !important;
}

You can easily edit that file, by using an extension like Chromedit Plus.

Regards,
Martijn


> Regards,
>
> --
> Pavel Cvrček <pcv...@mozilla.cz>
> http://www.mozilla.cz/

> _______________________________________________
> dev-apps-firefox mailing list
> dev-apps...@lists.mozilla.org
> https://lists.mozilla.org/listinfo/dev-apps-firefox
>

--
Martijn Wargers - Help Mozilla!
http://quality.mozilla.org/
http://wiki.mozilla.org/Mozilla_QA_Community
irc://irc.mozilla.org/qa - /nick mw22

Justin Wood (Callek)

unread,
Aug 8, 2011, 11:56:58 AM8/8/11
to
Martijn wrote:
> On Sat, Aug 6, 2011 at 12:01 PM, Pavel Cvrček<pcv...@mozilla.cz> wrote:
>> Dne 6.8.2011 8:30, Asa Dotzler napsal(a):
>>>>
>>>> Bug 455694 – Implement animation for tab reordering and detaching (via
>>>> drag and drop)
>>>> https://bugzilla.mozilla.org/show_bug.cgi?id=455694
>>>>
>>>> 1.break some addon function.
>>>> 2.don't like animation.
>>>
>>> This feature is not intended to be user-configurable.
>>
>> I like new animation but why we don't want a option to disable it? We have
>> browser.tabs.animate for enable/disable open/close tab animation. I ask
>> because I think it will be frequent question in our local support forum
>> after FF 8 release.
>
> It's actually quite easy to disable the tab reorder animation, if the
> only thing you want is disable the tab animation.
> Just add this to your userChrome.css file:
> .tabbrowser-tabs[drag=detach]> .tabbrowser-tab[dragged]:not(:only-child) {
> -moz-transition: max-width 0ms ease-out !important;
> }
> .tabbrowser-tabs[drag=move]> .tabbrowser-tab[fadein]:not([dragged]) {
> -moz-transition: -moz-transform 0ms ease-out !important;
> }
> .tabbrowser-tabs[drag=finish]> .tabbrowser-tab[dragged][fadein] {
> -moz-transition: -moz-transform 0ms ease-out !important;
> }
>
> You can easily edit that file, by using an extension like Chromedit Plus.
>

Well while I would argue against "easy" without having already provided
the CSS to do it, even I, as a dev, would have foundit hard(er) to write
CSS to disable it.

But thanks (for those of "you" who want to)

--
~Justin Wood (Callek)

0 new messages