default.css 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046
  1. /*
  2. CardDavMATE - the open source CardDAV 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. .integration_d
  991. {
  992. display: none; /* hide the integration banner if the div is present but only CardDavMATE is loaded */
  993. }
  994. .resourcesCardDAV_d
  995. {
  996. position: absolute;
  997. top: 0px;
  998. left: 0px;
  999. right: 0px;
  1000. border-right: 1px solid #c0c0c0;
  1001. width: 224px;
  1002. height: 49px;
  1003. background: #f0f0f0;
  1004. color: #404040;
  1005. cursor: default;
  1006. user-select: none;
  1007. -webkit-user-select: none;
  1008. -moz-user-select: none;
  1009. }
  1010. .resourcesCardDAV_h
  1011. {
  1012. float: left;
  1013. margin-top: 2px;
  1014. margin-left: 6px;
  1015. width: 190px;
  1016. font-size: 1.1em;
  1017. font-weight: 400;
  1018. overflow: hidden;
  1019. text-overflow: ellipsis;
  1020. white-space: nowrap;
  1021. }
  1022. #ResourceCardDAVToggle
  1023. {
  1024. float: left;
  1025. padding-top: 4px;
  1026. padding-left: 7px;
  1027. cursor: pointer;
  1028. }
  1029. #ResourceCardDAVList
  1030. {
  1031. position: absolute;
  1032. display: block;
  1033. top: 24px;
  1034. bottom: 0px;
  1035. left: 0px;
  1036. border-right: 1px solid;
  1037. border-right-color: #c0c0c0;
  1038. width: 224px;
  1039. overflow: auto;
  1040. overflow-x: hidden;
  1041. background: #ffffff;
  1042. border-top: 1px solid #c0c0c0;
  1043. cursor: default;
  1044. user-select: none;
  1045. -webkit-user-select: none;
  1046. -moz-user-select: none;
  1047. }
  1048. #ResourceCardDAVListOverlay
  1049. {
  1050. position: absolute;
  1051. top: 0px;
  1052. left: 0px;
  1053. bottom: 0px;
  1054. border-right: 1px solid;
  1055. border-right-color: #c0c0c0;
  1056. width: 224px;
  1057. background: #ffffff;
  1058. display: none;
  1059. z-index: 10;
  1060. cursor: default;
  1061. user-select: none;
  1062. -webkit-user-select: none;
  1063. -moz-user-select: none;
  1064. }
  1065. #AddressbookOverlay
  1066. {
  1067. position: absolute;
  1068. top: 0px;
  1069. left: 225px;
  1070. right: 0px;
  1071. bottom: 0px;
  1072. overflow: hidden;
  1073. background: #ffffff;
  1074. opacity: 0.8;
  1075. display: none;
  1076. z-index: 22;
  1077. cursor: default;
  1078. user-select: none;
  1079. -webkit-user-select: none;
  1080. -moz-user-select: none;
  1081. }
  1082. .colorPicker
  1083. {
  1084. display: none;
  1085. }
  1086. .resourceCardDAVColor
  1087. {
  1088. width: 12px;
  1089. height: 24px;
  1090. margin-top: 0px;
  1091. margin-right: 6px;
  1092. float: left;
  1093. }
  1094. .resourceCardDAVGroupColor
  1095. {
  1096. width: 12px;
  1097. height: 19px;
  1098. margin-top: 0px;
  1099. float: left;
  1100. }
  1101. .resourceCardDAV_header
  1102. {
  1103. position: relative !important;
  1104. display: block;
  1105. overflow: hidden;
  1106. left: 0px;
  1107. top: 0px;
  1108. box-sizing: border-box;
  1109. -moz-box-sizing: border-box;
  1110. text-overflow: ellipsis;
  1111. white-space: nowrap;
  1112. width: 100%;
  1113. bottom: auto;
  1114. height: 20px;
  1115. line-height: 17px;
  1116. background-color: #ffffff;
  1117. color: #404040;
  1118. cursor: default;
  1119. padding-left: 6px;
  1120. padding-right: 6px;
  1121. font-size: 0.9em;
  1122. font-weight: 500;
  1123. border-top: 1px solid;
  1124. border-top-color: #ffffff;
  1125. border-bottom: 1px solid;
  1126. border-bottom-color: #ffffff;
  1127. }
  1128. .resourceCardDAV_item, .contact_group
  1129. {
  1130. position: relative;
  1131. display: block;
  1132. overflow: hidden;
  1133. left: 0px;
  1134. top: 0px;
  1135. box-sizing: border-box;
  1136. -moz-box-sizing: border-box;
  1137. width: 100%;
  1138. }
  1139. .resourceCardDAV_item input[type="checkbox"]
  1140. {
  1141. margin-top: -2px;
  1142. margin-right: 5px;
  1143. }
  1144. @-moz-document url-prefix() {
  1145. .resourceCardDAV_item input[type="checkbox"]
  1146. {
  1147. margin-top: 0px;
  1148. }
  1149. }
  1150. .resourceCardDAV
  1151. {
  1152. position: relative;
  1153. display: block;
  1154. overflow: hidden;
  1155. left: 0px;
  1156. top: 0px;
  1157. box-sizing: border-box;
  1158. -moz-box-sizing: border-box;
  1159. text-overflow: ellipsis;
  1160. white-space: nowrap;
  1161. width: 100%;
  1162. height: 25px;
  1163. line-height: 23px;
  1164. border-top: 1px solid #ffffff;
  1165. color: #404040;
  1166. cursor: default;
  1167. font-size: 1em;
  1168. font-weight: 400;
  1169. padding-left: 0px;
  1170. padding-right: 6px;
  1171. }
  1172. .resourceCardDAV:hover
  1173. {
  1174. cursor: pointer;
  1175. color: #404040 !important;
  1176. background-color: #e7e7e7 !important;
  1177. border-top: 1px solid !important;
  1178. /*
  1179. border-top-color: #b9b9b9 !important;
  1180. border-bottom: 1px solid !important;
  1181. border-bottom-color: #b9b9b9 !important;
  1182. */
  1183. border-top-color: #ffffff !important;
  1184. }
  1185. .resourceCardDAV.resourceCardDAV_selected
  1186. {
  1187. color: #ffffff !important;
  1188. background: #585858 !important;
  1189. border-top: 1px solid !important;
  1190. /*
  1191. border-top-color: #585858 !important;
  1192. border-bottom: 1px solid !important;
  1193. border-bottom-color: #585858 !important;
  1194. */
  1195. border-top-color: #ffffff !important;
  1196. }
  1197. .resourceCardDAV.resourceCardDAV_dropped_to
  1198. {
  1199. background-color: #b9b9b9;
  1200. border: 1px dashed #ffffff !important;
  1201. padding-right: 7px;
  1202. }
  1203. .resourceCardDAV.resourceCardDAV_dropped_to > .resourceCardDAVColor
  1204. {
  1205. width: 11px !important; /* reduce the addressbook color size during "drop" */
  1206. }
  1207. .resourceCardDAV.resourceCardDAV_ro
  1208. {
  1209. background-image: url(../images/read_only_b.svg);
  1210. background-repeat: no-repeat !important;
  1211. background-position: 97% center !important;
  1212. padding-right: 32px !important;
  1213. }
  1214. .resourceCardDAV.resourceCardDAV_ro:hover
  1215. {
  1216. background-image: url(../images/read_only_b.svg) !important;
  1217. }
  1218. .resourceCardDAV.resourceCardDAV_ro.resourceCardDAV_selected
  1219. {
  1220. background-image: url(../images/read_only_w.svg) !important;
  1221. }
  1222. #ABListTable, #ABListTableInner
  1223. {
  1224. width: 100%;
  1225. table-layout: fixed;
  1226. }
  1227. .ablist_table_header
  1228. {
  1229. border-bottom: 1px solid #c0c0c0;
  1230. }
  1231. .ablist_table_header th
  1232. {
  1233. font-weight: 500;
  1234. font-size: 0.9em;
  1235. border-right: 1px solid #f0f0f0;
  1236. overflow: hidden;
  1237. text-overflow: ellipsis;
  1238. white-space: nowrap;
  1239. }
  1240. .ablist_table_container > td
  1241. {
  1242. padding: 0 !important;
  1243. }
  1244. .ablist_table_wrapper
  1245. {
  1246. overflow-x: hidden;
  1247. overflow-y: auto;
  1248. }
  1249. .ablist_column_color
  1250. {
  1251. width: 6px;
  1252. }
  1253. .ablist_header
  1254. {
  1255. color: #404040;
  1256. background-color: #f0f0f0;
  1257. font-size: 0.9025em;
  1258. }
  1259. .ablist_header td
  1260. {
  1261. height: 18px;
  1262. padding: 0 10px;
  1263. line-height: 18px;
  1264. overflow: hidden;
  1265. text-overflow: ellipsis;
  1266. white-space: nowrap;
  1267. }
  1268. .ablist_item
  1269. {
  1270. color: #404040;
  1271. background-color: #fff;
  1272. font-size: 1.02885em;
  1273. border-top: 1px solid #ffffff !important;
  1274. }
  1275. .ablist_item td
  1276. {
  1277. height: 15px !important;
  1278. padding: 2px 4px;
  1279. line-height: 15px !important;
  1280. border-right: 1px solid #f0f0f0;
  1281. overflow: hidden;
  1282. text-overflow: ellipsis;
  1283. white-space: nowrap;
  1284. background-color: inherit;
  1285. }
  1286. .ablist_item td.ablist_item_color
  1287. {
  1288. height: 100%;
  1289. width: 6px;
  1290. padding: 0;
  1291. border-color: #f0f0f0;
  1292. background-color: #f0f0f0;
  1293. border-right: none;
  1294. }
  1295. .ablist_item, x:-moz-any-link, x:default
  1296. {
  1297. line-height: 17px;
  1298. }
  1299. .ablist_item_selected
  1300. {
  1301. color: #eeeeee !important;
  1302. background-color: #585858 !important;
  1303. /*
  1304. border-top: 1px solid !important;
  1305. border-top-color: #585858 !important;
  1306. border-bottom: 1px solid !important;
  1307. border-bottom-color: #585858 !important;
  1308. */
  1309. border-top: 1px solid !important;
  1310. border-top-color: #ffffff !important;
  1311. }
  1312. .ablist_item:hover
  1313. {
  1314. cursor: pointer;
  1315. color: #000000;
  1316. background-color: #b9b9b9;
  1317. /*
  1318. border-top-color: #b9b9b9;
  1319. border-bottom-color: #b9b9b9;
  1320. */
  1321. border-top-color: #ffffff;
  1322. }
  1323. @media only screen and (device-width: 1024px)
  1324. {
  1325. /* Rule matched by 1024x768 tablets, like the iPad and iPad2 and ignored by other browsers */
  1326. .ablist_item:hover
  1327. {
  1328. cursor: default;
  1329. color: #404040;
  1330. background-color: #ffffff;
  1331. border-top-color: #ffffff;
  1332. /*
  1333. border-bottom-color: #ffffff;
  1334. */
  1335. }
  1336. }
  1337. @media only screen and (device-width: 768px)
  1338. {
  1339. /* Rule matched by 1024x768 tablets, like the iPad and iPad2 and ignored by other browsers */
  1340. .ablist_item:hover
  1341. {
  1342. cursor: default;
  1343. color: #404040;
  1344. background-color: #ffffff;
  1345. border-top-color: #ffffff;
  1346. /*
  1347. border-bottom-color: #ffffff;
  1348. */
  1349. }
  1350. }
  1351. .ablist_item:hover td
  1352. {
  1353. border-right-color: #eee;
  1354. }
  1355. /*.company, .ablist_item_selected.company:hover
  1356. {
  1357. padding-right: 30px;
  1358. background-image: url(../images/company_s_b.svg);
  1359. background-repeat: no-repeat;
  1360. background-position: right top;
  1361. }
  1362. .ablist_item_selected.company
  1363. {
  1364. background-image: url(../images/company_s_w.svg) !important;
  1365. background-repeat: no-repeat !important;
  1366. background-position: right top !important;
  1367. }*/
  1368. .ablist_item_dragged
  1369. {
  1370. border: 1px dashed #ffffff !important;
  1371. background-color: #585858 !important;
  1372. color: #ffffff !important;
  1373. }
  1374. .group
  1375. {
  1376. position: relative;
  1377. display: block;
  1378. overflow: hidden;
  1379. left: 0px;
  1380. top: 0px;
  1381. box-sizing: border-box;
  1382. -moz-box-sizing: border-box;
  1383. text-overflow: ellipsis;
  1384. white-space: nowrap;
  1385. width: 100%;
  1386. height: 20px;
  1387. line-height: 17px;
  1388. border-top: 1px solid #ffffff;
  1389. color: #404040;
  1390. cursor: default;
  1391. padding-left: 0px;
  1392. padding-right: 6px;
  1393. font-size: 0.9em;
  1394. background-image: none !important;
  1395. }
  1396. .group input[type="checkbox"]
  1397. {
  1398. margin-top: -2px;
  1399. margin-left: 18px;
  1400. margin-right: 5px;
  1401. }
  1402. @-moz-document url-prefix() {
  1403. .group input[type="checkbox"]
  1404. {
  1405. margin-top: 0x;
  1406. }
  1407. }
  1408. .group:hover
  1409. {
  1410. cursor: pointer;
  1411. color: #404040 !important;
  1412. background-color: #e7e7e7 !important;
  1413. border-top: 1px solid !important;
  1414. /*
  1415. border-top-color: #b9b9b9 !important;
  1416. border-bottom: 1px solid !important;
  1417. border-bottom-color: #b9b9b9 !important;
  1418. */
  1419. border-top-color: #ffffff !important;
  1420. }
  1421. .group.resourceCardDAV_selected
  1422. {
  1423. color: #ffffff !important;
  1424. background: #585858 !important;
  1425. border-top: 1px solid !important;
  1426. /*
  1427. border-top-color: #585858 !important;
  1428. border-bottom: 1px solid !important;
  1429. border-bottom-color: #585858 !important;
  1430. */
  1431. border-top-color: #ffffff !important;
  1432. }
  1433. .group_dropped_to
  1434. {
  1435. background-color: #b9b9b9;
  1436. border: 1px dashed #ffffff !important;
  1437. padding-right: 7px;
  1438. }
  1439. .group_dropped_to > .resourceCardDAVGroupColor
  1440. {
  1441. width: 11px !important;
  1442. }
  1443. .r_operate.resourceCardDAV, .r_operate.group
  1444. {
  1445. background-image: url(../images/loadinfo_s1.gif) !important;
  1446. background-repeat: no-repeat !important;
  1447. background-position: 97% center !important;
  1448. padding-right: 32px;
  1449. }
  1450. .r_operate.resourceCardDAV:hover, .r_operate.group:hover
  1451. {
  1452. background-image: url(../images/loadinfo_s2.gif) !important;
  1453. }
  1454. .r_operate.resourceCardDAV.resourceCardDAV_selected, .r_operate.group.resourceCardDAV_selected
  1455. {
  1456. background-image: url(../images/loadinfo_s3.gif) !important;
  1457. }
  1458. .r_success.resourceCardDAV, .r_success.group
  1459. {
  1460. background-image: url(../images/success_b.svg) !important;
  1461. background-repeat: no-repeat !important;
  1462. background-position: 97% center !important;
  1463. padding-right: 32px;
  1464. }
  1465. .r_success.resourceCardDAV:hover, .r_success.group:hover
  1466. {
  1467. background-image: url(../images/success_b.svg) !important;
  1468. }
  1469. .r_success.resourceCardDAV.resourceCardDAV_selected, .r_success.group.resourceCardDAV_selected
  1470. {
  1471. background-image: url(../images/success_w.svg) !important;
  1472. }
  1473. .r_error.resourceCardDAV, .er_error.resourceCardDAV, .r_error.group, .er_error.group
  1474. {
  1475. background-image: url(../images/error_b.svg) !important;
  1476. background-repeat: no-repeat !important;
  1477. background-position: 97% center !important;
  1478. padding-right: 32px;
  1479. }
  1480. .r_error.resourceCardDAV:hover, .er_error.resourceCardDAV:hover, .r_error.group:hover, .er_error.group:hover
  1481. {
  1482. background-image: url(../images/error_b.svg) !important;
  1483. }
  1484. .r_error.resourceCardDAV.resourceCardDAV_selected, .er_error.resourceCardDAV.resourceCardDAV_selected, .r_error.group.resourceCardDAV_selected, .er_error.group.resourceCardDAV_selected
  1485. {
  1486. background-image: url(../images/error_w.svg) !important;
  1487. }
  1488. .resourceCardDAV_header.load_mode, .resourceCardDAV.load_mode, .resourceCardDAV.load_mode:hover
  1489. {
  1490. padding-right: 24px !important;
  1491. background-image: none !important;
  1492. }
  1493. .contact_group.load_mode
  1494. {
  1495. display: none;
  1496. }
  1497. .resourceCardDAV_header.unloaded, .resourceCardDAV.unloaded
  1498. {
  1499. color: rgba(64, 64, 64, 0.4) !important;
  1500. }
  1501. .resourceCardDAV.unloaded .resourceCardDAVColor
  1502. {
  1503. opacity: 0.4;
  1504. }
  1505. td[data-size="full"] > span > select[data-type="country_type"]
  1506. {
  1507. min-width: 392px !important;
  1508. max-width: 392px !important;
  1509. }
  1510. td[data-size="full"] > span > select[data-type="xfull_type"]
  1511. {
  1512. min-width: 392px !important;
  1513. max-width: 392px !important;
  1514. }
  1515. td[data-size="half"] > span > select[data-type="country_type"]
  1516. {
  1517. min-width: 195px !important;
  1518. max-width: 195px !important;
  1519. }
  1520. td[data-size="half"] > span > select[data-type="xhalf_type"]
  1521. {
  1522. min-width: 195px !important;
  1523. max-width: 195px !important;
  1524. }
  1525. td[data-size="small"] > select
  1526. {
  1527. min-width: 134px !important;
  1528. max-width: 134px !important;
  1529. }
  1530. img[data-type="invalidCardDavTagsinput"]
  1531. {
  1532. vertical-align: top;
  1533. margin-top: -22px;
  1534. margin-left: 512px;
  1535. }
  1536. #showUnloadedAddressbooks
  1537. {
  1538. float:right;
  1539. padding-top: 4px;
  1540. padding-right: 6px;
  1541. cursor: pointer;
  1542. }
  1543. #EditorBox
  1544. {
  1545. padding-left: 7px;
  1546. padding-top: 4px;
  1547. z-index: 1;
  1548. }
  1549. #EditorBox *> .attr_desc
  1550. {
  1551. font-size: 1em;
  1552. height: 1.3em !important;
  1553. vertical-align: middle !important;
  1554. text-align: baseline !important;
  1555. }
  1556. #EditorBox *> .opw /* + and - image button IE bug with input type="image" and width */
  1557. {
  1558. width:14px;
  1559. }
  1560. #EditorBox *> .op /* + and - image buttons (width is defined separately in .opw) */
  1561. {
  1562. padding-top: 2px;
  1563. }
  1564. #EditorBox *> .zero_height
  1565. {
  1566. height: 0px !important;
  1567. }
  1568. #EditorBox *> .photo_box
  1569. {
  1570. width: 171px !important;
  1571. height: 160px !important;
  1572. }
  1573. #EditorBox *> .photo_div
  1574. {
  1575. position: relative;
  1576. overflow:hidden;
  1577. width: 164px;
  1578. height: 183px;
  1579. border: 1px solid;
  1580. border-color: #d0d0d0;
  1581. }
  1582. #EditorBox *> .photo
  1583. {
  1584. position: relative;
  1585. width: 164px;
  1586. height: 183px;
  1587. background-repeat: no-repeat;
  1588. background-position: center;
  1589. }
  1590. #EditorBox *> .photo_blank.photo_user
  1591. {
  1592. background-image: url(../images/user.svg);
  1593. }
  1594. #EditorBox *> .photo_blank.photo_company
  1595. {
  1596. background-image: url(../images/company.svg);
  1597. }
  1598. #EditorBox *> .heightfix
  1599. {
  1600. height: 19px !important;
  1601. min-height: 19px !important;
  1602. max-height: 19px !important;
  1603. line-height: 16px !important;
  1604. }
  1605. select.inverse_select
  1606. {
  1607. background: #ffffff url(../images/select_inv.svg) no-repeat center right;
  1608. }
  1609. #ExtendedDest
  1610. {
  1611. position: absolute;
  1612. top: 22px;
  1613. height: 0;
  1614. width: 392px;
  1615. background-color: #fff;
  1616. overflow-y: auto;
  1617. overflow-x: hidden;
  1618. z-index: 1;
  1619. cursor: default;
  1620. user-select: none;
  1621. -webkit-user-select: none;
  1622. -moz-user-select: none;
  1623. }
  1624. .extended_dest_header
  1625. {
  1626. overflow: hidden;
  1627. box-sizing: border-box;
  1628. -moz-box-sizing: border-box;
  1629. text-overflow: ellipsis;
  1630. white-space: nowrap;
  1631. width: 100%;
  1632. height: 20px;
  1633. line-height: 17px;
  1634. color: #404040;
  1635. padding-left: 6px;
  1636. padding-right: 6px;
  1637. font-size: 0.9em;
  1638. font-weight: 500;
  1639. border-top: 1px solid;
  1640. border-top-color: #ffffff;
  1641. border-bottom: 1px solid;
  1642. border-bottom-color: #ffffff;
  1643. }
  1644. .extended_dest_item, .extended_dest_group_container
  1645. {
  1646. overflow: hidden;
  1647. box-sizing: border-box;
  1648. -moz-box-sizing: border-box;
  1649. width: 100%;
  1650. }
  1651. .extended_dest_item input[type="checkbox"]
  1652. {
  1653. margin-top: -2px;
  1654. margin-right: 5px;
  1655. }
  1656. @-moz-document url-prefix() {
  1657. .extended_dest_item input[type="checkbox"]
  1658. {
  1659. margin-top: 0px;
  1660. }
  1661. }
  1662. .extended_dest_resource
  1663. {
  1664. overflow: hidden;
  1665. box-sizing: border-box;
  1666. -moz-box-sizing: border-box;
  1667. text-overflow: ellipsis;
  1668. white-space: nowrap;
  1669. width: 100%;
  1670. height: 25px;
  1671. line-height: 23px;
  1672. border-top: 1px solid #ffffff;
  1673. color: #404040;
  1674. font-size: 1em;
  1675. font-weight: 400;
  1676. padding-left: 0px;
  1677. padding-right: 6px;
  1678. }
  1679. .extended_dest_group
  1680. {
  1681. overflow: hidden;
  1682. box-sizing: border-box;
  1683. -moz-box-sizing: border-box;
  1684. text-overflow: ellipsis;
  1685. white-space: nowrap;
  1686. width: 100%;
  1687. height: 20px;
  1688. line-height: 17px;
  1689. border-top: 1px solid #ffffff;
  1690. color: #404040;
  1691. padding-left: 0px;
  1692. padding-right: 6px;
  1693. font-size: 0.9em;
  1694. }
  1695. .extended_dest_group input[type="checkbox"]
  1696. {
  1697. margin-top: -2px;
  1698. margin-left: 18px;
  1699. margin-right: 5px;
  1700. }
  1701. @-moz-document url-prefix() {
  1702. .extended_dest_group input[type="checkbox"]
  1703. {
  1704. margin-top: 0x;
  1705. }
  1706. }
  1707. .extended_dest_resource_color
  1708. {
  1709. width: 12px;
  1710. height: 24px;
  1711. margin-top: 0px;
  1712. margin-right: 6px;
  1713. float: left;
  1714. }
  1715. .extended_dest_group_color
  1716. {
  1717. width: 12px;
  1718. height: 19px;
  1719. margin-top: 0px;
  1720. float: left;
  1721. }
  1722. #photoArrow
  1723. {
  1724. position: absolute;
  1725. top: 184px;
  1726. left: 74px;
  1727. display: none;
  1728. height: 0px;
  1729. width: 0px;
  1730. padding: 0px;
  1731. height: 9px;
  1732. width: 16px;
  1733. background: url(../images/popupArrow.svg) no-repeat center;
  1734. /* border: 8px solid #585858;
  1735. border-top-color: transparent;
  1736. border-left-color: transparent;
  1737. border-right-color: transparent;*/
  1738. z-index: 103;
  1739. }
  1740. #photoBox
  1741. {
  1742. position: absolute;
  1743. top: 192px;
  1744. left: 0;
  1745. display: none;
  1746. width: 300px;
  1747. background-color: #f0f0f0;
  1748. color: #404040;
  1749. border: 1px solid #c0c0c0;
  1750. z-index: 102;
  1751. cursor:default;
  1752. user-select: none;
  1753. -webkit-user-select:none;
  1754. -moz-user-select: -moz-none;
  1755. }
  1756. #photoBox h1
  1757. {
  1758. margin: 0;
  1759. font-size: 1em;
  1760. text-align: center;
  1761. white-space: nowrap;
  1762. overflow: hidden;
  1763. text-overflow: ellipsis;
  1764. }
  1765. #photoBoxContent
  1766. {
  1767. padding: 10px;
  1768. }
  1769. #photoURL
  1770. {
  1771. width: 218px;
  1772. }
  1773. #photoURL.invalid
  1774. {
  1775. padding-right: 22px;
  1776. width: 196px;
  1777. }
  1778. #photoBoxButton
  1779. {
  1780. top: -1px;
  1781. margin-left: 6px;
  1782. width: 50px;
  1783. }
  1784. @-moz-document url-prefix() {
  1785. #photoBoxButton
  1786. {
  1787. top: 0px;
  1788. }
  1789. }