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.
 
 
 
 
 

157 lines
3.5 KiB

  1. /**
  2. * This file provides styles for config manager
  3. */
  4. /* + + + + + config__manager + + + + + */
  5. #dokuwiki__content {
  6. #config__manager {
  7. fieldset {
  8. min-width: 100%;
  9. overflow-x: auto;
  10. box-sizing: border-box;
  11. background-color: @background_darker;
  12. margin-left: 0;
  13. margin-right: 0;
  14. }
  15. .selectiondefault {
  16. background-color: transparent;
  17. color: inherit;
  18. }
  19. tr {
  20. .input {
  21. background-color: transparent;
  22. color: inherit;
  23. }
  24. &:hover {
  25. td {
  26. color: inherit;
  27. }
  28. }
  29. }
  30. tr.default {
  31. .input {
  32. background-color: transparent;
  33. }
  34. }
  35. td.label {
  36. padding: .8em 0 1.2em 1em;
  37. span.outkey {
  38. background-color: @ini_background;
  39. color: inherit;
  40. font-size: (@font-size-small - .06);
  41. font-weight: bold;
  42. padding: 0 @very-small-spacing;
  43. a {
  44. font-size: inherit;
  45. }
  46. }
  47. label {
  48. line-height: @line-height-big;
  49. }
  50. }
  51. }
  52. }
  53. /* + + + + + + + + + + + + + + + + + + + + + + + + + + */
  54. /* max-width: 1024px */
  55. @media @screen_max-md {
  56. #dokuwiki__content {
  57. #config__manager {
  58. td {
  59. &.label {
  60. label,
  61. span {
  62. font-size: @font-size-small;
  63. }
  64. }
  65. &.label + td {
  66. font-size: @font-size-small;
  67. span {
  68. font-size: inherit;
  69. }
  70. }
  71. select,
  72. input.edit {
  73. font-size: @font-size-small;
  74. }
  75. }
  76. .selectiondefault {
  77. label {
  78. font-size: @font-size-small;
  79. }
  80. }
  81. }
  82. }
  83. }
  84. /* + + + + + + + + + + + + + + + + + + + + + + + + + + */
  85. /* max-width: 768px */
  86. @media @screen_max-sm {
  87. #dokuwiki__content {
  88. #config__manager {
  89. table {
  90. border-top: 0 none;
  91. }
  92. td {
  93. padding-top: 0;
  94. &.label {
  95. display: block;
  96. width: 100%;
  97. border: 0 none;
  98. border-top: 1px solid @ini_border;
  99. border-bottom: 0 none;
  100. padding: .8em .5em .3em;
  101. span.outkey {
  102. margin-left: 0;
  103. }
  104. }
  105. .input {
  106. width: 100%;
  107. }
  108. &.value,
  109. &.label + td {
  110. display: block;
  111. width: 100%;
  112. border: 0 none;
  113. margin-bottom: 1.2rem;
  114. }
  115. select,
  116. input.edit {
  117. width: 100%;
  118. text-overflow: ellipsis;
  119. }
  120. }
  121. .selectiondefault {
  122. float: none;
  123. max-width: 100%;
  124. width: auto;
  125. label {
  126. width: 90%;
  127. }
  128. }
  129. }
  130. }
  131. }