default.css 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715
  1. /*
  2. CalDavZAP - the open source CalDAV Web Client
  3. Copyright (C) 2011-2015
  4. Jan Mate <jan.mate@inf-it.com>
  5. Andrej Lezo <andrej.lezo@inf-it.com>
  6. Matej Mihalik <matej.mihalik@inf-it.com>
  7. This program is free software: you can redistribute it and/or modify
  8. it under the terms of the GNU Affero General Public License as
  9. published by the Free Software Foundation, either version 3 of the
  10. License, or (at your option) any later version.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. GNU Affero General Public License for more details.
  15. You should have received a copy of the GNU Affero General Public License
  16. along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. @font-face
  19. {
  20. font-family: "Roboto";
  21. src: url('../fonts/Roboto-Light-webfont.eot');
  22. src: url('../fonts/Roboto-Light-webfont.eot?#iefix') format('embedded-opentype'),
  23. url('../fonts/Roboto-Light-webfont.woff') format('woff'),
  24. url('../fonts/Roboto-Light-webfont.ttf') format('truetype'),
  25. url('../fonts/Roboto-Light-webfont.svg#robotolight') format('svg');
  26. font-weight: 300;
  27. font-style: normal;
  28. }
  29. @font-face
  30. {
  31. font-family: "Roboto";
  32. src: url('../fonts/Roboto-Regular-webfont.eot');
  33. src: url('../fonts/Roboto-Regular-webfont.eot?#iefix') format('embedded-opentype'),
  34. url('../fonts/Roboto-Regular-webfont.woff') format('woff'),
  35. url('../fonts/Roboto-Regular-webfont.ttf') format('truetype'),
  36. url('../fonts/Roboto-Regular-webfont.svg#robotoregular') format('svg');
  37. font-weight: 400;
  38. font-style: normal;
  39. }
  40. @font-face
  41. {
  42. font-family: "Roboto";
  43. src: url('../fonts/Roboto-Medium-webfont.eot');
  44. src: url('../fonts/Roboto-Medium-webfont.eot?#iefix') format('embedded-opentype'),
  45. url('../fonts/Roboto-Medium-webfont.woff') format('woff'),
  46. url('../fonts/Roboto-Medium-webfont.ttf') format('truetype'),
  47. url('../fonts/Roboto-Medium-webfont.svg#robotomedium') format('svg');
  48. font-weight: 500;
  49. font-style: normal;
  50. }
  51. @font-face
  52. {
  53. font-family: "Roboto";
  54. src: url('../fonts/Roboto-Bold-webfont.eot');
  55. src: url('../fonts/Roboto-Bold-webfont.eot?#iefix') format('embedded-opentype'),
  56. url('../fonts/Roboto-Bold-webfont.woff') format('woff'),
  57. url('../fonts/Roboto-Bold-webfont.ttf') format('truetype'),
  58. url('../fonts/Roboto-Bold-webfont.svg#robotobold') format('svg');
  59. font-weight: 700;
  60. font-style: normal;
  61. }
  62. @font-face
  63. {
  64. font-family: "Roboto";
  65. src: url('../fonts/Roboto-LightItalic-webfont.eot');
  66. src: url('../fonts/Roboto-LightItalic-webfont.eot?#iefix') format('embedded-opentype'),
  67. url('../fonts/Roboto-LightItalic-webfont.woff') format('woff'),
  68. url('../fonts/Roboto-LightItalic-webfont.ttf') format('truetype'),
  69. url('../fonts/Roboto-LightItalic-webfont.svg#robotolight_italic') format('svg');
  70. font-weight: 300;
  71. font-style: italic;
  72. }
  73. @font-face
  74. {
  75. font-family: "Roboto";
  76. src: url('../fonts/Roboto-Italic-webfont.eot');
  77. src: url('../fonts/Roboto-Italic-webfont.eot?#iefix') format('embedded-opentype'),
  78. url('../fonts/Roboto-Italic-webfont.woff') format('woff'),
  79. url('../fonts/Roboto-Italic-webfont.ttf') format('truetype'),
  80. url('../fonts/Roboto-Italic-webfont.svg#robotoitalic') format('svg');
  81. font-weight: 400;
  82. font-style: italic;
  83. }
  84. @font-face
  85. {
  86. font-family: "Roboto";
  87. src: url('../fonts/Roboto-MediumItalic-webfont.eot');
  88. src: url('../fonts/Roboto-MediumItalic-webfont.eot?#iefix') format('embedded-opentype'),
  89. url('../fonts/Roboto-MediumItalic-webfont.woff') format('woff'),
  90. url('../fonts/Roboto-MediumItalic-webfont.ttf') format('truetype'),
  91. url('../fonts/Roboto-MediumItalic-webfont.svg#robotomedium_italic') format('svg');
  92. font-weight: 500;
  93. font-style: italic;
  94. }
  95. @font-face
  96. {
  97. font-family: "Roboto";
  98. src: url('../fonts/Roboto-BoldItalic-webfont.eot');
  99. src: url('../fonts/Roboto-BoldItalic-webfont.eot?#iefix') format('embedded-opentype'),
  100. url('../fonts/Roboto-BoldItalic-webfont.woff') format('woff'),
  101. url('../fonts/Roboto-BoldItalic-webfont.ttf') format('truetype'),
  102. url('../fonts/Roboto-BoldItalic-webfont.svg#robotobold_italic') format('svg');
  103. font-weight: 700;
  104. font-style: italic;
  105. }
  106. body, input, select, textarea
  107. {
  108. font-family: 'Roboto';
  109. font-size: 14px;
  110. color: #404040;
  111. }
  112. .System
  113. {
  114. position: absolute;
  115. top: 0px;
  116. left: 0px;
  117. right: 0px;
  118. bottom: 0px;
  119. width: 100%;
  120. height: 100%;
  121. overflow: hidden;
  122. /* XXX - System display:none changes
  123. display: none;
  124. visibility: visible;*/
  125. display: block;
  126. visibility: hidden;
  127. opacity: 0;
  128. }
  129. .update_d
  130. {
  131. position: absolute;
  132. display: block;
  133. overflow: hidden;
  134. top: 25px;
  135. padding-top: 8px;
  136. bottom: 0px;
  137. right: 0px;
  138. width: 24px;
  139. background: #f0f0f0;
  140. border-left: 1px solid #c0c0c0;
  141. z-index: 30;
  142. }
  143. .update_h
  144. {
  145. width: 24px;
  146. font-size: 1.1em;
  147. font-weight: 500;
  148. writing-mode: tb-rl;
  149. white-space: nowrap;
  150. -webkit-transform:rotate(90deg);
  151. -moz-transform:rotate(90deg);
  152. -o-transform: rotate(90deg);
  153. }
  154. .update_h
  155. {
  156. cursor: pointer;
  157. }
  158. .collection_d
  159. {
  160. position: absolute;
  161. top: 0;
  162. left: 225px;
  163. right: 582px;
  164. border-right: 1px solid;
  165. border-right-color: #c0c0c0;
  166. height: 24px;
  167. background: #f0f0f0;
  168. color: #404040;
  169. cursor: default;
  170. user-select: none;
  171. -webkit-user-select: none;
  172. -moz-user-select: none;
  173. }
  174. .collection_h
  175. {
  176. position: absolute;
  177. margin-left: 24px;
  178. margin-top: 3px;
  179. font-size: 1.1em;
  180. font-weight: 500;
  181. }
  182. .collection_a, .company_a
  183. {
  184. position: absolute;
  185. right: 0px;
  186. padding-top: 4px;
  187. padding-right: 6px;
  188. width:17px;
  189. height: 16px;
  190. }
  191. .contact_d
  192. {
  193. position: absolute;
  194. top: 0;
  195. right: 0;
  196. width: 582px;
  197. height: 24px;
  198. background: #f0f0f0;
  199. color: #404040;
  200. cursor: default;
  201. user-select: none;
  202. -webkit-user-select: none;
  203. -moz-user-select: none;
  204. }
  205. .contact_h
  206. {
  207. position: absolute;
  208. padding-left: 6px;
  209. padding-top: 2px;
  210. font-size: 1.1em;
  211. font-weight: 400;
  212. }
  213. .system_l
  214. {
  215. position: absolute;
  216. right: 32px;
  217. padding-top: 4px;
  218. height: 16px;
  219. }
  220. #SearchBox
  221. {
  222. position: absolute;
  223. display: block;
  224. top: 24px;
  225. left: 225px;
  226. right: 582px;
  227. border-right: 1px solid;
  228. border-right-color: #c0c0c0;
  229. overflow: hidden;
  230. background: #ffffff;
  231. z-index: 2; /* for floating headers */
  232. height: 24px;
  233. border-top: 1px solid #c0c0c0;
  234. border-bottom: 1px solid #c0c0c0;
  235. cursor: default;
  236. user-select: none;
  237. -webkit-user-select: none;
  238. -moz-user-select: none;
  239. }
  240. #SearchBox > .container
  241. {
  242. position: absolute;
  243. top: 3px;
  244. left: 31px;
  245. right: 27px;
  246. }
  247. #SearchBox *> input[data-type=search]
  248. {
  249. width: 100%;
  250. background-color: #ffffff;
  251. }
  252. #ABList
  253. {
  254. position: absolute;
  255. display: block;
  256. top: 50px; /* search support */
  257. left: 225px;
  258. right: 582px;
  259. bottom: 0;
  260. border-right: 1px solid;
  261. border-right-color: #c0c0c0;
  262. overflow: hidden;
  263. background: #ffffff;
  264. cursor: default;
  265. user-select: none;
  266. -webkit-user-select: none;
  267. -moz-user-select: none;
  268. }
  269. #ABListOverlay
  270. {
  271. position: absolute;
  272. top: 0;
  273. left: 225px;
  274. right: 583px;
  275. bottom: 0;
  276. overflow: hidden;
  277. background: #ffffff;
  278. display: none;
  279. z-index: 10;
  280. cursor: default;
  281. user-select: none;
  282. -webkit-user-select: none;
  283. -moz-user-select: none;
  284. }
  285. .half
  286. {
  287. position: relative;
  288. height: 50% !important;
  289. }
  290. #ABContact
  291. {
  292. position: absolute;
  293. top: 25px;
  294. right: 0;
  295. bottom: 0;
  296. display: block;
  297. width: 579px;
  298. padding-bottom: 8px;
  299. overflow: auto;
  300. overflow-x: hidden;
  301. background: #f0f0f0;
  302. border-top: 1px solid #f0f0f0;
  303. cursor: default;
  304. user-select: none;
  305. -webkit-user-select: none;
  306. -moz-user-select: none;
  307. }
  308. #ABContactColor
  309. {
  310. background: #f0f0f0;
  311. position: absolute;
  312. display: block;
  313. top: 25px;
  314. bottom: 0;
  315. right: 579px;
  316. width: 3px;
  317. cursor: default;
  318. user-select: none;
  319. -webkit-user-select: none;
  320. -moz-user-select: none;
  321. }
  322. #ABContactOverlay
  323. {
  324. position: absolute;
  325. top: 24px;
  326. right: 0;
  327. bottom: 0;
  328. width: 582px;
  329. overflow: hidden;
  330. background: #ffffff;
  331. display: none;
  332. z-index: 10;
  333. cursor: default;
  334. user-select: none;
  335. -webkit-user-select: none;
  336. -moz-user-select: none;
  337. }
  338. #Login img[data-type=system_logo]
  339. {
  340. padding-bottom: 5px;
  341. }
  342. #Login table, .System table
  343. {
  344. padding: 0px 0px 0px 0px;
  345. border: none;
  346. border-collapse: collapse;
  347. }
  348. #Login td, .System td
  349. {
  350. position: relative; /* required by placeholder plugin (used for IE) */
  351. padding: 1px 2px 0px 0px;
  352. height: 20px;
  353. line-height: 19px;
  354. vertical-align: top;
  355. }
  356. .System td.clean
  357. {
  358. padding: 0px 0px 0px 0px !important;
  359. }
  360. .System td.buttons
  361. {
  362. padding-top: 10px;
  363. }
  364. .System td.type
  365. {
  366. width: 139px;
  367. }
  368. .fc td
  369. {
  370. position: static; /* required by fullcalendar */
  371. }
  372. *:focus
  373. {
  374. outline: none;
  375. }
  376. select
  377. {
  378. font-size: 1em;
  379. min-height: 19px;
  380. max-height: 19px;
  381. margin: 0px 0px 0px 0px;
  382. padding: 0px 0px 0px 0px;
  383. border: none;
  384. background: #ffffff url(../images/select.svg) no-repeat center right;
  385. padding-left: 3px; /* minor problem with chrome on windows */
  386. padding-right: 19px; /* original: 18 - minor problem with chrome on windows */
  387. appearance: none;
  388. -webkit-appearance: none;
  389. border-radius: 0px;
  390. -webkit-border-radius: 0px;
  391. -moz-border-radius: 0px;
  392. outline: none;
  393. -moz-outline: none;
  394. color: #404040;
  395. left: 0px;
  396. vertical-align: top;
  397. }
  398. @-moz-document url-prefix() {
  399. select
  400. {
  401. font-size: 1em;
  402. line-height: 19px;
  403. padding-left: 0px;
  404. padding-right: 0px !important;
  405. padding-bottom: 1px;
  406. background: transparent url(../images/select_bg.svg) repeat-x;
  407. /* FF outline hack */
  408. color: rgba(64, 64, 64, 0);
  409. text-shadow: 0 0 0 #404040;
  410. }
  411. select option
  412. {
  413. color: #404040;
  414. background-color: #ffffff !important;
  415. }
  416. }
  417. select[disabled]
  418. {
  419. /* Safari problem with textfield (it is one pixel higher than the selectbox) */
  420. min-height: 19px;
  421. max-height: 19px;
  422. padding-right: 3px !important;
  423. font-size: 1em;
  424. background: #fff none;
  425. appearance: textfield;
  426. -webkit-appearance: textfield;
  427. }
  428. @-moz-document url-prefix() {
  429. select[disabled]
  430. {
  431. font-size: 1em;
  432. padding-left: 0px;
  433. /* FF for windows fix */
  434. padding-right: 0px !important;
  435. background: transparent url(../images/select_bg_dis.svg) repeat-x;
  436. }
  437. }
  438. select[disabled][data-type="xhalf_type"]
  439. {
  440. /* Safari problem with textfield (it is one pixel higher than the selectbox) */
  441. min-height: 19px;
  442. max-height: 19px;
  443. background: #fff;
  444. appearance: textfield;
  445. -webkit-appearance: textfield;
  446. }
  447. @-moz-document url-prefix() {
  448. select[disabled][data-type="xhalf_type"]
  449. {
  450. margin-left: 0px !important;
  451. background: transparent url(../images/select_bg_dis.svg) repeat-x;
  452. }
  453. }
  454. select[disabled][data-type="country_type"]
  455. {
  456. /* Safari problem with textfield (it is one pixel higher than the selectbox) */
  457. min-height: 19px;
  458. max-height: 19px;
  459. background: #fff;
  460. appearance: textfield;
  461. -webkit-appearance: textfield;
  462. }
  463. @-moz-document url-prefix() {
  464. select[disabled][data-type="country_type"]
  465. {
  466. margin-left: 0px !important;
  467. background: transparent url(../images/select_bg_dis.svg) repeat-x;
  468. }
  469. }
  470. select[disabled][data-type="im_service_type"]
  471. {
  472. /* Safari problem with textfield (it is one pixel higher than the selectbox) */
  473. min-height: 19px;
  474. max-height: 19px;
  475. background: #fff;
  476. appearance: textfield;
  477. -webkit-appearance: textfield;
  478. }
  479. select[disabled][data-type="im_service_type"]:-moz-last-node
  480. {
  481. margin-left: 0px !important;
  482. background: transparent url(../images/select_bg_dis.svg) repeat-x;
  483. }
  484. td[data-size="login"] > select[data-type="language"]
  485. {
  486. min-width: 331px !important;
  487. max-width: 331px !important;
  488. }
  489. input
  490. {
  491. font-size: 1em !important;
  492. color: #404040;
  493. margin: 0px 0px 0px 0px;
  494. padding: 0px 0px 0px 0px;
  495. }
  496. @-moz-document url-prefix()
  497. {
  498. input
  499. {
  500. text-indent: 1px;
  501. }
  502. }
  503. input::-moz-focus-inner /* FF buttons */
  504. {
  505. border: none;
  506. padding: 0.07em 0em 0em 0em !important;
  507. }
  508. img[data-type=system_login]
  509. {
  510. margin-top: 10px;
  511. cursor: pointer;
  512. }
  513. input[data-type="system_username"], input[data-type="system_password"]
  514. {
  515. font-size: 20px !important;
  516. height: 28px !important;
  517. min-width: 329px !important;
  518. max-width: 329px !important;
  519. }
  520. select[data-type="language"]
  521. {
  522. font-size: 20px !important;
  523. min-height: 28px !important;
  524. max-height: 28px !important;
  525. background: none;
  526. }
  527. td[data-size="login_logo"]
  528. {
  529. padding-left: 60px !important;
  530. }
  531. td[data-size="login"], td[data-size="login_input"]
  532. {
  533. border-bottom: 2px solid #585858;
  534. }
  535. input[type=button], input[type=submit], .ui-datepicker-buttonpane button
  536. {
  537. cursor: pointer;
  538. border: 1px solid;
  539. border-color: #c0c0c0;
  540. font-size : 0.9em !important;
  541. padding-left: 0.5em;
  542. padding-right: 0.5em;
  543. background: #ffffff;
  544. color: #404040;
  545. position : relative;
  546. border-radius: 3px;
  547. -webkit-border-radius: 3px;
  548. -moz-border-radius: 3px;
  549. -webkit-appearance: none;
  550. }
  551. input[data-type=cancel]
  552. {
  553. margin-right: 1.5em;
  554. }
  555. input[disabled]
  556. {
  557. color: #404040; /* webkit bug - the black color not works */
  558. border-style: none;
  559. background: #fff;
  560. opacity: 1 !important;
  561. }
  562. input[disabled].safari_hack
  563. {
  564. color: #000000; /* safari bug - the black color not works #000000 looks like #545454 :-( */
  565. }
  566. input[readonly]
  567. {
  568. border-style: none;
  569. background: #fff !important;
  570. }
  571. input::-webkit-input-placeholder
  572. {
  573. color: #e0e0e0;
  574. text-shadow: none !important;
  575. -webkit-font-smoothing: antialiased;
  576. }
  577. input[readonly]::-webkit-input-placeholder
  578. {
  579. color: #e0e0e0;
  580. text-shadow: none !important;
  581. -webkit-font-smoothing: antialiased;
  582. }
  583. input[disabled]::-webkit-input-placeholder
  584. {
  585. color: #e0e0e0;
  586. text-shadow: none !important;
  587. -webkit-font-smoothing: antialiased;
  588. }
  589. textarea::-webkit-input-placeholder
  590. {
  591. color: #e0e0e0;
  592. text-shadow: none !important;
  593. -webkit-font-smoothing: antialiased;
  594. }
  595. textarea[readonly]::-webkit-input-placeholder
  596. {
  597. color: #e0e0e0;
  598. text-shadow: none !important;
  599. -webkit-font-smoothing: antialiased;
  600. }
  601. input:-moz-placeholder
  602. {
  603. color: #e0e0e0 !important;
  604. }
  605. input[readonly]:-moz-placeholder
  606. {
  607. color: #e0e0e0 !important;
  608. }
  609. input[disabled]:-moz-placeholder
  610. {
  611. color: #e0e0e0 !important;
  612. }
  613. textarea:-moz-placeholder
  614. {
  615. color: #e0e0e0;
  616. }
  617. textarea[readonly]:-moz-placeholder
  618. {
  619. color: #e0e0e0;
  620. }
  621. input::-moz-placeholder
  622. {
  623. color: #e0e0e0 !important;
  624. }
  625. input[readonly]::-moz-placeholder
  626. {
  627. color: #e0e0e0 !important;
  628. }
  629. input[disabled]::-moz-placeholder
  630. {
  631. color: #e0e0e0 !important;
  632. }
  633. textarea::-moz-placeholder
  634. {
  635. color: #e0e0e0;
  636. }
  637. textarea[readonly]::-moz-placeholder
  638. {
  639. color: #e0e0e0;
  640. }
  641. input:-ms-input-placeholder
  642. {
  643. color: #e0e0e0 !important;
  644. }
  645. input[readonly]:-ms-input-placeholder
  646. {
  647. color: #e0e0e0 !important;
  648. }
  649. input[disabled]:-ms-input-placeholder
  650. {
  651. color: #e0e0e0 !important;
  652. }
  653. textarea:-ms-input-placeholder
  654. {
  655. color: #e0e0e0;
  656. }
  657. textarea[readonly]:-ms-input-placeholder
  658. {
  659. color: #e0e0e0;
  660. }
  661. input[type=text]::-ms-clear {
  662. display: none;
  663. }
  664. input[type=password]::-ms-clear {
  665. display: none;
  666. }
  667. .iex
  668. {
  669. padding-top: 1px;
  670. padding-left: 0px;
  671. padding-right: 0px;
  672. }
  673. input[type=text], input[type=password]
  674. {
  675. height: 19px;
  676. margin-left: 0px;
  677. outline: none;
  678. border: 0px;
  679. padding-left: 2px; /* it resizes the input size :( */
  680. /* mobile safari remove rounded corners */
  681. -webkit-appearance: none;
  682. -webkit-border-radius: 0px;
  683. }
  684. input[type=text].fs, input[type=password].fs
  685. {
  686. width: 390px;
  687. }
  688. input[type=text].ms, input[type=password].ms
  689. {
  690. width: 254px;
  691. }
  692. input[type=text].hs, input[type=password].hs
  693. {
  694. width: 193px;
  695. }
  696. input[type=text].ss, input[type=password].ss
  697. {
  698. width: 112px;
  699. }
  700. input[type=checkbox]
  701. {
  702. vertical-align: middle;
  703. margin-right: 5px;
  704. }
  705. input[type=checkbox], x:-moz-any-link, x:default /* FF checkbox hack */
  706. {
  707. margin-bottom: 3px !important;
  708. }
  709. input[disabled][type=checkbox] /* Opera checkbox hack */
  710. {
  711. background: #e0e0e0;
  712. }
  713. label /* checkbox + text */
  714. {
  715. font-size: 0.95em;
  716. }
  717. textarea
  718. {
  719. font-size: 1em;
  720. width: 527px;
  721. height: 64px; /* if <61 firefox not shows the scroll bar ?! - note: we use autoResize plugin here */
  722. margin: 0px 0px 0px 0px;
  723. border-style: none;
  724. resize: none;
  725. padding-left: 3px;
  726. outline: none;
  727. -moz-outline: none;
  728. -moz-border-radius: 0px;
  729. /* mobile safari remove rounded corners */
  730. -webkit-appearance: none;
  731. -webkit-border-radius: 0px;
  732. }
  733. @-moz-document url-prefix() {
  734. textarea
  735. {
  736. width: 529px;
  737. padding-left: 2px !important;
  738. }
  739. }
  740. textarea[readonly]
  741. {
  742. color: #404040;
  743. background: #fff;
  744. }
  745. textarea[readonly].safari_hack
  746. {
  747. color: #000000; /* safari bug - the black color not works #000000 looks like #545454 :-( */
  748. }
  749. @-moz-document url-prefix() {
  750. textarea[readonly]
  751. {
  752. color: #404040;
  753. }
  754. }
  755. #LoginPage
  756. {
  757. position: absolute;
  758. top: 0px;
  759. left: 0px;
  760. width: 100%;
  761. height: 100%;
  762. overflow: hidden;
  763. z-index: 101;
  764. background: #f8f8f8;
  765. display: none; /* by default the login window is hidden */
  766. cursor:default;
  767. user-select: none;
  768. -webkit-user-select:none;
  769. -moz-user-select: -moz-none;
  770. }
  771. .window
  772. {
  773. position: relative;
  774. display: inline-block;
  775. width: 503px;
  776. height: 311px;
  777. top: 38.2%;
  778. left: 61.8%;
  779. margin-top: -155px;
  780. margin-left: -252px;
  781. background-image: url(../images/cloud.svg);
  782. color: #000000;
  783. text-align: center;
  784. }
  785. #Login
  786. {
  787. margin-top: 50px;
  788. margin-left: 85px;
  789. }
  790. #login_message
  791. {
  792. padding-top: 20px;
  793. font-size: 16px;
  794. font-weight: 500;
  795. color: #9E2F36;
  796. }
  797. #LoginLoader
  798. {
  799. position: absolute;
  800. top: 0px;
  801. left: 0px;
  802. right: 0px;
  803. bottom: 0px;
  804. overflow: visible;
  805. background-image: url(../images/cloud.svg);
  806. display: none;
  807. z-index: 1;
  808. }
  809. .footer
  810. {
  811. position: absolute;
  812. left: 25px;
  813. bottom: 25px;
  814. font-size: 16px;
  815. color: #2d2d2d;
  816. }
  817. #cacheDialog
  818. {
  819. position: absolute;
  820. top: 0px;
  821. left: 0px;
  822. right: 0px;
  823. bottom: 0px;
  824. overflow: visible;
  825. background: #ffffff;
  826. display: none;
  827. opacity: 0.95;
  828. text-align: center;
  829. z-index: 200;
  830. cursor:default;
  831. user-select: none;
  832. -webkit-user-select:none;
  833. -moz-user-select: -moz-none;
  834. }
  835. #cacheDialogText
  836. {
  837. position: absolute;
  838. width: 100%;
  839. bottom: 50%;
  840. vertical-align: middle;
  841. font-size: 2em;
  842. }
  843. #cacheDialogButtonWrapper
  844. {
  845. position: absolute;
  846. left: 40%;
  847. right: 40%;
  848. bottom: 40%;
  849. }
  850. #cacheDialogButton
  851. {
  852. font-size: 2em !important;
  853. border: 2px solid #c0c0c0;
  854. }
  855. #MainLoader
  856. {
  857. position: absolute;
  858. top: 0px;
  859. left: 0px;
  860. right: 0px;
  861. bottom: 0px;
  862. overflow: visible;
  863. background: #ffffff;
  864. display: none;
  865. opacity: 0.9;
  866. z-index: 101;
  867. cursor:default;
  868. user-select: none;
  869. -webkit-user-select:none;
  870. -moz-user-select: -moz-none;
  871. }
  872. .loader
  873. {
  874. width: 100%;
  875. height: 100%;
  876. background: url(../images/loadinfo.gif) no-repeat center center;
  877. }
  878. .loader_hidden .loader
  879. {
  880. background: none;
  881. }
  882. .loaderInfo
  883. {
  884. position: absolute;
  885. width: 100%;
  886. bottom: 25%;
  887. vertical-align: middle;
  888. text-align: center;
  889. font-size: 2em;
  890. }
  891. #ABMessage
  892. {
  893. position: absolute;
  894. top: 24px;
  895. right: 0;
  896. display: block;
  897. width: 582px;
  898. height: 0;
  899. z-index: 20;
  900. background: #ffffff;
  901. border-bottom: 1px solid;
  902. border-bottom-color: #c0c0c0;
  903. border-top: 0px;
  904. overflow: hidden;
  905. cursor: default;
  906. user-select: none;
  907. -webkit-user-select: none;
  908. -moz-user-select: none;
  909. }
  910. #ABInMessage
  911. {
  912. position: relative;
  913. top: -1px;
  914. background: #ffffff;
  915. border-bottom: 1px solid;
  916. border-bottom-color: #404040;
  917. border-top: 0px;
  918. display: block;
  919. height: 0px;
  920. overflow: hidden;
  921. }
  922. #ABMessageText, #ABInMessageText
  923. {
  924. position: absolute;
  925. padding: 7px;
  926. text-align: center;
  927. vertical-align: bottom;
  928. width: 100%;
  929. font-weight: 500;
  930. background: #ffffff;
  931. bottom: 0px;
  932. }
  933. #ABInMessageEditBox
  934. {
  935. position: relative;
  936. top: -1px;
  937. display:none;
  938. background: #ffffff;
  939. border-bottom: 1px solid;
  940. border-bottom-color: #404040;
  941. border-top: 0px;
  942. height: 0px;
  943. overflow: hidden;
  944. }
  945. #ABInMessageTextEditBox
  946. {
  947. position: absolute;
  948. padding: 7px;
  949. text-align: center;
  950. vertical-align: bottom;
  951. width: 100%;
  952. font-weight: 500;
  953. background: #ffffff;
  954. bottom: 0px;
  955. }
  956. .message_success
  957. {
  958. color: #000000;
  959. }
  960. .message_error
  961. {
  962. color: #ff0000;
  963. }
  964. .element_grayed
  965. {
  966. color: #e0e0e0;
  967. }
  968. .element_default_hidden
  969. {
  970. visibility: hidden;
  971. }
  972. .element_hide
  973. {
  974. height: 0px !important;
  975. max-height: 0px !important;
  976. overflow: hidden;
  977. }
  978. .element_no_display
  979. {
  980. display: none;
  981. }
  982. .element_no_display_af
  983. {
  984. display: none !important;
  985. }
  986. input.non_editable
  987. {
  988. background-color: #f5f5f5 !important;
  989. }
  990. /* XXX - For the next version
  991. #SystemCalDavZAP, #SystemCalDavTODO
  992. {
  993. display: block;
  994. visibility: hidden;
  995. }*/
  996. #SystemCalDavZAP th, #SystemCalDavTODO th
  997. {
  998. position: relative; /* required by placeholder plugin (used for IE) */
  999. font-weight: 400;
  1000. }
  1001. .resourcesCalDAV_h
  1002. {
  1003. position: absolute;
  1004. padding-left: 8px;
  1005. padding-top: 3px;
  1006. font-size: 1.1em;
  1007. font-weight: 500;
  1008. }
  1009. .resourcesCalDAV_d
  1010. {
  1011. position: absolute;
  1012. top: 0px;
  1013. left: 0px;
  1014. right: 0px;
  1015. border-right: 1px solid;
  1016. border-right-color: #c0c0c0;
  1017. width: 224px;
  1018. height: 24px;
  1019. background: #2d2d2d;
  1020. color: #eeeeee;
  1021. user-select: none;
  1022. -webkit-user-select: none;
  1023. -moz-user-select: none;
  1024. }
  1025. #ResourceCalDAVList, #ResourceCalDAVTODOList
  1026. {
  1027. position: absolute;
  1028. display: block;
  1029. top: 24px;
  1030. bottom: 0px;
  1031. left: 0px;
  1032. width: 224px;
  1033. overflow: auto;
  1034. overflow-x: hidden;
  1035. background: #ffffff;
  1036. border-top: 1px solid #c0c0c0;
  1037. cursor:default;
  1038. user-select: none;
  1039. -webkit-user-select: none;
  1040. -moz-user-select: none;
  1041. }
  1042. #ResourceCalDAVListOverlay
  1043. {
  1044. position: absolute;
  1045. top: 24px;
  1046. left: 0px;
  1047. bottom: 0px;
  1048. border-right: 1px solid;
  1049. border-right-color: #c0c0c0;
  1050. width: 224px;
  1051. background: #ffffff;
  1052. display: none;
  1053. z-index: 10;
  1054. }
  1055. .resourceCalDAV_header, .resourceCalDAVTODO_header
  1056. {
  1057. position: relative !important;
  1058. display: block;
  1059. overflow: hidden;
  1060. left: 0px;
  1061. top: 0px;
  1062. box-sizing: border-box;
  1063. -moz-box-sizing: border-box;
  1064. width: 100%;
  1065. bottom: auto;
  1066. height: 20px;
  1067. line-height: 17px;
  1068. background-color: #ffffff;
  1069. color: #404040;
  1070. cursor: default;
  1071. padding-left: 6px;
  1072. padding-right: 6px;
  1073. font-size: 0.9em;
  1074. font-weight: 500;
  1075. text-overflow: ellipsis;
  1076. white-space: nowrap;
  1077. border-top: 1px solid;
  1078. border-top-color: #ffffff;
  1079. border-bottom: 1px solid;
  1080. border-bottom-color: #ffffff;
  1081. }
  1082. .resourceCalDAV_item, .resourceCalDAVTODO_item
  1083. {
  1084. position: relative;
  1085. display: block;
  1086. overflow: hidden;
  1087. left: 0px;
  1088. top: 0px;
  1089. box-sizing: border-box;
  1090. -moz-box-sizing: border-box;
  1091. width: 100%;
  1092. }
  1093. body
  1094. {
  1095. overflow: hidden;
  1096. }
  1097. #timezoneSelectDiv, #timezoneTodoSelectDiv
  1098. {
  1099. position: absolute;
  1100. top: 0px;
  1101. left: 69px;
  1102. }
  1103. #timezoneWrapper select, #timezoneWrapperTODO select
  1104. {
  1105. background: #f0f0f0 url(../images/select_black.svg) no-repeat center right;
  1106. color: #404040;
  1107. }
  1108. @-moz-document url-prefix() {
  1109. #timezoneWrapper select, #timezoneWrapperTODO select
  1110. {
  1111. background: transparent url(../images/select_bg_black.svg) repeat-x;
  1112. /* FF outline hack */
  1113. color: rgba(64, 64, 64, 0);
  1114. text-shadow: 0 0 0 #404040;
  1115. }
  1116. #timezoneWrapper select option
  1117. {
  1118. color: #404040;
  1119. background-color: #f0f0f0 !important;
  1120. }
  1121. }
  1122. #CalendarLoader, #CalendarLoaderTODO
  1123. {
  1124. position: absolute;
  1125. top: 0px;
  1126. left: 225px;
  1127. right: 0px;
  1128. bottom: 0px;
  1129. overflow: visible;
  1130. background: #ffffff;
  1131. display: none;
  1132. opacity: 0.8;
  1133. z-index: 99;
  1134. cursor:default;
  1135. user-select: none;
  1136. -webkit-user-select:none;
  1137. -moz-user-select: -moz-none;
  1138. }
  1139. #CAEvent .saveLoader
  1140. {
  1141. top:1px;
  1142. left:1px;
  1143. position: absolute;
  1144. height: 100%;
  1145. width: 100%;
  1146. background: #ffffff;
  1147. display: none;
  1148. opacity: 0.95;
  1149. z-index: 101;
  1150. }
  1151. #todoLoader .saveLoader
  1152. {
  1153. position: absolute;
  1154. width: 100%;
  1155. height: 50%;
  1156. background: #ffffff;
  1157. display: block;
  1158. opacity: 0.95;
  1159. z-index: 101;
  1160. }
  1161. .saveLoaderInfo
  1162. {
  1163. position: absolute;
  1164. width: 100%;
  1165. top: 60%;
  1166. vertical-align: bottom;
  1167. text-align: center;
  1168. padding: 0px;
  1169. font-weight: 500;
  1170. z-index: 102;
  1171. }
  1172. #todoLoader .saveLoaderInfo
  1173. {
  1174. top: 70%;
  1175. }
  1176. h1
  1177. {
  1178. font-weight: 400;
  1179. background-color: #f0f0f0;
  1180. color: #404040;
  1181. font-size: 1.1em;
  1182. padding: 3px 0px 0px 6px;
  1183. height: 21px;
  1184. line-height: 19px;
  1185. border-bottom: 1px solid #c0c0c0;
  1186. }
  1187. h3
  1188. {
  1189. color: #2d2d2d;
  1190. font-size: 1em;
  1191. padding: 15px;
  1192. }
  1193. .headers
  1194. {
  1195. top: 0px;
  1196. position: absolute;
  1197. font-weight: 400;
  1198. background-color: #f0f0f0;
  1199. color: #404040;
  1200. font-size: 1em;
  1201. height: 24px;
  1202. z-index: 25;
  1203. border-bottom: 1px solid #c0c0c0;
  1204. cursor:default;
  1205. user-select: none;
  1206. -webkit-user-select:none;
  1207. -moz-user-select: -moz-none;
  1208. }
  1209. /*
  1210. .headers span[data-type=calendars_txt], .resourceCalDAVTODO_text
  1211. {
  1212. float: left;
  1213. margin-top: 3px;
  1214. }
  1215. */
  1216. .headers span[data-type=resourcesCalDAV_txt], .headers span[data-type=todo_txt], .headers span[data-type=resourceCalDAV_subscribe_text]
  1217. {
  1218. float: left;
  1219. margin-top: 2px;
  1220. margin-left: 6px;
  1221. width: 190px;
  1222. font-size: 1.1em;
  1223. overflow: hidden;
  1224. text-overflow: ellipsis;
  1225. white-space: nowrap;
  1226. }
  1227. #ResourceCalDAVToggle, #ResourceCalDAVTODOToggle
  1228. {
  1229. float: left;
  1230. padding-top: 4px;
  1231. padding-left: 7px;
  1232. cursor: pointer;
  1233. }
  1234. #showUnloadedCalendars, #showUnloadedCalendarsTODO
  1235. {
  1236. float:right;
  1237. padding-top: 4px;
  1238. padding-right: 6px;
  1239. cursor: pointer;
  1240. }
  1241. #eventFormShower, #eventFormShowerTODO
  1242. {
  1243. float: right;
  1244. height: 16px;
  1245. width: 17px;
  1246. padding: 4px 6px;
  1247. cursor: pointer;
  1248. }
  1249. #searchFormShowerDiv
  1250. {
  1251. cursor: pointer;
  1252. float: right;
  1253. height: 15px;
  1254. margin-right: 10px;
  1255. }
  1256. #resourceCalDAV_h, #resourceCalDAVTODO_h
  1257. {
  1258. left: 0px;
  1259. height: 49px;
  1260. width: 224px;
  1261. border-bottom: none;
  1262. }
  1263. #todoForm_h
  1264. {
  1265. right: 0;
  1266. width: 413px;
  1267. }
  1268. #todoForm
  1269. {
  1270. position: absolute;
  1271. top: 25px;
  1272. right: 0;
  1273. bottom: 0;
  1274. width: 410px;
  1275. overflow: auto;
  1276. overflow-x: hidden;
  1277. background-color: #f0f0f0;
  1278. }
  1279. #todoLoader
  1280. {
  1281. position: absolute;
  1282. display: none;
  1283. top: 25px;
  1284. right: 0;
  1285. bottom: 0;
  1286. width: 413px;
  1287. z-index: 101;
  1288. background-color: #fff;
  1289. }
  1290. #main_h
  1291. {
  1292. left: 224px;
  1293. right: 0px;
  1294. border-left: 1px solid #c0c0c0;
  1295. }
  1296. #main_h_TODO
  1297. {
  1298. left: 224px;
  1299. right: 413px;
  1300. border-left: 1px solid #c0c0c0;
  1301. border-right: 1px solid #c0c0c0;
  1302. /* border-bottom: 1px solid #FFFFFF;*/
  1303. }
  1304. #main_h_placeholder, #mainTODO_h_placeholder
  1305. {
  1306. left: 95px;
  1307. right: 90px;
  1308. position: absolute;
  1309. overflow: hidden;
  1310. padding-right: 5px;
  1311. }
  1312. #mainTODO_h_placeholder
  1313. {
  1314. left: 95px;
  1315. right: 50px;
  1316. }
  1317. #timezoneWrapper, #timezoneWrapperTODO
  1318. {
  1319. position: absolute;
  1320. padding-left: 6px;
  1321. left: 0px;
  1322. bottom: 0px;
  1323. height: 19px;
  1324. width: 218px;
  1325. background: #f0f0f0;
  1326. border-top: 1px solid #c0c0c0;
  1327. color: #404040;
  1328. cursor:default;
  1329. user-select: none;
  1330. -webkit-user-select:none;
  1331. -moz-user-select: -moz-none;
  1332. }
  1333. #timezoneWrapper label, #timezoneWrapperTODO label
  1334. {
  1335. position: relative;
  1336. display: inline-block;
  1337. top: 1px;
  1338. min-width: 60px;
  1339. max-width: 60px;
  1340. overflow: hidden;
  1341. }
  1342. #timezonePicker, #timezonePickerTODO
  1343. {
  1344. width: 155px;
  1345. background-color: #2d2d2d;
  1346. color: #FFFFFF;
  1347. }
  1348. #ResourceCalDAVList, #ResourceCalDAVTODOList
  1349. {
  1350. z-index: 25;
  1351. }
  1352. #searchForm
  1353. {
  1354. position: absolute;
  1355. top: 24px;
  1356. left: 224px;
  1357. right: 0px;
  1358. height:100px;
  1359. background: #ffffff;
  1360. border-left: 1px solid;
  1361. border-right: 1px solid;
  1362. border-color: #c0c0c0;
  1363. overflow: hidden;
  1364. z-index: 25;
  1365. height: 24px;
  1366. border-top: 1px solid;
  1367. border-top-color: #c0c0c0;
  1368. border-bottom: 1px solid;
  1369. border-bottom-color: #c0c0c0;
  1370. cursor:default;
  1371. user-select: none;
  1372. -webkit-user-select:none;
  1373. -moz-user-select: -moz-none;
  1374. }
  1375. #searchFormTODO
  1376. {
  1377. position: absolute;
  1378. top: 24px;
  1379. left: 224px;
  1380. right: 413px;
  1381. height: 24px;
  1382. background: #ffffff;
  1383. border-left: 1px solid;
  1384. border-right: 1px solid;
  1385. border-color: #c0c0c0;
  1386. overflow: hidden;
  1387. z-index: 25;
  1388. border-top: 1px solid;
  1389. border-top-color: #c0c0c0;
  1390. border-bottom: 1px solid;
  1391. border-bottom-color: #c0c0c0;
  1392. cursor:default;
  1393. user-select: none;
  1394. -webkit-user-select:none;
  1395. -moz-user-select: -moz-none;
  1396. }
  1397. .searchContainer
  1398. {
  1399. position: absolute;
  1400. display: inline-block;
  1401. left: 29px;
  1402. right: 29px;
  1403. }
  1404. .searchContainer input
  1405. {
  1406. width: 100%;
  1407. background-color: #FFFFFF;
  1408. padding-left: 4px;
  1409. }
  1410. #main, #mainTODO
  1411. {
  1412. position: absolute;
  1413. top: 50px;
  1414. left: 224px;
  1415. bottom: 0;
  1416. padding: 0px 7px;
  1417. background: #ffffff;
  1418. border-left: 1px solid;
  1419. border-right: 1px solid;
  1420. border-color: #c0c0c0;
  1421. overflow-x: hidden;
  1422. overflow-y: auto;
  1423. z-index: 26;
  1424. cursor:default;
  1425. user-select: none;
  1426. -webkit-user-select:none;
  1427. -moz-user-select: -moz-none;
  1428. }
  1429. #main
  1430. {
  1431. right: 0;
  1432. }
  1433. #mainTODO
  1434. {
  1435. right: 413px;
  1436. }
  1437. #calendar, #todoList
  1438. {
  1439. display: inline-block;
  1440. width: 100%;
  1441. min-width: 1px;
  1442. }
  1443. #calendar
  1444. {
  1445. padding: 5px 0px;
  1446. }
  1447. #todoList
  1448. {
  1449. padding: 7px 0px;
  1450. /* Safari Scrollbar fix */
  1451. margin-bottom: -4px;
  1452. }
  1453. #alertBox
  1454. {
  1455. position: fixed;
  1456. top: 20%;
  1457. left: 50%;
  1458. visibility: hidden;
  1459. width: 450px;
  1460. background: white;
  1461. border: 1px solid #c0c0c0;
  1462. z-index: 102;
  1463. cursor:default;
  1464. user-select: none;
  1465. -webkit-user-select:none;
  1466. -moz-user-select: -moz-none;
  1467. }
  1468. #repeatConfirmBox
  1469. {
  1470. width: 100%;
  1471. position: absolute;
  1472. text-align: center;
  1473. visibility: hidden;
  1474. background: white;
  1475. border: 1px solid #c0c0c0;
  1476. z-index: 100;
  1477. }
  1478. #repeatConfirmBoxTODO
  1479. {
  1480. position: absolute;
  1481. width: 100%;
  1482. text-align: center;
  1483. visibility: hidden;
  1484. background-color: #f0f0f0;
  1485. z-index: 100;
  1486. }
  1487. #EventDisabler
  1488. {
  1489. position: fixed;
  1490. width: 100%;
  1491. height: 100%;
  1492. background-color: #f9f9f9;
  1493. opacity: 0.7;
  1494. filter: alpha(opacity=70);
  1495. z-index: 99;
  1496. top: 0px;
  1497. left: 0px;
  1498. display: none;
  1499. cursor:default;
  1500. user-select: none;
  1501. -webkit-user-select:none;
  1502. -moz-user-select: -moz-none;
  1503. }
  1504. #TodoDisabler
  1505. {
  1506. position: fixed;
  1507. background-color: #f9f9f9;
  1508. opacity: 0.7;
  1509. filter: alpha(opacity=70);
  1510. z-index: 99;
  1511. top: 0;
  1512. bottom: 0;
  1513. left: 0;
  1514. right: 414px;
  1515. display: none;
  1516. cursor:default;
  1517. user-select: none;
  1518. -webkit-user-select:none;
  1519. -moz-user-select: -moz-none;
  1520. }
  1521. #AlertDisabler
  1522. {
  1523. position: fixed;
  1524. width: 100%;
  1525. height: 100%;
  1526. background-color: #f9f9f9;
  1527. opacity: 0.7;
  1528. filter: alpha(opacity=70);
  1529. z-index: 101;
  1530. top: 0px;
  1531. left: 0px;
  1532. display: none;
  1533. cursor:default;
  1534. user-select: none;
  1535. -webkit-user-select:none;
  1536. -moz-user-select: -moz-none;
  1537. }
  1538. .resourceCalDAVColor
  1539. {
  1540. width: 12px;
  1541. height: 24px;
  1542. margin-top: 0px;
  1543. margin-right: 6px;
  1544. float: left;
  1545. }
  1546. .colorPicker
  1547. {
  1548. display: none;
  1549. }
  1550. .addRemoveAll
  1551. {
  1552. cursor: pointer;
  1553. margin-top: 7px !important;
  1554. margin-left: 5px !important;
  1555. display: none;
  1556. }
  1557. .resourceCalDAV_item, .resourceCalDAVTODO_item
  1558. {
  1559. position: relative;
  1560. display: block;
  1561. overflow: hidden;
  1562. left: 0px;
  1563. top: 0px;
  1564. box-sizing: border-box;
  1565. -moz-box-sizing: border-box;
  1566. text-overflow: ellipsis;
  1567. white-space: nowrap;
  1568. width: 100%;
  1569. height: 25px;
  1570. line-height: 23px;
  1571. border-top: 1px solid;
  1572. border-top-color: #ffffff;
  1573. /*
  1574. border-bottom: 1px solid;
  1575. border-bottom-color: #f0f0f0;
  1576. */
  1577. color: #404040;
  1578. cursor: default;
  1579. font-size: 1em;
  1580. font-weight: 400;
  1581. padding-left: 0px;
  1582. padding-right: 6px;
  1583. }
  1584. #ResourceCalDAVList .resourceCalDAV_item:hover, #ResourceCalDAVTODOList .resourceCalDAVTODO_item:hover
  1585. {
  1586. cursor: pointer;
  1587. color: #404040 !important;
  1588. background-color: #e7e7e7 !important;
  1589. border-top: 1px solid !important;
  1590. /*
  1591. border-top-color: #c0c0c0 !important;
  1592. border-bottom: 1px solid !important;
  1593. border-bottom-color: #c0c0c0 !important;
  1594. */
  1595. border-top-color: #ffffff !important;
  1596. }
  1597. #ResourceCalDAVList .resourceCalDAV_item.resourceCalDAV_item_selected, #ResourceCalDAVTODOList .resourceCalDAVTODO_item.resourceCalDAV_item_selected
  1598. {
  1599. color: #ffffff !important;
  1600. background: #585858 !important;
  1601. border-top: 1px solid !important;
  1602. /*
  1603. border-top-color: #585858 !important;
  1604. border-bottom: 1px solid !important;
  1605. border-bottom-color: #585858 !important;
  1606. */
  1607. border-top-color: #ffffff !important;
  1608. }
  1609. #ResourceCalDAVList .resourceCalDAV_item_ro.resourceCalDAV_item, #ResourceCalDAVTODOList .resourceCalDAV_item_ro.resourceCalDAVTODO_item
  1610. {
  1611. background-image: url(../images/read_only_b.svg);
  1612. background-repeat: no-repeat !important;
  1613. background-position: 95% center !important;
  1614. padding-right: 32px !important;
  1615. }
  1616. #ResourceCalDAVList .resourceCalDAV_item_ro.resourceCalDAV_item:hover, #ResourceCalDAVTODOList .resourceCalDAV_item_ro.resourceCalDAVTODO_item:hover
  1617. {
  1618. background-image: url(../images/read_only_b.svg) !important;
  1619. }
  1620. #ResourceCalDAVList .resourceCalDAV_item_ro.resourceCalDAV_item.resourceCalDAV_item_selected, #ResourceCalDAVTODOList .resourceCalDAV_item_ro.resourceCalDAVTODO_item.resourceCalDAV_item_selected
  1621. {
  1622. background-image: url(../images/read_only_w.svg) !important;
  1623. }
  1624. #ResourceCalDAVList .r_operate.resourceCalDAV_item, #ResourceCalDAVTODOList .r_operate.resourceCalDAVTODO_item
  1625. {
  1626. background-image: url(../images/loadinfo_s1.gif);
  1627. background-repeat: no-repeat !important;
  1628. background-position: 97% center !important;
  1629. padding-right: 32px !important;
  1630. }
  1631. #ResourceCalDAVList .r_operate.resourceCalDAV_item:hover, #ResourceCalDAVTODOList .r_operate.resourceCalDAVTODO_item:hover
  1632. {
  1633. background-image: url(../images/loadinfo_s2.gif) !important;
  1634. }
  1635. #ResourceCalDAVList .r_operate.resourceCalDAV_item.resourceCalDAV_item_selected, #ResourceCalDAVTODOList .r_operate.resourceCalDAVTODO_item.resourceCalDAV_item_selected
  1636. {
  1637. background-image: url(../images/loadinfo_s3.gif) !important;
  1638. }
  1639. #ResourceCalDAVList .r_error.resourceCalDAV_item, #ResourceCalDAVTODOList .r_error.resourceCalDAVTODO_item
  1640. {
  1641. background-image: url(../images/error_b.svg);
  1642. background-repeat: no-repeat !important;
  1643. background-position: 97% center !important;
  1644. padding-right: 32px !important;
  1645. }
  1646. #ResourceCalDAVList .r_error.resourceCalDAV_item:hover, #ResourceCalDAVTODOList .r_error.resourceCalDAVTODO_item:hover
  1647. {
  1648. background-image: url(../images/error_b.svg) !important;
  1649. }
  1650. #ResourceCalDAVList .r_error.resourceCalDAV_item.resourceCalDAV_item_selected, #ResourceCalDAVTODOList .r_error.resourceCalDAVTODO_item.resourceCalDAV_item_selected
  1651. {
  1652. background-image: url(../images/error_w.svg) !important;
  1653. }
  1654. #ResourceCalDAVList .resourceCalDAV_header.load_mode, #ResourceCalDAVTODOList .resourceCalDAVTODO_header.load_mode,
  1655. #ResourceCalDAVList .resourceCalDAV_item.load_mode, #ResourceCalDAVTODOList .resourceCalDAVTODO_item.load_mode,
  1656. #ResourceCalDAVList .resourceCalDAV_item.load_mode:hover, #ResourceCalDAVTODOList .resourceCalDAVTODO_item.load_mode:hover
  1657. {
  1658. padding-right: 24px !important;
  1659. background-image: none !important;
  1660. }
  1661. .resourceCalDAV_header.unloaded, .resourceCalDAV_item.unloaded, .resourceCalDAVTODO_header.unloaded, .resourceCalDAVTODO_item.unloaded
  1662. {
  1663. color: rgba(64, 64, 64, 0.4) !important;
  1664. }
  1665. .resourceCalDAV_item.unloaded .resourceCalDAVColor, .resourceCalDAVTODO_item.unloaded .resourceCalDAVColor
  1666. {
  1667. opacity: 0.4;
  1668. }
  1669. .resourceCalDAV_item input[type="checkbox"], .resourceCalDAVTODO_item input[type="checkbox"]
  1670. {
  1671. margin-top: -2px;
  1672. margin-right: 5px;
  1673. }
  1674. /* FF checkbox hack */
  1675. @-moz-document url-prefix()
  1676. {
  1677. .resourceCalDAV_item input[type="checkbox"], .resourceCalDAVTODO_item input[type="checkbox"]
  1678. {
  1679. margin-top: 0px;
  1680. }
  1681. }
  1682. .todoTextFirst
  1683. {
  1684. padding-left: 5px;
  1685. }
  1686. .todoText
  1687. {
  1688. overflow: hidden;
  1689. text-overflow: ellipsis;
  1690. white-space: nowrap;
  1691. }
  1692. #CATodo, #CAEvent
  1693. {
  1694. position: absolute;
  1695. cursor:default;
  1696. user-select: none;
  1697. -webkit-user-select:none;
  1698. -moz-user-select: -moz-none;
  1699. }
  1700. #event_details_template, #todo_details_template
  1701. {
  1702. width: 413px;
  1703. position: absolute;
  1704. display: none;
  1705. background-color: #f0f0f0;
  1706. overflow-x: hidden;
  1707. overflow-y: auto;
  1708. border: 1px solid #c0c0c0;
  1709. z-index: 100;
  1710. }
  1711. #todo_details_template
  1712. {
  1713. width: 410px;
  1714. }
  1715. #todo_details_template
  1716. {
  1717. z-index: 26;
  1718. }
  1719. #eventColor
  1720. {
  1721. width: 3px;
  1722. float: left;
  1723. background-color: #f0f0f0;
  1724. user-select: none;
  1725. -webkit-user-select: none;
  1726. -moz-user-select: none;
  1727. }
  1728. #eventDetailsContainer
  1729. {
  1730. position: relative;
  1731. left: 3px;
  1732. }
  1733. #todoColor
  1734. {
  1735. position: absolute;
  1736. display: block;
  1737. top: 24px;
  1738. bottom: 0;
  1739. right: 410px;
  1740. width: 3px;
  1741. background-color: #f0f0f0;
  1742. border-top: 1px solid #f0f0f0;
  1743. border-bottom: 1px solid #f0f0f0;
  1744. user-select: none;
  1745. -webkit-user-select: none;
  1746. -moz-user-select: none;
  1747. }
  1748. #event_details_template h1, #todo_details_template h1
  1749. {
  1750. -webkit-border-top-left-radius: 4px;
  1751. -moz-border-top-left-radius: 4px;
  1752. border-top-left-radius: 4px;
  1753. -webkit-border-top-right-radius: 4px;
  1754. -moz-border-top-right-radius: 4px;
  1755. border-top-right-radius: 4px;
  1756. text-align: center;
  1757. display: none;
  1758. background-color: transparent;
  1759. margin: 4px 0px 0px 0px;
  1760. }
  1761. #TodoInMessage, #EventInMessage
  1762. {
  1763. position: relative;
  1764. display: block;
  1765. height: 0px;
  1766. overflow: hidden;
  1767. z-index: 102;
  1768. background: #f0f0f0;
  1769. border-bottom: 1px solid;
  1770. border-bottom-color: #c0c0c0;
  1771. }
  1772. #TodoInMessageText, #EventInMessageText
  1773. {
  1774. position: absolute;
  1775. padding: 7px;
  1776. text-align: center;
  1777. vertical-align: bottom;
  1778. width: 100%;
  1779. font-weight: 500;
  1780. }
  1781. #eventDetailsTable, #todoDetailsTable
  1782. {
  1783. margin: 6px 4px 6px 6px;
  1784. text-align: left;
  1785. /*-2px from margin-right to offset td 2px in padding-left*/
  1786. }
  1787. #event_details_template textarea.header, #todo_details_template textarea.header
  1788. {
  1789. position: relative;
  1790. font-size: 1.1em;
  1791. font-weight: 500;
  1792. width: 393px;
  1793. margin-bottom: 10px;
  1794. height: 40px;
  1795. }
  1796. @-moz-document url-prefix()
  1797. {
  1798. #event_details_template textarea.header, #todo_details_template textarea.header
  1799. {
  1800. width: 395px;
  1801. }
  1802. }
  1803. #event_details_template textarea.header.leftspace, #todo_details_template textarea.header.leftspace
  1804. {
  1805. left: 20px;
  1806. width: 373px;
  1807. }
  1808. #event_details_template textarea.header.rightspace, #todo_details_template textarea.header.rightspace
  1809. {
  1810. width: 373px;
  1811. }
  1812. @-moz-document url-prefix()
  1813. {
  1814. #event_details_template textarea.header.leftspace, #todo_details_template textarea.header.leftspace, #event_details_template textarea.header.rightspace, #todo_details_template textarea.header.rightspace
  1815. {
  1816. width: 375px;
  1817. }
  1818. }
  1819. #event_details_template textarea.header.leftspace.rightspace, #todo_details_template textarea.header.leftspace.rightspace
  1820. {
  1821. width: 353px;
  1822. }
  1823. @-moz-document url-prefix()
  1824. {
  1825. #event_details_template textarea.header.leftspace.rightspace, #todo_details_template textarea.header.leftspace.rightspace
  1826. {
  1827. width: 355px;
  1828. }
  1829. }
  1830. .formNav
  1831. {
  1832. display: none;
  1833. position: absolute;
  1834. height: 42px;
  1835. width: 18px;
  1836. border: 1px solid #c0c0c0;
  1837. font-size: 1.1em;
  1838. font-weight: 400;
  1839. background-color: #ffffff;
  1840. cursor: pointer;
  1841. }
  1842. @-moz-document url-prefix()
  1843. {
  1844. .formNav
  1845. {
  1846. height: 38px;
  1847. }
  1848. }
  1849. .formNav:hover
  1850. {
  1851. background-color: #f0f0f0;
  1852. }
  1853. .formNav.prev
  1854. {
  1855. top: 0px;
  1856. left: 0px;
  1857. text-align: right;
  1858. }
  1859. .formNav.prev img
  1860. {
  1861. padding-top: 14px;
  1862. padding-right: 3px;
  1863. }
  1864. @-moz-document url-prefix()
  1865. {
  1866. .formNav.prev img
  1867. {
  1868. padding-top: 12px;
  1869. }
  1870. }
  1871. .formNav.next
  1872. {
  1873. top: 0px;
  1874. right: 2px;
  1875. text-align: left;
  1876. }
  1877. .formNav.next img
  1878. {
  1879. padding-top: 14px;
  1880. padding-left: 3px;
  1881. }
  1882. @-moz-document url-prefix()
  1883. {
  1884. .formNav.next img
  1885. {
  1886. padding-top: 12px;
  1887. }
  1888. }
  1889. .formNav.top
  1890. {
  1891. top: 0px;
  1892. height: 21px;
  1893. border-bottom: none;
  1894. }
  1895. .formNav.top img
  1896. {
  1897. padding-top: 3px;
  1898. }
  1899. @-moz-document url-prefix()
  1900. {
  1901. .formNav.top
  1902. {
  1903. height: 19px;
  1904. }
  1905. .formNav.top img
  1906. {
  1907. padding-top: 2px;
  1908. }
  1909. }
  1910. .formNav.bottom
  1911. {
  1912. top: 22px;
  1913. height: 21px;
  1914. border-top: none;
  1915. }
  1916. .formNav.bottom img
  1917. {
  1918. padding-top: 4px;
  1919. }
  1920. @-moz-document url-prefix()
  1921. {
  1922. .formNav.bottom
  1923. {
  1924. top: 20px;
  1925. height: 19px;
  1926. }
  1927. .formNav.bottom img
  1928. {
  1929. padding-top: 3px;
  1930. }
  1931. }
  1932. #event_details_template .headerContainer, #todo_details_template .headerContainer
  1933. {
  1934. padding: 0px 2px 0px 0px;
  1935. /*2px to offset td padding in the rest of the form*/
  1936. /*maybe add 2px to th as well?*/
  1937. }
  1938. #eventDetailsTable .label, #todoDetailsTable .label
  1939. {
  1940. width: 98px;
  1941. display: block;
  1942. white-space: nowrap;
  1943. overflow: hidden;
  1944. text-overflow: ellipsis;
  1945. }
  1946. .label.repeat label
  1947. {
  1948. padding-left: 15px;
  1949. }
  1950. .long
  1951. {
  1952. width: 298px;
  1953. }
  1954. textarea.long
  1955. {
  1956. width: 293px;
  1957. }
  1958. @-moz-document url-prefix()
  1959. {
  1960. textarea.long
  1961. {
  1962. width: 295px;
  1963. }
  1964. }
  1965. input.long[type="text"]
  1966. {
  1967. width: 296px;
  1968. }
  1969. .small
  1970. {
  1971. width: 148px;
  1972. }
  1973. input.small[type="text"]
  1974. {
  1975. width: 146px;
  1976. }
  1977. input.verySmall
  1978. {
  1979. width: 73px;
  1980. }
  1981. input.verySmall[type="text"]
  1982. {
  1983. width: 71px;
  1984. }
  1985. #event_details_template input[type="checkbox"], #todo_details_template input[type="checkbox"]
  1986. {
  1987. width: 15px;
  1988. margin-top: 1px;
  1989. margin-left: -1px;
  1990. }
  1991. #event_details_template input[type="button"], #todo_details_template input[type="button"], #event_details_template input[type="submit"], #todo_details_template input[type="submit"]
  1992. {
  1993. width: 23%;
  1994. margin: 5px 2px 0px 0px;
  1995. float: left;
  1996. }
  1997. .customTable
  1998. {
  1999. width: 100%;
  2000. }
  2001. .customTable td
  2002. {
  2003. position: static;
  2004. background-color: #FFFFFF;
  2005. border-right: 2px solid #F0F0F0;
  2006. border-bottom: 2px solid #F0F0F0;
  2007. vertical-align: middle;
  2008. text-align: center;
  2009. cursor: pointer;
  2010. }
  2011. .customTable td.lastCol
  2012. {
  2013. border-right: 0px;
  2014. }
  2015. .customTableWeek td, .customTableMonth td
  2016. {
  2017. width: 39px;
  2018. }
  2019. .customTableWeek td.firstCol, .customTableMonth td.firstCol
  2020. {
  2021. width: 38px;
  2022. }
  2023. .customTableYear td
  2024. {
  2025. width: 68px;
  2026. height: 30px;
  2027. }
  2028. .customTable td.disabled
  2029. {
  2030. cursor: default;
  2031. background-color: #ffffff;
  2032. }
  2033. .customTable td.selected
  2034. {
  2035. color: #FFFFFF;
  2036. background-color: #585858;
  2037. }
  2038. button.ui-datepicker-current
  2039. {
  2040. width: 40%;
  2041. margin: 5px 1px 5px 1px;
  2042. float: left;
  2043. }
  2044. button.ui-datepicker-close
  2045. {
  2046. width: 40%;
  2047. margin: 5px 1px 5px 1px;
  2048. float: right;
  2049. }
  2050. .invalidWrapper
  2051. {
  2052. width: 0px;
  2053. height: 0px;
  2054. }
  2055. img[data-type="invalidSmall"]
  2056. {
  2057. vertical-align: top;
  2058. margin-top: -18px;
  2059. margin-left: 128px;
  2060. }
  2061. img[data-type="invalidVerySmall"]
  2062. {
  2063. vertical-align: top;
  2064. margin-top: 1px;
  2065. margin-left: -30px;
  2066. }
  2067. #alertBox h1, #repeatConfirmBox h1
  2068. {
  2069. margin: 0;
  2070. -webkit-border-top-left-radius: 2px;
  2071. -moz-border-top-left-radius: 2px;
  2072. border-top-left-radius: 2px;
  2073. -webkit-border-top-right-radius: 2px;
  2074. -moz-border-top-right-radius: 2px;
  2075. border-top-right-radius: 2px;
  2076. }
  2077. #alertBoxContent
  2078. {
  2079. width: 100%;
  2080. }
  2081. #repeatConfirmBoxContent, #repeatConfirmBoxQuestion, #repeatConfirmBoxContentTODO, #repeatConfirmBoxQuestionTODO
  2082. {
  2083. width: 100%;
  2084. height: 50px;
  2085. }
  2086. #repeatConfirmBoxContent, #repeatConfirmBoxContentTODO
  2087. {
  2088. width: 400px;
  2089. padding-top: 20px;
  2090. padding-left: 5px;
  2091. word-wrap: break-word;
  2092. }
  2093. #alertBox input
  2094. {
  2095. float: right;
  2096. margin: 7px;
  2097. padding: 1px 5px 1px 5px;
  2098. }
  2099. #repeatConfirmBox input, #repeatConfirmBoxTODO input
  2100. {
  2101. margin: 2px;
  2102. padding: 1px 4px 1px 4px;
  2103. width: 250px;
  2104. }
  2105. #repeatConfirmBox input[data-type="closeRepeat"], #repeatConfirmBoxTODO input[data-type="closeRepeat"]
  2106. {
  2107. margin-top: 6px;
  2108. margin-bottom: 6px;
  2109. }
  2110. .alert_item
  2111. {
  2112. left: 0px;
  2113. top: 0px;
  2114. width: 446px;
  2115. cursor: default;
  2116. position: relative;
  2117. display: block;
  2118. padding: 2px 2px 0px 2px;
  2119. border-bottom: 1px solid #c0c0c0;
  2120. font-weight: 400;
  2121. font-size: 1em;
  2122. }
  2123. .alert_item label
  2124. {
  2125. vertical-align: top;
  2126. }
  2127. .alert_item img
  2128. {
  2129. margin-left: 5px;
  2130. margin-right: 5px;
  2131. }
  2132. .fc-header td
  2133. {
  2134. padding: 5px !important;
  2135. padding-top: 3px !important;
  2136. }
  2137. .fc-header td span
  2138. {
  2139. height: 16px !important;
  2140. }
  2141. .fc-today.fc-widget-header, .fc-today.fc-list-header td
  2142. {
  2143. background-color: #585858 !important;
  2144. color: #ffffff !important;
  2145. }
  2146. .fc-day-text, .fc-week-number
  2147. {
  2148. float: left;
  2149. position: relative;
  2150. display: inline-block;
  2151. text-align: right;
  2152. padding-left: 5px;
  2153. font-weight: 400;
  2154. }
  2155. .fc-week-number
  2156. {
  2157. width: 16px;
  2158. line-height: 17px;
  2159. padding: 0px 3px 0px 2px;
  2160. color: #ffffff;
  2161. background-color: #c0c0c0;
  2162. font-size: 1em;
  2163. /*-moz-border-radius-bottomright: 3px;
  2164. border-bottom-right-radius: 3px; */
  2165. }
  2166. /*
  2167. .fc-agenda-axis.fc-widget-header
  2168. {
  2169. border-top: 1px solid #c0c0c0;
  2170. }
  2171. */
  2172. .fc-agenda-axis .fc-week-number
  2173. {
  2174. margin-left: -4px;
  2175. padding-top: 2px;
  2176. line-height: 15px;
  2177. font-size: 1em;
  2178. }
  2179. .fc-today .fc-day-text
  2180. {
  2181. text-transform: capitalize;
  2182. }
  2183. .fc-day-number
  2184. {
  2185. position: relative;
  2186. display: inline-block;
  2187. text-align: right;
  2188. padding-right: 3px !important;
  2189. }
  2190. .fc-today .fc-day-header
  2191. {
  2192. width: 100%;
  2193. float: left;
  2194. height: 17px;
  2195. line-height: 17px;
  2196. background-color: #585858;
  2197. font-weight: 400;
  2198. color: #ffffff;
  2199. }
  2200. .fc-today .fc-day-header .fc-week-number
  2201. {
  2202. background-color: #c0c0c0;
  2203. color: #ffffff;
  2204. }
  2205. .fc-today .fc-day-header div
  2206. {
  2207. opacity: 1 !important;
  2208. }
  2209. .fc-button-content
  2210. {
  2211. height: 20px !important;
  2212. line-height: 16px !important;
  2213. }
  2214. .fc-header-title h2
  2215. {
  2216. font-size: 1.3em;
  2217. font-weight: 300;
  2218. margin-top: 2px !important;
  2219. overflow: hidden;
  2220. text-overflow: ellipsis;
  2221. white-space: nowrap;
  2222. }
  2223. .fc-header-space
  2224. {
  2225. display: inline-block;
  2226. width: 10px;
  2227. }
  2228. .fc-header-center.r_operate_all
  2229. {
  2230. background-image: url("../images/loadinfo_s4.gif") !important;
  2231. background-position: 97% 15% !important;
  2232. background-repeat: no-repeat !important;
  2233. }
  2234. .fc-header-center.r_error_all
  2235. {
  2236. background-image: url(../images/error_b.svg) !important;
  2237. background-position: 97% 15% !important;
  2238. background-repeat: no-repeat !important;
  2239. }
  2240. #SystemCalDavZAP input[data-type="delete"], #SystemCalDavTODO input[data-type="delete"]
  2241. {
  2242. margin: 5px 0px 0px 2px;
  2243. float: right !important;
  2244. }
  2245. .fc-event
  2246. {
  2247. opacity: 1; /* replaced by rgba() */
  2248. }
  2249. .fc-event-skin
  2250. {
  2251. border-color: #FFFFFF;
  2252. background-color: #2d2d2d;
  2253. color: white;
  2254. }
  2255. .searchCalDAV_hide, .checkCalDAV_hide
  2256. {
  2257. opacity: 0.2;
  2258. }
  2259. .fc-view.fc-view-table .searchCalDAV_hide, .fc-view.fc-view-table .checkCalDAV_hide,
  2260. .fc-view.fc-view-todo .searchCalDAV_hide, .fc-view.fc-view-todo .checkCalDAV_hide
  2261. {
  2262. display: none;
  2263. }
  2264. .fc-state-default .fc-button-effect span
  2265. {
  2266. background: none !important;
  2267. }
  2268. .fc-state-default .fc-button-effect
  2269. {
  2270. top: 0px !important;
  2271. }
  2272. .fc-state-default, .fc-state-default .fc-button-inner
  2273. {
  2274. border-color: #c0c0c0 !important;
  2275. }
  2276. .fc-state-default, .fc-state-default .fc-button-inner
  2277. {
  2278. background: none repeat scroll 0 0 #ffffff !important;
  2279. }
  2280. .fc-state-hover, .fc-state-hover .fc-button-inner
  2281. {
  2282. background: none repeat scroll 0 0 #e7e7e7 !important;
  2283. }
  2284. .fc-state-active, .fc-state-active .fc-button-inner
  2285. {
  2286. background: none repeat scroll 0 0 #585858 !important;
  2287. }
  2288. .ui-datepicker-simple
  2289. {
  2290. z-index: 100 !important;
  2291. }
  2292. .ui-datepicker-simple .ui-datepicker-title
  2293. {
  2294. margin: -1px 24px !important;
  2295. }
  2296. .ui-autocomplete-caldav
  2297. {
  2298. z-index: 100;
  2299. }
  2300. #CATodo, #todo_details_template
  2301. {
  2302. display: block;
  2303. border: none;
  2304. width: 100%;
  2305. height: 100%;
  2306. }
  2307. #CATodo
  2308. {
  2309. display: none;
  2310. }
  2311. .title_cancelled
  2312. {
  2313. text-decoration: line-through;
  2314. }
  2315. #CalDavZAPPopup
  2316. {
  2317. display: none;
  2318. position: absolute;
  2319. max-width: 413px;
  2320. border: 1px solid #c0c0c0;
  2321. background: #f0f0f0;
  2322. z-index: 30;
  2323. user-select: none;
  2324. -webkit-user-select: none;
  2325. -moz-user-select: none;
  2326. }
  2327. #CalDavZAPPopupColor
  2328. {
  2329. float: left;
  2330. width: 3px;
  2331. }
  2332. #CalDavZAPPopupTable
  2333. {
  2334. float: left;
  2335. margin: 6px 4px 6px 6px;
  2336. text-align: left;
  2337. }
  2338. #CalDavZAPPopupTable .header
  2339. {
  2340. max-width: 398px;
  2341. font-size: 1.1em;
  2342. font-weight: 500;
  2343. }
  2344. #CalDavZAPPopupTable .label
  2345. {
  2346. display: block;
  2347. width: 98px;
  2348. font-size: 0.95em;
  2349. white-space: nowrap;
  2350. overflow: hidden;
  2351. text-overflow: ellipsis;
  2352. }
  2353. #CalDavZAPPopupTable .value
  2354. {
  2355. max-width: 298px;
  2356. overflow: hidden;
  2357. text-overflow: ellipsis;
  2358. white-space: nowrap;
  2359. }
  2360. #CalDavZAPPopupTable .multiline
  2361. {
  2362. white-space: normal;
  2363. word-wrap: break-word;
  2364. }