webform-admin.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /**
  2. * @file
  3. * Styles that are used when viewing results or modifying webform settings.
  4. */
  5. /* Submission view page */
  6. .webform-submission-info {
  7. padding: 10px;
  8. }
  9. .webform-submission-info .user-picture {
  10. float: right;
  11. margin-left: 10px;
  12. }
  13. .webform-submission-info-text {
  14. overflow: hidden;
  15. }
  16. .webform-submission-actions {
  17. float: left;
  18. }
  19. .webform-submission-navigation {
  20. text-align: right;
  21. }
  22. .webform-submission-next {
  23. margin-left: 20px;
  24. }
  25. /* Element for selecting components, i.e. included components for e-mails. */
  26. .webform-component-select-wrapper {
  27. max-height: 300px;
  28. overflow: auto;
  29. }
  30. .webform-component-select-table table {
  31. margin: 0;
  32. }
  33. .webform-component-select-table tr.selected td,
  34. .webform-component-select-table tr.selected td.active {
  35. background: inherit;
  36. color: inherit;
  37. }
  38. .form-item .webform-component-select-table .description {
  39. font-size: inherit;
  40. }
  41. .form-item .webform-component-select-table input {
  42. width: 12px;
  43. height: 12px;
  44. margin: 0 2px 2px;
  45. }
  46. .webform-select-list-format table {
  47. border: 1px solid;
  48. width: auto;
  49. font-size: 90%;
  50. }
  51. .webform-select-list-format td,
  52. .webform-select-list-format th {
  53. border: 1px solid;
  54. }
  55. tr.webform-pagebreak td {
  56. border-top: 2px dotted #999;
  57. }
  58. td.webform-pagebreak {
  59. font-weight: bold;
  60. }
  61. /* Special theming for the options element widget (if installed) */
  62. .webform-options-element thead {
  63. display: none;
  64. }
  65. .webform-options-element fieldset {
  66. border: none;
  67. background: none;
  68. margin: 0;
  69. padding: 0;
  70. }
  71. .webform-options-element fieldset legend {
  72. display: none;
  73. }
  74. /* Checkboxes for allowed file extensions */
  75. table.webform-file-extensions td {
  76. vertical-align: top;
  77. }
  78. table.webform-file-extensions td .description {
  79. white-space: normal;
  80. }
  81. table.webform-file-extensions .form-type-checkbox {
  82. width: 5em;
  83. float: left;
  84. }
  85. table.webform-file-extensions input.form-text {
  86. width: 95%;
  87. }
  88. /* General styles */
  89. .webform-checkbox {
  90. text-align: center;
  91. width: 40px;
  92. }
  93. .webform-container-inline div,
  94. .webform-container-inline div.form-item {
  95. display: inline;
  96. }
  97. .webform-default-value {
  98. color: #999;
  99. }
  100. .webform-results-per-page a.selected {
  101. font-weight: bold;
  102. }
  103. /* Display of adding/editing components */
  104. html.js fieldset.webform-position,
  105. html.js div.webform-position {
  106. display: none;
  107. }
  108. tr.webform-add-form .tabledrag-changed {
  109. display: none;
  110. }
  111. #webform-components tr.webform-add-form {
  112. background-color: inherit;
  113. }