css.php 2.7 KB

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