forked from mirrors/gecko-dev
* Having a different id for the container of download items in the download panel vs the all-downloads view (about:downloads and the library/places view) is one of the main reasons we need the %define item, to allow the same included stylesheet to apply to the different markup by virtue of the different selector produced when @item@ is expanded * As these IDs aren't particularly descriptive, and the distinction isn't meaningful, having each list use the same id allows more direct stylesheet reuse in both places Differential Revision: https://phabricator.services.mozilla.com/D135399
8 lines
315 B
CSS
8 lines
315 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/. */
|
|
|
|
#downloadsListBox:not(:empty) + #downloadsListEmptyDescription,
|
|
#downloadsListBox:empty {
|
|
display: none;
|
|
}
|