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.
 
 
 
 
 

101 lines
2.2 KiB

  1. /* Success message */
  2. .dokuwiki div.bureaucracy__plugin {
  3. width: 50%;
  4. font-size: 120%;
  5. padding: 2em;
  6. }
  7. /* Form */
  8. .dokuwiki form.bureaucracy__plugin {
  9. width: 100%;
  10. text-align: center;
  11. margin: 2em 0;
  12. display: block;
  13. }
  14. .dokuwiki form.bureaucracy__plugin p {
  15. font-size: 90%;
  16. margin-top: 0.5em;
  17. }
  18. .dokuwiki form.bureaucracy__plugin fieldset {
  19. width: 80%;
  20. text-align: left;
  21. margin-top: 0.5em;
  22. margin-bottom: 0.5em;
  23. }
  24. .dokuwiki form.bureaucracy__plugin label {
  25. display: block;
  26. text-align: right;
  27. line-height: 2em;
  28. }
  29. .dokuwiki form.bureaucracy__plugin label>span {
  30. display: inline-block;
  31. width: 47%;
  32. line-height: normal;
  33. }
  34. .dokuwiki form.bureaucracy__plugin label.textareafield {
  35. text-align: left;
  36. }
  37. .dokuwiki form.bureaucracy__plugin label.textareafield>span {
  38. width: 100%;
  39. }
  40. .dokuwiki form.bureaucracy__plugin label input.edit,
  41. .dokuwiki form.bureaucracy__plugin label select {
  42. width: 50%;
  43. }
  44. .dokuwiki form.bureaucracy__plugin label input.datepicker,
  45. .dokuwiki form.bureaucracy__plugin label input.timefield {
  46. width: 25%;
  47. margin-right: 25%;
  48. }
  49. .dokuwiki form.bureaucracy__plugin label textarea.edit {
  50. width: 100%;
  51. }
  52. .dokuwiki form.bureaucracy__plugin label input[type=checkbox] {
  53. width: 5%;
  54. margin-right: 45%;
  55. }
  56. .dokuwiki form.bureaucracy__plugin input.button {
  57. margin: 3px 0 3px 50%;
  58. display: block;
  59. }
  60. .dokuwiki form.bureaucracy__plugin label.radiolabel span{
  61. width: 100%;
  62. text-align: left;
  63. }
  64. .dokuwiki form.bureaucracy__plugin label input[type=radio]~span {
  65. width: 50%;
  66. display: inline-block;
  67. text-align: left;
  68. line-height: normal;
  69. }
  70. .dokuwiki form.bureaucracy__plugin label.bureaucracy_error span {
  71. color: #F00;
  72. }
  73. .dokuwiki form.bureaucracy__plugin #plugin__captcha_wrapper label {
  74. text-align: left;
  75. }
  76. /*responsive - small screen*/
  77. @media (max-width: 480px) {
  78. .dokuwiki form.bureaucracy__plugin label {
  79. text-align: left;
  80. }
  81. .dokuwiki form.bureaucracy__plugin label>span {
  82. width: 100%;
  83. }
  84. .dokuwiki form.bureaucracy__plugin input.button {
  85. margin-left: 0;
  86. }
  87. .dokuwiki form.bureaucracy__plugin label .edit,
  88. .dokuwiki form.bureaucracy__plugin label select {
  89. width: 100% !important;
  90. }
  91. }