css.php 833 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. /**
  3. * Elgg Messages CSS
  4. *
  5. * @package ElggMessages
  6. */
  7. ?>
  8. .messages-container {
  9. min-height: 200px;
  10. }
  11. .message.unread a {
  12. color: #D40005;
  13. }
  14. .messages-buttonbank {
  15. text-align: right;
  16. }
  17. .messages-buttonbank input {
  18. margin-left: 10px;
  19. }
  20. /*** message metadata ***/
  21. .messages-owner {
  22. float: left;
  23. width: 20%;
  24. margin-right: 2%;
  25. }
  26. .messages-subject {
  27. float: left;
  28. width: 55%;
  29. margin-right: 2%;
  30. }
  31. .messages-timestamp {
  32. float: left;
  33. width: 14%;
  34. margin-right: 2%;
  35. }
  36. .messages-delete {
  37. float: left;
  38. width: 5%;
  39. }
  40. /*** topbar icon ***/
  41. .messages-new {
  42. color: #FFF;
  43. background-color: #FF0000;
  44. border-radius: 10px;
  45. box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.50);
  46. position: absolute;
  47. text-align: center;
  48. line-height: 14px;
  49. top: 4px;
  50. left: 26px;
  51. min-width: 16px;
  52. height: 16px;
  53. font-size: 10px;
  54. font-weight: bold;
  55. }