fune/browser/components/firefoxview/view-opentabs.css
Jonathan Sudiaman e1208b882a Bug 1826600 - Add Open Tabs page r=fluent-reviewers,flod,dao
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
2023-06-14 17:39:06 +00:00

20 lines
436 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/. */
.view-opentabs-card-container {
display: grid;
gap: 1em;
}
.one-column {
grid-template-columns: 1fr;
}
.two-columns {
grid-template-columns: repeat(2, 1fr);
}
.three-columns {
grid-template-columns: repeat(3, 1fr);
}