Advertisement
Guest User

okienko postowania

a guest
Apr 24th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 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 table tr td > input[type=checkbox]:checked + label[for] {
  72. background-color: transparent;
  73. font-weight: 700;
  74. }
  75.  
  76. section.post input[type=submit] {
  77. background-color: transparent;
  78. border: 0;
  79. bottom: 1px;
  80. box-shadow: none;
  81. height: 29px;
  82. line-height: 29px;
  83. padding: 0 8px!important;
  84. right: 1px;
  85. z-index: 11;
  86. }
  87.  
  88. section.post input.fast[type=submit] {
  89. right: 31px;
  90. }
  91.  
  92. section.post aside.closeQuick {
  93. border: 0;
  94. bottom: 1px;
  95. font-size: 14px;
  96. height: 29px;
  97. line-height: 29px;
  98. right: 1px!important;
  99. width: 29px;
  100. z-index: 11;
  101. }
  102.  
  103. section.post aside.closeFast {
  104. background-color: transparent;
  105. border-bottom: 0;
  106. box-shadow: none;
  107. font-size: 14px;
  108. height: 29px;
  109. left: unset;
  110. line-height: 29px;
  111. padding: 0;
  112. right: 1px;
  113. top: 1px;
  114. width: 29px;
  115. z-index: 11;
  116. }
  117.  
  118. section.post aside.moveFast {
  119. border-left: 0;
  120. font-size: 14px;
  121. height: 29px;
  122. left: 127px;
  123. line-height: 29px;
  124. right: 31px;
  125. top: 1px;
  126. width: calc(100% - 158px);
  127. z-index: 11;
  128. }
  129.  
  130. section.post table tr td > input[type=password] {
  131. height: 29px;
  132. line-height: 29px;
  133. margin-left: 1px;
  134. padding: 0 4px;
  135. width: 76px;
  136. }
  137. /*
  138. section.post table tr td > input[type=checkbox] + label[for]:hover,
  139. section.post input[type=submit]:hover,
  140. section.post aside.closeQuick:hover,
  141. section.post aside.closeFast:hover,
  142. section.post aside.moveFast:hover {
  143. color: red;
  144. }
  145. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement