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.

269 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: normal;
  23. width: 100%;
  24. line-height: 1;
  25. overflow: hidden;
  26. }
  27. .tswv-link
  28. {
  29. cursor: pointer;
  30. text-decoration: inherit;
  31. color: #000000;
  32. }
  33. /* Servername */
  34. .tswv-servername
  35. {
  36. margin-left: 3px;
  37. }
  38. /* General */
  39. .tswv-channel,
  40. .tswv-client
  41. {
  42. margin-left: 16px;
  43. margin-top: 1px;
  44. }
  45. .tswv-label
  46. {
  47. margin-left: 3px;
  48. }
  49. /* General image */
  50. .tswv-image
  51. {
  52. display: inline-block;
  53. width: 16px;
  54. height: 16px;
  55. background-repeat: no-repeat;
  56. }
  57. /* Left aligned image */
  58. .tswv-image-left
  59. {
  60. float: left;
  61. }
  62. /* Right aligned image */
  63. .tswv-image-right
  64. {
  65. float: right;
  66. margin-left: 3px;
  67. }
  68. /* Channels */
  69. /* normal channel */
  70. .tswv-channel-normal
  71. {
  72. background-image: url("../img/ts3_viewer/channel-normal.png");
  73. }
  74. /* Full channel */
  75. .tswv-channel-full
  76. {
  77. background-image: url("../img/ts3_viewer/channel-full.png");
  78. }
  79. /* Channel with password (channel Icon) */
  80. .tswv-channel-password
  81. {
  82. background-image: url("../img/ts3_viewer/channel-password.png");
  83. }
  84. /* Channel with password (Lock icon) */
  85. .tswv-channel-password-right
  86. {
  87. background-image: url("../img/ts3_viewer/channel-password-right.png");
  88. }
  89. /* Default channel */
  90. .tswv-channel-home
  91. {
  92. background-image: url("../img/ts3_viewer/channel-home.png");
  93. }
  94. /* Moderated channel */
  95. .tswv-channel-moderated
  96. {
  97. background-image: url("../img/ts3_viewer/channel-moderated.png");
  98. }
  99. /* Channel with 48khz codec */
  100. .tswv-channel-48khz
  101. {
  102. background-image: url("../img/ts3_viewer/channel-48khz.png");
  103. }
  104. /* Server image */
  105. .tswv-server-image
  106. {
  107. background-image: url("../img/ts3_viewer/server.png");
  108. }
  109. /* Clients */
  110. /* normal client */
  111. .tswv-client-normal
  112. {
  113. background-image: url("../img/ts3_viewer/client-normal.png");
  114. }
  115. /* talking client */
  116. .tswv-client-talking
  117. {
  118. background-image: url("../img/ts3_viewer/client-talking.png");
  119. }
  120. /* channelcommander */
  121. .tswv-client-channel-commander
  122. {
  123. background-image: url("../img/ts3_viewer/client-channel-commander.png");
  124. }
  125. /* talking channelcommander */
  126. .tswv-client-channel-commander-talking
  127. {
  128. background-image: url("../img/ts3_viewer/client-channel-commander-talking.png");
  129. }
  130. /* mic muted client */
  131. .tswv-client-input-muted
  132. {
  133. background-image: url("../img/ts3_viewer/input-muted.png");
  134. }
  135. /* speaker muted client */
  136. .tswv-client-output-muted
  137. {
  138. background-image: url("../img/ts3_viewer/output-muted.png");
  139. }
  140. /* hardware mic muted client */
  141. .tswv-client-input-muted-hardware
  142. {
  143. background-image: url("../img/ts3_viewer/hardware-input-muted.png");
  144. }
  145. /* hardware speaker muted client */
  146. .tswv-client-output-muted-hardware
  147. {
  148. background-image: url("../img/ts3_viewer/hardware-output-muted.png");
  149. }
  150. /* away client */
  151. .tswv-client-away
  152. {
  153. background-image: url("../img/ts3_viewer/client-away.png");
  154. }
  155. /* Client with priority speaker */
  156. .tswv-client-priority-speaker
  157. {
  158. background-image: url("../img/ts3_viewer/client-priority-speaker.png");
  159. }
  160. /* Client with granted talkpower */
  161. .tswv-client-talkpower-granted
  162. {
  163. background-image: url("../img/ts3_viewer/client-talkpower-granted.png");
  164. }
  165. /* Query Clients */
  166. .tswv-client-query
  167. {
  168. background-image: url("../img/ts3_viewer/client-query.png");
  169. }
  170. /* Spacer */
  171. /* General */
  172. .tswv-spacer
  173. {
  174. margin: 0px;
  175. }
  176. /* right spacer */
  177. .tswv-spacer-right
  178. {
  179. text-align: right;
  180. }
  181. /* left spacer */
  182. .tswv-spacer-left
  183. {
  184. text-align: left;
  185. }
  186. /* center spacer */
  187. .tswv-spacer-center
  188. {
  189. text-align: center;
  190. }
  191. /* ___ */
  192. .tswv-spacer-line
  193. {
  194. background: url(../img/ts3_viewer/linie.png) repeat-x;
  195. }
  196. /* --- */
  197. .tswv-spacer-dash
  198. {
  199. background: url(../img/ts3_viewer/bs.png) repeat-x;
  200. }
  201. /* -.- */
  202. .tswv-spacer-line-point
  203. {
  204. background: url(../img/ts3_viewer/bspunkt.png) repeat-x;
  205. }
  206. /* -.. */
  207. .tswv-spacer-line-double-point
  208. {
  209. background: url(../img/ts3_viewer/bsdpunkt.png) repeat-x;
  210. }
  211. /* ... */
  212. .tswv-spacer-point
  213. {
  214. background: url(../img/ts3_viewer/punkt.png) repeat-x;
  215. }
  216. /* repeat spacer */
  217. .tswv-spacer-overflow
  218. {
  219. width: inherit;
  220. overflow: hidden;
  221. }