poll.css 809 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .poll {
  2. overflow: hidden;
  3. }
  4. .poll .bar {
  5. height: 1em;
  6. margin: 1px 0;
  7. background-color: #ddd;
  8. }
  9. .poll .bar .foreground {
  10. background-color: #000;
  11. height: 1em;
  12. float: left; /* LTR */
  13. }
  14. .poll .links {
  15. text-align: center;
  16. }
  17. .poll .percent {
  18. text-align: right; /* LTR */
  19. }
  20. .poll .total {
  21. text-align: center;
  22. }
  23. .poll .vote-form {
  24. text-align: center;
  25. }
  26. .poll .vote-form .choices {
  27. text-align: left; /* LTR */
  28. margin: 0 auto;
  29. display: table;
  30. }
  31. .poll .vote-form .choices .title {
  32. font-weight: bold;
  33. }
  34. .node-form #edit-poll-more {
  35. margin: 0;
  36. }
  37. .node-form #poll-choice-table .form-text {
  38. display: inline;
  39. width: auto;
  40. }
  41. .node-form #poll-choice-table td.choice-flag {
  42. white-space: nowrap;
  43. width: 4em;
  44. }
  45. td.poll-chtext {
  46. width: 80%;
  47. }
  48. td.poll-chvotes .form-text {
  49. width: 85%;
  50. }