You are here

privatemsg-view.css in Privatemsg 6.2

Same filename and directory in other branches
  1. 6 styles/privatemsg-view.css
.privatemsg-message {
  width: 100%;
  max-width: 1000px;
}

.privatemsg-author-avatar {
  float: left;
  width: 20%;
  padding-top: 2px;
  text-align: center;
}

.privatemsg-message-column {
  float: right;
  overflow: visible;
  width: 78%;
  margin-bottom: 10px;
}

div.privatemsg-message-information {
  border-bottom: 1px solid #C5C5C5;
  width: 100%;
  margin-bottom: 5px;
}

.privatemsg-author-name {
  font-weight: bold;
  padding-right: 1em;
  font-size: 80%;
}
.privatemsg-message-date {
  color: #777777;
  padding-right: 1em;
  font-size: 80%;
}
.privatemsg-message-body {
  padding : 0;
  overflow : visible;
  margin-left: 10px;
}

.privatemsg-view-pager {
  margin: 20px 0 20px 0;
  padding-left: 0;
  max-width: 300px;
}

div.privatemsg-message ul.privatemsg-message-actions {
  padding: 0;
}

p.privatemsg-token-notice {
  font-size: 80%;
  font-style: italic;
}

span.privatemsg-token-invalid {
  color: red;
}

span.privatemsg-token-valid {
  font-weight: bold;
}

span.privatemsg-message-new {
  float: right;
  font-size: 80%;
  font-weight:bold;
}

/*** Theme specific ****/

span.privatemsg-message-new {
  color: red;
}

/* #content is required to be more explicit than bartik */
#content h2.privatemsg-reply {
  margin-bottom: 10px;
}

div.privatemsg-message {
  padding: 5px;
}

div.privatemsg-message-new {
  background-color: #FFF5F5;
}

/**
 * Markup free clearing. Backported from Drupal 7.
 *
 * @see http://perishablepress.com/press/2009/12/06/new-clearfix-hack
 */
.privatemsg-clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
/* IE6 */
* html .privatemsg-clearfix {
  height: 1%;
}
/* IE7 */
*:first-child + html .privatemsg-clearfix {
  min-height: 1%;
}

File

styles/privatemsg-view.css
View source
  1. .privatemsg-message {
  2. width: 100%;
  3. max-width: 1000px;
  4. }
  5. .privatemsg-author-avatar {
  6. float: left;
  7. width: 20%;
  8. padding-top: 2px;
  9. text-align: center;
  10. }
  11. .privatemsg-message-column {
  12. float: right;
  13. overflow: visible;
  14. width: 78%;
  15. margin-bottom: 10px;
  16. }
  17. div.privatemsg-message-information {
  18. border-bottom: 1px solid #C5C5C5;
  19. width: 100%;
  20. margin-bottom: 5px;
  21. }
  22. .privatemsg-author-name {
  23. font-weight: bold;
  24. padding-right: 1em;
  25. font-size: 80%;
  26. }
  27. .privatemsg-message-date {
  28. color: #777777;
  29. padding-right: 1em;
  30. font-size: 80%;
  31. }
  32. .privatemsg-message-body {
  33. padding : 0;
  34. overflow : visible;
  35. margin-left: 10px;
  36. }
  37. .privatemsg-view-pager {
  38. margin: 20px 0 20px 0;
  39. padding-left: 0;
  40. max-width: 300px;
  41. }
  42. div.privatemsg-message ul.privatemsg-message-actions {
  43. padding: 0;
  44. }
  45. p.privatemsg-token-notice {
  46. font-size: 80%;
  47. font-style: italic;
  48. }
  49. span.privatemsg-token-invalid {
  50. color: red;
  51. }
  52. span.privatemsg-token-valid {
  53. font-weight: bold;
  54. }
  55. span.privatemsg-message-new {
  56. float: right;
  57. font-size: 80%;
  58. font-weight:bold;
  59. }
  60. /*** Theme specific ****/
  61. span.privatemsg-message-new {
  62. color: red;
  63. }
  64. /* #content is required to be more explicit than bartik */
  65. #content h2.privatemsg-reply {
  66. margin-bottom: 10px;
  67. }
  68. div.privatemsg-message {
  69. padding: 5px;
  70. }
  71. div.privatemsg-message-new {
  72. background-color: #FFF5F5;
  73. }
  74. /**
  75. * Markup free clearing. Backported from Drupal 7.
  76. *
  77. * @see http://perishablepress.com/press/2009/12/06/new-clearfix-hack
  78. */
  79. .privatemsg-clearfix:after {
  80. content: ".";
  81. display: block;
  82. height: 0;
  83. clear: both;
  84. visibility: hidden;
  85. }
  86. /* IE6 */
  87. * html .privatemsg-clearfix {
  88. height: 1%;
  89. }
  90. /* IE7 */
  91. *:first-child + html .privatemsg-clearfix {
  92. min-height: 1%;
  93. }