Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

addressbook.css 7.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  1. /**
  2. * Roundcube webmail styles for the Address Book section
  3. *
  4. * Copyright (c) 2012, The Roundcube Dev Team
  5. * Screendesign by FLINT / B�ro f�r Gestaltung, bueroflint.com
  6. *
  7. * The contents are subject to the Creative Commons Attribution-ShareAlike
  8. * License. It is allowed to copy, distribute, transmit and to adapt the work
  9. * by keeping credits to the original autors in the README file.
  10. * See http://creativecommons.org/licenses/by-sa/3.0/ for details.
  11. */
  12. #addressview-left {
  13. position: absolute;
  14. top: 0;
  15. left: 0;
  16. width: 200px;
  17. bottom: 0;
  18. z-index: 2;
  19. }
  20. #addressview-right {
  21. position: absolute;
  22. top: 0;
  23. left: 212px;
  24. right: 0;
  25. bottom: 0;
  26. z-index: 3;
  27. }
  28. #addressbooktoolbar {
  29. position: absolute;
  30. top: -6px;
  31. left: 0;
  32. height: 40px;
  33. white-space: nowrap;
  34. z-index: 10;
  35. }
  36. #directorylistbox {
  37. position: absolute;
  38. top: 0;
  39. left: 0;
  40. width: 100%;
  41. bottom: 0;
  42. }
  43. #addresslist {
  44. position: absolute;
  45. top: 0;
  46. left: 0;
  47. width: 260px;
  48. bottom: 0;
  49. }
  50. #contacts-box {
  51. position: absolute;
  52. top: 0;
  53. left: 272px;
  54. right: 0;
  55. bottom: 0;
  56. }
  57. #addressview-left #quicksearchbar input {
  58. width: 156px;
  59. }
  60. #directorylist li a,
  61. .treelist li.contactsearch a,
  62. #contacts-table .contact td.name {
  63. background-image: url(images/listicons.png?v=1877.13442);
  64. background-position: -100px 0;
  65. background-repeat: no-repeat;
  66. overflow: hidden;
  67. text-overflow: ellipsis;
  68. }
  69. #directorylist li.addressbook a {
  70. background-position: 6px -766px;
  71. }
  72. #directorylist ul li.addressbook a {
  73. background-position: 32px -766px;
  74. }
  75. #directorylist ul ul li.addressbook a {
  76. background-position: 58px -766px;
  77. }
  78. #directorylist li.addressbook.selected > a {
  79. background-position: 6px -791px;
  80. }
  81. #directorylist ul li.addressbook.selected > a {
  82. background-position: 32px -791px;
  83. }
  84. #directorylist ul ul li.addressbook.selected > a {
  85. background-position: 58px -791px;
  86. }
  87. #directorylist li.contactgroup a {
  88. background-position: 6px -1555px;
  89. }
  90. #directorylist ul li.contactgroup a {
  91. background-position: 32px -1555px;
  92. }
  93. #directorylist ul ul li.contactgroup a {
  94. background-position: 58px -1555px;
  95. }
  96. #directorylist ul ul ul li.contactgroup a {
  97. background-position: 84px -1555px;
  98. }
  99. #directorylist li.contactgroup.selected a {
  100. background-position: 32px -1579px;
  101. }
  102. #directorylist ul ul li.contactgroup.selected a {
  103. background-position: 58px -1579px;
  104. }
  105. #directorylist ul ul ul li.contactgroup.selected a {
  106. background-position: 84px -1579px;
  107. }
  108. .treelist li.contactsearch a {
  109. background-position: 6px -1651px;
  110. }
  111. .treelist li.contactsearch.selected a {
  112. background-position: 6px -1675px;
  113. }
  114. #directorylist li.addressbook div.collapsed,
  115. #directorylist li.addressbook div.expanded {
  116. top: 15px;
  117. }
  118. #contacts-table .contact.readonly td {
  119. font-style: italic;
  120. }
  121. #contacts-table td.name {
  122. width: 95%;
  123. }
  124. #contacts-table td.action {
  125. width: 24px;
  126. padding: 4px;
  127. }
  128. #contacts-table td.action a {
  129. display: block;
  130. width: 16px;
  131. height: 14px;
  132. text-indent: -5000px;
  133. overflow: hidden;
  134. background: url(images/listicons.png?v=1877.13442) -2px -1180px no-repeat;
  135. }
  136. #contacts-table .contact td.name {
  137. background-position: 4px -1603px;
  138. }
  139. #contacts-table .contact.selected td.name {
  140. background-position: 4px -1627px;
  141. font-weight: bold;
  142. }
  143. #contacts-table .group td.name {
  144. background-position: 4px -1555px;
  145. }
  146. #contacts-table .group.selected td.name {
  147. background-position: 4px -1579px;
  148. font-weight: bold;
  149. }
  150. #contacts-table.focus .group.selected.focused td.name {
  151. background-position: 4px -1579px;
  152. }
  153. #addresslist .boxtitle {
  154. padding-right: 95px;
  155. overflow: hidden;
  156. text-overflow: ellipsis;
  157. }
  158. #addresslist .boxtitle a.poplink {
  159. color: #004458;
  160. font-size: 14px;
  161. line-height: 12px;
  162. text-decoration: none;
  163. }
  164. #contact-frame {
  165. position: absolute;
  166. top: 0;
  167. left: 0;
  168. right: 0;
  169. bottom: 0px;
  170. border: 0;
  171. border-radius: 4px;
  172. }
  173. #headerbuttons {
  174. position: absolute;
  175. top: 48px;
  176. right: 10px;
  177. width: auto;
  178. z-index: 10;
  179. }
  180. #sourcename {
  181. color: #999;
  182. font-size: 10px;
  183. margin: -5px 0 8px 2px;
  184. }
  185. #contactphoto {
  186. float: left;
  187. margin: 0 18px 20px 0;
  188. width: 112px;
  189. border: 0;
  190. padding: 0;
  191. }
  192. #contactpic {
  193. width: 112px;
  194. min-height: 112px;
  195. background: white;
  196. }
  197. #contactpic img {
  198. max-width: 112px;
  199. visibility: inherit;
  200. }
  201. #contactpic.droptarget {
  202. background-image: url(images/filedrop.png?v=ba79.421);
  203. background-position: center;
  204. background-repeat: no-repeat;
  205. }
  206. #contactpic.droptarget.hover {
  207. background-color: #d9ecf4;
  208. box-shadow: 0 0 5px 2px rgba(71,135,177, 0.9);
  209. -webkit-box-shadow: 0 0 5px 2px rgba(71,135,177, 0.9);
  210. }
  211. #contactpic.droptarget.active img {
  212. opacity: 0.15;
  213. }
  214. #contactpic.droptarget.hover img {
  215. opacity: 0.05;
  216. }
  217. #contactphoto .formlinks a[aria-disabled='true'] {
  218. visibility: hidden;
  219. }
  220. #contacthead {
  221. border: 0;
  222. margin: 0 16em 1em 0;
  223. padding: 0;
  224. line-height: 1.5em;
  225. font-size: 12px;
  226. }
  227. #contacthead > legend {
  228. display: none;
  229. }
  230. form #contacthead {
  231. margin-right: 0;
  232. }
  233. #contacthead .names span.namefield,
  234. #contacthead .names input {
  235. font-size: 140%;
  236. font-weight: bold;
  237. }
  238. #contacthead .displayname span.namefield {
  239. font-size: 120%;
  240. font-weight: bold;
  241. }
  242. #contacthead span.nickname:before,
  243. #contacthead span.nickname:after {
  244. content: '"';
  245. }
  246. #contacthead input {
  247. margin-right: 6px;
  248. margin-bottom: 0.2em;
  249. }
  250. #contacthead .names input,
  251. #contacthead .addnames input {
  252. width: 180px;
  253. }
  254. #contacthead input.ff_prefix,
  255. #contacthead input.ff_suffix {
  256. width: 90px;
  257. }
  258. .contactfieldgroup {
  259. border: 0;
  260. border-radius: 5px;
  261. background: #f7f7f7;
  262. background: -moz-linear-gradient(top, #f7f7f7 0%, #eee 100%);
  263. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7f7f7), color-stop(100%,#eee));
  264. background: -o-linear-gradient(top, #f7f7f7 0%, #eee 100%);
  265. background: -ms-linear-gradient(top, #f7f7f7 0%, #eee 100%);
  266. background: linear-gradient(to bottom, #f7f7f7 0%, #eee 100%);
  267. margin: 0 0 12px 0;
  268. padding: 8px;
  269. }
  270. .contactfieldgroup legend {
  271. display: block;
  272. margin: 0 -8px;
  273. width: 100%;
  274. font-weight: bold;
  275. text-shadow: 0px 1px 1px #fff;
  276. padding: 6px 8px 3px 8px;
  277. background: #f0f0f0;
  278. background: -moz-linear-gradient(top, #f0f0f0 0%, #d6d6d6 100%);
  279. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f0f0), color-stop(100%,#d6d6d6));
  280. background: -o-linear-gradient(top, #f0f0f0 0%, #d6d6d6 100%);
  281. background: -ms-linear-gradient(top, #f0f0f0 0%, #d6d6d6 100%);
  282. background: linear-gradient(to bottom, #f0f0f0 0%, #d6d6d6 100%);
  283. border-bottom: 1px solid #cfcfcf;
  284. border-radius: 5px 5px 0 0;
  285. }
  286. .contactfieldgroup .row {
  287. position: relative;
  288. margin: 0.2em 0;
  289. }
  290. .contactfieldgroup .contactfieldlabel {
  291. position: absolute;
  292. top: 0;
  293. left: 2px;
  294. width: 110px;
  295. white-space: nowrap;
  296. overflow: hidden;
  297. text-overflow: ellipsis;
  298. color: #666;
  299. }
  300. .contactfieldgroup .contactfieldlabel select {
  301. width: 100%;
  302. color: #666;
  303. }
  304. .contactfieldgroup .contactfieldcontent {
  305. padding-left: 120px;
  306. min-height: 1em;
  307. line-height: 1.3em;
  308. }
  309. .contactfieldgroup .contactfield {
  310. line-height: 1.3em;
  311. }
  312. .contactcontrolleraddress .contactfieldcontent input {
  313. margin-bottom: 0.1em;
  314. }
  315. .contactfieldcontent.composite {
  316. padding-bottom: 8px;
  317. }
  318. .contactfieldcontent .contactfieldbutton {
  319. vertical-align: middle;
  320. margin-left: 0.5em;
  321. }
  322. .contactfield .ff_notes {
  323. width: 99%;
  324. }
  325. a.deletebutton {
  326. position: relative;
  327. left: 5px;
  328. top: -3px;
  329. display: inline-block;
  330. width: 24px;
  331. height: 18px;
  332. text-decoration: none;
  333. text-indent: -5000px;
  334. background: url(images/buttons.png?v=32cf.15571) -7px -377px no-repeat;
  335. }
  336. #import-box {
  337. position: absolute;
  338. bottom: 0px;
  339. top: 34px;
  340. left: 0;
  341. right: 0;
  342. overflow: auto;
  343. padding: 10px;
  344. }
  345. #import-box p,
  346. #import-box .propform {
  347. max-width: 50em;
  348. }