forked from mirrors/gecko-dev
Initial open tabs implementation in Firefox View Next. Note that this only lists out the open tabs. It does not yet provide the ability to switch to an open tab or window. See bug description for a full list of expected behaviors. [[ https://bugzilla.mozilla.org/attachment.cgi?id=9324749&action=diff | This patch ]] from @mkaply was used as a starting point. https://treeherder.mozilla.org/jobs?repo=try&revision=789cd12b31cc76c4f9532560fd10727af6b264d5 Differential Revision: https://phabricator.services.mozilla.com/D178970
13 lines
419 B
CSS
13 lines
419 B
CSS
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
.fxview-tab-list {
|
|
display: grid;
|
|
grid-template-columns: min-content 3fr 2fr 1fr 1fr min-content;
|
|
gap: 8px;
|
|
}
|
|
|
|
:host([compactRows]) .fxview-tab-list {
|
|
grid-template-columns: min-content 1fr min-content;
|
|
}
|