DotaNoobs main site.
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.

270 lines
5.1 KiB

  1. /**
  2. * This file is part of devMX TS3 Webviewer Lite.
  3. * Copyright (C) 2012 Maximilian Narr
  4. *
  5. * devMX Webviewer Lite is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * TeamSpeak3 Webviewer is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with devMX TS3 Webviewer Lite. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. .devmx-webviewer
  19. {
  20. font-family: sans-serif;
  21. font-size: 14px;
  22. white-space: nowrap;
  23. width: 100%;
  24. line-height: 1;
  25. overflow-x: hidden;
  26. overflow-y: scroll;
  27. }
  28. .tswv-link
  29. {
  30. cursor: pointer;
  31. text-decoration: inherit;
  32. color: #000000;
  33. }
  34. /* Servername */
  35. .tswv-servername
  36. {
  37. margin-left: 3px;
  38. }
  39. /* General */
  40. .tswv-channel,
  41. .tswv-client
  42. {
  43. margin-left: 16px;
  44. margin-top: 1px;
  45. }
  46. .tswv-label
  47. {
  48. margin-left: 3px;
  49. }
  50. /* General image */
  51. .tswv-image
  52. {
  53. display: inline-block;
  54. width: 16px;
  55. height: 16px;
  56. background-repeat: no-repeat;
  57. }
  58. /* Left aligned image */
  59. .tswv-image-left
  60. {
  61. float: left;
  62. }
  63. /* Right aligned image */
  64. .tswv-image-right
  65. {
  66. float: right;
  67. margin-left: 3px;
  68. }
  69. /* Channels */
  70. /* normal channel */
  71. .tswv-channel-normal
  72. {
  73. background-image: url("../img/ts3_viewer/channel-normal.png");
  74. }
  75. /* Full channel */
  76. .tswv-channel-full
  77. {
  78. background-image: url("../img/ts3_viewer/channel-full.png");
  79. }
  80. /* Channel with password (channel Icon) */
  81. .tswv-channel-password
  82. {
  83. background-image: url("../img/ts3_viewer/channel-password.png");
  84. }
  85. /* Channel with password (Lock icon) */
  86. .tswv-channel-password-right
  87. {
  88. background-image: url("../img/ts3_viewer/channel-password-right.png");
  89. }
  90. /* Default channel */
  91. .tswv-channel-home
  92. {
  93. background-image: url("../img/ts3_viewer/channel-home.png");
  94. }
  95. /* Moderated channel */
  96. .tswv-channel-moderated
  97. {
  98. background-image: url("../img/ts3_viewer/channel-moderated.png");
  99. }
  100. /* Channel with 48khz codec */
  101. .tswv-channel-48khz
  102. {
  103. background-image: url("../img/ts3_viewer/channel-48khz.png");
  104. }
  105. /* Server image */
  106. .tswv-server-image
  107. {
  108. background-image: url("../img/ts3_viewer/server.png");
  109. }
  110. /* Clients */
  111. /* normal client */
  112. .tswv-client-normal
  113. {
  114. background-image: url("../img/ts3_viewer/client-normal.png");
  115. }
  116. /* talking client */
  117. .tswv-client-talking
  118. {
  119. background-image: url("../img/ts3_viewer/client-talking.png");
  120. }
  121. /* channelcommander */
  122. .tswv-client-channel-commander
  123. {
  124. background-image: url("../img/ts3_viewer/client-channel-commander.png");
  125. }
  126. /* talking channelcommander */
  127. .tswv-client-channel-commander-talking
  128. {
  129. background-image: url("../img/ts3_viewer/client-channel-commander-talking.png");
  130. }
  131. /* mic muted client */
  132. .tswv-client-input-muted
  133. {
  134. background-image: url("../img/ts3_viewer/input-muted.png");
  135. }
  136. /* speaker muted client */
  137. .tswv-client-output-muted
  138. {
  139. background-image: url("../img/ts3_viewer/output-muted.png");
  140. }
  141. /* hardware mic muted client */
  142. .tswv-client-input-muted-hardware
  143. {
  144. background-image: url("../img/ts3_viewer/hardware-input-muted.png");
  145. }
  146. /* hardware speaker muted client */
  147. .tswv-client-output-muted-hardware
  148. {
  149. background-image: url("../img/ts3_viewer/hardware-output-muted.png");
  150. }
  151. /* away client */
  152. .tswv-client-away
  153. {
  154. background-image: url("../img/ts3_viewer/client-away.png");
  155. }
  156. /* Client with priority speaker */
  157. .tswv-client-priority-speaker
  158. {
  159. background-image: url("../img/ts3_viewer/client-priority-speaker.png");
  160. }
  161. /* Client with granted talkpower */
  162. .tswv-client-talkpower-granted
  163. {
  164. background-image: url("../img/ts3_viewer/client-talkpower-granted.png");
  165. }
  166. /* Query Clients */
  167. .tswv-client-query
  168. {
  169. background-image: url("../img/ts3_viewer/client-query.png");
  170. }
  171. /* Spacer */
  172. /* General */
  173. .tswv-spacer
  174. {
  175. margin: 0px;
  176. }
  177. /* right spacer */
  178. .tswv-spacer-right
  179. {
  180. text-align: right;
  181. }
  182. /* left spacer */
  183. .tswv-spacer-left
  184. {
  185. text-align: left;
  186. }
  187. /* center spacer */
  188. .tswv-spacer-center
  189. {
  190. text-align: center;
  191. }
  192. /* ___ */
  193. .tswv-spacer-line
  194. {
  195. background: url(../img/ts3_viewer/linie.png) repeat-x;
  196. }
  197. /* --- */
  198. .tswv-spacer-dash
  199. {
  200. background: url(../img/ts3_viewer/bs.png) repeat-x;
  201. }
  202. /* -.- */
  203. .tswv-spacer-line-point
  204. {
  205. background: url(../img/ts3_viewer/bspunkt.png) repeat-x;
  206. }
  207. /* -.. */
  208. .tswv-spacer-line-double-point
  209. {
  210. background: url(../img/ts3_viewer/bsdpunkt.png) repeat-x;
  211. }
  212. /* ... */
  213. .tswv-spacer-point
  214. {
  215. background: url(../img/ts3_viewer/punkt.png) repeat-x;
  216. }
  217. /* repeat spacer */
  218. .tswv-spacer-overflow
  219. {
  220. width: inherit;
  221. overflow: hidden;
  222. }