Advertisement
cooked_owl

Untitled

Nov 24th, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. /*no comment arrows*/
  2. .commentlist > li:before {
  3. content: none;
  4. }
  5. .commentlist > li.bypostauthor:before {
  6. content: none;
  7. }
  8. /*1st level comments with thread*/
  9. .commentlist > li.comment{
  10. background: none repeat scroll 0 0 #f8f8f8/*#ffffff*/ /*transparent*/;
  11. /*border: medium none;*/
  12. border-top-style:none;
  13. border-bottom: none; /*1px solid #E7E7E7;*/
  14. border-right-style:none;
  15. border-left: 1px solid #DDDDDD;
  16. margin: 0.625em 0/*0 0 0.625em 0*/;
  17. padding: 0.5em 0.5em 0.5em 1em;
  18. }
  19. .commentlist .children li.comment .comment-content {
  20. margin: 1.625em 0 0;
  21. }
  22. .commentlist li.comment .comment-content {
  23. margin: 1.625em 0 0;
  24. }
  25. .commentlist .children li.comment .comment-content > p {
  26. margin-bottom: 0.625em !important;
  27. }
  28. .commentlist li.comment .comment-content > p{
  29. margin-bottom: 0.625em !important;
  30. }
  31. /*2nd level comments and further*/
  32. .commentlist .children li.comment{
  33. background: none repeat scroll 0 0 #f8f8f8/*#ffffff*/ /*transparent*/;
  34. padding: 0.5em 0.5em 0.5em 1em;
  35. margin: 0.625em 0/*.625em*/;
  36. border-left: 1px solid #DDDDDD;
  37. border-radius: 0 0 0 0;
  38. }
  39. /*Display commenter name inline with "says" for 2nd level comments*/
  40. .commentlist .children li.comment .fn {
  41. display: inline;
  42. }
  43. /*Author says dd/mm/YYYY at hh:mm block height*/
  44. .comment-meta {
  45. line-height: 1.625em !important;
  46. margin-left: 50px !important;
  47. }
  48. .comment-meta a {
  49. font-weight: normal;
  50. /*color: #373737;*/ /*Optional: same color for all contents of comment-meta*/
  51. }
  52. /*Avatars let's go*/
  53. .commentlist .children .avatar, .commentlist .avatar {
  54. left: 1.125em;
  55. top: 0.625em;
  56. }
  57. .commentlist {
  58. background: none repeat scroll 0 0 #ffffff;
  59. width: 100%;
  60. }
  61. a.comment-reply-link > span {
  62. display: none;
  63. }
  64. /*Leave a comment form*/
  65. #respond{
  66. background: none repeat scroll 0 0 transparent;
  67. border: medium none;
  68. width: 100%;
  69. padding: 1.625em 0 0 0;
  70. }
  71. #respond input[type="text"], #respond textarea {
  72. background: none repeat scroll 0 0 #ffffff;
  73. border: 3px solid #EEEEEE;
  74. border-radius: 3px 3px 3px 3px;
  75. /*box-shadow: 0 1px 3px rgba(204, 204, 204, 0.95) inset;*/
  76. padding: 0.5em;
  77. position: relative;
  78. text-indent: 0;
  79. }
  80. #respond input[type="text"] {
  81. width: 95%;
  82. }
  83. /* Red * position*/
  84. #respond .comment-form-author .required, #respond .comment-form-email .required {
  85. left: 95%;
  86. top: 35px;
  87. z-index: 1;
  88. }
  89. #respond .comment-form-author label, #respond .comment-form-email label, #respond .comment-form-url label, #respond .comment-form-comment label {
  90. background: none repeat scroll 0 0 #ffffff;
  91. box-shadow: none;
  92. color: #555555;
  93. left: 4px;
  94. min-width: 0;
  95. padding: 0 0.5em;
  96. /*margin: 0.5em 0 0 !important;*/
  97. position: static;
  98. z-index: 1;
  99. }
  100. #respond input#submit {
  101. position: static;
  102. }
  103. #respond p {
  104. margin: 0.2em 0 0;
  105. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement