toolkit/mozapps/update/content/updates.css

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/toolkit/mozapps/update/content/updates.css	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,41 @@
     1.4 +/* Stop animations when the page they are on are not displayed (bug 341749). */
     1.5 +#updates:not([currentpageid="checking"]) #checkingProgress,
     1.6 +#updates:not([currentpageid="incompatibleCheck"]) #incompatibleCheckProgress,
     1.7 +#updates:not([currentpageid="downloading"]) #downloadProgress {
     1.8 +  display: none;
     1.9 +}
    1.10 +
    1.11 +/* Hide the wizard's header so the size of the billboard can size the window 
    1.12 +   on creation. A custom header will be used in its place when a header is
    1.13 +   needed. */
    1.14 +.wizard-header {
    1.15 +  display: none;
    1.16 +}
    1.17 +
    1.18 +/* Display the custom header */
    1.19 +.update-header {
    1.20 +  display: -moz-box !important;
    1.21 +}
    1.22 +
    1.23 +/* Custom header implementation based on the Wizard's header. This allows the
    1.24 +   size of the billboard's remotecontent to size the window since it does not
    1.25 +   have an updateheader on the billboard page. */
    1.26 +updateheader {
    1.27 +  -moz-binding: url("chrome://mozapps/content/update/updates.xml#updateheader");
    1.28 +  display: -moz-box;
    1.29 +  -moz-box-orient: horizontal;
    1.30 +}
    1.31 +
    1.32 +/* Remote content displayed in the billboard and license pages. */
    1.33 +remotecontent {
    1.34 +  -moz-binding: url("chrome://mozapps/content/update/updates.xml#remotecontent");
    1.35 +  display: -moz-deck;
    1.36 +}
    1.37 +
    1.38 +/* Update History Window */
    1.39 +update {
    1.40 +  -moz-binding: url("chrome://mozapps/content/update/updates.xml#update");
    1.41 +  display: -moz-box;
    1.42 +  -moz-box-orient: vertical;
    1.43 +}
    1.44 +

mercurial