michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: %define WINDOWS_AERO michael@0: %include allDownloadsViewOverlay.css michael@0: %undef WINDOWS_AERO michael@0: michael@0: @media (-moz-windows-default-theme) { michael@0: /* michael@0: -moz-appearance: menuitem is almost right, but the hover effect is not michael@0: transparent and is lighter than desired. michael@0: michael@0: Copied from the autocomplete richlistbox styling in michael@0: toolkit/themes/windows/global/autocomplete.css michael@0: michael@0: This styling should be kept in sync with the style from the above file. michael@0: */ michael@0: #downloadsRichListBox > richlistitem.download[selected] { michael@0: color: inherit; michael@0: background-color: transparent; michael@0: /* four gradients for the bevel highlights on each edge, one for blue background */ michael@0: background-image: michael@0: linear-gradient(to bottom, rgba(255,255,255,0.9) 3px, rgba(255,255,255,0) 3px), michael@0: linear-gradient(to right, rgba(255,255,255,0.5) 3px, rgba(255,255,255,0) 3px), michael@0: linear-gradient(to left, rgba(255,255,255,0.5) 3px, rgba(255,255,255,0) 3px), michael@0: linear-gradient(to top, rgba(255,255,255,0.4) 3px, rgba(255,255,255,0) 3px), michael@0: linear-gradient(to bottom, rgba(163,196,247,0.3), rgba(122,180,246,0.3)); michael@0: background-clip: content-box; michael@0: border-radius: 6px; michael@0: outline: 1px solid rgb(124,163,206); michael@0: -moz-outline-radius: 3px; michael@0: outline-offset: -2px; michael@0: } michael@0: }