css.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?php
  2. /**
  3. * Elgg notifications CSS
  4. *
  5. * @package notifications
  6. */
  7. ?>
  8. #notificationstable td.namefield {
  9. width:250px;
  10. text-align: left;
  11. vertical-align: middle;
  12. }
  13. #notificationstable td.namefield p {
  14. margin:0;
  15. vertical-align: middle;
  16. line-height: 1.1em;
  17. padding:5px 0 5px 0;
  18. }
  19. #notificationstable td.namefield p.namefieldlink {
  20. margin:5px 0 0 0;
  21. }
  22. #notificationstable td.namefield a img {
  23. float:left;
  24. width:25px;
  25. height:25px;
  26. margin:5px 10px 5px 5px;
  27. }
  28. #notificationstable td.emailtogglefield,
  29. #notificationstable td.smstogglefield {
  30. width:50px;
  31. text-align: center;
  32. vertical-align: middle;
  33. }
  34. #notificationstable td.spacercolumn {
  35. width:30px;
  36. }
  37. #notificationstable td {
  38. border-bottom: 1px solid #DCDCDC;
  39. padding: 6px 0;
  40. }
  41. #notificationstable td.emailtogglefield input {
  42. margin-right:36px;
  43. margin-top:5px;
  44. }
  45. #notificationstable td.emailtogglefield a {
  46. width:46px;
  47. height:24px;
  48. cursor: pointer;
  49. display: block;
  50. }
  51. #notificationstable td.sitetogglefield {
  52. width:50px;
  53. text-align: center;
  54. vertical-align: middle;
  55. }
  56. #notificationstable td.sitetogglefield input {
  57. margin-right:36px;
  58. margin-top:5px;
  59. }
  60. #notificationstable td.sitetogglefield a {
  61. width:46px;
  62. height:24px;
  63. cursor: pointer;
  64. display: block;
  65. }
  66. #notificationstable td.emailtogglefield a.emailtoggleOff {
  67. background: url(<?php echo elgg_get_site_url(); ?>mod/notifications/graphics/icon_notifications_email.gif) no-repeat right 2px;
  68. }
  69. #notificationstable td.emailtogglefield a.emailtoggleOn {
  70. background: url(<?php echo elgg_get_site_url(); ?>mod/notifications/graphics/icon_notifications_email.gif) no-repeat right -36px;
  71. }
  72. #notificationstable td.sitetogglefield a.sitetoggleOff {
  73. background: url(<?php echo elgg_get_site_url(); ?>mod/notifications/graphics/icon_notifications_site.gif) no-repeat right 2px;
  74. }
  75. #notificationstable td.sitetogglefield a.sitetoggleOn {
  76. background: url(<?php echo elgg_get_site_url(); ?>mod/notifications/graphics/icon_notifications_site.gif) no-repeat right -37px;
  77. }
  78. .notification_friends,
  79. .notification_personal,
  80. .notifications_per_user {
  81. margin-bottom: 25px;
  82. }