Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.49 KB | None | 0 0
  1. #top > section > form > table > tbody {
  2. display: flex;
  3. flex-direction: column;
  4. }
  5.  
  6. tr[data-field="options"] {
  7. order: 1;
  8. }
  9.  
  10. tr[data-field="message"] {
  11. order: 2;
  12. }
  13.  
  14. tr[data-field="captcha"] {
  15. order: 3;
  16. }
  17.  
  18. tr[data-field="file"] {
  19. order: 4;
  20. }
  21.  
  22. tr[data-field="password"] {
  23. height: 29px;
  24. order: 5;
  25. }
  26.  
  27. tr[data-field="file"],
  28. tr[data-field="options"] {
  29. height: 30px;
  30. }
  31.  
  32. section.post .captcha.classiccaptcha input[type=text] {
  33. height: 29px;
  34. line-height: 29px;
  35. padding: 0 8px;
  36. }
  37.  
  38. section.post table tr.captcha > td {
  39. display: inline;
  40. }
  41.  
  42. section.post table tr td > input[type="file"] {
  43. padding: 4px 8px;
  44. }
  45.  
  46. section.post table tr td > textarea {
  47. padding: 8px;
  48. }
  49.  
  50. section.post table tr th label {
  51. padding: 0 8px;
  52. }
  53.  
  54. section.post table tr th label,
  55. section.post table tr td > input[type=checkbox] + label[for] {
  56. font-size: 14px;
  57. height: 29px;
  58. line-height: 29px;
  59. }
  60.  
  61. section.post table tr td > input[type=checkbox] + label[for] {
  62. margin: 0 0 0 1px;
  63. padding: 0;
  64. width: 29px;
  65. }
  66.  
  67. section.post table tr td > input[type=checkbox] + label[for="optionspoiler"] {
  68. margin-left: -2px;
  69. }
  70.  
  71. section.post input[type=submit] {
  72. background-color: transparent;
  73. border: 0;
  74. bottom: 1px;
  75. box-shadow: none;
  76. height: 29px;
  77. line-height: 29px;
  78. padding: 0 8px!important;
  79. right: 1px;
  80. z-index: 11;
  81. }
  82.  
  83. section.post input.fast[type=submit] {
  84. right: 31px;
  85. }
  86.  
  87. section.post aside.closeQuick {
  88. border: 0;
  89. bottom: 1px;
  90. font-size: 14px;
  91. height: 29px;
  92. line-height: 29px;
  93. right: 1px!important;
  94. width: 29px;
  95. z-index: 11;
  96. }
  97.  
  98. section.post aside.closeFast {
  99. background-color: transparent;
  100. border-bottom: 0;
  101. box-shadow: none;
  102. font-size: 14px;
  103. height: 29px;
  104. left: unset;
  105. line-height: 29px;
  106. padding: 0;
  107. right: 1px;
  108. top: 1px;
  109. width: 29px;
  110. z-index: 11;
  111. }
  112.  
  113. section.post aside.moveFast {
  114. border-left: 0;
  115. font-size: 14px;
  116. height: 29px;
  117. left: 127px;
  118. line-height: 29px;
  119. right: 31px;
  120. top: 1px;
  121. width: calc(100% - 158px);
  122. z-index: 11;
  123. }
  124.  
  125. section.post table tr td > input[type=password] {
  126. height: 29px;
  127. line-height: 29px;
  128. margin-left: 1px;
  129. padding: 0 4px;
  130. width: 76px;
  131. }
  132.  
  133. /*
  134. section.post table tr td > input[type=checkbox] + label[for]:hover,
  135. section.post input[type=submit]:hover,
  136. section.post aside.closeQuick:hover,
  137. section.post aside.closeFast:hover,
  138. section.post aside.moveFast:hover {
  139. color: red;
  140. }
  141. */
  142. section.search table tr td input[type="text"],
  143. section.search table tr td input[type="number"] {
  144. background-color: transparent;
  145. padding: 0 8px;
  146. }
  147.  
  148. section.search table tr th label {
  149. width: 72px;
  150. padding: 0 8px;
  151. }
  152.  
  153. section.search table tr td label {
  154. margin-right: -2px;
  155. width: 44px;
  156. text-align: center;
  157. padding: 0 6px;
  158. }
  159.  
  160. section.search table tr {
  161. height: 29px;
  162. line-height: 29px;
  163. }
  164.  
  165. section.search table tr:last-of-type {
  166. height: 29px;
  167. }
  168.  
  169. section.search table tr td input[type="text"],
  170. section.search table tr td input[type="number"],
  171. section.search table tr th label,
  172. section.search table tr td label {
  173. height: 29px;
  174. line-height: 29px;
  175. }
  176.  
  177. section.search input[type=submit] {
  178. background-color: transparent;
  179. border-top: 0;
  180. bottom: 0;
  181. box-shadow: none;
  182. height: 29px;
  183. line-height: 29px;
  184. padding-right: 8px;
  185. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement