You are here

feedback.css in Feedback 6.2

Same filename and directory in other branches
  1. 5.2 feedback.css
  2. 7.2 feedback.css
/* Reset commonly set styles */
#block-feedback-form,
#block-feedback-form .feedback-link,
#block-feedback-form .feedback-link *,
#block-feedback-form .content,
#block-feedback-form form,
#block-feedback-form form label {
  float: none;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  color: inherit;
}


#block-feedback-form {
  display: none;
  position: fixed;
  bottom: 60px;
  right: 20px;
  overflow: hidden;
  z-index: 10;
}
/* IE6 seems to be unable to handle fixed */
* html #block-feedback-form {
  position: absolute;
}
#block-feedback-form .feedback-link {
  padding: 0.3em 0;
  text-align: right;
  font-size: 12px;
}
#block-feedback-form .feedback-link * {
  display: inline;
  font-size: 12px;
}
#block-feedback-form form {
  border: 1px solid #ccc;
  padding: 6px;
  background-color: #fff;
  opacity: 0.9;
  max-width: 200px;
}
/* IE6 doesn't support max-width. */
* html #block-feedback-form form {
  width: 200px;
}
#block-feedback-form .feedback-help {
  margin: 0 0 0.5em;
  font-size: 10px;
  line-height: normal;
}
#block-feedback-form .feedback-submitted {
  margin-top: 0.2em;
  font-size: 10px;
}
#block-feedback-form .form-textarea {
  width: 97%;
}
#block-feedback-form .feedback-message {
  height: 10ex;
}
#block-feedback-form .resizable-textarea .grippie {
  width: 204px;
}
/* IE6 fails to render textarea with full width */
* html #block-feedback-form .resizable-textarea textarea {
  width: 200px;
}
#block-feedback-form #feedback-throbber {
  height: 20px;
}
#block-feedback-form .throbbing {
  background: url(images/throbber.gif) no-repeat left center;
}
#block-feedback-form #feedback-submit {
  margin: 0;
}

File

feedback.css
View source
  1. /* Reset commonly set styles */
  2. #block-feedback-form,
  3. #block-feedback-form .feedback-link,
  4. #block-feedback-form .feedback-link *,
  5. #block-feedback-form .content,
  6. #block-feedback-form form,
  7. #block-feedback-form form label {
  8. float: none;
  9. margin: 0;
  10. padding: 0;
  11. border: 0;
  12. font-size: 100%;
  13. font-weight: normal;
  14. color: inherit;
  15. }
  16. #block-feedback-form {
  17. display: none;
  18. position: fixed;
  19. bottom: 60px;
  20. right: 20px;
  21. overflow: hidden;
  22. z-index: 10;
  23. }
  24. /* IE6 seems to be unable to handle fixed */
  25. * html #block-feedback-form {
  26. position: absolute;
  27. }
  28. #block-feedback-form .feedback-link {
  29. padding: 0.3em 0;
  30. text-align: right;
  31. font-size: 12px;
  32. }
  33. #block-feedback-form .feedback-link * {
  34. display: inline;
  35. font-size: 12px;
  36. }
  37. #block-feedback-form form {
  38. border: 1px solid #ccc;
  39. padding: 6px;
  40. background-color: #fff;
  41. opacity: 0.9;
  42. max-width: 200px;
  43. }
  44. /* IE6 doesn't support max-width. */
  45. * html #block-feedback-form form {
  46. width: 200px;
  47. }
  48. #block-feedback-form .feedback-help {
  49. margin: 0 0 0.5em;
  50. font-size: 10px;
  51. line-height: normal;
  52. }
  53. #block-feedback-form .feedback-submitted {
  54. margin-top: 0.2em;
  55. font-size: 10px;
  56. }
  57. #block-feedback-form .form-textarea {
  58. width: 97%;
  59. }
  60. #block-feedback-form .feedback-message {
  61. height: 10ex;
  62. }
  63. #block-feedback-form .resizable-textarea .grippie {
  64. width: 204px;
  65. }
  66. /* IE6 fails to render textarea with full width */
  67. * html #block-feedback-form .resizable-textarea textarea {
  68. width: 200px;
  69. }
  70. #block-feedback-form #feedback-throbber {
  71. height: 20px;
  72. }
  73. #block-feedback-form .throbbing {
  74. background: url(images/throbber.gif) no-repeat left center;
  75. }
  76. #block-feedback-form #feedback-submit {
  77. margin: 0;
  78. }