Nenhuma Descrição

dialog.css 8.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. /*
  2. * Edited for compatibility with old TinyMCE 3.x plugins in WordPress.
  3. * More info: https://core.trac.wordpress.org/ticket/31596#comment:10
  4. */
  5. /* Generic */
  6. body {
  7. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  8. font-size:13px;
  9. background:#fcfcfc;
  10. padding:0;
  11. margin:8px 8px 0 8px;
  12. }
  13. textarea {resize:none;outline:none;}
  14. a:link, a:hover {
  15. color: #2B6FB6;
  16. }
  17. a:visited {
  18. color: #3C2BB6;
  19. }
  20. .nowrap {white-space: nowrap}
  21. /* Forms */
  22. form {margin: 0;}
  23. fieldset {margin:0; padding:4px; border:1px solid #dfdfdf; font-family:Verdana, Arial; font-size:10px;}
  24. legend {color:#2B6FB6; font-weight:bold;}
  25. label.msg {display:none;}
  26. label.invalid {color:#EE0000; display:inline;}
  27. input.invalid {border:1px solid #EE0000;}
  28. input {background:#FFF; border:1px solid #dfdfdf;}
  29. input, select, textarea {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;}
  30. input, select, textarea {border:1px solid #dfdfdf;}
  31. input.radio {border:1px none #000000; background:transparent; vertical-align:middle;}
  32. input.checkbox {border:1px none #000000; background:transparent; vertical-align:middle;}
  33. .input_noborder {border:0;}
  34. /* Buttons */
  35. #insert,
  36. #cancel,
  37. #apply,
  38. .mceActionPanel .button,
  39. input.mceButton,
  40. .updateButton {
  41. display: inline-block;
  42. text-decoration: none;
  43. border: 1px solid #adadad;
  44. margin: 0;
  45. padding: 0 10px 1px;
  46. font-size: 13px;
  47. height: 24px;
  48. line-height: 22px;
  49. color: #333;
  50. cursor: pointer;
  51. -webkit-border-radius: 3px;
  52. -webkit-appearance: none;
  53. border-radius: 3px;
  54. white-space: nowrap;
  55. -webkit-box-sizing: border-box;
  56. -moz-box-sizing: border-box;
  57. box-sizing: border-box;
  58. background: #fafafa;
  59. background-image: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#e9e9e9));
  60. background-image: -webkit-linear-gradient(top, #fafafa, #e9e9e9);
  61. background-image: -moz-linear-gradient(top, #fafafa, #e9e9e9);
  62. background-image: -o-linear-gradient(top, #fafafa, #e9e9e9);
  63. background-image: linear-gradient(to bottom, #fafafa, #e9e9e9);
  64. text-shadow: 0 1px 0 #fff;
  65. -webkit-box-shadow: inset 0 1px 0 #fff;
  66. -moz-box-shadow: inset 0 1px 0 #fff;
  67. box-shadow: inset 0 1px 0 #fff;
  68. }
  69. #insert {
  70. background: #2ea2cc;
  71. background: -webkit-gradient(linear, left top, left bottom, from(#2ea2cc), to(#1e8cbe));
  72. background: -webkit-linear-gradient(top, #2ea2cc 0%,#1e8cbe 100%);
  73. background: linear-gradient(top, #2ea2cc 0%,#1e8cbe 100%);
  74. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2ea2cc', endColorstr='#1e8cbe',GradientType=0 );
  75. border-color: #0074a2;
  76. -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.5);
  77. box-shadow: inset 0 1px 0 rgba(120,200,230,0.5);
  78. color: #fff;
  79. text-decoration: none;
  80. text-shadow: 0 1px 0 rgba(0,86,132,0.7);
  81. }
  82. #cancel:hover,
  83. input.mceButton:hover,
  84. .updateButton:hover,
  85. #cancel:focus,
  86. input.mceButton:focus,
  87. .updateButton:focus {
  88. background: #f3f3f3;
  89. background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f3f3f3));
  90. background-image: -webkit-linear-gradient(top, #fff, #f3f3f3);
  91. background-image: -moz-linear-gradient(top, #fff, #f3f3f3);
  92. background-image: -ms-linear-gradient(top, #fff, #f3f3f3);
  93. background-image: -o-linear-gradient(top, #fff, #f3f3f3);
  94. background-image: linear-gradient(to bottom, #fff, #f3f3f3);
  95. border-color: #999;
  96. color: #222;
  97. }
  98. #insert:hover,
  99. #insert:focus {
  100. background: #1e8cbe;
  101. background: -webkit-gradient(linear, left top, left bottom, from(#1e8cbe), to(#0074a2));
  102. background: -webkit-linear-gradient(top, #1e8cbe 0%,#0074a2 100%);
  103. background: linear-gradient(top, #1e8cbe 0%,#0074a2 100%);
  104. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e8cbe', endColorstr='#0074a2',GradientType=0 );
  105. border-color: #0074a2;
  106. -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6);
  107. box-shadow: inset 0 1px 0 rgba(120,200,230,0.6);
  108. color: #fff;
  109. }
  110. .mceActionPanel #insert {
  111. float: right;
  112. }
  113. /* Browse */
  114. a.pickcolor, a.browse {text-decoration:none}
  115. a.browse span {display:block; width:20px; height:18px; border:1px solid #FFF; margin-left:1px;}
  116. .mceOldBoxModel a.browse span {width:22px; height:20px;}
  117. a.browse:hover span {border:1px solid #0A246A; background-color:#B2BBD0;}
  118. a.browse span.disabled {border:1px solid white; opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30);}
  119. a.browse:hover span.disabled {border:1px solid white; background-color:transparent;}
  120. a.pickcolor span {display:block; width:20px; height:16px; margin-left:2px;}
  121. .mceOldBoxModel a.pickcolor span {width:21px; height:17px;}
  122. a.pickcolor:hover span {background-color:#B2BBD0;}
  123. div.iframecontainer {background: #fff;}
  124. /* Charmap */
  125. table.charmap {border:1px solid #AAA; text-align:center}
  126. td.charmap, #charmap a {width:18px; height:18px; color:#000; border:1px solid #AAA; text-align:center; font-size:12px; vertical-align:middle; line-height: 18px;}
  127. #charmap a {display:block; color:#000; text-decoration:none; border:0}
  128. #charmap a:hover {background:#CCC;color:#2B6FB6}
  129. #charmap #codeN {font-size:10px; font-family:Arial,Helvetica,sans-serif; text-align:center}
  130. #charmap #codeV {font-size:40px; height:80px; border:1px solid #AAA; text-align:center}
  131. #charmap #charmapView {background-color:#fff;}
  132. /* Source */
  133. .wordWrapCode {vertical-align:middle; border:1px none #000000; background:transparent;}
  134. .mceActionPanel {margin-top:5px;}
  135. /* Tabs classes */
  136. .tabs {width:100%; height:19px; line-height:normal; border-bottom: 1px solid #aaa;}
  137. .tabs ul {margin:0; padding:0; list-style:none;}
  138. .tabs li {float:left; border: 1px solid #aaa; margin:0 2px 0 0; padding:0 0 0 10px; line-height:17px; height:18px; display:block;}
  139. .tabs li.current {border-bottom: 1px solid #fff; margin-right:2px;}
  140. .tabs span {float:left; display:block; padding:0px 10px 0 0;}
  141. .tabs a {text-decoration:none; font-family:Verdana, Arial; font-size:10px;}
  142. .tabs a:link, .tabs a:visited, .tabs a:hover {color:black;}
  143. .wp-core-ui #tabs {
  144. padding-bottom: 5px;
  145. background-color: transparent;
  146. }
  147. .wp-core-ui #tabs a {
  148. padding: 6px 10px;
  149. margin: 0 2px;
  150. }
  151. /* Panels */
  152. .panel_wrapper div.panel {display:none;}
  153. .panel_wrapper div.current {display:block; width:100%; height:300px; overflow:visible;}
  154. .panel_wrapper {border:1px solid #919B9C; border-top:0px; padding:10px; padding-top:5px; clear:both; background:white;}
  155. /* Columns */
  156. .column {float:left;}
  157. .properties {width:100%;}
  158. .properties .column1 {}
  159. .properties .column2 {text-align:left;}
  160. /* Titles */
  161. h1, h2, h3, h4 {color:#2B6FB6; margin:0; padding:0; padding-top:5px;}
  162. h3 {font-size:14px;}
  163. .title {font-size:12px; font-weight:bold; color:#2B6FB6;}
  164. /* Dialog specific */
  165. #link .panel_wrapper, #link div.current {height:125px;}
  166. #image .panel_wrapper, #image div.current {height:200px;}
  167. #plugintable thead {font-weight:bold; background:#DDD;}
  168. #plugintable, #about #plugintable td {border:1px solid #919B9C;}
  169. #plugintable {width:96%; margin-top:10px;}
  170. #pluginscontainer {height:290px; overflow:auto;}
  171. #colorpicker #preview {display:inline-block; padding-left:40px; height:14px; border:1px solid black; margin-left:5px; margin-right: 5px}
  172. #colorpicker #previewblock {position: relative; top: -3px; padding-left:5px; padding-top: 0px; display:inline}
  173. #colorpicker #preview_wrapper {text-align:center; padding-top:4px; white-space: nowrap; float: right;}
  174. #colorpicker #insert, #colorpicker #cancel {width: 90px}
  175. #colorpicker #colors {float:left; border:1px solid gray; cursor:crosshair;}
  176. #colorpicker #light {border:1px solid gray; margin-left:5px; float:left;width:15px; height:150px; cursor:crosshair;}
  177. #colorpicker #light div {overflow:hidden;}
  178. #colorpicker .panel_wrapper div.current {height:175px;}
  179. #colorpicker #namedcolors {width:150px;}
  180. #colorpicker #namedcolors a {display:block; float:left; width:10px; height:10px; margin:1px 1px 0 0; overflow:hidden;}
  181. #colorpicker #colornamecontainer {margin-top:5px;}
  182. #colorpicker #picker_panel fieldset {margin:auto;width:325px;}
  183. /* Localization */
  184. body[dir="rtl"],
  185. body[dir="rtl"] fieldset,
  186. body[dir="rtl"] input, body[dir="rtl"] select, body[dir="rtl"] textarea,
  187. body[dir="rtl"] #charmap #codeN,
  188. body[dir="rtl"] .tabs a {
  189. font-family: Tahoma, sans-serif;
  190. }