notification.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #notifications-drawer.show-read .notification.read {
  2. display: flex;
  3. }
  4. #notifications-drawer .notification {
  5. display: flex;
  6. float: none;
  7. padding: 15px 8px 8px;
  8. color: #000;
  9. border-bottom: 1px solid #dbdbdb;
  10. }
  11. #notifications-drawer .notification.read {
  12. display: none;
  13. }
  14. #notifications-drawer .notification .read-status {
  15. width: 30px;
  16. padding: 0px 10px 0px 0px;
  17. }
  18. #notifications-drawer .notification .read-status input {
  19. width: 24px;
  20. height: 24px;
  21. }
  22. #notifications-drawer .notification .read-status .activity-type {
  23. margin: 16px 0 0;
  24. width: 17px;
  25. height: 17px;
  26. font-size: 17px;
  27. display: block;
  28. color: #bbb;
  29. }
  30. #notifications-drawer .notification .details .activity a.member {
  31. margin: 0px 0px 0px 0px;
  32. padding: 0px;
  33. }
  34. #notifications-drawer .notification .details .activity a.member svg {
  35. padding: 3px;
  36. }
  37. #notifications-drawer .notification .details .activity .activity-desc {
  38. margin: 0px 0px 0px 5px;
  39. }
  40. #notifications-drawer .notification .details .activity .activity-comment {
  41. display: block;
  42. width: 100%;
  43. border-radius: 3px;
  44. background: #fff;
  45. text-decoration: none;
  46. box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  47. margin-top: 5px;
  48. padding: 5px;
  49. }
  50. #notifications-drawer .notification .details .activity .activity-meta {
  51. display: block;
  52. font-size: 0.8em;
  53. color: #999;
  54. font-style: italic;
  55. }
  56. #notifications-drawer .notification .remove a:hover {
  57. color: #eb4646 !important;
  58. }
  59. @media screen and (max-width: 800px) {
  60. #notifications-drawer .notification {
  61. height: auto;
  62. }
  63. #notifications-drawer .notification .details .activity a.member {
  64. height: 36px;
  65. width: 36px;
  66. }
  67. }