togetherjs.css 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this file,
  3. * You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. /*Fonts*/
  5. @font-face {
  6. font-family: openSansRegular;
  7. src: url('fonts/OpenSans-Regular.ttf');
  8. }
  9. @font-face {
  10. font-family: openSansLight;
  11. src: url('fonts/OpenSans-Light.ttf');
  12. }
  13. @font-face {
  14. font-family: openSansBold;
  15. src: url('fonts/OpenSans-Bold.ttf');
  16. }
  17. /* .togetherjs reset */
  18. /* http://yuilibrary.com/yui/docs/cssreset/ */
  19. .togetherjs {
  20. /*
  21. YUI 3.10.3 (build 2fb5187)
  22. Copyright 2013 Yahoo! Inc. All rights reserved.
  23. Licensed under the BSD License.
  24. http://yuilibrary.com/license/
  25. */
  26. /*
  27. TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
  28. */
  29. /* to preserve line-height and selector appearance */
  30. /*to enable resizing for IE*/
  31. /*because legend doesn't inherit in IE */
  32. }
  33. .togetherjs * {
  34. -webkit-box-sizing: content-box !important;
  35. -moz-box-sizing: content-box !important;
  36. box-sizing: content-box !important;
  37. }
  38. .togetherjs header {
  39. width: auto;
  40. }
  41. .togetherjs div,
  42. .togetherjs dl,
  43. .togetherjs dt,
  44. .togetherjs dd,
  45. .togetherjs ul,
  46. .togetherjs ol,
  47. .togetherjs li,
  48. .togetherjs h1,
  49. .togetherjs h2,
  50. .togetherjs h3,
  51. .togetherjs h4,
  52. .togetherjs h5,
  53. .togetherjs h6,
  54. .togetherjs pre,
  55. .togetherjs code,
  56. .togetherjs form,
  57. .togetherjs fieldset,
  58. .togetherjs legend,
  59. .togetherjs input,
  60. .togetherjs textarea,
  61. .togetherjs p,
  62. .togetherjs blockquote,
  63. .togetherjs th,
  64. .togetherjs td {
  65. margin: 0;
  66. padding: 0;
  67. }
  68. .togetherjs table {
  69. border-collapse: collapse;
  70. border-spacing: 0;
  71. }
  72. .togetherjs fieldset,
  73. .togetherjs img {
  74. border: 0;
  75. }
  76. .togetherjs address,
  77. .togetherjs caption,
  78. .togetherjs cite,
  79. .togetherjs code,
  80. .togetherjs dfn,
  81. .togetherjs em,
  82. .togetherjs strong,
  83. .togetherjs th,
  84. .togetherjs var {
  85. font-style: normal;
  86. font-weight: normal;
  87. }
  88. .togetherjs ol,
  89. .togetherjs ul {
  90. list-style: none;
  91. }
  92. .togetherjs caption,
  93. .togetherjs th {
  94. text-align: left;
  95. }
  96. .togetherjs h1,
  97. .togetherjs h2,
  98. .togetherjs h3,
  99. .togetherjs h4,
  100. .togetherjs h5,
  101. .togetherjs h6 {
  102. font-size: 100%;
  103. font-weight: normal;
  104. }
  105. .togetherjs q:before,
  106. .togetherjs q:after {
  107. content: '';
  108. }
  109. .togetherjs abbr,
  110. .togetherjs acronym {
  111. border: 0;
  112. font-variant: normal;
  113. }
  114. .togetherjs sup {
  115. vertical-align: text-top;
  116. }
  117. .togetherjs sub {
  118. vertical-align: text-bottom;
  119. }
  120. .togetherjs input,
  121. .togetherjs textarea,
  122. .togetherjs select {
  123. font-family: inherit;
  124. font-size: inherit;
  125. font-weight: inherit;
  126. }
  127. .togetherjs input,
  128. .togetherjs textarea,
  129. .togetherjs select {
  130. *font-size: 100%;
  131. }
  132. .togetherjs legend {
  133. color: #000;
  134. }
  135. .togetherjs {
  136. /* General styles */
  137. font-family: openSansLight, Helvetica, 'Helvetica Neue', Arial;
  138. font-size: 14px;
  139. line-height: 20px;
  140. color: #333333;
  141. font-weight: normal;
  142. }
  143. .togetherjs a {
  144. color: #0095DD;
  145. text-decoration: none;
  146. }
  147. .togetherjs a:hover {
  148. color: #0095DD;
  149. text-decoration: underline;
  150. }
  151. .togetherjs p {
  152. margin: 7px 0 7px 0;
  153. }
  154. .togetherjs button,
  155. .togetherjs img {
  156. vertical-align: middle;
  157. }
  158. .togetherjs input:focus {
  159. outline: none;
  160. }
  161. .togetherjs button::-moz-focus-inner,
  162. .togetherjs input::-moz-focus-inner {
  163. padding: 0;
  164. border: 0;
  165. }
  166. .togetherjs .togetherjs-right {
  167. float: right;
  168. }
  169. button:disabled {
  170. opacity: 0.2;
  171. }
  172. button[disabled]:hover {
  173. background: #0194DB;
  174. }
  175. .togetherjs-default {
  176. display: inline-block;
  177. border-radius: 4px;
  178. text-align: center;
  179. height: 40px;
  180. /*line-height not consistent across browsers*/
  181. line-height: 37px;
  182. text-decoration: none;
  183. min-width: 100px;
  184. border: none;
  185. font-family: openSansLight, Helvetica, 'Helvetica Neue', Arial, sans-serif;
  186. /*transition: all 0.25s linear 0s;*/
  187. text-shadow: none;
  188. margin: 3px;
  189. font-size: 14px;
  190. background: #9A9A9A;
  191. color: #fff;
  192. }
  193. .togetherjs-default.togetherjs-follow {
  194. cursor: pointer;
  195. }
  196. .togetherjs-default:hover {
  197. background: #ADADAD;
  198. }
  199. .togetherjs-primary {
  200. display: inline-block;
  201. border-radius: 4px;
  202. text-align: center;
  203. height: 40px;
  204. /*line-height not consistent across browsers*/
  205. line-height: 37px;
  206. text-decoration: none;
  207. min-width: 100px;
  208. border: none;
  209. font-family: openSansLight, Helvetica, 'Helvetica Neue', Arial, sans-serif;
  210. /*transition: all 0.25s linear 0s;*/
  211. text-shadow: none;
  212. margin: 3px;
  213. font-size: 14px;
  214. background: #0194DB;
  215. color: #fff;
  216. }
  217. .togetherjs-primary.togetherjs-follow {
  218. cursor: pointer;
  219. }
  220. .togetherjs-primary:hover {
  221. background: #00ACFF;
  222. }
  223. a.togetherjs-primary,
  224. a.togetherjs-default,
  225. a.togetherjs-secondary,
  226. a.togetherjs-primary:link,
  227. a.togetherjs-default:link,
  228. a.togetherjs-secondary:link,
  229. a.togetherjs-primary:active,
  230. a.togetherjs-default:active,
  231. a.togetherjs-secondary:active,
  232. a.togetherjs-primary:visited,
  233. a.togetherjs-default:visited,
  234. a.togetherjs-secondary:visited,
  235. a.togetherjs-primary:hover,
  236. a.togetherjs-default:hover,
  237. a.togetherjs-secondary:hover {
  238. color: #fff;
  239. text-decoration: none;
  240. vertical-align: middle;
  241. }
  242. #togetherjs-avatar-edit .togetherjs-person-avatar-swatch {
  243. margin-left: 22px;
  244. }
  245. #togetherjs-avatar-edit .togetherjs-person {
  246. float: left;
  247. height: 36px;
  248. width: 36px;
  249. margin: 35px;
  250. background-repeat: no-repeat;
  251. background-size: 40px 40px;
  252. background-position: -2px -1px;
  253. border: 2px solid;
  254. border-radius: 2px;
  255. background-clip: border-box;
  256. }
  257. #togetherjs-avatar-edit #togetherjs-avatar-buttons {
  258. float: right;
  259. width: 172px;
  260. padding: 45px 0px;
  261. }
  262. input.togetherjs-upload-avatar {
  263. line-height: 0px;
  264. width: 174px;
  265. margin-left: -20px;
  266. }
  267. #togetherjs-upload-avatar {
  268. float: left;
  269. }
  270. #togetherjs-camera-avatar {
  271. clear: both;
  272. }
  273. #togetherjs-avatar-edit .togetherjs-buttons {
  274. clear: both;
  275. }
  276. .togetherjs-destructive {
  277. display: inline-block;
  278. border-radius: 4px;
  279. text-align: center;
  280. height: 40px;
  281. /*line-height not consistent across browsers*/
  282. line-height: 37px;
  283. text-decoration: none;
  284. min-width: 100px;
  285. border: none;
  286. font-family: openSansLight, Helvetica, 'Helvetica Neue', Arial, sans-serif;
  287. /*transition: all 0.25s linear 0s;*/
  288. text-shadow: none;
  289. margin: 3px;
  290. font-size: 14px;
  291. background: #AC2924;
  292. color: #ffffff;
  293. }
  294. .togetherjs-destructive:hover {
  295. background: #d40606;
  296. }
  297. .togetherjs-secondary {
  298. display: inline-block;
  299. border-radius: 4px;
  300. text-align: center;
  301. height: 40px;
  302. /*line-height not consistent across browsers*/
  303. line-height: 37px;
  304. text-decoration: none;
  305. min-width: 100px;
  306. border: none;
  307. font-family: openSansLight, Helvetica, 'Helvetica Neue', Arial, sans-serif;
  308. /*transition: all 0.25s linear 0s;*/
  309. text-shadow: none;
  310. margin: 3px;
  311. font-size: 14px;
  312. background: #999999;
  313. /* Old browsers */
  314. background: -moz-linear-gradient(top, #999999 0%, #888888 100%);
  315. /* FF3.6+ */
  316. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #999999), color-stop(100%, #888888));
  317. /* Chrome,Safari4+ */
  318. background: -webkit-linear-gradient(top, #999999 0%, #888888 100%);
  319. /* Chrome10+,Safari5.1+ */
  320. background: -o-linear-gradient(top, #999999 0%, #888888 100%);
  321. /* Opera 11.10+ */
  322. background: -ms-linear-gradient(top, #999999 0%, #888888 100%);
  323. /* IE10+ */
  324. background: linear-gradient(to bottom, #999999 0%, #888888 100%);
  325. /* W3C */
  326. color: #fff;
  327. }
  328. .togetherjs-cancel {
  329. display: inline-block;
  330. background-color: #0095dd;
  331. border: none;
  332. padding: 3px 0px;
  333. margin: 0px 0px 0px;
  334. min-width: 0;
  335. font-size: 14px;
  336. color: #333333;
  337. font-family: openSansLight, Helvetica;
  338. vertical-align: -2px !important;
  339. }
  340. .togetherjs-cancel:hover {
  341. cursor: pointer;
  342. border-bottom: 1px solid #BCBCBC;
  343. margin: 0px 0px -1px;
  344. }
  345. .togetherjs-alt-text {
  346. vertical-align: -2px;
  347. }
  348. /*FIX ME something weird is going on here. the avatar has no paddingTop only on Safari*/
  349. /*button#togetherjs-profile-button.togetherjs-button {
  350. padding:10px 0px !important;
  351. }*/
  352. /* General dock rules: */
  353. .togetherjs #togetherjs-buttons .togetherjs-button {
  354. background-color: inherit;
  355. border: none;
  356. padding: 0;
  357. margin: 0;
  358. position: relative;
  359. width: 60px;
  360. height: 60px;
  361. background-color: #0095dd;
  362. background-size: 40px 40px;
  363. background-repeat: no-repeat;
  364. background-position: center;
  365. border-top: 1px solid rgba(0, 0, 0, 0.2);
  366. }
  367. .togetherjs #togetherjs-buttons .togetherjs-button:hover {
  368. background-color: #0F81BF;
  369. }
  370. .togetherjs #togetherjs-buttons hr {
  371. padding: 0;
  372. margin: 0;
  373. }
  374. .togetherjs #togetherjs-dock-participants button.togetherjs-active {
  375. background-color: #0F81BF !important;
  376. }
  377. .togetherjs #togetherjs-buttons #togetherjs-share-button {
  378. background-image: url('./images/button-share.png');
  379. }
  380. .togetherjs #togetherjs-buttons #togetherjs-share-button:hover {
  381. background-image: url('./images/button-share-active.png');
  382. }
  383. .togetherjs #togetherjs-buttons #togetherjs-share-button.togetherjs-active {
  384. background-image: url('./images/button-share-active.png') !important;
  385. background-color: #0F81BF;
  386. }
  387. .togetherjs #togetherjs-buttons #togetherjs-audio-button {
  388. background-image: url('./images/button-mic.png');
  389. }
  390. .togetherjs #togetherjs-buttons #togetherjs-audio-button:hover {
  391. background-image: url('./images/button-mic-active.png');
  392. /*background-color:#0095dd;*/
  393. /*cursor: default;*/
  394. }
  395. .togetherjs #togetherjs-buttons #togetherjs-audio-button.togetherjs-active {
  396. background-image: url('./images/button-mic-active.png') !important;
  397. background-color: #0F81BF;
  398. }
  399. .togetherjs #togetherjs-buttons #togetherjs-chat-button {
  400. background-image: url('./images/button-chat.png');
  401. }
  402. .togetherjs #togetherjs-buttons #togetherjs-chat-button:hover {
  403. background-image: url('./images/button-chat-active.png');
  404. }
  405. .togetherjs #togetherjs-buttons #togetherjs-chat-button.togetherjs-active {
  406. background-image: url('./images/button-chat-active.png') !important;
  407. background-color: #0F81BF;
  408. }
  409. .togetherjs #togetherjs-dock-anchor {
  410. height: 20px;
  411. text-align: center;
  412. /* FIXME: disabling dock movement for now, cursor would be misleading: */
  413. -moz-user-select: none;
  414. -webkit-user-select: none;
  415. -ms-user-select: none;
  416. user-select: none;
  417. width: 100%;
  418. position: relative;
  419. left: 0px;
  420. border-top-left-radius: 4px;
  421. border-top-right-radius: 4px;
  422. }
  423. .togetherjs .togetherjs-subtitle {
  424. background: #0195DD;
  425. width: 280px;
  426. height: 17px;
  427. border-bottom: 1px solid #0071A7;
  428. color: rgba(255, 255, 255, 0.5);
  429. font-size: 12px;
  430. padding: 7px 10px;
  431. left: -14px;
  432. top: -15px;
  433. position: relative;
  434. }
  435. .togetherjs .togetherjs-subtitle #togetherjs-chat-participants {
  436. font-size: 12px;
  437. color: rgba(255, 255, 255, 0.5);
  438. }
  439. .togetherjs .togetherjs-subtitle #togetherjs-chat-no-participants {
  440. font-size: 12px;
  441. color: rgba(255, 255, 255, 0.5);
  442. }
  443. .togetherjs .togetherjs-subtitle #togetherjs-chat-participant-list {
  444. font-size: 12px;
  445. color: rgba(255, 255, 255, 0.5);
  446. }
  447. .togetherjs #togetherjs-chat-input {
  448. width: 264px;
  449. height: 20px;
  450. overflow-x: hidden;
  451. overflow-y: hidden;
  452. resize: none;
  453. font-size: 14px;
  454. padding: 4px 6px 5px;
  455. border-radius: 4px;
  456. border: 1px solid #cccccc;
  457. /*box-shadow: inset 0 2px 2px rgba(0,0,0,0.1);*/
  458. font-family: openSansLight, Helvetica, sans-serif;
  459. }
  460. .togetherjs #togetherjs-chat-input:focus {
  461. border: 1px solid #0095DD;
  462. }
  463. .togetherjs #togetherjs-chat-input-box {
  464. margin: 0;
  465. padding: 10px 10px 11px;
  466. border-top: 1px solid rgba(0, 0, 0, 0.1);
  467. background: #F2F2F2;
  468. position: relative;
  469. /*box-shadow: 0 -1px 2px rgba(0,0,0,0.1);*/
  470. height: 31px;
  471. width: 280px;
  472. margin-left: -7px;
  473. border-bottom-right-radius: 4px;
  474. border-bottom-left-radius: 4px;
  475. }
  476. .togetherjs .togetherjs-window #togetherjs-chat-messages {
  477. width: 300px;
  478. position: relative;
  479. left: -14px;
  480. background: #fff;
  481. top: -30px;
  482. margin-bottom: -30px !important;
  483. }
  484. .togetherjs .togetherjs-chat-item {
  485. padding: 0 0 20px 0;
  486. font-family: openSansLight, Helvetica, 'Helvetica Neue', Arial, sans-serif;
  487. font-size: 14px;
  488. padding: 10px 0px;
  489. margin: 0;
  490. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  491. color: #333333;
  492. min-height: 60px;
  493. }
  494. .togetherjs #togetherjs-chat-messages .togetherjs-chat-item a.togetherjs-person-url {
  495. width: 105px;
  496. white-space: nowrap;
  497. vertical-align: top;
  498. display: inline-block;
  499. overflow: hidden;
  500. text-overflow: ellipsis;
  501. }
  502. .togetherjs #togetherjs-chat-messages .togetherjs-person-self {
  503. float: left;
  504. margin-bottom: 20px;
  505. margin-top: 7px;
  506. }
  507. .togetherjs #togetherjs-chat-messages .togetherjs-person {
  508. float: left;
  509. margin-bottom: 20px;
  510. }
  511. .togetherjs .togetherjs-person-name-abbrev {
  512. color: #333333;
  513. font-family: openSansRegular, Helvetica, sans-serif;
  514. padding-top: 2px;
  515. }
  516. .togetherjs .togetherjs-timestamp {
  517. float: right;
  518. color: rgba(51, 51, 51, 0.5);
  519. font-size: 9px !important;
  520. padding: 0 15px;
  521. }
  522. .togetherjs .togetherjs-chat-content {
  523. white-space: pre-wrap;
  524. line-height: 20px;
  525. font-family: openSansLight, Helvetica, 'Helvetica Neue', Arial, sans-serif;
  526. margin: 3px 15px 3px 60px;
  527. }
  528. .togetherjs #togetherjs-window-pointer-right,
  529. .togetherjs #togetherjs-window-pointer-left {
  530. position: fixed;
  531. width: 10px;
  532. height: 10px;
  533. margin-right: -5px;
  534. margin-top: -5px;
  535. background: #fff;
  536. border-right: 1px solid rgba(0, 0, 0, 0.2);
  537. border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  538. z-index: 10002;
  539. box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  540. }
  541. .togetherjs #togetherjs-window-pointer-right {
  542. -moz-transform: rotate(-45deg);
  543. -webkit-transform: rotate(-45deg);
  544. }
  545. .togetherjs #togetherjs-window-pointer-left {
  546. -moz-transform: rotate(135deg);
  547. -webkit-transform: rotate(135deg);
  548. }
  549. .togetherjs .togetherjs-window {
  550. position: fixed;
  551. background-color: #ffffff;
  552. color: #000000;
  553. padding: 0 7px 0 7px;
  554. z-index: 10001;
  555. width: 286px;
  556. border-radius: 4px;
  557. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  558. }
  559. .togetherjs .togetherjs-window section {
  560. margin: 15px 7px;
  561. }
  562. .togetherjs .togetherjs-window > header {
  563. font-weight: bold;
  564. font-variant: normal;
  565. text-align: center;
  566. font-family: openSansRegular, Helvetica;
  567. color: #fff;
  568. margin: 0 -7px 0 -7px;
  569. padding: 10px 4px 5px 30px;
  570. height: 24px;
  571. background: #0095DD;
  572. border-radius: 4px 4px 0 0;
  573. position: relative;
  574. border-bottom: 1px solid #0071A7;
  575. }
  576. .togetherjs .togetherjs-window .togetherjs-share-link {
  577. width: 256px;
  578. font-size: 12px;
  579. padding: 6px 6px 4px;
  580. border-radius: 4px;
  581. border: 1px solid #cccccc;
  582. box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
  583. font-family: Monaco, sans-serif;
  584. margin: 7px 0px;
  585. }
  586. .togetherjs .togetherjs-window .togetherjs-share-link:focus {
  587. border: 1px solid #0095DD;
  588. }
  589. .togetherjs .togetherjs-window header button.togetherjs-close {
  590. background-color: inherit;
  591. border: none;
  592. padding: 0;
  593. margin: 0;
  594. border-left: 1px solid #0071A7;
  595. float: right;
  596. font-weight: bold;
  597. cursor: pointer;
  598. background-color: #0095dd;
  599. background-image: url('./images/icon-close@2x.png');
  600. background-position: center center;
  601. background-repeat: no-repeat;
  602. background-size: 13px 13px;
  603. width: 39px;
  604. height: 39px;
  605. margin-top: -10px;
  606. margin-right: -4px;
  607. border-top-right-radius: 4px;
  608. }
  609. .togetherjs .togetherjs-window header button.togetherjs-close:hover {
  610. background-image: url('./images/icon-close-active.png');
  611. background-color: rgba(0, 0, 0, 0.1);
  612. }
  613. .togetherjs .togetherjs-window #togetherjs-chat-messages {
  614. overflow-y: auto;
  615. /*FIXME: I'm just pulling numbers out of thin air here:*/
  616. height: 260px;
  617. }
  618. .togetherjs #togetherjs-feedback-form > header {
  619. font-weight: bold;
  620. font-variant: normal;
  621. text-align: center;
  622. font-family: openSansRegular, Helvetica, sans-serif;
  623. color: #fff;
  624. margin: 0 -1px 0 -1px;
  625. padding: 10px 4px 5px 30px;
  626. height: 24px;
  627. background: #0095DD;
  628. border-radius: 4px 4px 0 0;
  629. position: relative;
  630. border-bottom: 1px solid #0071A7;
  631. }
  632. .togetherjs #togetherjs-feedback-form.togetherjs-modal {
  633. background-color: #fff;
  634. color: #000000;
  635. padding: 0 0 5px 0;
  636. border-radius: 2px;
  637. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  638. border-left: 1px solid #c9c9c9;
  639. border-right: 1px solid #c9c9c9;
  640. border-bottom: 1px solid #c9c9c9;
  641. position: fixed;
  642. top: 46%;
  643. left: 47%;
  644. margin-left: -150px;
  645. margin-top: -10em;
  646. height: 24em;
  647. width: 399px;
  648. }
  649. .togetherjs #togetherjs-alpha-intro .togetherjs-small-feedback-txt {
  650. font-size: 10px;
  651. }
  652. .togetherjs #togetherjs-alpha-intro .togetherjs-modal-close:hover {
  653. background: #61921b;
  654. }
  655. .togetherjs #togetherjs-alpha-intro {
  656. height: 24em;
  657. }
  658. .togetherjs #togetherjs-intro .togetherjs-modal-dont-join {
  659. /* background-repeat: repeat-x;
  660. border: 0;
  661. color: rgb(255, 255, 255);
  662. cursor: pointer;
  663. display: inline-block;
  664. text-transform: none;
  665. vertical-align: middle;
  666. padding: 10px 0 10px 0;*/
  667. }
  668. .togetherjs .togetherjs-notification {
  669. position: fixed;
  670. background-color: #ffffff;
  671. color: #000000;
  672. padding: 0 7px 0 7px;
  673. z-index: 10001;
  674. width: 300px;
  675. border-radius: 4px;
  676. background: rgba(242, 242, 242, 0.9);
  677. border: 1px solid #BCBCBC;
  678. -moz-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.4), inset 0px 3px 1px 0px #ffffff;
  679. -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.4), inset 0px 3px 1px 0px #ffffff;
  680. box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.4), inset 0px 3px 1px 0px #ffffff;
  681. }
  682. .togetherjs .togetherjs-notification section {
  683. margin: 15px 7px;
  684. }
  685. .togetherjs .togetherjs-notification > header {
  686. font-weight: bold;
  687. font-variant: normal;
  688. text-align: center;
  689. font-family: openSansRegular, Helvetica;
  690. color: #fff;
  691. margin: 0 -7px 0 -7px;
  692. padding: 10px 4px 5px 30px;
  693. height: 24px;
  694. background: #0095DD;
  695. border-radius: 4px 4px 0 0;
  696. position: relative;
  697. border-bottom: 1px solid #0071A7;
  698. }
  699. .togetherjs .togetherjs-notification .togetherjs-share-link {
  700. width: 256px;
  701. font-size: 12px;
  702. padding: 6px 6px 4px;
  703. border-radius: 4px;
  704. border: 1px solid #cccccc;
  705. box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
  706. font-family: Monaco, sans-serif;
  707. margin: 7px 0px;
  708. }
  709. .togetherjs .togetherjs-notification .togetherjs-share-link:focus {
  710. border: 1px solid #0095DD;
  711. }
  712. .togetherjs .togetherjs-notification header button.togetherjs-close {
  713. background-color: inherit;
  714. border: none;
  715. padding: 0;
  716. margin: 0;
  717. border-left: 1px solid #0071A7;
  718. float: right;
  719. font-weight: bold;
  720. cursor: pointer;
  721. background-color: #0095dd;
  722. background-image: url('./images/icon-close@2x.png');
  723. background-position: center center;
  724. background-repeat: no-repeat;
  725. background-size: 13px 13px;
  726. width: 39px;
  727. height: 39px;
  728. margin-top: -10px;
  729. margin-right: -4px;
  730. border-top-right-radius: 4px;
  731. }
  732. .togetherjs .togetherjs-notification header button.togetherjs-close:hover {
  733. background-image: url('./images/icon-close-active.png');
  734. background-color: rgba(0, 0, 0, 0.1);
  735. }
  736. .togetherjs .togetherjs-notification #togetherjs-chat-messages {
  737. overflow-y: auto;
  738. /*FIXME: I'm just pulling numbers out of thin air here:*/
  739. height: 260px;
  740. }
  741. .togetherjs .togetherjs-notification:hover {
  742. background: #f2f2f2;
  743. cursor: pointer;
  744. }
  745. .togetherjs .togetherjs-notification .togetherjs-chat-item {
  746. border-bottom: 0px;
  747. word-wrap: break-word;
  748. }
  749. .togetherjs .togetherjs-notification section#togetherjs-chat-notifier-message {
  750. margin: 0px !important;
  751. }
  752. .togetherjs .togetherjs-notification .togetherjs-chat-content {
  753. font-size: 12px;
  754. }
  755. .togetherjs .togetherjs-notification section {
  756. font-size: 12px;
  757. }
  758. .togetherjs .togetherjs-notification .togetherjs-person-name {
  759. font-family: openSansRegular, Helvetica Bold, 'Helvetica Neue', Arial;
  760. font-size: 14px;
  761. }
  762. .togetherjs .togetherjs-notification button {
  763. min-width: 47% !important;
  764. }
  765. .togetherjs .togetherjs-notification .togetherjs-person {
  766. display: none;
  767. }
  768. .togetherjs .togetherjs-notification .togetherjs-timestamp {
  769. display: none;
  770. }
  771. .togetherjs .togetherjs-notification {
  772. border-bottom: 0px;
  773. }
  774. .togetherjs .togetherjs-notification img.togetherjs-notification-logo {
  775. float: left;
  776. margin: 22px 14px 14px 10px;
  777. width: 34px;
  778. height: 25px;
  779. }
  780. .togetherjs .togetherjs-notification img.togetherjs-notification-closebtn {
  781. float: right;
  782. padding: 14px 7px;
  783. }
  784. .togetherjs .togetherjs-notification img.togetherjs-notification-closebtn:hover {
  785. opacity: 0.5;
  786. }
  787. .togetherjs .togetherjs-notification section.togetherjs-buttons {
  788. border-top: 1px solid #E1E1E1;
  789. }
  790. .togetherjs .togetherjs-person {
  791. height: 36px;
  792. width: 36px;
  793. margin: 10px;
  794. background-repeat: no-repeat;
  795. background-size: 40px 40px;
  796. background-position: -2px -2px;
  797. border: 2px solid;
  798. border-radius: 2px;
  799. background-clip: border-box;
  800. }
  801. .togetherjs .togetherjs-person.togetherjs-person-small {
  802. display: inline-block;
  803. height: 20px;
  804. width: 20px;
  805. margin: -1px -18px;
  806. background-size: 22px 22px;
  807. background-position: -1px -1px;
  808. }
  809. .togetherjs .togetherjs-person-small .togetherjs-person-avatar-swatch {
  810. border-width: 3px;
  811. margin-left: 14px;
  812. margin-top: 0px;
  813. }
  814. .togetherjs .togetherjs-person-avatar-swatch {
  815. /* This is the element that lives inside all .togetherjs-person elements
  816. and is used for the triangle. */
  817. width: 0;
  818. height: 0;
  819. margin-left: 23px;
  820. padding: 0;
  821. border-top: 7px solid transparent;
  822. border-left: 7px solid transparent;
  823. border-right: 7px solid transparent;
  824. border-bottom: 7px solid transparent;
  825. margin-top: 0px;
  826. }
  827. .togetherjs .togetherjs-person-inactive {
  828. opacity: 0.5;
  829. }
  830. .togetherjs .togetherjs-button .togetherjs-person {
  831. margin: 0 0 0 10px;
  832. }
  833. @-moz-document url-prefix() {
  834. /* firefox only styles */
  835. .togetherjs-button .togetherjs-person {
  836. margin: 10px 0 0 10px;
  837. }
  838. }
  839. .togetherjs header .togetherjs-person {
  840. float: left;
  841. }
  842. .togetherjs .togetherjs-dock-person > .togetherjs-dock-person-tooltip {
  843. display: none;
  844. }
  845. .togetherjs .togetherjs-dock-person:hover > .togetherjs-dock-person-tooltip {
  846. display: block;
  847. }
  848. .togetherjs .togetherjs-dock-person.togetherjs-active:hover > .togetherjs-dock-person-tooltip {
  849. display: none;
  850. }
  851. .togetherjs .togetherjs-dock-person-tooltip {
  852. font-family: openSansLight, Helvetica, 'Helvetica Neue', Arial;
  853. position: absolute;
  854. right: 70px;
  855. top: 0px;
  856. padding: 8px;
  857. font-size: 12px;
  858. text-align: left;
  859. min-width: 30px;
  860. }
  861. .togetherjs .togetherjs-tooltip {
  862. background-color: rgba(42, 42, 42, 0.9);
  863. color: #fff;
  864. border-radius: 4px;
  865. line-height: 20px !important;
  866. }
  867. .togetherjs .togetherjs-dock-person-tooltip .togetherjs-person-name {
  868. font-size: 12px;
  869. }
  870. .togetherjs .togetherjs-person-tooltip-arrow-r {
  871. position: absolute;
  872. left: 46px;
  873. width: 0;
  874. height: 0;
  875. border-top: 4px solid transparent;
  876. border-bottom: 4px solid transparent;
  877. border-left: 4px solid rgba(0, 0, 0, 0.9);
  878. line-height: 20px;
  879. opacity: 0.9;
  880. top: 20px;
  881. }
  882. .togetherjs-triangle-up {
  883. position: absolute;
  884. top: -15px;
  885. width: 13px;
  886. left: 50px;
  887. }
  888. .togetherjs-triangle-up img {
  889. width: 12px;
  890. height: 13px;
  891. }
  892. .togetherjs-rtc-dialog-btn {
  893. text-align: right;
  894. }
  895. #togetherjs-rtc-info section.togetherjs-buttons {
  896. text-align: right !important;
  897. }
  898. #togetherjs-rtc-info label {
  899. font-size: 12px !important;
  900. float: left !important;
  901. padding-top: 13px;
  902. padding-left: 30px;
  903. }
  904. #togetherjs-rtc-info input {
  905. margin-top: 0px !important;
  906. }
  907. .togetherjs-chat-url-change {
  908. background: #f2f2f2;
  909. margin-top: 0px !important;
  910. }
  911. .togetherjs-chat-join-item {
  912. background: #f2f2f2;
  913. margin-top: 0px !important;
  914. }
  915. .togetherjs-chat-left-item {
  916. background: #f2f2f2;
  917. margin-top: 0px !important;
  918. }
  919. .togetherjs-inline-text {
  920. margin-top: 10px !important;
  921. }
  922. .togetherjs-chat-join-item .togetherjs-person {
  923. float: left;
  924. margin-bottom: 0px !important;
  925. margin-top: 0px;
  926. }
  927. .togetherjs-chat-left-item .togetherjs-person {
  928. float: left;
  929. margin-bottom: 0px !important;
  930. margin-top: 0px;
  931. }
  932. .togetherjs-chat-url-change .togetherjs-person {
  933. float: left;
  934. margin-bottom: 0px !important;
  935. margin-top: 0px;
  936. }
  937. .togetherjs-chat-join-item span.togetherjs-person-name {
  938. font-family: openSansRegular, Helvetica;
  939. }
  940. .togetherjs-chat-left-item span.togetherjs-person-name {
  941. font-family: openSansRegular, Helvetica;
  942. }
  943. .togetherjs-chat-url-change span.togetherjs-person-name {
  944. font-family: openSansRegular, Helvetica;
  945. }
  946. .togetherjs-clear {
  947. clear: both;
  948. }
  949. /* Menu */
  950. #togetherjs-menu {
  951. width: 216px;
  952. position: fixed;
  953. font-size: 14px;
  954. background-color: #fff;
  955. z-index: 10003;
  956. border: 1px solid #979797;
  957. border-radius: 4px;
  958. }
  959. #togetherjs-menu hr {
  960. margin: 0px;
  961. border-top: 0px solid #E1E1E1;
  962. }
  963. #togetherjs-menu .togetherjs-menu-hr-avatar {
  964. margin-top: 20px;
  965. height: 0px;
  966. border-bottom: 1px solid #E1E1E1;
  967. font-size: 1px;
  968. }
  969. #togetherjs-menu .togetherjs-hr {
  970. height: 0px;
  971. margin: 0px;
  972. border-bottom: 1px solid #E1E1E1;
  973. font-size: 1px;
  974. }
  975. #togetherjs-menu .togetherjs-menu-item {
  976. margin: -1px 0px -1px;
  977. padding: 12px;
  978. line-height: 9px;
  979. height: 10px;
  980. clear: both;
  981. cursor: pointer;
  982. }
  983. #togetherjs-menu .togetherjs-menu-item.togetherjs-menu-disabled {
  984. cursor: default;
  985. }
  986. #togetherjs-menu .togetherjs-menu-item.togetherjs-menu-disabled:hover {
  987. background-color: inherit;
  988. border-radius: 4px;
  989. border-top: 1px solid #979797;
  990. padding-top: 11px !important;
  991. }
  992. #togetherjs-menu .togetherjs-menu-item img {
  993. float: left;
  994. height: 20px;
  995. width: 20px;
  996. margin-right: 10px;
  997. margin-top: -5px;
  998. }
  999. #togetherjs-menu .togetherjs-menu-item:hover {
  1000. background-color: rgba(216, 216, 216, 0.5);
  1001. }
  1002. #togetherjs-menu .togetherjs-menu-item .togetherjs-avatar {
  1003. height: 20px;
  1004. width: 20px;
  1005. padding: 0;
  1006. margin: 0 10px 0 0;
  1007. }
  1008. #togetherjs-menu .togetherjs-menu-item .togetherjs-person-bgcolor-self {
  1009. display: inline-block;
  1010. width: 12px;
  1011. height: 12px;
  1012. border: 1px solid #999;
  1013. border-radius: 2px;
  1014. margin-right: 12px;
  1015. float: left;
  1016. margin-top: -2px;
  1017. margin-left: 4px;
  1018. }
  1019. #togetherjs-menu #togetherjs-menu-help {
  1020. padding-left: 15px;
  1021. }
  1022. #togetherjs-menu #togetherjs-menu-feedback {
  1023. padding-left: 15px;
  1024. }
  1025. #togetherjs-menu img#togetherjs-menu-avatar {
  1026. float: left;
  1027. padding-top: 8px;
  1028. }
  1029. #togetherjs-menu .togetherjs-person-name-self {
  1030. padding-top: 8px;
  1031. line-height: 32px;
  1032. font-weight: bold;
  1033. }
  1034. #togetherjs-menu .togetherjs-self-name {
  1035. width: 146px !important;
  1036. float: right;
  1037. margin-top: -23px;
  1038. font-size: 12px;
  1039. padding: 7px 7px;
  1040. border-radius: 4px;
  1041. border: 1px solid #cccccc;
  1042. box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
  1043. margin: -2px 0px;
  1044. }
  1045. #togetherjs-menu .togetherjs-self-name:focus {
  1046. border: 1px solid #0095DD;
  1047. }
  1048. #togetherjs-menu .togetherjs-self-name:focus {
  1049. border-bottom: 1px solid #0095DD;
  1050. }
  1051. /*Participant windows*/
  1052. #togetherjs-participantlist.togetherjs-window {
  1053. padding: -1px;
  1054. }
  1055. #togetherjs-participantlist.togetherjs-window section {
  1056. overflow: scroll;
  1057. height: 200px;
  1058. margin: 0px -7px;
  1059. }
  1060. #togetherjs-participantlist section.togetherjs-buttons {
  1061. height: auto;
  1062. background: none;
  1063. text-align: left;
  1064. margin: auto;
  1065. padding-top: 0px;
  1066. }
  1067. #togetherjs-participantlist .togetherjs-person.togetherjs-person-small {
  1068. margin: 0px;
  1069. width: 30px;
  1070. height: 30px;
  1071. }
  1072. #togetherjs-participantlist.togetherjs-window section ul li {
  1073. padding: 10px;
  1074. border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  1075. }
  1076. #togetherjs-participantlist.togetherjs-window .tj-name {
  1077. padding-left: 5px;
  1078. }
  1079. #togetherjs-participantlist.togetherjs-window .tj-status {
  1080. float: right;
  1081. margin-top: 6px;
  1082. margin-right: 10px;
  1083. font-size: 24px;
  1084. color: green;
  1085. }
  1086. #togetherjs-participantlist.togetherjs-window .tj-urllocation {
  1087. font-size: 12px;
  1088. white-space: nowrap;
  1089. overflow: hidden;
  1090. text-overflow: ellipsis;
  1091. }
  1092. #togetherjs-participantlist .togetherjs-follow-question {
  1093. margin-left: 0px;
  1094. }
  1095. #togetherjs-participantlist.togetherjs-window .tj-follow {
  1096. font-size: 12px;
  1097. }
  1098. #togetherjs-participantlist.togetherjs-window .tj-btn-sm {
  1099. height: 30px;
  1100. line-height: 30px;
  1101. font-size: 12px;
  1102. margin: 0px 3px 0px 0px;
  1103. }
  1104. section.togetherjs-participant-window-main {
  1105. margin: 0px -7px -7px !important;
  1106. }
  1107. .togetherjs-participant-window-row a.togetherjs-person-url {
  1108. text-overflow: ellipsis;
  1109. white-space: nowrap;
  1110. overflow: hidden;
  1111. width: 179px;
  1112. display: inline-block;
  1113. }
  1114. .togetherjs p.togetherjs-participant-window-row {
  1115. border-bottom: 1px solid #E1E1E1 !important;
  1116. padding: 7px 14px 14px !important;
  1117. }
  1118. .togetherjs-participant-window-row strong {
  1119. font-weight: 800;
  1120. }
  1121. .togetherjs-follow-question {
  1122. margin-left: 10px;
  1123. }
  1124. .togetherjs-float-left {
  1125. float: left;
  1126. }
  1127. .togetherjs-window input[type="radio"],
  1128. .togetherjs-window input[type="checkbox"] {
  1129. margin: 0 0 0 !important;
  1130. }
  1131. .togetherjs-clear {
  1132. clear: both;
  1133. margin: 10px;
  1134. }
  1135. section.togetherjs-buttons {
  1136. background: #F3F2F2;
  1137. margin: 0px -7px !important;
  1138. padding: 7px;
  1139. border-bottom-right-radius: 4px;
  1140. border-bottom-left-radius: 4px;
  1141. text-align: right;
  1142. }
  1143. section.togetherjs-buttons.togetherjs-buttons-notification-diff-url {
  1144. margin: 7px -7px 0px !important;
  1145. padding: 7px 3px 0px;
  1146. border-bottom-right-radius: 4px;
  1147. border-bottom-left-radius: 4px;
  1148. width: 300px;
  1149. text-align: right;
  1150. }
  1151. .togetherjs-notification-diff-url {
  1152. width: 288px !important;
  1153. margin: 0px 7px !important;
  1154. }
  1155. .togetherjs-different-url button {
  1156. min-width: 47% !important;
  1157. }
  1158. /*.togetherjs-different-url {
  1159. text-align:right;
  1160. }*/
  1161. .togetherjs-same-url {
  1162. padding-left: 7px !important;
  1163. opacity: .5 !important;
  1164. padding-top: 7px !important;
  1165. padding-bottom: 7px !important;
  1166. }
  1167. section.togetherjs-buttons .togetherjs-same-url {
  1168. text-align: left;
  1169. }
  1170. /* Button set */
  1171. #togetherjs-dock {
  1172. position: fixed;
  1173. z-index: 10000;
  1174. background-color: #0095dd;
  1175. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  1176. /*border:1px solid #000;*/
  1177. }
  1178. #togetherjs-dock.togetherjs-dock-right {
  1179. padding: 0;
  1180. bottom: 150px;
  1181. right: 5px;
  1182. border-radius: 4px;
  1183. height: 260px;
  1184. width: 60px;
  1185. }
  1186. #togetherjs-dock.togetherjs-dock-right #togetherjs-dock-anchor-vertical {
  1187. display: none;
  1188. }
  1189. #togetherjs-dock.togetherjs-dock-right #togetherjs-dock-anchor-horizontal {
  1190. display: inline;
  1191. }
  1192. #togetherjs-dock.togetherjs-dock-right #togetherjs-dock-anchor-horizontal img {
  1193. width: 31px;
  1194. height: 7px;
  1195. padding: 0px 2px 2px 2px;
  1196. pointer-events: none;
  1197. }
  1198. #togetherjs-dock.togetherjs-dock-left {
  1199. padding: 0;
  1200. bottom: 60px;
  1201. left: 5px;
  1202. border-radius: 0 4px 4px 0;
  1203. height: 214px;
  1204. width: 60px;
  1205. }
  1206. #togetherjs-dock.togetherjs-dock-left #togetherjs-dock-anchor-vertical {
  1207. display: none;
  1208. }
  1209. #togetherjs-dock.togetherjs-dock-left #togetherjs-dock-anchor-horizontal {
  1210. display: inline;
  1211. }
  1212. #togetherjs-dock.togetherjs-dock-left #togetherjs-dock-anchor-horizontal img {
  1213. width: 6px;
  1214. height: 6px;
  1215. padding: 7px 2px 2px 2px;
  1216. }
  1217. #togetherjs-dock.togetherjs-dock-top {
  1218. padding: 0;
  1219. top: 40px;
  1220. left: 50%;
  1221. margin-left: -130px;
  1222. border-radius: 4px 4px 0 0;
  1223. height: 60px;
  1224. width: 260px;
  1225. }
  1226. #togetherjs-dock.togetherjs-dock-top #togetherjs-buttons,
  1227. #togetherjs-dock.togetherjs-dock-top #togetherjs-dock-anchor {
  1228. display: inline;
  1229. }
  1230. #togetherjs-dock.togetherjs-dock-top #togetherjs-dock-anchor-vertical {
  1231. display: inline;
  1232. }
  1233. #togetherjs-dock.togetherjs-dock-top #togetherjs-dock-anchor-horizontal {
  1234. display: none;
  1235. }
  1236. #togetherjs-dock.togetherjs-dock-top #togetherjs-dock-anchor-vertical img {
  1237. width: 6px;
  1238. height: 6px;
  1239. padding: 2px;
  1240. }
  1241. /* Arrows for pointing */
  1242. .togetherjs-arrow {
  1243. position: absolute;
  1244. border: 2px solid #f00;
  1245. z-index: 10010;
  1246. padding: 0;
  1247. margin: 0;
  1248. -moz-transform-origin: top left;
  1249. -webkit-transform-origin: top left;
  1250. -ms-transform-origin: top left;
  1251. -o-transform-origin: top left;
  1252. transform-origin: top left;
  1253. }
  1254. .togetherjs-chat-message.togetherjs-arrow-message {
  1255. border: 2px solid #f00;
  1256. }
  1257. /* Shared cursors */
  1258. .togetherjs-cursor svg {
  1259. -webkit-filter: drop-shadow(1px 3px 2px rgba(0, 0, 0, 0.3));
  1260. -webkit-transform: rotate(-10deg);
  1261. }
  1262. .togetherjs-cursor-img {
  1263. position: relative;
  1264. top: 0;
  1265. }
  1266. .togetherjs-cursor img {
  1267. width: 20px;
  1268. -webkit-filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.2));
  1269. /*FIX ME, moz filter not working...*/
  1270. -moz-filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.2));
  1271. filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.2));
  1272. }
  1273. .togetherjs-cursor {
  1274. position: absolute;
  1275. z-index: 9999;
  1276. font-size: 28px;
  1277. font-weight: bolder;
  1278. /* This magic CSS rule makes this element basically invisible to clicks/etc:
  1279. (good on all but IE: http://caniuse.com/pointer-events */
  1280. pointer-events: none;
  1281. /*FIXME: maybe these should use position: fixed so the cursor
  1282. stays stuck to the top of the screen until the appropriate time
  1283. (when .togetherjs-scrolled-above/below is removed)?*/
  1284. }
  1285. .togetherjs-cursor:hover {
  1286. cursor: pointer;
  1287. }
  1288. .togetherjs-cursor.togetherjs-scrolled-above {
  1289. position: fixed;
  1290. }
  1291. .togetherjs-cursor.togetherjs-scrolled-above svg {
  1292. -webkit-transition-duration: 0.8s;
  1293. -webkit-transition-property: -webkit-transform;
  1294. -webkit-transform: rotate(20deg);
  1295. transition-duration: 0.8s;
  1296. transition-property: transform;
  1297. transform: rotate(20deg);
  1298. }
  1299. .togetherjs-cursor.togetherjs-scrolled-above .togetherjs-cursor-down {
  1300. display: none;
  1301. }
  1302. .togetherjs-cursor.togetherjs-scrolled-below {
  1303. position: fixed;
  1304. }
  1305. .togetherjs-cursor.togetherjs-scrolled-below svg {
  1306. -webkit-transition-duration: 0.8s;
  1307. -webkit-transition-property: -webkit-transform;
  1308. -webkit-transform: rotate(-150deg);
  1309. transition-duration: 0.8s;
  1310. transition-property: transform;
  1311. transform: rotate(-150deg);
  1312. }
  1313. .togetherjs-cursor.togetherjs-scrolled-below .togetherjs-cursor-up {
  1314. display: none;
  1315. }
  1316. .togetherjs-cursor.togetherjs-scrolled-normal svg {
  1317. -webkit-transition-duration: 0.8s;
  1318. -webkit-transition-property: -webkit-transform;
  1319. -webkit-transform: rotate(-10deg);
  1320. transition-duration: 0.8s;
  1321. transition-property: transform;
  1322. transform: rotate(-10deg);
  1323. }
  1324. .togetherjs-cursor.togetherjs-scrolled-normal .togetherjs-cursor-up,
  1325. .togetherjs-cursor.togetherjs-scrolled-normal .togetherjs-cursor-down {
  1326. display: none;
  1327. }
  1328. .togetherjs-cursor .togetherjs-cursor-container {
  1329. opacity: 0.9;
  1330. white-space: nowrap;
  1331. font-family: openSansLight, Helvetica, 'Helvetica Neue', Arial, sans-serif;
  1332. font-size: 40%;
  1333. position: relative;
  1334. top: 5px;
  1335. left: 15px;
  1336. padding: 8px;
  1337. border-radius: 4px;
  1338. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  1339. border: 1px solid rgba(0, 0, 0, 0.2);
  1340. -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  1341. -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  1342. box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  1343. }
  1344. .togetherjs-click {
  1345. position: absolute;
  1346. z-index: 9998;
  1347. pointer-events: none;
  1348. width: 10px;
  1349. height: 10px;
  1350. margin: -5px 0 0 -5px;
  1351. border-radius: 5px;
  1352. border: 3px solid #ff3a29;
  1353. /* Note, you must call this like:
  1354. .transition(~"value, value, value")*/
  1355. transition: width 2s, height 2s, margin 2s, border 2s;
  1356. -moz-transition: width 2s, height 2s, margin 2s, border 2s;
  1357. -webkit-transition: width 2s, height 2s, margin 2s, border 2s;
  1358. -o-transition: width 2s, height 2s, margin 2s, border 2s;
  1359. }
  1360. .togetherjs-click.togetherjs-clicking {
  1361. width: 40px;
  1362. height: 40px;
  1363. margin: -20px 0 0 -20px;
  1364. border-radius: 20px;
  1365. border: 3px solid rgba(0, 0, 0, 0);
  1366. }
  1367. #togetherjs-starter .togetherjs-running {
  1368. background-color: #f00;
  1369. color: #fff;
  1370. border-radius: 4px;
  1371. border: 3px outset #d00;
  1372. /*FIXME: add gradient*/
  1373. }
  1374. /* Modals */
  1375. #togetherjs-modal-background {
  1376. position: fixed;
  1377. background-color: #000;
  1378. opacity: 0.5;
  1379. width: 100%;
  1380. height: 100%;
  1381. top: 0;
  1382. left: 0;
  1383. z-index: 10002;
  1384. }
  1385. .togetherjs .togetherjs-modal {
  1386. background-color: #ffffff;
  1387. color: #000000;
  1388. padding: 0 7px 0 7px;
  1389. z-index: 10001;
  1390. width: 286px;
  1391. border-radius: 4px;
  1392. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  1393. border-radius: 5px !important;
  1394. position: fixed;
  1395. z-index: 10003;
  1396. top: 50%;
  1397. left: 50%;
  1398. margin-left: -150px;
  1399. width: 300px;
  1400. margin-top: -10em;
  1401. }
  1402. .togetherjs .togetherjs-modal section {
  1403. margin: 15px 7px;
  1404. }
  1405. .togetherjs .togetherjs-modal > header {
  1406. font-weight: bold;
  1407. font-variant: normal;
  1408. text-align: center;
  1409. font-family: openSansRegular, Helvetica;
  1410. color: #fff;
  1411. margin: 0 -7px 0 -7px;
  1412. padding: 10px 4px 5px 30px;
  1413. height: 24px;
  1414. background: #0095DD;
  1415. border-radius: 4px 4px 0 0;
  1416. position: relative;
  1417. border-bottom: 1px solid #0071A7;
  1418. }
  1419. .togetherjs .togetherjs-modal .togetherjs-share-link {
  1420. width: 256px;
  1421. font-size: 12px;
  1422. padding: 6px 6px 4px;
  1423. border-radius: 4px;
  1424. border: 1px solid #cccccc;
  1425. box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
  1426. font-family: Monaco, sans-serif;
  1427. margin: 7px 0px;
  1428. }
  1429. .togetherjs .togetherjs-modal .togetherjs-share-link:focus {
  1430. border: 1px solid #0095DD;
  1431. }
  1432. .togetherjs .togetherjs-modal header button.togetherjs-close {
  1433. background-color: inherit;
  1434. border: none;
  1435. padding: 0;
  1436. margin: 0;
  1437. border-left: 1px solid #0071A7;
  1438. float: right;
  1439. font-weight: bold;
  1440. cursor: pointer;
  1441. background-color: #0095dd;
  1442. background-image: url('./images/icon-close@2x.png');
  1443. background-position: center center;
  1444. background-repeat: no-repeat;
  1445. background-size: 13px 13px;
  1446. width: 39px;
  1447. height: 39px;
  1448. margin-top: -10px;
  1449. margin-right: -4px;
  1450. border-top-right-radius: 4px;
  1451. }
  1452. .togetherjs .togetherjs-modal header button.togetherjs-close:hover {
  1453. background-image: url('./images/icon-close-active.png');
  1454. background-color: rgba(0, 0, 0, 0.1);
  1455. }
  1456. .togetherjs .togetherjs-modal #togetherjs-chat-messages {
  1457. overflow-y: auto;
  1458. /*FIXME: I'm just pulling numbers out of thin air here:*/
  1459. height: 260px;
  1460. }
  1461. .togetherjs .togetherjs-modal.togetherjs-modal-wide {
  1462. width: 550px;
  1463. margin-left: -284px;
  1464. height: 530px;
  1465. margin-top: -275px;
  1466. }
  1467. .togetherjs .togetherjs-modal section.togetherjs-buttons {
  1468. /*position: absolute;*/
  1469. bottom: 0;
  1470. background: #F2F2F2;
  1471. width: 294px;
  1472. padding: 10px;
  1473. text-align: right;
  1474. border-bottom-right-radius: 4px;
  1475. border-bottom-left-radius: 4px;
  1476. margin-left: -7px;
  1477. margin-bottom: 0px;
  1478. border-top: 1px solid #E1E1E1;
  1479. }
  1480. .togetherjs .togetherjs-modal-wide section.togetherjs-buttons {
  1481. width: 544px;
  1482. text-align: center !important;
  1483. position: absolute;
  1484. }
  1485. .togetherjs .togetherjs-walkthrough-slide {
  1486. padding: 0 30px 0 30px;
  1487. text-align: center;
  1488. }
  1489. .togetherjs .togetherjs-walkthrough-slide p {
  1490. margin: 18px auto;
  1491. width: 400px;
  1492. }
  1493. .togetherjs .togetherjs-walkthrough-slide iframe {
  1494. border-radius: 4px;
  1495. }
  1496. .togetherjs section.togetherjs-walkthrough-slide .togetherjs-walkthrough-main-image .togetherjs-walkthrough-avatar-section {
  1497. margin-top: 115px;
  1498. }
  1499. .togetherjs .togetherjs-avatar-preview {
  1500. float: left;
  1501. margin-left: 82px;
  1502. }
  1503. .togetherjs .togetherjs-avatar-upload-input {
  1504. float: right;
  1505. margin-right: 82px;
  1506. margin-top: 19px;
  1507. }
  1508. .togetherjs .togetherjs-save-settings {
  1509. margin-top: 239px;
  1510. }
  1511. .togetherjs section.togetherjs-walkthrough-slide .togetherjs-walkthrough-avatar {
  1512. width: 80px;
  1513. height: 80px;
  1514. position: absolute;
  1515. left: 44%;
  1516. top: 30%;
  1517. border-radius: 4px 4px 4px 4px;
  1518. border: 2px solid #cccccc;
  1519. background: none repeat scroll 0% 0% #000000;
  1520. }
  1521. .togetherjs section.togetherjs-walkthrough-slide .togetherjs-walkthrough-avatar:hover {
  1522. cursor: pointer;
  1523. border: 2px solid #cccccc;
  1524. }
  1525. .togetherjs section.togetherjs-walkthrough-slide input.togetherjs-self-name {
  1526. position: absolute;
  1527. top: 50%;
  1528. left: 29%;
  1529. font-size: 14px;
  1530. padding: 6px 6px 6px;
  1531. border-radius: 4px 4px 4px 4px;
  1532. border: 1px solid #cccccc;
  1533. box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1) inset;
  1534. font-family: openSansRegular, Helvetica, sans-serif;
  1535. margin: -20px 0px;
  1536. }
  1537. .togetherjs section.togetherjs-walkthrough-slide .togetherjs-swatch {
  1538. width: 32px;
  1539. height: 32px;
  1540. background: none repeat scroll 0% 0% #000000;
  1541. position: absolute;
  1542. top: 46.2%;
  1543. right: 29%;
  1544. border-radius: 4px 4px 4px 4px;
  1545. border: 1px solid #cccccc;
  1546. }
  1547. .togetherjs section.togetherjs-walkthrough-slide .togetherjs-swatch:hover {
  1548. cursor: pointer;
  1549. border: 1px solid rgba(204, 204, 204, 0.2);
  1550. }
  1551. .togetherjs section.togetherjs-walkthrough-slide span.togetherjs-walkthrough-sendlink {
  1552. top: 44%;
  1553. position: relative;
  1554. }
  1555. .togetherjs section.togetherjs-walkthrough-slide input.togetherjs-share-link {
  1556. top: 44%;
  1557. position: relative;
  1558. }
  1559. .togetherjs .togetherjs-walkthrough-main-image {
  1560. width: 400px;
  1561. height: 300px;
  1562. background: rgba(216, 216, 216, 0.1);
  1563. border-radius: 4px;
  1564. border: 1px solid rgba(151, 151, 151, 0.1);
  1565. margin: 0 auto;
  1566. }
  1567. .togetherjs .togetherjs-walkthrough-main-image img {
  1568. width: 400px;
  1569. height: 300px;
  1570. }
  1571. .togetherjs #togetherjs-walkthrough input,
  1572. .togetherjs textarea,
  1573. .togetherjs .uneditable-input {
  1574. width: 177px;
  1575. }
  1576. .togetherjs #togetherjs-walkthrough select,
  1577. .togetherjs input[type="file"] {
  1578. height: 30px;
  1579. line-height: 0px;
  1580. }
  1581. .togetherjs #togetherjs-walkthrough-previous {
  1582. cursor: pointer;
  1583. width: 19px;
  1584. height: 36px;
  1585. background-repeat: no-repeat;
  1586. background-size: 60% 60%;
  1587. margin-left: 36px;
  1588. margin-top: 28%;
  1589. background-image: url('./images/icn-walkthrough-arrow-l.png');
  1590. float: left;
  1591. }
  1592. .togetherjs #togetherjs-walkthrough-previous.togetherjs-disabled {
  1593. cursor: default;
  1594. opacity: 0.2;
  1595. }
  1596. .togetherjs #togetherjs-walkthrough-previous:hover {
  1597. background-image: url('./images/icn-walkthrough-arrow-l-hover.png');
  1598. }
  1599. .togetherjs #togetherjs-walkthrough-next {
  1600. cursor: pointer;
  1601. width: 19px;
  1602. height: 36px;
  1603. background-repeat: no-repeat;
  1604. background-size: 60% 60%;
  1605. margin-right: 28px;
  1606. margin-top: 28%;
  1607. background-image: url('./images/icn-walkthrough-arrow-r.png');
  1608. float: right;
  1609. }
  1610. .togetherjs #togetherjs-walkthrough-next.togetherjs-disabled {
  1611. cursor: default;
  1612. opacity: 0.2;
  1613. }
  1614. .togetherjs #togetherjs-walkthrough-next:hover {
  1615. background-image: url('./images/icn-walkthrough-arrow-r-hover.png');
  1616. }
  1617. .togetherjs #togetherjs-walkthrough-progress {
  1618. width: 537px;
  1619. position: absolute;
  1620. bottom: 66px;
  1621. text-align: center;
  1622. }
  1623. .togetherjs .togetherjs-walkthrough-slide-progress {
  1624. cursor: pointer;
  1625. padding: 0 5px 0 5px;
  1626. color: #D8D8D8;
  1627. font-size: 20px;
  1628. }
  1629. .togetherjs .togetherjs-walkthrough-slide-progress.togetherjs-active {
  1630. color: #9C9C9C;
  1631. }
  1632. .togetherjs .togetherjs-walkthrough-slide-progress:hover {
  1633. color: #9C9C9C;
  1634. }
  1635. /* Animations */
  1636. /* Inspired by https://github.com/daneden/animate.css */
  1637. @-webkit-keyframes togetherjs-pulse {
  1638. 0% {
  1639. -webkit-transform: scale(1);
  1640. }
  1641. 50% {
  1642. -webkit-transform: scale(1.1);
  1643. }
  1644. 100% {
  1645. -webkit-transform: scale(1);
  1646. }
  1647. }
  1648. @-moz-keyframes togetherjs-pulse {
  1649. 0% {
  1650. -moz-transform: scale(1);
  1651. }
  1652. 50% {
  1653. -moz-transform: scale(1.1);
  1654. }
  1655. 100% {
  1656. -moz-transform: scale(1);
  1657. }
  1658. }
  1659. @-o-keyframes togetherjs-pulse {
  1660. 0% {
  1661. -o-transform: scale(1);
  1662. }
  1663. 50% {
  1664. -o-transform: scale(1.1);
  1665. }
  1666. 100% {
  1667. -o-transform: scale(1);
  1668. }
  1669. }
  1670. @keyframes togetherjs-pulse {
  1671. 0% {
  1672. transform: scale(1);
  1673. }
  1674. 50% {
  1675. transform: scale(1.1);
  1676. }
  1677. 100% {
  1678. transform: scale(1);
  1679. }
  1680. }
  1681. .togetherjs-pulse {
  1682. -webkit-animation-name: togetherjs-pulse;
  1683. -moz-animation-name: togetherjs-pulse;
  1684. -o-animation-name: togetherjs-pulse;
  1685. animation-name: togetherjs-pulse;
  1686. }
  1687. .togetherjs-animated {
  1688. -webkit-animation-duration: 1s;
  1689. -moz-animation-duration: 1s;
  1690. -o-animation-duration: 1s;
  1691. animation-duration: 1s;
  1692. -webkit-animation-fill-mode: both;
  1693. -moz-animation-fill-mode: both;
  1694. -o-animation-fill-mode: both;
  1695. animation-fill-mode: both;
  1696. }
  1697. @-webkit-keyframes togetherjs-color-pulse {
  1698. 0% {
  1699. box-shadow: none;
  1700. }
  1701. 50% {
  1702. box-shadow: inset 0 0 2px #0095dd;
  1703. }
  1704. 100% {
  1705. box-shadow: none;
  1706. }
  1707. }
  1708. @-moz-keyframes togetherjs-color-pulse {
  1709. 0% {
  1710. box-shadow: none;
  1711. }
  1712. 50% {
  1713. box-shadow: inset 0 0 2px #0095dd;
  1714. }
  1715. 100% {
  1716. box-shadow: none;
  1717. }
  1718. }
  1719. @-o-keyframes togetherjs-color-pulse {
  1720. 0% {
  1721. box-shadow: none;
  1722. }
  1723. 50% {
  1724. box-shadow: inset 0 0 2px #0095dd;
  1725. }
  1726. 100% {
  1727. box-shadow: none;
  1728. }
  1729. }
  1730. @keyframes togetherjs-color-pulse {
  1731. 0% {
  1732. box-shadow: none;
  1733. }
  1734. 50% {
  1735. box-shadow: inset 0 0 2px #0095dd;
  1736. }
  1737. 100% {
  1738. box-shadow: none;
  1739. }
  1740. }
  1741. .togetherjs-color-pulse {
  1742. -webkit-animation-name: togetherjs-color-pulse;
  1743. -moz-animation-name: togetherjs-color-pulse;
  1744. -o-animation-name: togetherjs-color-pulse;
  1745. animation-name: togetherjs-color-pulse;
  1746. }
  1747. @-webkit-keyframes togetherjs-color-alert {
  1748. 0% {
  1749. box-shadow: none;
  1750. }
  1751. 50% {
  1752. box-shadow: 0 0 5px #0095dd;
  1753. }
  1754. 100% {
  1755. box-shadow: none;
  1756. }
  1757. }
  1758. @-moz-keyframes togetherjs-color-alert {
  1759. 0% {
  1760. box-shadow: none;
  1761. }
  1762. 50% {
  1763. box-shadow: 0 0 5px #0095dd;
  1764. }
  1765. 100% {
  1766. box-shadow: none;
  1767. }
  1768. }
  1769. @-o-keyframes togetherjs-color-alert {
  1770. 0% {
  1771. box-shadow: none;
  1772. }
  1773. 50% {
  1774. box-shadow: 0 0 5px #0095dd;
  1775. }
  1776. 100% {
  1777. box-shadow: none;
  1778. }
  1779. }
  1780. @keyframes togetherjs-color-alert {
  1781. 0% {
  1782. box-shadow: none;
  1783. }
  1784. 50% {
  1785. box-shadow: 0 0 5px #0095dd;
  1786. }
  1787. 100% {
  1788. box-shadow: none;
  1789. }
  1790. }
  1791. .togetherjs-color-alert {
  1792. -webkit-animation-name: togetherjs-color-alert;
  1793. -moz-animation-name: togetherjs-color-alert;
  1794. -o-animation-name: togetherjs-color-alert;
  1795. animation-name: togetherjs-color-alert;
  1796. animation-iteration-count: infinite;
  1797. -webkit-animation-iteration-count: infinite;
  1798. -moz-animation-iteration-count: infinite;
  1799. -o-animation-iteration-count: infinite;
  1800. }
  1801. #togetherjs-profile-arrow {
  1802. position: absolute;
  1803. width: 12px;
  1804. height: 12px;
  1805. left: 42px;
  1806. top: 46px;
  1807. background: url('./images/icn-gear.png');
  1808. background-size: 12px 12px;
  1809. background-repeat: no-repeat;
  1810. }
  1811. #togetherjs-pick-color {
  1812. width: 100px;
  1813. height: 76px;
  1814. margin-left: -35px;
  1815. position: absolute;
  1816. margin-top: 25px;
  1817. background-color: #fff;
  1818. z-index: 10004;
  1819. border: 1px solid #979797;
  1820. border-radius: 4px;
  1821. padding: 5px;
  1822. }
  1823. #togetherjs-pick-color .togetherjs-swatch {
  1824. cursor: pointer;
  1825. display: inline-block;
  1826. height: 12px;
  1827. width: 12px;
  1828. border: 1px solid;
  1829. border-radius: 1px;
  1830. margin: 4px;
  1831. }
  1832. #togetherjs-pick-color .togetherjs-swatch.togetherjs-swatch-active {
  1833. border: 3px solid;
  1834. border-radius: 3px;
  1835. }
  1836. #togetherjs-pick-color .togetherjs-swatch:hover {
  1837. border: 2px solid rgba(0, 0, 0, 0.5);
  1838. height: 10px;
  1839. width: 10px;
  1840. border-radius: 3px;
  1841. }
  1842. .togetherjs-focus {
  1843. position: absolute;
  1844. pointer-events: none;
  1845. z-index: 9999;
  1846. opacity: 0.4;
  1847. border: 3px solid;
  1848. margin: -3px;
  1849. }
  1850. .togetherjs-only-mobile {
  1851. display: none;
  1852. }
  1853. @media screen and (max-device-width: 480px) {
  1854. {
  1855. /*TogetherJS dock*/
  1856. /*TogetherJS walkthrough*/
  1857. }
  1858. #togetherjs-dock.togetherjs-dock-right {
  1859. top: 0px;
  1860. width: auto;
  1861. height: 40px !important;
  1862. right: 0px;
  1863. margin: 10px;
  1864. bottom: 0px;
  1865. }
  1866. #togetherjs-dock #togetherjs-dock-anchor {
  1867. width: 40px;
  1868. height: 40px;
  1869. float: right;
  1870. user-select: all;
  1871. cursor: default;
  1872. display: inline;
  1873. }
  1874. #togetherjs-dock #togetherjs-buttons {
  1875. display: inline;
  1876. }
  1877. #togetherjs-dock .togetherjs-button {
  1878. float: right;
  1879. border-right: 1px solid rgba(0, 0, 0, 0.2);
  1880. border-top: none;
  1881. width: 40px;
  1882. height: 40px;
  1883. background-size: 30px 30px;
  1884. }
  1885. #togetherjs-dock #togetherjs-profile-arrow {
  1886. display: none;
  1887. }
  1888. #togetherjs-dock #togetherjs-dock-anchor-horizontal img {
  1889. width: 24px;
  1890. height: 24px;
  1891. padding: 8px;
  1892. }
  1893. .togetherjs-only-mobile {
  1894. display: block;
  1895. text-align: center;
  1896. /* a.togetherjs-share-link {
  1897. padding: 6px 111px 6px;
  1898. }*/
  1899. }
  1900. .togetherjs-not-mobile {
  1901. display: none;
  1902. }
  1903. .togetherjs .togetherjs-menu-item {
  1904. cursor: pointer;
  1905. margin: 0px -14px 0px;
  1906. padding: 9px;
  1907. border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  1908. }
  1909. .togetherjs #togetherjs-menu-feedback-button,
  1910. .togetherjs #togetherjs-menu-update-color-button,
  1911. .togetherjs #togetherjs-menu-help-button {
  1912. display: none;
  1913. }
  1914. .togetherjs .togetherjs-menu-item img {
  1915. display: none;
  1916. }
  1917. .togetherjs .togetherjs-menu-item:first-child {
  1918. display: none;
  1919. }
  1920. .togetherjs .togetherjs-button .togetherjs-person {
  1921. margin: 0 0 0 5px;
  1922. }
  1923. .togetherjs .togetherjs-person {
  1924. background-size: 30px 30px;
  1925. height: 26px;
  1926. width: 26px;
  1927. }
  1928. .togetherjs .togetherjs-person-avatar-swatch {
  1929. margin-left: 12px;
  1930. }
  1931. .togetherjs .togetherjs-window {
  1932. width: 100%;
  1933. margin-left: 0;
  1934. height: 82%;
  1935. margin-top: 0%;
  1936. z-index: 10003 !important;
  1937. top: 20%;
  1938. left: -2px;
  1939. }
  1940. .togetherjs .togetherjs-window #togetherjs-chat-messages {
  1941. width: 105%;
  1942. }
  1943. .togetherjs .togetherjs-window .togetherjs-close {
  1944. display: none;
  1945. }
  1946. .togetherjs .togetherjs-window #togetherjs-chat-messages {
  1947. height: 62%;
  1948. top: -37px;
  1949. }
  1950. .togetherjs .togetherjs-subtitle {
  1951. width: 98%;
  1952. margin: 22px 7px;
  1953. }
  1954. .togetherjs #togetherjs-chat-input-box {
  1955. width: 100%;
  1956. bottom: 0px;
  1957. position: fixed;
  1958. }
  1959. .togetherjs #togetherjs-chat-input {
  1960. width: 95%;
  1961. }
  1962. .togetherjs .togetherjs-timestamp {
  1963. padding: 8px 45px 0px 10px;
  1964. }
  1965. .togetherjs #togetherjs-rtc-not-supported section.togetherjs-buttons {
  1966. display: none;
  1967. }
  1968. .togetherjs #togetherjs-menu-window section.togetherjs-buttons {
  1969. display: none;
  1970. }
  1971. .togetherjs .togetherjs-modal {
  1972. width: 94%;
  1973. margin-left: 1%;
  1974. height: 94%;
  1975. margin-top: 1%;
  1976. top: 0;
  1977. left: 0;
  1978. }
  1979. .togetherjs .togetherjs-window > header {
  1980. margin: -7px;
  1981. padding: 10px;
  1982. }
  1983. #togetherjs-dock-participants {
  1984. display: none;
  1985. }
  1986. #togetherjs-confirm-end section.togetherjs-buttons {
  1987. position: fixed;
  1988. bottom: 0;
  1989. width: 92%;
  1990. }
  1991. #togetherjs-edit-name-window section.togetherjs-buttons {
  1992. position: fixed;
  1993. bottom: 0;
  1994. width: 96%;
  1995. }
  1996. input.togetherjs-self-name {
  1997. padding: 10px;
  1998. width: 92%;
  1999. margin-top: 10px;
  2000. }
  2001. #togetherjs-avatar-edit section.togetherjs-buttons {
  2002. position: fixed;
  2003. bottom: 0;
  2004. width: 92%;
  2005. }
  2006. #togetherjs-avatar-edit .togetherjs-person {
  2007. margin: 30px auto;
  2008. float: none;
  2009. }
  2010. #togetherjs-avatar-edit #togetherjs-avatar-buttons {
  2011. float: none;
  2012. margin: 0 auto;
  2013. }
  2014. #togetherjs-window-pointer-right,
  2015. #togetherjs-window-pointer-left {
  2016. position: fixed;
  2017. width: 10px;
  2018. height: 10px;
  2019. margin-right: -5px;
  2020. margin-top: -5px;
  2021. background: #fff;
  2022. border-right: 1px solid rgba(0, 0, 0, 0.2);
  2023. border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  2024. z-index: 10002;
  2025. box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  2026. }
  2027. #togetherjs-window-pointer-right {
  2028. -moz-transform: rotate(-45deg);
  2029. -webkit-transform: rotate(-45deg);
  2030. }
  2031. #togetherjs-window-pointer-left {
  2032. -moz-transform: rotate(135deg);
  2033. -webkit-transform: rotate(135deg);
  2034. }
  2035. .togetherjs .togetherjs-modal section {
  2036. margin: 0px 7px;
  2037. }
  2038. #togetherjs-walkthrough-progress {
  2039. width: 93%;
  2040. text-align: center;
  2041. position: static;
  2042. }
  2043. .togetherjs-modal-wide section.togetherjs-buttons {
  2044. width: 93.9%;
  2045. text-align: center !important;
  2046. position: absolute;
  2047. bottom: -17px;
  2048. }
  2049. .togetherjs-walkthrough-slide p {
  2050. margin: 13px auto;
  2051. width: 100%;
  2052. font-size: 11px;
  2053. }
  2054. .togetherjs .togetherjs-walkthrough-main-image {
  2055. width: auto;
  2056. height: auto;
  2057. background: rgba(216, 216, 216, 0.1);
  2058. border-radius: 4px;
  2059. border: 1px solid rgba(151, 151, 151, 0.1);
  2060. padding: 10px;
  2061. }
  2062. .togetherjs .togetherjs-walkthrough-main-image img {
  2063. width: 50%;
  2064. height: auto;
  2065. }
  2066. .togetherjs #togetherjs-walkthrough-next {
  2067. cursor: pointer;
  2068. width: 19px;
  2069. height: 36px;
  2070. background-repeat: no-repeat;
  2071. background-size: 60% 60%;
  2072. margin-right: 0px;
  2073. margin-top: 28%;
  2074. background-image: url('./images/icn-walkthrough-arrow-r.png');
  2075. float: right;
  2076. }
  2077. .togetherjs #togetherjs-walkthrough-previous {
  2078. cursor: pointer;
  2079. width: 19px;
  2080. height: 36px;
  2081. background-repeat: no-repeat;
  2082. background-size: 60% 60%;
  2083. margin-top: 28%;
  2084. background-image: url('./images/icn-walkthrough-arrow-l.png');
  2085. float: left;
  2086. margin-left: 0px;
  2087. }
  2088. .togetherjs .togetherjs-modal .togetherjs-share-link {
  2089. width: 80%;
  2090. font-size: 14px;
  2091. padding: 14px;
  2092. border-radius: 4px;
  2093. border: 1px solid
  2094. #cccccc;
  2095. box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
  2096. font-family: Monaco;
  2097. margin: 7px 0px;
  2098. }
  2099. .togetherjs-walkthrough-sendlink {
  2100. top: 44%;
  2101. position: relative;
  2102. padding: 15px;
  2103. }
  2104. .togetherjs section.togetherjs-walkthrough-slide input.togetherjs-self-name {
  2105. position: absolute;
  2106. top: 50%;
  2107. left: 29%;
  2108. font-size: 14px;
  2109. padding: 6px 6px 6px;
  2110. border-radius: 4px 4px 4px 4px;
  2111. border: 1px solid
  2112. #cccccc;
  2113. box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1) inset;
  2114. font-family: openSansRegular;
  2115. margin: -20px 11px;
  2116. width: 60%;
  2117. }
  2118. .togetherjs section.togetherjs-walkthrough-slide .togetherjs-walkthrough-main-image .togetherjs-walkthrough-avatar-section {
  2119. margin-top: 15px;
  2120. }
  2121. .togetherjs .togetherjs-avatar-preview {
  2122. margin: 0 auto;
  2123. float: none;
  2124. }
  2125. .togetherjs .togetherjs-avatar-upload-input {
  2126. margin: 10px auto;
  2127. float: none;
  2128. }
  2129. .togetherjs .togetherjs-avatar-upload-input input {
  2130. width: 60%;
  2131. }
  2132. input.togetherjs-upload-avatar {
  2133. line-height: 0px;
  2134. width: 174px;
  2135. margin-left: 0px;
  2136. }
  2137. .togetherjs section.togetherjs-walkthrough-slide input.togetherjs-self-name {
  2138. float: left;
  2139. font-size: 14px;
  2140. padding: 6px 6px 6px;
  2141. border-radius: 4px 4px 4px 4px;
  2142. border: 1px solid
  2143. #cccccc;
  2144. box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1) inset;
  2145. font-family: openSansRegular;
  2146. width: 66%;
  2147. position: static;
  2148. margin: 10px 10px;
  2149. }
  2150. .togetherjs section.togetherjs-walkthrough-slide .togetherjs-swatch {
  2151. width: 32px;
  2152. height: 32px;
  2153. background: none repeat scroll 0% 0%
  2154. #000000;
  2155. position: relative;
  2156. float: right;
  2157. right: 10px;
  2158. border-radius: 4px 4px 4px 4px;
  2159. border: 1px solid #cccccc;
  2160. top: 10px;
  2161. }
  2162. .togetherjs .togetherjs-save-settings {
  2163. margin-top: 20px;
  2164. margin-bottom: 0px;
  2165. }
  2166. }
  2167. @media screen and (max-device-width: 480px) and (min-width: 480px) {
  2168. {
  2169. /* #togetherjs-dock.togetherjs-dock-right {
  2170. width: 27% !important;
  2171. }*/
  2172. }
  2173. .togetherjs-mobile-browser input.togetherjs-self-name {
  2174. width: 95%;
  2175. margin-top: 10px;
  2176. }
  2177. .togetherjs .togetherjs-window {
  2178. width: 100%;
  2179. left: -2px !important;
  2180. top: 50%;
  2181. }
  2182. .togetherjs-mobile-browser #togetherjs-edit-name-window section.togetherjs-buttons {
  2183. width: 99%;
  2184. }
  2185. #togetherjs-confirm-end section.togetherjs-buttons {
  2186. width: 96.6%;
  2187. position: absolute;
  2188. bottom: 0;
  2189. }
  2190. #togetherjs-edit-name-window section.togetherjs-buttons {
  2191. width: 99%;
  2192. }
  2193. input.togetherjs-self-name {
  2194. width: 94%;
  2195. margin-top: 10px;
  2196. }
  2197. #togetherjs-avatar-edit section.togetherjs-buttons {
  2198. width: 95.3%;
  2199. bottom: 0;
  2200. background: #F2F2F2;
  2201. padding: 10px;
  2202. text-align: right;
  2203. border-bottom-right-radius: 4px;
  2204. border-bottom-left-radius: 4px;
  2205. border-top: 1px solid #E1E1E1;
  2206. position: absolute;
  2207. }
  2208. .togetherjs-modal {
  2209. width: 74% !important;
  2210. height: 50% !important;
  2211. margin: 20% 12% !important;
  2212. }
  2213. .togetherjs-mobile-browser .togetherjs .togetherjs-modal {
  2214. width: 76% !important;
  2215. margin-left: 1%;
  2216. height: 94%;
  2217. margin-top: 1%;
  2218. top: 0;
  2219. left: 0;
  2220. height: 41%;
  2221. margin: 20% 11%;
  2222. }
  2223. .togetherjs-modal-wide section.togetherjs-buttons {
  2224. width: 97.4% !important;
  2225. }
  2226. }
  2227. @media screen and (max-device-width: 480px) and (max-width: 480px) {
  2228. .togetherjs .togetherjs-window {
  2229. width: 96%;
  2230. margin-left: 0;
  2231. height: 82%;
  2232. margin-top: 0%;
  2233. z-index: 10003 !important;
  2234. top: 20%;
  2235. left: -2px;
  2236. }
  2237. .togetherjs .togetherjs-window #togetherjs-chat-messages {
  2238. width: 105%;
  2239. }
  2240. .togetherjs .togetherjs-window .togetherjs-close {
  2241. display: none;
  2242. }
  2243. .togetherjs .togetherjs-window #togetherjs-chat-messages {
  2244. height: 62%;
  2245. top: -37px;
  2246. }
  2247. #togetherjs-chat-input-box {
  2248. width: 94% !important;
  2249. bottom: 0px;
  2250. position: fixed;
  2251. }
  2252. .togetherjs-timestamp {
  2253. padding: 8px 15px 0px 10px !important;
  2254. }
  2255. input[type='text'],
  2256. input[type='number'],
  2257. textarea {
  2258. font-size: 16px !important;
  2259. }
  2260. }
  2261. /* We set this class on the <body> element when that last media query won't work
  2262. but we detect in Javascript that the client should be treated as mobile */
  2263. .togetherjs-mobile-browser {
  2264. /*TogetherJS dock*/
  2265. /*TogetherJS walkthrough*/
  2266. }
  2267. .togetherjs-mobile-browser #togetherjs-dock.togetherjs-dock-right {
  2268. top: 0px;
  2269. width: auto;
  2270. height: 40px !important;
  2271. right: 0px;
  2272. margin: 10px;
  2273. bottom: 0px;
  2274. }
  2275. .togetherjs-mobile-browser #togetherjs-dock #togetherjs-dock-anchor {
  2276. width: 40px;
  2277. height: 40px;
  2278. float: right;
  2279. user-select: all;
  2280. cursor: default;
  2281. display: inline;
  2282. }
  2283. .togetherjs-mobile-browser #togetherjs-dock #togetherjs-buttons {
  2284. display: inline;
  2285. }
  2286. .togetherjs-mobile-browser #togetherjs-dock .togetherjs-button {
  2287. float: right;
  2288. border-right: 1px solid rgba(0, 0, 0, 0.2);
  2289. border-top: none;
  2290. width: 40px;
  2291. height: 40px;
  2292. background-size: 30px 30px;
  2293. }
  2294. .togetherjs-mobile-browser #togetherjs-dock #togetherjs-profile-arrow {
  2295. display: none;
  2296. }
  2297. .togetherjs-mobile-browser #togetherjs-dock #togetherjs-dock-anchor-horizontal img {
  2298. width: 24px;
  2299. height: 24px;
  2300. padding: 8px;
  2301. }
  2302. .togetherjs-mobile-browser .togetherjs-only-mobile {
  2303. display: block;
  2304. text-align: center;
  2305. /* a.togetherjs-share-link {
  2306. padding: 6px 111px 6px;
  2307. }*/
  2308. }
  2309. .togetherjs-mobile-browser .togetherjs-not-mobile {
  2310. display: none;
  2311. }
  2312. .togetherjs-mobile-browser .togetherjs .togetherjs-menu-item {
  2313. cursor: pointer;
  2314. margin: 0px -14px 0px;
  2315. padding: 9px;
  2316. border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  2317. }
  2318. .togetherjs-mobile-browser .togetherjs #togetherjs-menu-feedback-button,
  2319. .togetherjs-mobile-browser .togetherjs #togetherjs-menu-update-color-button,
  2320. .togetherjs-mobile-browser .togetherjs #togetherjs-menu-help-button {
  2321. display: none;
  2322. }
  2323. .togetherjs-mobile-browser .togetherjs .togetherjs-menu-item img {
  2324. display: none;
  2325. }
  2326. .togetherjs-mobile-browser .togetherjs .togetherjs-menu-item:first-child {
  2327. display: none;
  2328. }
  2329. .togetherjs-mobile-browser .togetherjs .togetherjs-button .togetherjs-person {
  2330. margin: 0 0 0 5px;
  2331. }
  2332. .togetherjs-mobile-browser .togetherjs .togetherjs-person {
  2333. background-size: 30px 30px;
  2334. height: 26px;
  2335. width: 26px;
  2336. }
  2337. .togetherjs-mobile-browser .togetherjs .togetherjs-person-avatar-swatch {
  2338. margin-left: 12px;
  2339. }
  2340. .togetherjs-mobile-browser .togetherjs .togetherjs-window {
  2341. width: 100%;
  2342. margin-left: 0;
  2343. height: 82%;
  2344. margin-top: 0%;
  2345. z-index: 10003 !important;
  2346. top: 20%;
  2347. left: -2px;
  2348. }
  2349. .togetherjs-mobile-browser .togetherjs .togetherjs-window #togetherjs-chat-messages {
  2350. width: 105%;
  2351. }
  2352. .togetherjs-mobile-browser .togetherjs .togetherjs-window .togetherjs-close {
  2353. display: none;
  2354. }
  2355. .togetherjs-mobile-browser .togetherjs .togetherjs-window #togetherjs-chat-messages {
  2356. height: 62%;
  2357. top: -37px;
  2358. }
  2359. .togetherjs-mobile-browser .togetherjs .togetherjs-subtitle {
  2360. width: 98%;
  2361. margin: 22px 7px;
  2362. }
  2363. .togetherjs-mobile-browser .togetherjs #togetherjs-chat-input-box {
  2364. width: 100%;
  2365. bottom: 0px;
  2366. position: fixed;
  2367. }
  2368. .togetherjs-mobile-browser .togetherjs #togetherjs-chat-input {
  2369. width: 95%;
  2370. }
  2371. .togetherjs-mobile-browser .togetherjs .togetherjs-timestamp {
  2372. padding: 8px 45px 0px 10px;
  2373. }
  2374. .togetherjs-mobile-browser .togetherjs #togetherjs-rtc-not-supported section.togetherjs-buttons {
  2375. display: none;
  2376. }
  2377. .togetherjs-mobile-browser .togetherjs #togetherjs-menu-window section.togetherjs-buttons {
  2378. display: none;
  2379. }
  2380. .togetherjs-mobile-browser .togetherjs .togetherjs-modal {
  2381. width: 94%;
  2382. margin-left: 1%;
  2383. height: 94%;
  2384. margin-top: 1%;
  2385. top: 0;
  2386. left: 0;
  2387. }
  2388. .togetherjs-mobile-browser .togetherjs .togetherjs-window > header {
  2389. margin: -7px;
  2390. padding: 10px;
  2391. }
  2392. .togetherjs-mobile-browser #togetherjs-dock-participants {
  2393. display: none;
  2394. }
  2395. .togetherjs-mobile-browser #togetherjs-confirm-end section.togetherjs-buttons {
  2396. position: fixed;
  2397. bottom: 0;
  2398. width: 92%;
  2399. }
  2400. .togetherjs-mobile-browser #togetherjs-edit-name-window section.togetherjs-buttons {
  2401. position: fixed;
  2402. bottom: 0;
  2403. width: 96%;
  2404. }
  2405. .togetherjs-mobile-browser input.togetherjs-self-name {
  2406. padding: 10px;
  2407. width: 92%;
  2408. margin-top: 10px;
  2409. }
  2410. .togetherjs-mobile-browser #togetherjs-avatar-edit section.togetherjs-buttons {
  2411. position: fixed;
  2412. bottom: 0;
  2413. width: 92%;
  2414. }
  2415. .togetherjs-mobile-browser #togetherjs-avatar-edit .togetherjs-person {
  2416. margin: 30px auto;
  2417. float: none;
  2418. }
  2419. .togetherjs-mobile-browser #togetherjs-avatar-edit #togetherjs-avatar-buttons {
  2420. float: none;
  2421. margin: 0 auto;
  2422. }
  2423. .togetherjs-mobile-browser #togetherjs-window-pointer-right,
  2424. .togetherjs-mobile-browser #togetherjs-window-pointer-left {
  2425. position: fixed;
  2426. width: 10px;
  2427. height: 10px;
  2428. margin-right: -5px;
  2429. margin-top: -5px;
  2430. background: #fff;
  2431. border-right: 1px solid rgba(0, 0, 0, 0.2);
  2432. border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  2433. z-index: 10002;
  2434. box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  2435. }
  2436. .togetherjs-mobile-browser #togetherjs-window-pointer-right {
  2437. -moz-transform: rotate(-45deg);
  2438. -webkit-transform: rotate(-45deg);
  2439. }
  2440. .togetherjs-mobile-browser #togetherjs-window-pointer-left {
  2441. -moz-transform: rotate(135deg);
  2442. -webkit-transform: rotate(135deg);
  2443. }
  2444. .togetherjs-mobile-browser .togetherjs .togetherjs-modal section {
  2445. margin: 0px 7px;
  2446. }
  2447. .togetherjs-mobile-browser #togetherjs-walkthrough-progress {
  2448. width: 93%;
  2449. text-align: center;
  2450. position: static;
  2451. }
  2452. .togetherjs-mobile-browser .togetherjs-modal-wide section.togetherjs-buttons {
  2453. width: 93.9%;
  2454. text-align: center !important;
  2455. position: absolute;
  2456. bottom: -17px;
  2457. }
  2458. .togetherjs-mobile-browser .togetherjs-walkthrough-slide p {
  2459. margin: 13px auto;
  2460. width: 100%;
  2461. font-size: 11px;
  2462. }
  2463. .togetherjs-mobile-browser .togetherjs .togetherjs-walkthrough-main-image {
  2464. width: auto;
  2465. height: auto;
  2466. background: rgba(216, 216, 216, 0.1);
  2467. border-radius: 4px;
  2468. border: 1px solid rgba(151, 151, 151, 0.1);
  2469. padding: 10px;
  2470. }
  2471. .togetherjs-mobile-browser .togetherjs .togetherjs-walkthrough-main-image img {
  2472. width: 50%;
  2473. height: auto;
  2474. }
  2475. .togetherjs-mobile-browser .togetherjs #togetherjs-walkthrough-next {
  2476. cursor: pointer;
  2477. width: 19px;
  2478. height: 36px;
  2479. background-repeat: no-repeat;
  2480. background-size: 60% 60%;
  2481. margin-right: 0px;
  2482. margin-top: 28%;
  2483. background-image: url('./images/icn-walkthrough-arrow-r.png');
  2484. float: right;
  2485. }
  2486. .togetherjs-mobile-browser .togetherjs #togetherjs-walkthrough-previous {
  2487. cursor: pointer;
  2488. width: 19px;
  2489. height: 36px;
  2490. background-repeat: no-repeat;
  2491. background-size: 60% 60%;
  2492. margin-top: 28%;
  2493. background-image: url('./images/icn-walkthrough-arrow-l.png');
  2494. float: left;
  2495. margin-left: 0px;
  2496. }
  2497. .togetherjs-mobile-browser .togetherjs .togetherjs-modal .togetherjs-share-link {
  2498. width: 80%;
  2499. font-size: 14px;
  2500. padding: 14px;
  2501. border-radius: 4px;
  2502. border: 1px solid
  2503. #cccccc;
  2504. box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
  2505. font-family: Monaco;
  2506. margin: 7px 0px;
  2507. }
  2508. .togetherjs-mobile-browser .togetherjs-walkthrough-sendlink {
  2509. top: 44%;
  2510. position: relative;
  2511. padding: 15px;
  2512. }
  2513. .togetherjs-mobile-browser .togetherjs section.togetherjs-walkthrough-slide input.togetherjs-self-name {
  2514. position: absolute;
  2515. top: 50%;
  2516. left: 29%;
  2517. font-size: 14px;
  2518. padding: 6px 6px 6px;
  2519. border-radius: 4px 4px 4px 4px;
  2520. border: 1px solid
  2521. #cccccc;
  2522. box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1) inset;
  2523. font-family: openSansRegular;
  2524. margin: -20px 11px;
  2525. width: 60%;
  2526. }
  2527. .togetherjs-mobile-browser .togetherjs section.togetherjs-walkthrough-slide .togetherjs-walkthrough-main-image .togetherjs-walkthrough-avatar-section {
  2528. margin-top: 15px;
  2529. }
  2530. .togetherjs-mobile-browser .togetherjs .togetherjs-avatar-preview {
  2531. margin: 0 auto;
  2532. float: none;
  2533. }
  2534. .togetherjs-mobile-browser .togetherjs .togetherjs-avatar-upload-input {
  2535. margin: 10px auto;
  2536. float: none;
  2537. }
  2538. .togetherjs-mobile-browser .togetherjs .togetherjs-avatar-upload-input input {
  2539. width: 60%;
  2540. }
  2541. .togetherjs-mobile-browser input.togetherjs-upload-avatar {
  2542. line-height: 0px;
  2543. width: 174px;
  2544. margin-left: 0px;
  2545. }
  2546. .togetherjs-mobile-browser .togetherjs section.togetherjs-walkthrough-slide input.togetherjs-self-name {
  2547. float: left;
  2548. font-size: 14px;
  2549. padding: 6px 6px 6px;
  2550. border-radius: 4px 4px 4px 4px;
  2551. border: 1px solid
  2552. #cccccc;
  2553. box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1) inset;
  2554. font-family: openSansRegular;
  2555. width: 66%;
  2556. position: static;
  2557. margin: 10px 10px;
  2558. }
  2559. .togetherjs-mobile-browser .togetherjs section.togetherjs-walkthrough-slide .togetherjs-swatch {
  2560. width: 32px;
  2561. height: 32px;
  2562. background: none repeat scroll 0% 0%
  2563. #000000;
  2564. position: relative;
  2565. float: right;
  2566. right: 10px;
  2567. border-radius: 4px 4px 4px 4px;
  2568. border: 1px solid #cccccc;
  2569. top: 10px;
  2570. }
  2571. .togetherjs-mobile-browser .togetherjs .togetherjs-save-settings {
  2572. margin-top: 20px;
  2573. margin-bottom: 0px;
  2574. }
  2575. @media (min-width: 480px) {
  2576. .togetherjs-mobile-browser {
  2577. /* #togetherjs-dock.togetherjs-dock-right {
  2578. width: 27% !important;
  2579. }*/
  2580. }
  2581. .togetherjs-mobile-browser .togetherjs-mobile-browser input.togetherjs-self-name {
  2582. width: 95%;
  2583. margin-top: 10px;
  2584. }
  2585. .togetherjs-mobile-browser .togetherjs .togetherjs-window {
  2586. width: 100%;
  2587. left: -2px !important;
  2588. top: 50%;
  2589. }
  2590. .togetherjs-mobile-browser .togetherjs-mobile-browser #togetherjs-edit-name-window section.togetherjs-buttons {
  2591. width: 99%;
  2592. }
  2593. .togetherjs-mobile-browser #togetherjs-confirm-end section.togetherjs-buttons {
  2594. width: 96.6%;
  2595. position: absolute;
  2596. bottom: 0;
  2597. }
  2598. .togetherjs-mobile-browser #togetherjs-edit-name-window section.togetherjs-buttons {
  2599. width: 99%;
  2600. }
  2601. .togetherjs-mobile-browser input.togetherjs-self-name {
  2602. width: 94%;
  2603. margin-top: 10px;
  2604. }
  2605. .togetherjs-mobile-browser #togetherjs-avatar-edit section.togetherjs-buttons {
  2606. width: 95.3%;
  2607. bottom: 0;
  2608. background: #F2F2F2;
  2609. padding: 10px;
  2610. text-align: right;
  2611. border-bottom-right-radius: 4px;
  2612. border-bottom-left-radius: 4px;
  2613. border-top: 1px solid #E1E1E1;
  2614. position: absolute;
  2615. }
  2616. .togetherjs-mobile-browser .togetherjs-modal {
  2617. width: 74% !important;
  2618. height: 50% !important;
  2619. margin: 20% 12% !important;
  2620. }
  2621. .togetherjs-mobile-browser .togetherjs-mobile-browser .togetherjs .togetherjs-modal {
  2622. width: 76% !important;
  2623. margin-left: 1%;
  2624. height: 94%;
  2625. margin-top: 1%;
  2626. top: 0;
  2627. left: 0;
  2628. height: 41%;
  2629. margin: 20% 11%;
  2630. }
  2631. .togetherjs-mobile-browser .togetherjs-modal-wide section.togetherjs-buttons {
  2632. width: 97.4% !important;
  2633. }
  2634. }
  2635. @media (max-width: 480px) {
  2636. .togetherjs-mobile-browser .togetherjs .togetherjs-window {
  2637. width: 96%;
  2638. margin-left: 0;
  2639. height: 82%;
  2640. margin-top: 0%;
  2641. z-index: 10003 !important;
  2642. top: 20%;
  2643. left: -2px;
  2644. }
  2645. .togetherjs-mobile-browser .togetherjs .togetherjs-window #togetherjs-chat-messages {
  2646. width: 105%;
  2647. }
  2648. .togetherjs-mobile-browser .togetherjs .togetherjs-window .togetherjs-close {
  2649. display: none;
  2650. }
  2651. .togetherjs-mobile-browser .togetherjs .togetherjs-window #togetherjs-chat-messages {
  2652. height: 62%;
  2653. top: -37px;
  2654. }
  2655. .togetherjs-mobile-browser #togetherjs-chat-input-box {
  2656. width: 94% !important;
  2657. bottom: 0px;
  2658. position: fixed;
  2659. }
  2660. .togetherjs-mobile-browser .togetherjs-timestamp {
  2661. padding: 8px 15px 0px 10px !important;
  2662. }
  2663. .togetherjs-mobile-browser input[type='text'],
  2664. .togetherjs-mobile-browser input[type='number'],
  2665. .togetherjs-mobile-browser textarea {
  2666. font-size: 16px !important;
  2667. }
  2668. }