home *** CD-ROM | disk | FTP | other *** search
/ Freelog 112 / FreelogNo112-NovembreDecembre2012.iso / Multimedia / Songbird / Songbird_2.0.0-2311_windows-i686-msvc8.exe / chrome / songbird.jar / skin / bindings / device / deviceInfo.css < prev    next >
Cascading Style Sheet File  |  2012-05-25  |  3KB  |  129 lines

  1. /*
  2. //
  3. // BEGIN SONGBIRD GPL
  4. //
  5. // This file is part of the Songbird web player.
  6. //
  7. // Copyright(c) 2005-2008 POTI, Inc.
  8. // http://songbirdnest.com
  9. //
  10. // This file may be licensed under the terms of of the
  11. // GNU General Public License Version 2 (the "GPL").
  12. //
  13. // Software distributed under the License is distributed
  14. // on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either
  15. // express or implied. See the GPL for the specific language
  16. // governing rights and limitations.
  17. //
  18. // You should have received a copy of the GPL along with this
  19. // program. If not, go to http://www.gnu.org/licenses/gpl.html
  20. // or write to the Free Software Foundation, Inc.,
  21. // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  22. //
  23. // END SONGBIRD GPL
  24. //
  25.  */
  26.  
  27.  
  28.  
  29. /**
  30. *******************************************************************************
  31. DEVICE INFO
  32.  
  33. See app/content/bindings/device/deviceInfo.xml
  34.  
  35. Style rules pertaining to the device information widget.
  36.  
  37. Imported by bindings.css or directly into feathers.
  38.  
  39. *******************************************************************************
  40. */
  41.  
  42. .device-name-label {
  43.   font-size:160%;
  44. }
  45.  
  46. .device-specs-grid-label
  47. {
  48.   font-size:110%;
  49.   max-width:200px;
  50. }
  51.  
  52. .device-model-icon
  53. {
  54.   width:64px;
  55. }
  56.  
  57. .device-image
  58. {
  59.   height:64px;
  60.   width:64px;
  61.   list-style-image:url("chrome://songbird/skin/device/icon-generic-device.png");
  62. }
  63.  
  64. .eject-button {
  65.   min-width:20px;
  66.   height:20px;
  67.   margin:0 0 0 4px;
  68.   padding:0;
  69.   list-style-image:url("chrome://songbird/skin/buttons/eject-button.png");
  70.   -moz-image-region: rect(0px, 18px, 18px, 0px);
  71. }
  72.  
  73. .more-info-button {
  74.   min-width:20px;
  75.   height:20px;
  76.   margin:0 0 0 4px;
  77.   padding:0;
  78.   list-style-image:url("chrome://songbird/skin/buttons/info-button.png");
  79.   -moz-image-region: rect(0px, 18px, 18px, 0px);
  80. }
  81.  
  82. .eject-button:not([disabled]):hover,
  83. .more-info-button:not([disabled]):hover {
  84.   -moz-image-region: rect(18px, 18px, 36px, 0px);
  85. }
  86.  
  87. .eject-button > .button-box > label,
  88. .more-info-button > .button-box > label {
  89.   display:none;
  90. }
  91.  
  92. .device-specs-grid-label {
  93.   margin-top:0;
  94.   margin-bottom:4px;
  95. }
  96.  
  97. .device-battery-box {
  98.   width:25px;
  99. }
  100.  
  101. .device-battery-left {
  102.   list-style-image:url("chrome://songbird/skin/device/battery-left.png");
  103. }
  104.  
  105. .device-battery-right {
  106.   list-style-image:url("chrome://songbird/skin/device/battery-right.png");
  107. }
  108.  
  109. .device-battery-status {
  110.   background-image:url("chrome://songbird/skin/device/battery-draining.png");
  111.   background-repeat:repeat-x;
  112.   background-position:center;
  113. }
  114.  
  115. .device-battery-status[status="charged"] {
  116.   background-image:url("chrome://songbird/skin/device/battery-charged.png");
  117. }
  118.  
  119. .device-battery-status[status="charging"] {
  120.   background-image:url("chrome://songbird/skin/device/battery-charging.png");
  121. }
  122.  
  123. .device-battery-empty {
  124.   background-image:url("chrome://songbird/skin/device/battery-empty.png");
  125.   background-repeat:repeat-x;
  126.   background-position:center;
  127. }
  128.  
  129.