You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

109 lines
1.7 KiB

14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
  1. /* TODO: this file is not up to the best standards and will be fixed after an overhaul of the form code */
  2. /**
  3. * This file provides styles for forms in general and specifically
  4. * for ?do=
  5. * - login
  6. * - resendpwd
  7. * - register
  8. * - profile
  9. * - subscribe
  10. */
  11. /* ---------------- forms ------------------------ */
  12. .dokuwiki form {
  13. border: none;
  14. display: inline;
  15. }
  16. .dokuwiki label.block {
  17. display: block;
  18. text-align: right;
  19. font-weight: bold;
  20. }
  21. [dir=rtl] .dokuwiki label.block {
  22. text-align: left;
  23. }
  24. .dokuwiki label.simple {
  25. display: block;
  26. text-align: left;
  27. font-weight: normal;
  28. }
  29. [dir=rtl] .dokuwiki label.simple {
  30. text-align: right;
  31. }
  32. .dokuwiki label.block select,
  33. .dokuwiki label.block input.edit {
  34. width: 50%;
  35. }
  36. .dokuwiki label span {
  37. vertical-align: middle;
  38. }
  39. .dokuwiki fieldset {
  40. width: 400px;
  41. text-align: center;
  42. border: 1px solid __border__;
  43. padding: 0.5em;
  44. margin: auto;
  45. }
  46. .dokuwiki input.edit,
  47. .dokuwiki select.edit {
  48. vertical-align: middle;
  49. }
  50. .dokuwiki select.edit {
  51. padding: 0.1em 0;
  52. }
  53. .dokuwiki input.button,
  54. .dokuwiki button.button {
  55. vertical-align: middle;
  56. }
  57. /**
  58. * Styles for auth forms
  59. */
  60. #dw__login label[for="remember__me"] {
  61. margin-left: 50%;
  62. margin-bottom: 1.4em;
  63. }
  64. #dw__login fieldset,
  65. #dw__resendpwd fieldset,
  66. #dw__register fieldset {
  67. padding-bottom: 0.7em;
  68. }
  69. #dw__profiledelete {
  70. display: block;
  71. margin-top: 2.8em;
  72. }
  73. /**
  74. * Styles for the subscription page
  75. */
  76. #subscribe__form {
  77. display: block;
  78. width: 400px;
  79. text-align: center;
  80. }
  81. #subscribe__form fieldset {
  82. text-align: left;
  83. margin: 0.5em 0;
  84. }
  85. [dir=rtl] #subscribe__form fieldset {
  86. text-align: right;
  87. }
  88. #subscribe__form label {
  89. display: block;
  90. margin: 0 0.5em 0.5em;
  91. }