Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | #downloadManager { |
michael@0 | 6 | background-color: ThreeDFace; |
michael@0 | 7 | } |
michael@0 | 8 | |
michael@0 | 9 | /* Download View */ |
michael@0 | 10 | #downloadView { |
michael@0 | 11 | -moz-appearance: none !important; |
michael@0 | 12 | margin: 0; |
michael@0 | 13 | border-bottom: 2px solid; |
michael@0 | 14 | -moz-border-bottom-colors: ThreeDHighlight ThreeDLightShadow; |
michael@0 | 15 | } |
michael@0 | 16 | |
michael@0 | 17 | /* Download View Items */ |
michael@0 | 18 | richlistitem[type="download"] { |
michael@0 | 19 | padding: 4px 8px 4px 4px; |
michael@0 | 20 | min-height: 46px; |
michael@0 | 21 | } |
michael@0 | 22 | |
michael@0 | 23 | richlistitem[type="download"][selected="true"] { |
michael@0 | 24 | background-image: url(chrome://mozapps/skin/extensions/itemEnabledFader.png); |
michael@0 | 25 | } |
michael@0 | 26 | |
michael@0 | 27 | richlistitem[type="download"]:not([selected="true"]):nth-child(odd) { |
michael@0 | 28 | background-color: -moz-oddtreerow; |
michael@0 | 29 | } |
michael@0 | 30 | |
michael@0 | 31 | richlistitem[type="download"] .name { |
michael@0 | 32 | font-size: larger; |
michael@0 | 33 | } |
michael@0 | 34 | |
michael@0 | 35 | richlistitem[type="download"] .dateTime { |
michael@0 | 36 | font-size: smaller; |
michael@0 | 37 | } |
michael@0 | 38 | |
michael@0 | 39 | .mini-button { |
michael@0 | 40 | -moz-appearance: none; |
michael@0 | 41 | background-color: transparent; |
michael@0 | 42 | border: none; |
michael@0 | 43 | padding: 0; |
michael@0 | 44 | margin: 0; |
michael@0 | 45 | min-width: 0; |
michael@0 | 46 | min-height: 0; |
michael@0 | 47 | } |
michael@0 | 48 | |
michael@0 | 49 | .mini-button > .button-box { |
michael@0 | 50 | padding: 0 !important; |
michael@0 | 51 | } |
michael@0 | 52 | |
michael@0 | 53 | menuitem:not([type]) { |
michael@0 | 54 | -moz-binding: url("chrome://global/content/bindings/menu.xml#menuitem-iconic"); |
michael@0 | 55 | } |
michael@0 | 56 | |
michael@0 | 57 | .cancel, |
michael@0 | 58 | #menuitem_cancel { |
michael@0 | 59 | list-style-image: url("moz-icon://stock/gtk-cancel?size=menu"); |
michael@0 | 60 | } |
michael@0 | 61 | |
michael@0 | 62 | #menuitem_open { |
michael@0 | 63 | list-style-image: url("moz-icon://stock/gtk-open?size=menu"); |
michael@0 | 64 | } |
michael@0 | 65 | #menuitem_open[disabled="true"] { |
michael@0 | 66 | list-style-image: url("moz-icon://stock/gtk-open?size=menu&state=disabled"); |
michael@0 | 67 | } |
michael@0 | 68 | |
michael@0 | 69 | .pause, |
michael@0 | 70 | #menuitem_pause { |
michael@0 | 71 | list-style-image: url("moz-icon://stock/gtk-media-pause?size=menu"); |
michael@0 | 72 | } |
michael@0 | 73 | |
michael@0 | 74 | .pause[disabled="true"], |
michael@0 | 75 | #menuitem_pause[disabled="true"] { |
michael@0 | 76 | list-style-image: url("moz-icon://stock/gtk-media-pause?size=menu&state=disabled"); |
michael@0 | 77 | } |
michael@0 | 78 | |
michael@0 | 79 | .resume, |
michael@0 | 80 | #menuitem_resume { |
michael@0 | 81 | list-style-image: url("moz-icon://stock/gtk-media-play?size=menu"); |
michael@0 | 82 | } |
michael@0 | 83 | |
michael@0 | 84 | .retry, |
michael@0 | 85 | #menuitem_retry { |
michael@0 | 86 | list-style-image: url("moz-icon://stock/gtk-redo?size=menu"); |
michael@0 | 87 | } |
michael@0 | 88 | |
michael@0 | 89 | #menuitem_removeFromList { |
michael@0 | 90 | list-style-image: url("moz-icon://stock/gtk-remove?size=menu"); |
michael@0 | 91 | } |
michael@0 | 92 | |
michael@0 | 93 | #menuitem_copyLocation { |
michael@0 | 94 | list-style-image: url("moz-icon://stock/gtk-copy?size=menu"); |
michael@0 | 95 | } |
michael@0 | 96 | |
michael@0 | 97 | .blockedIcon { |
michael@0 | 98 | list-style-image: url("moz-icon://stock/gtk-dialog-error?size=dialog"); |
michael@0 | 99 | width: 32px; |
michael@0 | 100 | height: 32px; |
michael@0 | 101 | } |
michael@0 | 102 | |
michael@0 | 103 | /* prevent flickering when changing states */ |
michael@0 | 104 | .downloadTypeIcon { |
michael@0 | 105 | min-height: 32px; |
michael@0 | 106 | min-width: 32px; |
michael@0 | 107 | } |
michael@0 | 108 | |
michael@0 | 109 | #clearListButton { |
michael@0 | 110 | list-style-image: url(moz-icon://stock/gtk-clear?size=button); |
michael@0 | 111 | margin-top: 3px; |
michael@0 | 112 | } |
michael@0 | 113 | |
michael@0 | 114 | #clearListButton[disabled="true"] { |
michael@0 | 115 | list-style-image: url(moz-icon://stock/gtk-clear?size=button&state=disabled); |
michael@0 | 116 | } |