You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

share.css 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /* Copyright (c) 2011, Jan-Christoph Borchardt, http://jancborchardt.net
  2. This file is licensed under the Affero General Public License version 3 or later.
  3. See the COPYING-README file. */
  4. #dropdown {
  5. background:#eee;
  6. border-bottom-left-radius:1em;
  7. border-bottom-right-radius:1em;
  8. box-shadow:0 1px 1px #777;
  9. display:block;
  10. margin-right:7em;
  11. position:absolute;
  12. right:0;
  13. width:19em;
  14. z-index:500;
  15. padding:1em;
  16. }
  17. #shareWithList {
  18. list-style-type:none;
  19. padding:.5em;
  20. }
  21. #shareWithList li {
  22. padding-top:.1em;
  23. }
  24. #shareWithList li:first-child {
  25. white-space:normal;
  26. }
  27. #shareWithList .cruds {
  28. margin-left:-10px;
  29. }
  30. #shareWithList .unshare img, #shareWithList .showCruds img {
  31. vertical-align:text-bottom; /* properly align icons */
  32. }
  33. #dropdown label {
  34. font-weight:400;
  35. }
  36. #dropdown input[type="checkbox"] {
  37. margin:0 .2em 0 .5em;
  38. }
  39. a.showCruds {
  40. display:inline;
  41. opacity:.5;
  42. }
  43. a.unshare {
  44. display:inline;
  45. float:right;
  46. opacity:.5;
  47. padding:.3em 0 0 .3em !important;
  48. margin-top:-5px;
  49. }
  50. #link {
  51. border-top:1px solid #ddd;
  52. padding-top:.5em;
  53. }
  54. #dropdown input[type="text"],#dropdown input[type="password"] {
  55. width:90%;
  56. }
  57. #dropdown form {
  58. font-size: 100%;
  59. margin-left: 0;
  60. margin-right: 0;
  61. }
  62. #linkText,#linkPass,#expiration {
  63. display:none;
  64. }
  65. #link #showPassword img {
  66. padding-left:.3em;
  67. width:12px;
  68. }
  69. .reshare,#link label,#expiration label {
  70. padding-left:.5em;
  71. }
  72. a.showCruds:hover,a.unshare:hover {
  73. opacity:1;
  74. }
  75. .reshare { white-space:normal; } /* fix shared by text going out of box */
  76. .ui-autocomplete { /* limit dropdown height to 4 1/2 entries */
  77. max-height:103px;
  78. overflow-y:auto;
  79. overflow-x:hidden;
  80. }