You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.css 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. @import url(../runo/styles.css);
  2. /******************************************************************************
  3. * For VaadinTunesLayout.java
  4. ******************************************************************************/
  5. .tTunes, .tTunes select, .tTunes button {
  6. font-size: 11px;
  7. line-height: 14px;
  8. color: #000;
  9. font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
  10. }
  11. .tTunes .top {
  12. background: transparent url(images/top-bg.png) repeat-x;
  13. }
  14. /* Hide all button captions */
  15. .tTunes .top .v-nativebutton span {
  16. display: none;
  17. }
  18. .tTunes .playback .v-nativebutton {
  19. width: 31px;
  20. height: 32px;
  21. overflow: hidden;
  22. padding: 0;
  23. border: none;
  24. }
  25. .tTunes .playback .play {
  26. width: 37px;
  27. height: 38px;
  28. background: transparent url(images/play.png);
  29. }
  30. .tTunes .playback .prev {
  31. background: transparent url(images/prev.png);
  32. }
  33. .tTunes .playback .next {
  34. background: transparent url(images/next.png);
  35. }
  36. .tTunes .volume .mute {
  37. width: 13px;
  38. height: 14px;
  39. background: transparent url(images/mute.png) no-repeat left bottom;
  40. border: none;
  41. padding: 0;
  42. overflow: hidden;
  43. }
  44. .tTunes .volume .max {
  45. width: 17px;
  46. height: 14px;
  47. background: transparent url(images/max.png) no-repeat right bottom;
  48. border: none;
  49. padding: 0;
  50. overflow: hidden;
  51. }
  52. .tTunes .volume .v-slider {
  53. border: none;
  54. }
  55. .tTunes .volume .v-slider-base {
  56. background: transparent url(images/volume-bar.png) no-repeat 0 50%;
  57. height: 6px;
  58. border: none;
  59. border-top: 1px solid #aaa;
  60. }
  61. .tTunes .volume .v-slider-handle {
  62. background: transparent url(images/volume-knob.png) no-repeat;
  63. margin-top: -3px;
  64. }
  65. .tTunes .status {
  66. background: transparent url(images/status-bg.png) repeat-x;
  67. line-height: 12px;
  68. border-right: 1px solid #959985;
  69. border-left: 1px solid #959985;
  70. border-radius: 5px;
  71. -webkit-border-radius: 5px;
  72. -moz-border-radius: 5px;
  73. }
  74. .tTunes .status .v-horizontallayout-margin-top {
  75. padding-top: 3px;
  76. }
  77. .tTunes .status .v-horizontallayout-margin-bottom {
  78. padding-bottom: 3px;
  79. }
  80. .tTunes .status .v-horizontallayout-margin-left {
  81. padding-left: 9px;
  82. }
  83. .tTunes .status .v-horizontallayout-margin-right {
  84. padding-right: 9px;
  85. }
  86. .tTunes .status .v-label {
  87. white-space: nowrap;
  88. }
  89. .tTunes .status .v-slider {
  90. border: 1px solid #000;
  91. border-left: none;
  92. border-right: none;
  93. height: 7px;
  94. margin: 0;
  95. }
  96. .tTunes .status .v-slider-base {
  97. border: none;
  98. height: 7px;
  99. border-left: 1px solid #000;
  100. border-right: 1px solid #000;
  101. background: transparent;
  102. }
  103. .tTunes .status .v-slider-handle {
  104. margin: 0;
  105. width: 7px;
  106. height: 7px;
  107. background: transparent url(images/progress-knob.png);
  108. }
  109. .tTunes .toggle-vis,
  110. .tTunes .jump {
  111. width: 11px;
  112. height: 11px;
  113. overflow: hidden;
  114. border: none;
  115. background: transparent url(images/toggle-visualization.png);
  116. padding: 0;
  117. }
  118. .tTunes .jump {en;
  119. border: none;
  120. background: transparent url(images/jump-to.png);
  121. }
  122. .tTunes .viewmode-table,
  123. .tTunes .viewmode-grid,
  124. .tTunes .viewmode-coverflow {
  125. border: none;
  126. width: 27px;
  127. height: 22px;
  128. overflow: hidden;
  129. }
  130. .tTunes .viewmode-table {
  131. background: transparent url(images/table-view.png) no-repeat right top;
  132. }
  133. .tTunes .viewmode-grid {
  134. background: transparent url(images/grid-view.png) no-repeat;
  135. }
  136. .tTunes .viewmode-coverflow {
  137. background: transparent url(images/coverflow-view.png) no-repeat;
  138. }
  139. .tTunes .v-splitpanel-horizontal .v-splitpanel-hsplitter {
  140. width: 1px;
  141. background: #404040;
  142. }
  143. .tTunes .v-splitpanel-horizontal .v-splitpanel-hsplitter div {
  144. width: 3px;
  145. border: none;
  146. background: transparent;
  147. }
  148. .tTunes .sidebar {
  149. background: #d1d7e2;
  150. }
  151. .tTunes .sidebar .v-label {
  152. padding: 7px 0 3px 10px;
  153. font-weight: bold;
  154. text-transform: uppercase;
  155. color: #505d6d;
  156. text-shadow: #fff 0 1px 0;
  157. }
  158. .tTunes .sidebar .v-nativebutton {
  159. text-align: left;
  160. border: none;
  161. background: transparent;
  162. line-height: 15px;
  163. padding: 2px 0;
  164. }
  165. .tTunes .sidebar .v-nativebutton span {
  166. padding-left: 25px;
  167. }
  168. .tTunes .sidebar .selected {
  169. background: transparent url(images/selected-bg.png) repeat-x;
  170. color: #fff;
  171. font-weight: bold;
  172. text-shadow: #384359 0 1px 0;
  173. padding: 0;
  174. }
  175. .tTunes .sidebar .selected span {
  176. display: block;
  177. background: transparent url(images/icon-music.png) no-repeat 25px 1px;
  178. padding: 2px 0 2px 45px;
  179. }
  180. .tTunes .sidebar .v-caption {
  181. background: transparent url(images/table-header-bg.png) repeat-x;
  182. padding: 1px 0;
  183. font-weight: bold;
  184. text-shadow: #eee 0 1px 0;
  185. text-align: center;
  186. color: #202020;
  187. border-top: 1px solid #404040;
  188. border-bottom: 1px solid #555;
  189. }
  190. .tTunes .sidebar .v-captiontext {
  191. float: none;
  192. }
  193. .tTunes .v-table-header-wrap {
  194. height: 16px;
  195. border: none;
  196. border-bottom: 1px solid #555;
  197. background: transparent url(images/table-header-bg.png) repeat-x;
  198. }
  199. .tTunes .v-table-caption-container {
  200. font-size: 11px;
  201. color: #000;
  202. font-weight: bold;
  203. text-shadow: #fff 0 1px 0;
  204. padding-top: 1px;
  205. }
  206. .tTunes .v-table-body {
  207. border: none;
  208. }
  209. .tTunes .v-table-row-odd {
  210. background: #f1f5fa;
  211. }
  212. .tTunes .v-table-row:hover {
  213. background: #fff;
  214. }
  215. .tTunes .v-table-row-odd:hover {
  216. background: #f1f5fa;
  217. }
  218. .tTunes .v-table .v-selected {
  219. background: #3d80df;
  220. }
  221. .tTunes .v-table-cell-content {
  222. line-height: normal;
  223. }
  224. .tTunes .v-table select {
  225. padding: 0 2px;
  226. }