summaryrefslogtreecommitdiff
path: root/browser/themes/windows
diff options
context:
space:
mode:
authorAntonius32 <Antonius32@users.noreply.github.com>2015-12-17 15:12:11 +0100
committerAntonius32 <Antonius32@users.noreply.github.com>2015-12-17 16:36:12 +0100
commit7953e07564fcb1be4bbd6e361f8e582db97c98f4 (patch)
tree52b4c6f67fb9e6f8e5d2d06c13f77f8c417bcdb9 /browser/themes/windows
parent0d5ecfed3b762855f76847b164a8bddb966c027f (diff)
downloadpalemoon-gre-7953e07564fcb1be4bbd6e361f8e582db97c98f4.tar.gz
Add a site indicator to in-progress downloads
Diffstat (limited to 'browser/themes/windows')
-rw-r--r--browser/themes/windows/downloads/downloads.css16
1 files changed, 8 insertions, 8 deletions
diff --git a/browser/themes/windows/downloads/downloads.css b/browser/themes/windows/downloads/downloads.css
index 071420c4d..ff4a13855 100644
--- a/browser/themes/windows/downloads/downloads.css
+++ b/browser/themes/windows/downloads/downloads.css
@@ -109,18 +109,18 @@ richlistitem[type="download"]:first-child {
list-style-image: url("chrome://global/skin/icons/Error.png");
}
-/* We hold .downloadTarget, .downloadProgress and .downloadDetails inside of
- a vbox with class .downloadContainer. We set the font-size of the entire
- container to 90% because:
+/* We hold .downloadDisplayName, .downloadProgress and .downloadDetails
+ inside of a vbox with class .downloadContainer. We set the font-size of
+ the entire container to 90% because:
1) This is the size that we want .downloadDetails to be
2) The container's width is set by localizers by &downloadDetails.width;,
which is a ch unit. Since this is the value that should control the
panel width, we apply it to the outer container to constrain
- .downloadTarget and .downloadProgress.
+ .downloadDisplayName and .downloadProgress.
- Finally, since we want .downloadTarget's font-size to be at 100% of the
- font-size of .downloadContainer's parent, we use calc to go from the
+ Finally, since we want .downloadDisplayName's font-size to be at 100% of
+ the font-size of .downloadContainer's parent, we use calc to go from the
smaller font-size back to the original font-size.
*/
#downloadsSummaryDetails,
@@ -129,12 +129,12 @@ richlistitem[type="download"]:first-child {
}
#downloadsSummaryDescription,
-.downloadTarget {
+.downloadDisplayName {
margin-bottom: 6px;
cursor: inherit;
}
-.downloadTarget {
+.downloadDisplayName {
font-size: calc(100%/0.9);
}