home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Complet / thunderbird / chrome / qute.jar / skin / classic / mozapps / downloads / downloads.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2003-12-10  |  2.2 KB  |  102 lines

  1. #downloadManager {
  2.   background-color: ThreeDFace;
  3. }
  4.  
  5. /* Download View */
  6. #downloadView {
  7.   -moz-binding: url("chrome://mozapps/skin/downloads/downloads.xml#download-view");
  8.   margin: 10px 10px 5px 10px;
  9.   -moz-appearance: listbox;
  10.   -moz-user-focus: normal;
  11. }
  12.  
  13. .downloadViewInner2 {
  14.   background-image: url("chrome://mozapps/skin/downloads/viewFader.png");
  15.   padding: 0px;
  16. }  
  17.  
  18. .downloadViewInner1 {
  19.   background-color: Window;
  20.   background-image: url("chrome://mozapps/skin/downloads/downloadsBG.png");
  21.   background-attachment: fixed;
  22.   background-repeat: no-repeat;
  23.   background-position: bottom right;
  24. }
  25.  
  26. /* Download Manager Command Bar */
  27. #commandBar {
  28.   padding: 0px 10px 5px 10px;
  29. }
  30.  
  31. #cleanUpButton {
  32.   margin: 0px;
  33.   -moz-user-focus: ignore;
  34.   list-style-image: url("chrome://mozapps/skin/downloads/downloadCleanup.png");
  35. }
  36.  
  37. #optionsButton {
  38.   margin: 0px;
  39.   -moz-user-focus: ignore;
  40.   list-style-image: url("chrome://mozapps/skin/downloads/downloadOptions.png");
  41. }
  42.  
  43. #cleanUpButton .button-icon, #optionsButton .button-icon {
  44.   margin: 0px 5px 0px 0px !important;
  45. }
  46.  
  47. #cleanUpButton[disabled="true"] {
  48.   list-style-image: url("chrome://mozapps/skin/downloads/downloadCleanupDisabled.png");
  49. }
  50.  
  51. #commandBarSeparator {
  52.   margin-left: 5px;
  53. }
  54.  
  55. /* Download View Items */
  56. download {
  57.   padding: 13px 10px 13px 13px;
  58.   min-height: 25px;
  59.   border-bottom: 1px dotted #C0C0C0;
  60. }
  61.  
  62. download[selected="true"] {
  63.   background-image: url("chrome://mozapps/skin/downloads/downloadSelected.png") !important;
  64.   border-bottom: 1px dotted #7F9DB9;
  65. }
  66.  
  67. download[state="0"], download[state="-1"], download[state="4"], 
  68. download[state="5"], download[state="6"] {
  69.   background-color: transparent;
  70.   background-image: url("chrome://mozapps/skin/downloads/downloadFader.png");
  71. }
  72.  
  73. /* Download View Items, implementation */
  74. .downloadContentBox {
  75.   -moz-opacity: 0.0;
  76. }
  77.  
  78. .downloadContentBox[animated="true"] {
  79.   -moz-opacity: 1.0;
  80. }
  81.  
  82. .downloadTypeIcon {
  83.   margin-right: 10px;
  84. }
  85.  
  86. .link {
  87.   text-decoration: underline;
  88.   color: blue;
  89.   cursor: pointer;
  90.   -moz-user-focus: normal;
  91.   border: 1px solid transparent;
  92. }
  93.  
  94. .link:hover:active {
  95.   color: red;
  96. }
  97.  
  98. .link:focus {
  99.   border: 1px dotted black;
  100. }
  101.  
  102.