notification-box.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /* Notifications List */
  2. .notifications-box {
  3. border: #ddd solid 1px;
  4. }
  5. .notifications-box li {
  6. line-height: 26px;
  7. position: relative;
  8. padding: 10px;
  9. border-bottom: #ebebeb solid 1px;
  10. }
  11. .notifications-box li .notification-text {
  12. float: left;
  13. }
  14. .notifications-box li:last-child {
  15. border-bottom: 0;
  16. }
  17. .notifications-box li .icon-notification {
  18. line-height: 26px;
  19. float: left;
  20. width: 26px;
  21. height: 26px;
  22. margin: 0 10px 0 0;
  23. text-align: center;
  24. border-radius: 50px;
  25. }
  26. .notifications-box li .notification-time {
  27. font-size: 11px;
  28. font-style: italic;
  29. float: right;
  30. margin: 0 5px 0 10px;
  31. color: #a9a9a9;
  32. }
  33. .notifications-box li .notification-time .glyph-icon {
  34. margin-left: 3px;
  35. }
  36. /* Alternate */
  37. .notifications-box.notifications-box-alt {
  38. text-align: left;
  39. border: 0;
  40. }
  41. .notifications-box-alt li {
  42. line-height: inherit;
  43. padding: 15px 10px;
  44. border-bottom: #232323 solid 1px;
  45. }
  46. .notifications-box-alt li .notification-btn {
  47. position: absolute;
  48. top: 50%;
  49. right: 0;
  50. margin-top: -11px;
  51. }
  52. .sb-slidebar .notifications-box-alt li .notification-btn {
  53. right: 10px;
  54. }
  55. .notifications-box-alt li:first-child {
  56. padding-top: 5px;
  57. }
  58. .notifications-box-alt li:last-child {
  59. padding-bottom: 5px;
  60. border-bottom: 0;
  61. }
  62. .notifications-box-alt li .notification-text {
  63. font-size: 11px;
  64. display: block;
  65. float: none;
  66. margin-top: -1px;
  67. margin-bottom: 1px;
  68. }
  69. .notifications-box-alt li .notification-time {
  70. font-size: 10px;
  71. float: none;
  72. }