Ticket #22862: 22862.diff
File 22862.diff, 695.1 KB (added by , 12 years ago) |
---|
-
new file wp-admin/css/less/mixins.less
diff --git a/wp-admin/css/less/mixins.less b/wp-admin/css/less/mixins.less new file mode 100644 index 0000000..3f523cb
- + 1 .linear-gradient(@start, @start_opacity, @end, @end_opacity) { 2 background: @end; 3 background-image: -webkit-gradient(linear, left bottom, left top, color-stop(@start_opacity, @start), color-stop(@end_opacity, @end)); 4 background-image: -webkit-linear-gradient(bottom, @start @start_opacity, @end @end_opacity); 5 background-image: -moz-linear-gradient(bottom, @start @start_opacity, @end @end_opacity); 6 background-image: -o-linear-gradient(bottom, @start @start_opacity, @end @end_opacity); 7 background-image: linear-gradient(to top, @start @start_opacity, @end); 8 } 9 10 .linear-gradient(@start, @end) { 11 background: @end; 12 background-image: -webkit-gradient(linear, left bottom, left top, from(@start), to(@end)); 13 background-image: -webkit-linear-gradient(bottom, @start, @end); 14 background-image: -moz-linear-gradient(bottom, @start, @end); 15 background-image: -o-linear-gradient(bottom, @start, @end); 16 background-image: linear-gradient(to top, @start, @end); 17 } 18 19 .rounded(@radius: 3px) { 20 border-radius: @radius; 21 -moz-border-radius: @radius; 22 -webkit-border-radius: @radius; 23 } 24 25 .rounded-bottom(@radius: 3px) { 26 border-bottom-left-radius: @radius; 27 border-bottom-right-radius: @radius; 28 -moz-border-bottom-left-radius: @radius; 29 -moz-border-bottom-right-radius: @radius; 30 -webkit-border-bottom-left-radius: @radius; 31 -webkit-border-bottom-right-radius: @radius; 32 } 33 34 .rounded-top(@radius: 3px) { 35 border-top-left-radius: @radius; 36 border-top-right-radius: @radius; 37 -moz-border-top-left-radius: @radius; 38 -moz-border-top-right-radius: @radius; 39 -webkit-border-top-left-radius: @radius; 40 -webkit-border-top-right-radius: @radius; 41 } 42 43 .rounded-left(@radius: 3px) { 44 border-top-left-radius: @radius; 45 border-bottom-left-radius: @radius; 46 -moz-border-top-left-radius: @radius; 47 -moz-border-bottom-left-radius: @radius; 48 -webkit-border-top-left-radius: @radius; 49 -webkit-border-bottom-left-radius: @radius; 50 } 51 52 .rounded-right(@radius: 3px) { 53 border-top-right-radius: @radius; 54 border-bottom-right-radius: @radius; 55 -moz-border-top-right-radius: @radius; 56 -moz-border-bottom-right-radius: @radius; 57 -webkit-border-top-right-radius: @radius; 58 -webkit-border-bottom-right-radius: @radius; 59 } 60 61 .border-box() { 62 -moz-box-sizing: border-box; 63 -webkit-box-sizing: border-box; 64 -ms-box-sizing: border-box; 65 box-sizing: border-box; 66 } 67 68 .transitions(@duration: 0.2s) { 69 -webkit-transition-property: left, right, top, bottom, width, margin; 70 -moz-transition-property: left, right, top, bottom, width, margin; 71 -ms-transition-property: left, right, top, bottom, width, margin; 72 -o-transition-property: left, right, top, bottom, width, margin; 73 transition-property: left, right, top, bottom, width, margin; 74 75 -webkit-transition-duration: @duration; 76 -moz-transition-duration: @duration; 77 -ms-transition-duration: @duration; 78 -o-transition-duration: @duration; 79 transition-duration: @duration; 80 } 81 82 .no-box-shadows() { 83 -moz-box-shadow: none; 84 -webkit-box-shadow: none; 85 box-shadow: none; 86 } 87 88 .no-user-select() { 89 -webkit-user-select: none; 90 -moz-user-select: none; 91 user-select: none; 92 } 93 94 .serif-font() { 95 font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; 96 } 97 98 .sans-serif-font() { 99 font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif; 100 } 101 102 .normal-font(@size: 12px, @height: 1) { 103 font-size: @size; 104 font-weight: normal; 105 line-height: @height; 106 } 107 108 .bold-font(@size: 12px, @height: normal) { 109 font-size: @size; 110 font-weight: bold; 111 line-height: @height; 112 } 113 114 .about-font (@size: 20px) { 115 .sans-serif-font(); 116 .normal-font(@size, 1.6em); 117 } 118 No newline at end of file -
new file wp-admin/css/less/modules/about.less
diff --git a/wp-admin/css/less/modules/about.less b/wp-admin/css/less/modules/about.less new file mode 100644 index 0000000..95f94de
- + 1 /*------------------------------------------------------------------------------ 2 22.0 - About Pages 3 ------------------------------------------------------------------------------*/ 4 5 /* WordPress Version Badge */ 6 7 .wp-badge { 8 padding-top: 142px; 9 height: 50px; 10 width: 173px; 11 .bold-font(14px); 12 text-align: center; 13 margin: 0 -5px; 14 background: url('../images/wp-badge.png?ver=20111120') no-repeat; 15 } 16 17 .about-wrap { 18 position: relative; 19 margin: 25px 40px 0 20px; 20 max-width: 1050px; /* readability */ 21 font-size: 15px; 22 23 div.updated, 24 div.error { 25 display: none !important; 26 } 27 28 /* Typography */ 29 p { 30 line-height: 1.6em; 31 } 32 33 h1 { 34 margin: 0.2em 200px 0 0; 35 line-height: 1.2em; 36 font-size: 2.8em; 37 font-weight: 200; 38 } 39 40 h3 { 41 font-size: 24px; 42 margin-bottom: 1em; 43 padding-top: 20px; 44 } 45 46 code { 47 font-size: 14px; 48 } 49 50 li.wp-person a.web { 51 .about-font; 52 } 53 54 /* Point Releases */ 55 56 .point-releases { 57 margin-top: 5px; 58 } 59 60 .changelog.point-releases h3 { 61 padding-top: 35px; 62 63 &:first-child { 64 padding-top: 7px; 65 } 66 } 67 68 .wp-badge { 69 position: absolute; 70 top: 0; 71 right: 0; 72 } 73 74 /* Tabs */ 75 76 h2 { 77 &.nav-tab-wrapper { 78 padding-left: 6px; 79 } 80 81 & .nav-tab { 82 padding: 4px 10px 6px; 83 margin: 0 3px -1px 0; 84 font-size: 18px; 85 vertical-align: top; 86 } 87 88 & .nav-tab-active { 89 font-weight: bold; 90 padding-top: 3px; 91 } 92 } 93 94 /* Changelog / Update screen */ 95 96 .feature-section { 97 padding-bottom: 20px; 98 h4 { 99 margin-bottom: 0.6em; 100 } 101 102 p { 103 margin-top: 0.6em; 104 } 105 106 img, 107 .video { 108 border: none; 109 margin: 0 1.94% 10px 0; 110 .rounded(3px); 111 } 112 113 .video video { 114 max-width: 100%; 115 } 116 117 &.three-col img { 118 margin: 0.5em 0 0.5em 5px; 119 max-width: 100%; 120 float: none; 121 } 122 123 &.images-stagger-right img, 124 &.images-stagger-right .video { 125 float: right; 126 margin: 0 5px 12px 2em; 127 } 128 129 &.images-stagger-left img { 130 float: left; 131 margin: 0 2em 12px 5px; 132 } 133 134 .image-100 { 135 margin: 0 0 2em 0; 136 width: 100%; 137 } 138 139 .image-66 { 140 width: 65%; 141 &.video { 142 max-width: 600px; 143 } 144 } 145 146 .image-50 { 147 max-width: 50%; 148 } 149 150 img.image-30 { 151 max-width: 31.2381%; 152 } 153 154 &.col { 155 margin-bottom: 0; 156 h4 { 157 margin: 0 0 0.6em 0; 158 } 159 160 .last-feature { 161 margin-right: 0; 162 } 163 } 164 165 &.two-col div, &.three-col div { 166 margin-right: 4.999999999%; 167 float: left; 168 } 169 170 &.two-col div { 171 width: 47%; 172 } 173 174 &.three-col div { 175 width: 30%; 176 } 177 } 178 179 .ie8 & .feature-section { 180 &.three-col img { 181 margin-left: 0; 182 } 183 184 img { 185 border-width: 1px; 186 border-style: solid; 187 } 188 } 189 190 .images-stagger-right img.image-30:nth-child(2) { 191 margin-left: 1em; 192 } 193 194 .three-col-images { 195 text-align: center; 196 img { 197 margin: 0 0 10px; 198 } 199 .last-feature { 200 float: right; 201 } 202 203 .first-feature { 204 float: left; 205 } 206 } 207 208 .changelog { 209 .feature-section { 210 overflow: hidden; 211 } 212 213 li { 214 list-style-type: disc; 215 margin-left: 3em; 216 } 217 } 218 219 /* Return to Dashboard Home link */ 220 221 .return-to-dashboard { 222 margin: 30px 0 0 -5px; 223 .bold-font(14px); 224 a { 225 text-decoration: none; 226 padding: 0 5px; 227 } 228 } 229 230 /* Credits */ 231 232 h4.wp-people-group { 233 margin-top: 2.6em; 234 font-size: 16px; 235 } 236 237 ul.wp-people-group { 238 overflow: hidden; 239 padding: 0 5px; 240 margin: 0 -15px 0 -5px; 241 } 242 243 li.wp-person { 244 float: left; 245 margin-right: 10px; 246 247 img.gravatar { 248 float: left; 249 margin: 0 10px 10px 0; 250 padding: 2px; 251 width: 60px; 252 height: 60px; 253 } 254 } 255 256 ul.compact { 257 margin-bottom: 0; 258 259 li.wp-person img.gravatar { 260 width: 30px; 261 height: 30px; 262 } 263 } 264 265 li.wp-person { 266 height: 70px; 267 width: 280px; 268 padding-bottom: 15px; 269 270 ul.compact & { 271 height: auto; 272 width: 180px; 273 padding-bottom: 0; 274 margin-bottom: 0; 275 } 276 277 a.web { 278 display: block; 279 margin: 6px 0 2px; 280 font-size: 16px; 281 text-decoration: none; 282 } 283 } 284 285 #wp-people-group-validators + p.wp-credits-list { 286 margin-top: 0; 287 } 288 289 p.wp-credits-list a { 290 white-space: nowrap; 291 } 292 293 /* Freedoms */ 294 295 .freedoms-php & { 296 ol { 297 margin: 40px 60px; 298 li { 299 list-style-type: decimal; 300 font-weight: bold; 301 } 302 p { 303 font-weight: normal; 304 margin: 0.6em 0; 305 } 306 } 307 } 308 } 309 310 .about-description { 311 .about-font; 312 margin-top: 1.4em; 313 } 314 315 .about-text { 316 .about-font(24px); 317 margin: 1em 200px 1.4em 0; 318 min-height: 60px; 319 } 320 321 @media only screen and (max-width: 900px) { 322 .about-wrap .feature-section { 323 .images-stagger-left img, 324 .images-stagger-right img, 325 .images-stagger-right .video { 326 clear: both; 327 } 328 329 .video.image-66 { 330 float: none; 331 width: 98%; 332 max-width: 98%; 333 } 334 335 &.images-stagger-right .video.image-66 { 336 margin-left: 3px; 337 } 338 } 339 } 340 341 @media only screen and (max-width: 768px) { 342 .about-wrap .feature-section { 343 .image-66 { 344 float: none; 345 width: 98%; 346 max-width: 98%; 347 } 348 &.images-stagger-right .image-66 { 349 margin-left: 3px; 350 } 351 352 &.images-stagger-left .image-66 { 353 margin-right: 3px; 354 } 355 } 356 } 357 No newline at end of file -
new file wp-admin/css/less/modules/accordion.less
diff --git a/wp-admin/css/less/modules/accordion.less b/wp-admin/css/less/modules/accordion.less new file mode 100644 index 0000000..6625a64
- + 1 /* Accordion */ 2 3 .accordion-section { 4 border-top: 1px solid #fff; 5 border-bottom: 1px solid @border-color; 6 margin: 0; 7 8 &:first-child { 9 border-top: 1px solid @border-color; 10 } 11 12 &:last-child { 13 box-shadow: 0 1px 0 0px #fff; 14 } 15 16 &.open .accordion-section-content, 17 .no-js & .accordion-section-content { 18 display: block; 19 } 20 21 &.open:hover { 22 border-bottom-color: @border-color; 23 } 24 } 25 26 .accordion-section-content { 27 display: none; 28 padding: 10px 20px 15px; 29 overflow: hidden; 30 background: #fdfdfd; 31 border-left: 1px solid @border-color; 32 border-right: 1px solid @border-color; 33 } 34 35 .accordion-section-title { 36 margin: 0; 37 padding: 15px 20px; 38 position: relative; 39 border-left: 1px solid @border-color; 40 border-right: 1px solid @border-color; 41 42 .no-user-select(); 43 44 .js & { 45 cursor: pointer; 46 } 47 48 .js &:after { 49 content: ''; 50 width: 0; 51 height: 0; 52 border-color: #ccc transparent; 53 border-style: solid; 54 border-width: 6px 6px 0; 55 position: absolute; 56 top: 25px; 57 right: 20px; 58 z-index: 1; 59 } 60 61 &:focus { 62 outline: none; 63 } 64 65 &:hover:after, 66 &:focus:after { 67 border-color: #aaa transparent; 68 } 69 70 .cannot-expand & { 71 cursor: auto; 72 } 73 74 .cannot-expand &:after { 75 display: none; 76 } 77 78 .control-section & { 79 padding: 10px 20px; 80 color: #464646; 81 .serif-font(); 82 .normal-font(15px); 83 text-shadow: 0 1px 0 #fff; 84 .linear-gradient(#eee, #f5f5f5); 85 } 86 87 .control-section &:after { 88 top: 15px; 89 } 90 91 .js .control-section:hover &, 92 .js .control-section &:hover, 93 .js .control-section.open &, 94 .js .control-section &:focus { 95 color: black; 96 .linear-gradient(#ececec, #f9f9f9); 97 } 98 99 .control-section.open & { 100 border-bottom: 1px solid @border-color; 101 } 102 } 103 No newline at end of file -
new file wp-admin/css/less/modules/actions.less
diff --git a/wp-admin/css/less/modules/actions.less b/wp-admin/css/less/modules/actions.less new file mode 100644 index 0000000..4d8dfe1
- + 1 /*------------------------------------------------------------------------------ 2 3.0 - Actions 3 ------------------------------------------------------------------------------*/ 4 5 #major-publishing-actions { 6 padding: 10px 10px 8px; 7 clear: both; 8 border-top: 1px solid #f5f5f5; 9 margin-top: -2px; 10 } 11 12 #delete-action { 13 line-height: 25px; 14 vertical-align: middle; 15 text-align: left; 16 float: left; 17 } 18 19 #publishing-action { 20 text-align: right; 21 float: right; 22 line-height: 23px; 23 24 .spinner { 25 float: left; 26 } 27 } 28 29 #misc-publishing-actions { 30 padding: 6px 0 0; 31 } 32 33 .misc-pub-section { 34 padding: 6px 10px 8px; 35 border-width: 1px 0; 36 border-style: solid; 37 38 &:first-child { 39 border-top-width: 0; 40 } 41 } 42 43 .misc-pub-section-last { 44 border-bottom-width: 0; 45 } 46 47 #minor-publishing-actions { 48 padding: 10px 10px 2px 8px; 49 text-align: right; 50 } 51 52 #minor-publishing { 53 border-bottom-width: 1px; 54 border-bottom-style: solid; 55 -webkit-box-shadow: 0 1px 0 #fff; 56 box-shadow: 0 1px 0 #fff; 57 } 58 59 #save-post { 60 float: left; 61 } 62 63 .preview { 64 float: right; 65 } 66 67 #sticky-span { 68 margin-left: 18px; 69 } 70 71 .side-info { 72 margin: 0; 73 padding: 4px; 74 font-size: 11px; 75 76 h5 { 77 padding-bottom: 7px; 78 font-size: 14px; 79 margin: 12px 2px 5px; 80 border-bottom-width: 1px; 81 border-bottom-style: solid; 82 } 83 84 ul { 85 margin: 0; 86 padding-left: 18px; 87 list-style: square; 88 } 89 } 90 91 .approve, 92 .unapproved .unapprove { 93 display: none; 94 } 95 96 .unapproved .approve, 97 .spam .approve, 98 .trash .approve { 99 display: inline; 100 } 101 102 td.action-links, 103 th.action-links { 104 text-align: right; 105 } 106 No newline at end of file -
new file wp-admin/css/less/modules/categories.less
diff --git a/wp-admin/css/less/modules/categories.less b/wp-admin/css/less/modules/categories.less new file mode 100644 index 0000000..6bbfabb
- + 1 /*------------------------------------------------------------------------------ 2 12.0 - Categories 3 ------------------------------------------------------------------------------*/ 4 5 .category-adder { 6 margin-left: 120px; 7 padding: 4px 0; 8 9 h4 { 10 margin: 0 0 8px; 11 } 12 13 #side-sortables & { 14 margin: 0; 15 } 16 } 17 18 #post-body ul.add-menu-item-tabs { 19 float: left; 20 width: 120px; 21 text-align: right; 22 /* Negative margin for the sake of those without JS: all tabs display */ 23 margin: 0 -120px 0 5px; 24 padding: 0; 25 26 li { 27 padding: 8px; 28 29 &.tabs { 30 .rounded-left(); 31 } 32 } 33 } 34 35 .wp-tab-panel, 36 .categorydiv div.tabs-panel, 37 .customlinkdiv div.tabs-panel, 38 .posttypediv div.tabs-panel, 39 .taxonomydiv div.tabs-panel { 40 min-height: 42px; 41 max-height: 200px; 42 overflow: auto; 43 padding: 0 0.9em; 44 border-style: solid; 45 border-width: 1px; 46 } 47 48 div.tabs-panel-active { 49 display: block; 50 } 51 52 div.tabs-panel-inactive { 53 display: none; 54 } 55 56 #front-page-warning, 57 #front-static-pages ul, 58 ul.export-filters, 59 .inline-editor ul.cat-checklist ul, 60 .categorydiv ul.categorychecklist ul, 61 .customlinkdiv ul.categorychecklist ul, 62 .posttypediv ul.categorychecklist ul, 63 .taxonomydiv ul.categorychecklist ul { 64 margin-left: 18px; 65 } 66 67 ul.categorychecklist li { 68 margin: 0; 69 padding: 0; 70 line-height: 19px; 71 word-wrap: break-word; 72 } 73 74 .categorydiv .tabs-panel, 75 .customlinkdiv .tabs-panel, 76 .posttypediv .tabs-panel, 77 .taxonomydiv .tabs-panel { 78 border-width: 3px; 79 border-style: solid; 80 } 81 82 .form-wrap { 83 p, 84 label { 85 font-size: 11px; 86 } 87 88 label { 89 display: block; 90 padding: 2px; 91 font-size: 12px; 92 } 93 94 .form-field { 95 margin: 0 0 10px; 96 padding: 8px 0; 97 98 #parent { 99 max-width: 100%; 100 } 101 } 102 } 103 104 .form-field input, 105 .form-field textarea { 106 border-style: solid; 107 border-width: 1px; 108 width: 95%; 109 } 110 111 p.description, 112 .form-wrap p { 113 margin: 2px 0 5px; 114 } 115 116 p.help, 117 p.description, 118 span.description, 119 .form-wrap p { 120 font-size: 12px; 121 font-style: italic; 122 font-family: sans-serif; 123 } 124 125 .col-wrap { 126 h3 { 127 margin: 12px 0; 128 font-size: 1.1em; 129 } 130 131 p.submit { 132 margin-top: -10px; 133 } 134 } 135 No newline at end of file -
new file wp-admin/css/less/modules/comments.less
diff --git a/wp-admin/css/less/modules/comments.less b/wp-admin/css/less/modules/comments.less new file mode 100644 index 0000000..260d5dc
- + 1 /*------------------------------------------------------------------------------ 2 15.0 - Comments Screen 3 ------------------------------------------------------------------------------*/ 4 5 .form-table { 6 border-collapse: collapse; 7 margin-top: 0.5em; 8 width: 100%; 9 margin-bottom: -8px; 10 clear: both; 11 12 td { 13 margin-bottom: 9px; 14 padding: 8px 10px; 15 line-height: 20px; 16 font-size: 12px; 17 18 p { 19 margin-top: 4px; 20 } 21 22 .color-palette & { 23 border-width: 1px 1px 0; 24 border-style: solid solid none; 25 height: 10px; 26 line-height: 20px; 27 width: 10px; 28 } 29 } 30 31 th { 32 vertical-align: top; 33 text-align: left; 34 padding: 10px; 35 width: 200px; 36 37 &.th-full { 38 width: auto; 39 } 40 } 41 42 div.color-option { 43 display: block; 44 clear: both; 45 margin-top: 12px; 46 } 47 48 input.tog { 49 margin-top: 2px; 50 margin-right: 2px; 51 float: left; 52 } 53 54 table.color-palette { 55 vertical-align: bottom; 56 float: left; 57 margin: -12px 3px 11px; 58 } 59 } 60 61 .form-table th, 62 .form-wrap label { 63 font-weight: normal; 64 text-shadow: #fff 0 1px 0; 65 } 66 67 .commentlist { 68 li { 69 padding: 1em 1em .2em; 70 margin: 0; 71 border-bottom-width: 1px; 72 border-bottom-style: solid; 73 74 li { 75 border-bottom: 0; 76 padding: 0; 77 } 78 } 79 80 p { 81 padding: 0; 82 margin: 0 0 .8em; 83 } 84 85 .avatar { 86 vertical-align: text-top; 87 } 88 } 89 90 /* reply to comments */ 91 #replyrow { 92 input { 93 border-width: 1px; 94 border-style: solid; 95 } 96 97 td { 98 padding: 2px; 99 } 100 101 h5 { 102 margin: .2em 0 0; 103 padding: 0 5px; 104 line-height: 1.4em; 105 font-size: 1em; 106 } 107 } 108 109 #replysubmit { 110 margin: 0; 111 padding: 0 5px 3px; 112 text-align: center; 113 114 .spinner { 115 padding: 2px 0 0; 116 vertical-align: top; 117 float: right; 118 } 119 120 .button { 121 margin-right: 5px; 122 } 123 124 .error { 125 color: red; 126 line-height: 21px; 127 text-align: center; 128 } 129 } 130 131 #edithead { 132 .inside { 133 float: left; 134 padding: 3px 0 2px 5px; 135 margin: 0; 136 text-align: center; 137 138 input { 139 width: 180px; 140 } 141 } 142 143 label { 144 padding: 2px 0; 145 } 146 } 147 148 #replycontainer { 149 padding: 5px; 150 } 151 152 #replycontent { 153 height: 120px; 154 .no-box-shadows(); 155 } 156 157 .comment-php .wp-editor-area { 158 height: 200px; 159 } 160 161 .comment-ays { 162 margin-bottom: 0; 163 border-style: solid; 164 border-width: 1px; 165 166 th { 167 border-right-style: solid; 168 border-right-width: 1px; 169 } 170 } 171 172 .trash-undo-inside, 173 .spam-undo-inside { 174 margin: 1px 8px 1px 0; 175 line-height: 16px; 176 177 .avatar { 178 height: 20px; 179 width: 20px; 180 margin-right: 8px; 181 vertical-align: middle; 182 } 183 } 184 185 .stuffbox .editcomment { 186 clear: none; 187 } 188 189 #comment-status-radio { 190 p { 191 margin: 3px 0 5px; 192 } 193 194 input { 195 margin: 2px 3px 5px 0; 196 vertical-align: middle; 197 } 198 199 label { 200 padding: 5px 0; 201 } 202 } 203 No newline at end of file -
new file wp-admin/css/less/modules/customize.less
diff --git a/wp-admin/css/less/modules/customize.less b/wp-admin/css/less/modules/customize.less new file mode 100644 index 0000000..ec31a42
- + 1 /*------------------------------------------------------------------------------ 2 24.0 - Customize Loader 3 ------------------------------------------------------------------------------*/ 4 5 .hide-if-customize { 6 .customize-support &, 7 .customize-support.wp-core-ui &, 8 .customize-support .wp-core-ui & { 9 display: none; 10 } 11 } 12 13 .hide-if-no-customize { 14 .no-customize-support &, 15 .no-customize-support.wp-core-ui &, 16 .no-customize-support .wp-core-ui &{ 17 display: none; 18 } 19 } 20 21 #customize-container { 22 display: none; 23 background: #fff; 24 z-index: 500000; 25 position: fixed; 26 overflow: visible; 27 top: 0; 28 bottom: 0; 29 left: 0; 30 right: 0; 31 height: 100%; 32 33 .customize-active & { 34 display: block; 35 } 36 37 .customize-loading & { 38 background: #fff url("../images/wpspin_light.gif") no-repeat fixed center center; 39 background-size: 16px 16px; 40 } 41 42 .customize-loading & iframe { 43 opacity: 0; 44 } 45 46 .collapse-sidebar { 47 bottom: 16px; 48 } 49 } 50 51 #customize-container iframe, 52 #theme-installer iframe { 53 height: 100%; 54 width: 100%; 55 z-index: 20; 56 57 -webkit-transition: opacity 0.3s; 58 -moz-transition: opacity 0.3s; 59 -ms-transition: opacity 0.3s; 60 -o-transition: opacity 0.3s; 61 transition: opacity 0.3s; 62 } 63 64 #theme-installer { 65 display: none; 66 67 &.single-theme { 68 display: block; 69 } 70 } 71 72 .install-theme-info { 73 74 display: none; 75 padding: 10px 20px 20px; 76 77 .single-theme & { 78 padding-top: 15px; 79 } 80 81 #theme-installer & { 82 display: block; 83 } 84 85 .theme-install { 86 float: right; 87 margin-top: 18px; 88 } 89 90 .theme-name { 91 font-size: 16px; 92 line-height: 24px; 93 margin-bottom: 0; 94 } 95 96 .theme-screenshot { 97 margin-top: 15px; 98 width: 258px; 99 border: 1px solid #ccc; 100 } 101 102 .theme-details { 103 overflow: hidden; 104 } 105 } 106 107 .theme-details { 108 .theme-version { 109 margin: 15px 0; 110 float: left; 111 } 112 113 .star-holder { 114 margin: 14px 0; 115 float: right; 116 } 117 118 .theme-description { 119 float: left; 120 color: #777; 121 line-height: 20px; 122 } 123 } 124 No newline at end of file -
new file wp-admin/css/less/modules/dashboard.less
diff --git a/wp-admin/css/less/modules/dashboard.less b/wp-admin/css/less/modules/dashboard.less new file mode 100644 index 0000000..054f1ef
- + 1 /*------------------------------------------------------------------------------ 2 9.0 - Dashboard 3 ------------------------------------------------------------------------------*/ 4 5 #dashboard-widgets-wrap { 6 margin: 0 -8px; 7 } 8 9 #wpbody-content .metabox-holder { 10 padding-top: 10px; 11 } 12 13 #dashboard-widgets .meta-box-sortables { 14 margin: 0 8px; 15 } 16 17 #dashboard_recent_comments div.undo { 18 border-top-style: solid; 19 border-top-width: 1px; 20 margin: 0 -10px; 21 padding: 3px 8px; 22 font-size: 11px; 23 } 24 25 /* Welcome Panel */ 26 .welcome-panel { 27 position: relative; 28 overflow: auto; 29 margin: 20px 0; 30 padding: 23px 10px 12px; 31 border-width: 1px; 32 border-style: solid; 33 .rounded(3px); 34 font-size: 13px; 35 line-height: 2.1em; 36 37 h3 { 38 margin: 0; 39 .sans-serif-font(); 40 .normal-font(21px, 1.2); 41 } 42 h4 { 43 margin: 1.33em 0 0; 44 font-size: 13px; 45 } 46 47 .about-description { 48 font-size: 16px; 49 margin: 0; 50 } 51 52 .welcome-panel-close { 53 position: absolute; 54 top: 5px; 55 right: 10px; 56 padding: 8px 3px; 57 font-size: 13px; 58 text-decoration: none; 59 line-height: 1; 60 61 &:before { 62 content: ' '; 63 position: absolute; 64 left: -12px; 65 width: 10px; 66 height: 100%; 67 background: url('../images/xit.gif') 0 17% no-repeat; 68 } 69 70 &:hover:before { 71 background-position: 100% 17%; 72 } 73 } 74 75 .wp-core-ui & .button.button-hero { 76 margin: 15px 0 3px; 77 } 78 79 .welcome-panel-column-container { 80 clear: both; 81 overflow: hidden; 82 position: relative; 83 } 84 85 .welcome-panel-column { 86 width: 32%; 87 min-width: 200px; 88 float: left; 89 90 &:first-child { 91 width: 36%; 92 } 93 94 ul { 95 margin: 0.8em 1em 1em 0; 96 } 97 98 li { 99 line-height: 16px; 100 list-style-type: none; 101 } 102 } 103 104 .ie8 & .welcome-panel-column { 105 min-width: 230px; 106 } 107 108 .welcome-icon { 109 display: block; 110 padding: 2px 0 8px 32px; 111 background-image: url('../images/welcome-icons.png'); 112 background-repeat: no-repeat; 113 background-size: 16px; 114 } 115 116 .welcome-add-page { 117 background-position: 0 2px; 118 } 119 120 .welcome-edit-page { 121 background-position: 0 -90px; 122 } 123 124 .welcome-learn-more { 125 background-position: 0 -136px; 126 } 127 128 .welcome-comments { 129 background-position: 0 -182px; 130 } 131 132 .welcome-view-site { 133 background-position: 0 -274px; 134 } 135 136 .welcome-widgets-menus { 137 background-position: 1px -229px; 138 line-height: 14px; 139 } 140 141 .welcome-write-blog { 142 background-position: 0 -44px; 143 } 144 } 145 146 .welcome-panel-content { 147 margin-left: 13px; 148 max-width: 1500px; 149 150 p { 151 margin-top: 7px; 152 } 153 } 154 155 @media screen and (max-width: 870px) { 156 .welcome-panel { 157 .welcome-panel-column, 158 .welcome-panel-column:first-child { 159 display: block; 160 float: none; 161 width: 100%; 162 } 163 164 .welcome-panel-column li { 165 display: inline-block; 166 margin-right: 13px; 167 } 168 169 .welcome-panel-column ul { 170 margin: 0.4em 0 0; 171 } 172 173 .welcome-icon { 174 padding-left: 25px; 175 } 176 } 177 } 178 179 /* dashboard */ 180 .edit-box { 181 display: none; 182 183 h3:hover & { 184 display: inline; 185 } 186 } 187 188 #dashboard-widgets { 189 form .input-text-wrap input { 190 width: 100%; 191 } 192 193 form .textarea-wrap textarea { 194 width: 100%; 195 } 196 197 .postbox form .submit { 198 float: none; 199 margin: .5em 0 0; 200 padding: 0; 201 border: none; 202 } 203 204 #dashboard-widgets-wrap & .postbox form .submit #publish { 205 min-width: 0; 206 } 207 208 a { 209 text-decoration: none; 210 } 211 212 h3 a { 213 text-decoration: underline; 214 } 215 216 h3 .postbox-title-action { 217 position: absolute; 218 right: 10px; 219 padding: 0; 220 top: 5px; 221 } 222 223 .js & h3 .postbox-title-action { 224 right: 30px; 225 } 226 227 h4 { 228 .normal-font(13px); 229 margin: 0 0 .2em; 230 padding: 0; 231 } 232 } 233 234 /* Right Now */ 235 #dashboard_right_now { 236 p.sub, 237 .table, .versions { 238 margin: -12px; 239 } 240 241 .inside { 242 font-size: 12px; 243 padding-top: 20px; 244 } 245 246 p.sub { 247 padding: 5px 0 15px; 248 color: #8f8f8f; 249 font-size: 14px; 250 position: absolute; 251 top: -17px; 252 left: 15px; 253 } 254 255 .table { 256 margin: 0; 257 padding: 0; 258 position: relative; 259 } 260 261 .table_content { 262 float: left; 263 border-top-width: 1px; 264 border-top-style: solid; 265 width: 45%; 266 } 267 268 .table_discussion { 269 float: right; 270 border-top-width: 1px; 271 border-top-style: solid; 272 width: 45%; 273 } 274 275 table td { 276 padding: 3px 0; 277 white-space: nowrap; 278 } 279 280 table tr.first td { 281 border-top: none; 282 } 283 284 td.b { 285 padding-right: 6px; 286 text-align: right; 287 font-size: 14px; 288 width: 1%; 289 } 290 291 td.b a { 292 font-size: 18px; 293 } 294 295 td.b a:hover { 296 color: #d54e21; 297 } 298 299 .t { 300 font-size: 12px; 301 padding-right: 12px; 302 padding-top: 6px; 303 color: #777; 304 } 305 306 .t a { 307 white-space: nowrap; 308 } 309 310 .spam { 311 color: red; 312 } 313 314 .waiting { 315 color: #e66f00; 316 } 317 318 .approved { 319 color: green; 320 } 321 322 .versions { 323 padding: 6px 10px 12px; 324 clear: both; 325 } 326 327 a.button { 328 float: right; 329 clear: right; 330 position: relative; 331 top: -5px; 332 } 333 } 334 335 /* Recent Comments */ 336 #dashboard_recent_comments { 337 h3 { 338 margin-bottom: 0; 339 } 340 341 .inside { 342 margin-top: 0; 343 } 344 345 .comment-meta .approve { 346 font-style: italic; 347 font-family: sans-serif; 348 font-size: 10px; 349 } 350 351 .subsubsub { 352 float: none; 353 white-space: normal; 354 } 355 } 356 357 #the-comment-list { 358 position: relative; 359 360 p.comment-author img { 361 float: left; 362 margin-right: 8px; 363 } 364 365 p.comment-author strong a { 366 border: none; 367 } 368 369 td { 370 vertical-align: top; 371 372 &.comment { 373 word-wrap: break-word; 374 375 p.comment-author { 376 margin-top: 0; 377 margin-left: 0; 378 } 379 } 380 } 381 382 .comment-item { 383 padding: 1em 10px; 384 border-top: 1px solid; 385 386 .avatar { 387 float: left; 388 margin: 0 10px 5px 0; 389 } 390 391 h4 { 392 line-height: 1.7em; 393 margin-top: -0.4em; 394 color: #777; 395 396 cite { 397 font-style: normal; 398 font-weight: normal; 399 } 400 } 401 402 &:first-child { 403 border-top: none; 404 } 405 406 blockquote, 407 blockquote p { 408 margin: 0; 409 padding: 0; 410 display: inline; 411 } 412 413 p.row-actions { 414 margin: 3px 0 0; 415 padding: 0; 416 font-size: 12px; 417 } 418 } 419 420 .pingback { 421 padding-left: 9px !important; 422 } 423 424 .comment-item, 425 #replyrow { 426 margin: 0 -10px; 427 } 428 429 #dashboard_recent_comments & .trackback blockquote, 430 #dashboard_recent_comments & .pingback blockquote { 431 display: block; 432 } 433 } 434 435 /* QuickPress */ 436 #title-wrap label, 437 #tags-input-wrap label { 438 cursor: text; 439 } 440 441 #title-wrap { 442 #title { 443 padding: 2px 6px; 444 font-size: 1.3em; 445 line-height: 100%; 446 outline: none; 447 } 448 449 #title-prompt-text { 450 font-size: 1.3em; 451 padding: 5px 8px; 452 } 453 } 454 455 #tags-input-wrap { 456 #tags-input { 457 outline: none; 458 } 459 460 #tags-input-prompt-text { 461 font-size: 1em; 462 padding: 4px 8px; 463 } 464 } 465 466 #dashboard_quick_press { 467 .no-js & { 468 display: none; 469 } 470 471 .easy-blogging { 472 padding: 0 8px; 473 text-align: left; 474 } 475 476 .input-text-wrap { 477 position: relative; 478 } 479 480 .prompt { 481 color: #bbb; 482 position: absolute; 483 } 484 485 div.updated { 486 padding: 0 5px; 487 } 488 489 .input-text-wrap, 490 .textarea-wrap { 491 margin: 0 0 1em 0; 492 } 493 494 .wp-media-buttons { 495 margin: 0 0 .2em 1px; 496 padding: 0; 497 498 a { 499 color: #777; 500 } 501 } 502 503 #dashboard-widgets & form p.submit { 504 input { 505 float: left; 506 } 507 508 #save-post { 509 margin: 0 0.7em 0 1px; 510 } 511 512 #publish { 513 float: right; 514 } 515 516 .spinner { 517 vertical-align: middle; 518 margin: 4px 6px 0 0; 519 } 520 } 521 } 522 523 /* Recent Drafts */ 524 #dashboard_recent_drafts { 525 ul, 526 p { 527 margin: 0; 528 padding: 0; 529 word-wrap: break-word; 530 } 531 532 ul { 533 list-style: none; 534 li { 535 margin-bottom: 1em; 536 } 537 } 538 539 h4 { 540 line-height: 1.7em; 541 word-wrap: break-word; 542 543 abbr { 544 font-weight: normal; 545 font-family: sans-serif; 546 font-size: 12px; 547 color: #999; 548 margin-left: 3px; 549 } 550 } 551 } 552 553 /* Feeds */ 554 .rss-widget { 555 ul { 556 margin: 0; 557 padding: 0; 558 list-style: none; 559 560 li { 561 line-height: 1.5em; 562 margin-bottom: 12px; 563 } 564 } 565 566 span.rss-date { 567 color: #999; 568 font-size: 12px; 569 margin-left: 3px; 570 } 571 572 cite { 573 display: block; 574 text-align: right; 575 margin: 0 0 1em; 576 padding: 0; 577 578 &:before { 579 content: '\2014'; 580 } 581 } 582 } 583 584 a.rsswidget { 585 font-size: 13px; 586 line-height: 1.7em; 587 } 588 589 /* Plugins */ 590 #dashboard_plugins { 591 h4 { 592 line-height: 1.7em; 593 } 594 595 h5 { 596 .normal-font(13px, 1.4em); 597 margin: 0; 598 display: inline; 599 600 a { 601 line-height: 1.4em; 602 } 603 } 604 605 .inside span { 606 font-size: 12px; 607 padding-left: 5px; 608 } 609 610 p { 611 margin: 0.3em 0 1.4em; 612 line-height: 1.4em; 613 } 614 } 615 616 .dashboard-comment-wrap { 617 overflow: hidden; 618 word-wrap: break-word; 619 } 620 621 /* Browser Nag */ 622 #dashboard_browser_nag { 623 a { 624 color: white; 625 text-decoration: underline; 626 &.update-browser-link { 627 .bold-font(1.2em); 628 } 629 630 &.browse-happy-link, 631 &.update-browser-link { 632 text-shadow: #d29a04 0 1px 0; 633 } 634 } 635 636 p.browser-update-nag.has-browser-icon { 637 padding-right: 125px; 638 } 639 640 .browser-icon { 641 margin-top: -35px; 642 } 643 644 &.postbox { 645 background-color: #e29808; 646 background-image: none; 647 border-color: #edc048; 648 color: white; 649 .no-box-shadows(); 650 651 h3 { 652 border-bottom-color: #f6e2ac; 653 text-shadow: none; 654 background: transparent none; 655 color: white; 656 .no-box-shadows(); 657 } 658 659 &.browser-insecure { 660 background-color: #ac1b1b; 661 border-color: #ac1b1b; 662 663 h3 { 664 border-bottom-color: #cd5a5a; 665 color: white; 666 } 667 } 668 } 669 670 &.browser-insecure a.browse-happy-link, 671 &.browser-insecure a.update-browser-link { 672 text-shadow: #871b15 0 1px 0; 673 } 674 } 675 No newline at end of file -
new file wp-admin/css/less/modules/edit-post.less
diff --git a/wp-admin/css/less/modules/edit-post.less b/wp-admin/css/less/modules/edit-post.less new file mode 100644 index 0000000..688d8c7
- + 1 /*------------------------------------------------------------------------------ 2 11.0 - Write/Edit Post Screen 3 ------------------------------------------------------------------------------*/ 4 5 #show-comments { 6 overflow: hidden; 7 } 8 9 #save-action .spinner, 10 #show-comments a, 11 #show-comments .spinner { 12 float: left; 13 } 14 15 #lost-connection-notice .spinner { 16 display: block; 17 float: left; 18 margin: 0 5px 0 0; 19 } 20 21 .rtl #lost-connection-notice .spinner { 22 float: right; 23 margin: 0 0 0 5px; 24 } 25 26 #titlediv { 27 position: relative; 28 margin-bottom: 5px; 29 30 label { 31 cursor: text; 32 } 33 34 div.inside { 35 margin: 0; 36 } 37 38 #title { 39 padding: 3px 8px; 40 font-size: 1.7em; 41 line-height: 100%; 42 height: 1.7em; 43 width: 100%; 44 outline: none; 45 margin: 1px 0; 46 } 47 } 48 49 #poststuff #titlewrap { 50 border: 0; 51 padding: 0; 52 } 53 54 #titlediv #title-prompt-text, 55 #wp-fullscreen-title-prompt-text { 56 color: #bbb; 57 position: absolute; 58 font-size: 1.7em; 59 padding: 11px 10px; 60 } 61 62 #wp-fullscreen-save .fs-saved { 63 color: #999; 64 float: right; 65 margin-top: 4px; 66 } 67 68 #wp-fullscreen-title-prompt-text { 69 padding: 11px; 70 } 71 72 #poststuff .inside-submitbox, 73 #side-sortables .inside-submitbox { 74 margin: 0 3px; 75 font-size: 11px; 76 } 77 78 input#link_description, 79 input#link_url { 80 width: 98%; 81 } 82 83 #pending { 84 background: 0 none; 85 border: 0 none; 86 padding: 0; 87 font-size: 11px; 88 margin-top: -1px; 89 } 90 91 #edit-slug-box { 92 line-height: 24px; 93 min-height: 25px; /* Yes, line-height + 1 */ 94 margin-top: 5px; 95 padding-right: 6px; 96 97 .cancel { 98 margin-right: 10px; 99 font-size: 11px; 100 } 101 } 102 103 #editable-post-name-full { 104 display: none; 105 } 106 107 #editable-post-name input { 108 width: 16em; 109 } 110 111 .postarea h3 label { 112 float: left; 113 } 114 115 .submitbox { 116 .submit { 117 text-align: left; 118 padding: 12px 10px 10px; 119 font-size: 11px; 120 } 121 122 .submitdelete { 123 text-decoration: none; 124 padding: 1px 2px; 125 } 126 127 .submitdelete, 128 .submit a:hover { 129 border-bottom-width: 1px; 130 border-bottom-style: solid; 131 } 132 133 .submit input { 134 margin-bottom: 8px; 135 margin-right: 4px; 136 padding: 6px; 137 } 138 } 139 140 .inside-submitbox #post_status { 141 margin: 2px 0 2px -2px; 142 } 143 144 #post-status-select { 145 line-height: 2.5em; 146 margin-top: 3px; 147 } 148 149 /* Post Screen */ 150 #post-body #normal-sortables { 151 min-height: 50px; 152 } 153 154 .postbox { 155 position: relative; 156 min-width: 255px; 157 } 158 159 #trackback_url { 160 width: 99%; 161 } 162 163 #normal-sortables .postbox .submit { 164 background: transparent none; 165 border: 0 none; 166 float: right; 167 padding: 0 12px; 168 margin:0; 169 } 170 171 .category-add input[type="text"], 172 .category-add select { 173 width: 100%; 174 max-width: 260px; 175 } 176 177 .press-this #side-sortables .category-tabs li, 178 ul.category-tabs li, 179 #side-sortables .add-menu-item-tabs li, 180 .wp-tab-bar li { 181 display: inline; 182 line-height: 1.35em; 183 } 184 185 .no-js .category-tabs li.hide-if-no-js { 186 display: none; 187 } 188 189 .category-tabs a, 190 #side-sortables .add-menu-item-tabs a, 191 .wp-tab-bar a { 192 text-decoration: none; 193 } 194 195 .category-tabs { 196 margin: 8px 0 3px; 197 } 198 199 #category-adder h4 { 200 margin: 10px 0; 201 } 202 203 #side-sortables .add-menu-item-tabs, 204 .wp-tab-bar { 205 margin-bottom: 3px; 206 } 207 208 #normal-sortables .postbox #replyrow .submit { 209 float: none; 210 margin: 0; 211 padding: 0 7px 5px; 212 } 213 214 #side-sortables .submitbox .submit input, 215 #side-sortables .submitbox .submit .preview, 216 #side-sortables .submitbox .submit a.preview:hover { 217 border: 0 none; 218 } 219 220 #side-sortables .inside-submitbox .insidebox, 221 .stuffbox .insidebox { 222 margin: 11px 0; 223 } 224 225 ul.category-tabs, 226 ul.add-menu-item-tabs, 227 ul.wp-tab-bar { 228 margin-top: 12px; 229 } 230 231 ul.category-tabs li { 232 border-style: solid; 233 border-width: 1px; 234 position: relative; 235 } 236 237 ul.add-menu-item-tabs li.tabs, 238 .wp-tab-active { 239 border-style: solid solid none; 240 border-width: 1px 1px 0; 241 } 242 243 #post-body .add-menu-item-tabs li.tabs { 244 border-style: solid none solid solid; 245 border-width: 1px 0 1px 1px; 246 margin-right: -1px; 247 } 248 249 ul.category-tabs li, 250 ul.add-menu-item-tabs li, 251 ul.wp-tab-bar li { 252 padding: 3px 5px 5px; 253 .rounded-top(3px); 254 } 255 256 /* positioning etc. */ 257 form#tags-filter { 258 position: relative; 259 } 260 261 /* Edit posts */ 262 td.post-title strong, 263 td.plugin-title strong { 264 display: block; 265 margin-bottom: .2em; 266 } 267 268 td.post-title p, 269 td.plugin-title p { 270 margin: 6px 0; 271 } 272 273 /* Global classes */ 274 .wp-hidden-children .wp-hidden-child, 275 .ui-tabs-hide { 276 display: none; 277 } 278 279 .commentlist .avatar { 280 vertical-align: text-top; 281 } 282 283 #post-body .tagsdiv #newtag { 284 margin-right: 5px; 285 width: 16em; 286 } 287 288 #side-sortables input#post_password { 289 width: 94%; 290 } 291 292 #side-sortables .tagsdiv #newtag { 293 width: 68%; 294 } 295 296 #post-status-info { 297 border-width: 0 1px 1px; 298 border-style: none solid solid; 299 width: 100%; 300 .rounded-bottom(3px); 301 } 302 303 #post-status-info td { 304 font-size: 12px; 305 } 306 307 .autosave-info { 308 padding: 2px 15px; 309 text-align: right; 310 } 311 312 #editorcontent #post-status-info { 313 border: none; 314 } 315 316 #post-body .wp_themeSkin .mceStatusbar a.mceResize { 317 display: block; 318 background: transparent url('../images/resize.gif') no-repeat scroll right bottom; 319 width: 12px; 320 cursor: se-resize; 321 margin: 0 1px; 322 position: relative; 323 top: -2px; 324 } 325 326 #post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize { 327 top: 20px; 328 } 329 330 #content-resize-handle { 331 background: transparent url('../images/resize.gif') no-repeat scroll right bottom; 332 width: 12px; 333 cursor: se-resize; 334 position: absolute; 335 right: 2px; 336 height: 19px; 337 338 .press-this & { 339 bottom: 2px; 340 } 341 342 .tmce-active & { 343 display: none; 344 } 345 } 346 347 #wp-word-count { 348 display: block; 349 padding: 2px 10px; 350 } 351 352 #timestampdiv select { 353 height: 20px; 354 line-height: 14px; 355 padding: 0; 356 vertical-align: top; 357 } 358 359 #aa, #jj, #hh, #mn { 360 padding: 1px; 361 font-size: 12px; 362 } 363 364 #jj, #hh, #mn { 365 width: 2em; 366 } 367 368 #aa { 369 width: 3.4em; 370 } 371 372 .curtime #timestamp { 373 background-repeat: no-repeat; 374 background-position: left center; 375 padding: 2px 0 1px 20px; 376 } 377 378 #timestampdiv { 379 padding-top: 5px; 380 line-height: 23px; 381 382 p { 383 margin: 8px 0 6px; 384 } 385 386 input { 387 border-width: 1px; 388 border-style: solid; 389 } 390 } 391 392 .notification-dialog { 393 position: fixed; 394 top: 30%; 395 left: 50%; 396 width: 450px; 397 margin-left: -225px; 398 background: #fff; 399 line-height: 1.5; 400 z-index: 1000005; 401 } 402 403 .notification-dialog-background { 404 position: fixed; 405 top: 0; 406 left: 0; 407 right: 0; 408 bottom: 0; 409 background: #000; 410 opacity: 0.5; 411 filter: alpha(opacity=50); 412 z-index: 1000000; 413 } 414 415 #post-lock-dialog { 416 .post-locked-message, 417 .post-taken-over { 418 margin: 25px; 419 } 420 421 .post-locked-message a.button { 422 margin-right: 10px; 423 } 424 425 .post-locked-avatar { 426 float: left; 427 margin: 0 20px 20px 0; 428 } 429 430 .wp-tab-first { 431 outline: 0; 432 } 433 434 .locked-saving img { 435 float: left; 436 margin-right: 3px; 437 } 438 439 &.saving .locked-saving, 440 &.saved .locked-saved { 441 display: inline; 442 } 443 } 444 445 /*------------------------------------------------------------------------------ 446 11.1 - Custom Fields 447 ------------------------------------------------------------------------------*/ 448 449 #postcustomstuff { 450 thead th { 451 padding: 5px 8px 8px; 452 } 453 454 #postcustom & .submit { 455 border: 0 none; 456 float: none; 457 padding: 0 8px 8px; 458 } 459 460 #side-sortables #postcustom & { 461 .submit { 462 margin: 0; 463 padding: 0; 464 } 465 466 #the-list textarea { 467 height: 85px; 468 } 469 470 td.left input, 471 td.left select { 472 margin: 3px 3px 0; 473 } 474 } 475 476 #side-sortables & #newmetaleft a { 477 margin: 3px 3px 0; 478 } 479 480 table { 481 margin: 0; 482 width: 100%; 483 border-width: 1px; 484 border-style: solid; 485 border-spacing: 0; 486 } 487 488 tr { 489 vertical-align: top; 490 } 491 492 table input, 493 table select, 494 table textarea { 495 width: 96%; 496 margin: 8px; 497 } 498 499 #side-sortables & table input, 500 #side-sortables & table select, 501 #side-sortables & table textarea { 502 margin: 3px; 503 } 504 505 th.left, 506 td.left { 507 width: 38%; 508 } 509 510 .submit input { 511 margin: 0; 512 width: auto; 513 } 514 515 #newmetaleft a { 516 display: inline-block; 517 margin: 0 8px 8px; 518 text-decoration: none; 519 } 520 521 .no-js & #enternew { 522 display: none; 523 } 524 } 525 526 #post-body-content .compat-attachment-fields { 527 margin-bottom: 20px; 528 } 529 530 .compat-attachment-fields th { 531 padding-top: 5px; 532 padding-right: 10px; 533 } 534 535 /*------------------------------------------------------------------------------ 536 11.2 - Post Revisions 537 ------------------------------------------------------------------------------*/ 538 .revisions-control-frame, 539 .revisions-diff-frame { 540 position: relative; 541 } 542 543 .revisions-controls { 544 padding-top: 40px; 545 height: 100px; 546 z-index: 1; 547 548 input[type="checkbox"] { 549 position: relative; 550 top: -1px; 551 vertical-align: text-bottom; 552 } 553 554 .revisions.pinned & { 555 position: fixed; 556 top: 0; 557 padding-bottom: 10px; 558 } 559 560 .author-card { 561 .date { 562 color: #777; 563 } 564 565 .avatar, 566 .author-info { 567 float: left; 568 margin-left: 6px; 569 margin-right: 6px; 570 } 571 572 &.autosave { 573 color: #d54e21; 574 } 575 576 .author-name { 577 font-weight: bold; 578 } 579 580 .byline { 581 display: block; 582 font-size: 12px; 583 } 584 585 .avatar { 586 vertical-align: middle; 587 } 588 } 589 590 .wp-slider { 591 max-width: 70%; 592 margin: 0 auto; 593 top: -3px; 594 } 595 596 } 597 598 .revisions-tickmarks { 599 position: relative; 600 margin: 0 auto; 601 height: 0.8em; 602 top: 7px; 603 max-width: 70%; 604 .border-box(); 605 606 & > div { 607 position: absolute; 608 height: 100%; 609 border-style: solid; 610 border-width: 0 1px 0 0; 611 .border-box(); 612 613 &:first-child { 614 border-width: 0; 615 } 616 } 617 } 618 619 .comparing-two-revisions .revisions-controls { 620 height: 140px; 621 } 622 623 .revisions .diff-error { 624 position: absolute; 625 text-align: center; 626 margin: 0 auto; 627 width: 100%; 628 display: none; 629 } 630 631 .revisions.diff-error .diff-error { 632 display: block; 633 } 634 635 .revisions { 636 637 .loading-indicator { 638 position: fixed; 639 vertical-align: middle; 640 opacity: 0; 641 width: 100%; 642 top: 50%; 643 margin-left: -90px; 644 -webkit-transition: opacity 0.5s; 645 -moz-transition: opacity 0.5s; 646 -ms-transition: opacity 0.5s; 647 -o-transition: opacity 0.5s; 648 transition: opacity 0.5s; 649 filter: alpha(opacity=0); /* ie8 and earlier */ 650 } 651 652 body.folded & .loading-indicator { 653 margin-left: -32px; 654 } 655 656 .loading-indicator span.spinner { 657 display: block; 658 margin: 0 auto; 659 float: none; 660 } 661 662 &.loading .loading-indicator { 663 opacity: 1; 664 filter: alpha(opacity=100); /* ie8 and earlier */ 665 } 666 667 .diff { 668 -webkit-transition: opacity 0.5s; 669 -moz-transition: opacity 0.5s; 670 -ms-transition: opacity 0.5s; 671 -o-transition: opacity 0.5s; 672 transition: opacity 0.5s; 673 } 674 675 &.loading .diff { 676 opacity: 0.5; 677 filter: alpha(opacity=50); /* ie8 and earlier */ 678 } 679 680 &.diff-error .diff { 681 visibility: hidden; 682 } 683 } 684 685 .revisions-meta { 686 margin-top: 15px; 687 } 688 689 .revision-toggle-compare-mode { 690 position: absolute; 691 top: 0; 692 right: 0; 693 } 694 695 .comparing-two-revisions .revisions-previous, 696 .comparing-two-revisions .revisions-next, 697 .revisions-meta .diff-meta-to strong { 698 display: none; 699 } 700 701 .comparing-two-revisions .diff-meta-to strong { 702 display: block; 703 } 704 705 .revisions-previous, 706 .revisions-next { 707 position: relative; 708 z-index: 1; 709 } 710 711 .revisions-previous { 712 float: left; 713 } 714 715 .revisions-next { 716 float: right; 717 } 718 719 /* Revision meta box */ 720 .post-revisions li img, 721 #revisions-meta-restored img { 722 vertical-align: middle; 723 } 724 725 table.diff { 726 table-layout: fixed; 727 width: 100%; 728 white-space: pre-wrap; 729 word-wrap: break-word; 730 731 col.content { 732 width: auto; 733 734 &.diffsplit { 735 width: 48%; 736 } 737 738 &.middle { 739 width: auto; 740 } 741 } 742 743 col.ltype { 744 width: 30px; 745 } 746 747 tr { 748 background-color: transparent; 749 } 750 751 td, 752 th { 753 padding: .5em; 754 font-family: Consolas, Monaco, monospace; 755 } 756 757 .diff-deletedline del, 758 .diff-addedline ins { 759 text-decoration: none; 760 } 761 } 762 763 .diff-meta { 764 .rounded(3px); 765 padding: 5px; 766 clear: both; 767 min-height: 32px; 768 769 input.restore-revision { 770 float: right; 771 margin-left: 6px; 772 margin-right: 6px; 773 margin-top: 4px; 774 } 775 } 776 777 .diff-title strong { 778 line-height: 32px; 779 min-width: 60px; 780 text-align: right; 781 float: left; 782 margin-right: 5px; 783 } 784 785 .diff-meta-from { 786 display: none; 787 788 .comparing-two-revisions & { 789 display: block; 790 } 791 } 792 793 .revisions-tooltip { 794 position: absolute; 795 bottom: 105px; 796 margin-right: 0; 797 margin-left: -69px; 798 z-index: 0; 799 max-width: 350px; 800 min-width: 130px; 801 padding: 8px 4px; 802 display: none; 803 opacity: 0; 804 805 &.flipped { 806 margin-left: 0; 807 margin-right: -70px; 808 809 .revisions-tooltip-arrow { 810 margin-left: 0; 811 margin-right: 35px; 812 left: auto; 813 right: 0; 814 } 815 816 .ie8 & .revisions-tooltip-arrow > span { 817 right: 25px; 818 } 819 } 820 821 .revisions.pinned & { 822 display: none !important; 823 } 824 825 .comparing-two-revisions & { 826 bottom: 145px; 827 } 828 } 829 830 .revisions-tooltip-arrow { 831 width: 70px; 832 height: 15px; 833 overflow: hidden; 834 position: absolute; 835 left: 0; 836 margin-left: 35px; 837 bottom: -15px; 838 839 & > span { 840 content: ""; 841 position: absolute; 842 left: 20px; 843 top: -20px; 844 width: 25px; 845 height: 25px; 846 -webkit-transform: rotate(45deg); 847 -moz-transform: rotate(45deg); 848 -ms-transform: rotate(45deg); 849 -o-transform: rotate(45deg); 850 tranform: rotate(45deg); 851 852 .revisions-tooltip.flipped & { 853 left: auto; 854 right: 20px; 855 } 856 } 857 858 .ie8 & > span { 859 left: 15px; 860 top: -25px; 861 -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)"; 862 } 863 } 864 865 .revisions-tooltip, 866 .revisions-tooltip-arrow > span { 867 border-width: 1px; 868 border-style: solid; 869 } 870 871 div.revisions-controls > .wp-slider > .ui-slider-handle { 872 margin-left: -10px; 873 } 874 875 /* jQuery UI Slider */ 876 .wp-slider { 877 &.ui-slider { 878 position: relative; 879 border-width: 1px; 880 border-style: solid; 881 .rounded(3px); 882 text-align: left; 883 cursor: pointer; 884 } 885 886 .ui-slider-handle { 887 position: absolute; 888 z-index: 2; 889 margin-top: -3px; 890 width: 19px; 891 height: 19px; 892 border-width: 1px; 893 border-style: solid; 894 .rounded(50%); 895 896 &:before { 897 content: ""; 898 position: absolute; 899 top: 6px; 900 left: 3px; 901 height: 8px; 902 width: 13px; 903 background: url(../images/arrows-pr.png) no-repeat -2px -47px; 904 } 905 906 &.from-handle:before, 907 &.to-handle:before { 908 height: 8px; 909 width: 7px; 910 } 911 912 &.from-handle:before { 913 background-position: -5px -84px; 914 left: 7px; 915 } 916 917 &.to-handle:before { 918 background-position: -4px -65px; 919 left: 5px; 920 } 921 } 922 923 .ui-slider-range { 924 position: absolute; 925 font-size: .7em; 926 display: block; 927 border: 0; 928 background-color: transparent; 929 background-image: none; 930 } 931 932 &.ui-slider-horizontal { 933 height: .8em; 934 935 .ui-slider-handle { 936 top: -.25em; 937 margin-left: -.6em; 938 } 939 940 .ui-slider-range { 941 top: 0; 942 height: 100%; 943 } 944 945 .ui-slider-range-min { 946 left: 0; 947 } 948 949 .ui-slider-range-max { 950 right: 0; 951 } 952 } 953 } 954 955 956 /*------------------------------------------------------------------------------ 957 11.3 - Featured Images 958 ------------------------------------------------------------------------------*/ 959 960 #select-featured-image { 961 padding: 4px 0; 962 overflow: hidden; 963 964 img { 965 max-width: 100%; 966 height: auto; 967 margin-bottom: 10px; 968 } 969 970 a { 971 float: left; 972 clear: both; 973 } 974 975 .remove { 976 display: none; 977 margin-top: 10px; 978 } 979 980 .js &.has-featured-image .remove { 981 display: inline-block; 982 } 983 984 .no-js & .choose { 985 display: none; 986 } 987 } 988 989 /*------------------------------------------------------------------------------ 990 11.4 - Post formats 991 ------------------------------------------------------------------------------*/ 992 993 a.post-state-format { 994 overflow: hidden; 995 display: inline-block; 996 vertical-align: middle; 997 height: 16px; 998 width: 16px; 999 margin-right: 5px; 1000 background-repeat: no-repeat; 1001 text-indent: -999em; 1002 } 1003 1004 #post-formats-select { 1005 line-height: 2em; 1006 } 1007 1008 .post-format-icon { 1009 margin-left: 5px; 1010 padding: 2px 0 2px 21px; 1011 line-height: 2em; 1012 1013 &.post-format-standard { 1014 background-position: 0 0; 1015 } 1016 1017 &.post-format-image { 1018 background-position: 0 -32px; 1019 } 1020 1021 &.post-format-gallery { 1022 background-position: 0 -64px; 1023 } 1024 1025 &.post-format-audio { 1026 background-position: 0 -96px; 1027 } 1028 1029 &.post-format-video { 1030 background-position: 0 -128px; 1031 } 1032 1033 &.post-format-chat { 1034 background-position: 0 -160px; 1035 } 1036 1037 &.post-format-status { 1038 background-position: 0 -192px; 1039 } 1040 1041 &.post-format-aside { 1042 background-position: 0 -224px; 1043 } 1044 1045 &.post-format-quote { 1046 background-position: 0 -256px; 1047 } 1048 1049 &.post-format-link { 1050 background-position: 0 -288px; 1051 } 1052 } 1053 No newline at end of file -
new file wp-admin/css/less/modules/footer.less
diff --git a/wp-admin/css/less/modules/footer.less b/wp-admin/css/less/modules/footer.less new file mode 100644 index 0000000..886238e
- + 1 /*------------------------------------------------------------------------------ 2 21.0 - Admin Footer 3 ------------------------------------------------------------------------------*/ 4 5 #wpfooter { 6 position: absolute; 7 bottom: 0; 8 left: 0; 9 right: 0; 10 padding: 10px 0; 11 margin-right: 20px; 12 border-top-width: 1px; 13 border-top-style: solid; 14 15 p { 16 margin: 0; 17 line-height: 20px; 18 } 19 20 a { 21 text-decoration: none; 22 23 &:hover { 24 text-decoration: underline; 25 } 26 } 27 } 28 No newline at end of file -
new file wp-admin/css/less/modules/forms.less
diff --git a/wp-admin/css/less/modules/forms.less b/wp-admin/css/less/modules/forms.less new file mode 100644 index 0000000..a42d086
- + 1 /*------------------------------------------------------------------------------ 2 2.0 - Forms 3 ------------------------------------------------------------------------------*/ 4 5 6 .wp-admin select { 7 padding: 2px; 8 height: 2em; 9 10 &[multiple] { 11 height: auto; 12 } 13 } 14 15 .submit { 16 padding: 1.5em 0; 17 margin: 5px 0; 18 .rounded-bottom(3px); 19 } 20 21 form p.submit a.cancel:hover { 22 text-decoration: none; 23 } 24 25 #minor-publishing-actions input, 26 #major-publishing-actions input, 27 #minor-publishing-actions .preview { 28 text-align: center; 29 } 30 31 textarea.all-options, 32 input.all-options { 33 width: 250px; 34 } 35 36 input.large-text, 37 textarea.large-text { 38 width: 99%; 39 } 40 41 input.regular-text, 42 #adduser .form-field input { 43 width: 25em; 44 } 45 46 input.small-text { 47 width: 50px; 48 49 &[type="number"] { 50 width: 60px; 51 } 52 } 53 54 #doaction, 55 #doaction2, 56 #post-query-submit { 57 margin: 1px 8px 0 0; 58 } 59 60 .tablenav { 61 #changeit, 62 #delete_all, 63 #clear-recent-list { 64 margin-top: 1px; 65 } 66 67 .actions select { 68 float: left; 69 margin-right: 6px; 70 max-width: 200px; 71 } 72 73 .ie8 & .actions select { 74 width: 155px; 75 76 &#cat { 77 width: 200px; 78 } 79 } 80 } 81 82 #timezone_string option { 83 margin-left: 1em; 84 } 85 86 label, 87 #your-profile label + a { 88 vertical-align: middle; 89 } 90 91 #misc-publishing-actions label { 92 vertical-align: baseline; 93 } 94 95 #pass-strength-result { 96 border-style: solid; 97 border-width: 1px; 98 float: left; 99 margin: 13px 5px 5px 1px; 100 padding: 3px 5px; 101 text-align: center; 102 width: 200px; 103 display: none; 104 } 105 .indicator-hint { 106 padding-top: 8px; 107 } 108 109 p.search-box { 110 float: right; 111 margin: 0; 112 } 113 114 .search-box input[name="s"], 115 #search-plugins input[name="s"], 116 .tagsdiv .newtag { 117 float: left; 118 height: 2em; 119 margin: 0 4px 0 0; 120 } 121 122 input[type="text"].ui-autocomplete-loading { 123 background: transparent url('../images/loading.gif') no-repeat right center; 124 visibility: visible; 125 } 126 127 ul#add-to-blog-users { 128 margin: 0 0 0 14px; 129 } 130 131 .ui-autocomplete-input.open { 132 border-bottom-right-radius: 0; 133 border-bottom-left-radius: 0; 134 } 135 136 .ui-autocomplete { 137 padding: 0; 138 margin: 0; 139 list-style: none; 140 position: absolute; 141 z-index: 10000; 142 border-bottom-right-radius: 3px; 143 border-bottom-left-radius: 3px; 144 border-width: 1px; 145 border-style: solid; 146 147 li { 148 margin-bottom: 0; 149 white-space: nowrap; 150 text-align: left; 151 a { 152 display: block; 153 height: 100%; 154 padding: 4px 10px; 155 156 &.ui-state-focus { 157 cursor: pointer; 158 } 159 } 160 } 161 } 162 No newline at end of file -
new file wp-admin/css/less/modules/full-overlay.less
diff --git a/wp-admin/css/less/modules/full-overlay.less b/wp-admin/css/less/modules/full-overlay.less new file mode 100644 index 0000000..95b35b3
- + 1 /*------------------------------------------------------------------------------ 2 23.0 - Full Overlay w/ Sidebar 3 ------------------------------------------------------------------------------*/ 4 5 body.full-overlay-active { 6 overflow: hidden; 7 } 8 9 .wp-full-overlay { 10 background: #fff; 11 z-index: 500000; 12 position: fixed; 13 overflow: visible; 14 top: 0; 15 bottom: 0; 16 left: 0; 17 right: 0; 18 height: 100%; 19 min-width: 0; 20 21 &.expanded { 22 margin-left: 300px; 23 } 24 25 /* Close Link */ 26 .close-full-overlay { 27 text-decoration: none; 28 } 29 30 /* Collapse Button */ 31 a.collapse-sidebar { 32 position: absolute; 33 bottom: 12px; 34 left: 0; 35 z-index: 50; 36 display: block; 37 width: 19px; 38 height: 19px; 39 margin-left: 15px; 40 padding: 0; 41 .rounded(50%); 42 text-decoration: none; 43 } 44 45 .collapse-sidebar-arrow { 46 position: absolute; 47 margin-top: 2px; 48 margin-left: 2px; 49 display: block; 50 width: 15px; 51 height: 15px; 52 background: transparent url('../images/arrows.png') no-repeat -1px -73px; 53 } 54 55 .collapse-sidebar-label { 56 position: absolute; 57 left: 100%; 58 color: #808080; 59 line-height: 20px; 60 margin-left: 10px; 61 } 62 63 &.collapsed { 64 .collapse-sidebar { 65 position: absolute; 66 left: 100%; 67 } 68 69 .collapse-sidebar-arrow { 70 background-position: -1px -109px; 71 } 72 73 .collapse-sidebar-label { 74 display: none; 75 } 76 } 77 78 .collapse-sidebar:hover .collapse-sidebar-label { 79 color: #666; 80 } 81 } 82 83 .wp-full-overlay-sidebar { 84 .border-box(); 85 position: fixed; 86 width: 300px; 87 height: 100%; 88 top: 0; 89 bottom: 0; 90 left: 0; 91 padding: 0; 92 margin: 0; 93 z-index: 10; 94 overflow: auto; 95 background: #f5f5f5; 96 border-right: 1px solid rgba( 0, 0, 0, 0.2 ); 97 98 .wp-full-overlay.collapsed & { 99 overflow: visible; 100 margin-left: -300px; 101 } 102 103 &:after { 104 content: ''; 105 display: block; 106 position: absolute; 107 top: 0; 108 bottom: 0; 109 right: 0; 110 width: 3px; 111 box-shadow: -5px 0 4px -4px rgba(0, 0, 0, 0.1) inset; 112 z-index: 1000; 113 } 114 115 .wp-full-overlay-header { 116 position: absolute; 117 left: 0; 118 right: 0; 119 height: 45px; 120 padding: 0 20px; 121 line-height: 45px; 122 z-index: 10; 123 margin: 0; 124 border-top: 0; 125 border-bottom: 1px solid #fff; 126 box-shadow: inset 0 -1px 0 0px @border-color; 127 } 128 129 .wp-full-overlay-footer { 130 bottom: 0; 131 border-bottom: 0; 132 border-top: 1px solid @border-color; 133 box-shadow: inset 0 1px 0 0px #fff; 134 } 135 136 .wp-full-overlay-sidebar-content { 137 position: absolute; 138 top: 45px; 139 bottom: 45px; 140 left: 0; 141 right: 0; 142 overflow: auto; 143 144 .accordion-section:first-child { 145 border-top: 1px solid #fff; 146 } 147 } 148 } 149 150 .wp-full-overlay.collapsed, 151 .wp-full-overlay.expanded .wp-full-overlay-sidebar { 152 margin-left: 0 !important; 153 } 154 155 .wp-full-overlay-main { 156 position: absolute; 157 left: 0; 158 right: 0; 159 top: 0; 160 bottom: 0; 161 height: 100%; 162 } 163 164 /* Animations */ 165 .wp-full-overlay, 166 .wp-full-overlay-sidebar, 167 .wp-full-overlay .collapse-sidebar, 168 .wp-full-overlay-main { 169 .transitions(); 170 } 171 No newline at end of file -
new file wp-admin/css/less/modules/global.less
diff --git a/wp-admin/css/less/modules/global.less b/wp-admin/css/less/modules/global.less new file mode 100644 index 0000000..f903535
- + 1 /* 2 column liquid layout */ 2 #wpwrap { 3 height: auto; 4 min-height: 100%; 5 width: 100%; 6 position: relative; 7 } 8 9 #wpcontent { 10 height: 100%; 11 } 12 13 #wpcontent, 14 #wpfooter { 15 margin-left: 165px; 16 } 17 18 .folded #wpcontent, 19 .folded #wpfooter { 20 margin-left: 52px; 21 } 22 23 #wpbody-content { 24 padding-bottom: 65px; 25 float: left; 26 width: 100%; 27 } 28 29 #adminmenuback, 30 #adminmenuwrap, 31 #adminmenu, 32 #adminmenu .wp-submenu { 33 width: 145px; 34 } 35 36 #adminmenuback { 37 position: absolute; 38 top: 0; 39 bottom: 0; 40 z-index: -1; 41 } 42 43 #adminmenu { 44 clear: left; 45 margin: 0; 46 padding: 0; 47 list-style: none; 48 } 49 50 .folded #adminmenuback, 51 .folded #adminmenuwrap, 52 .folded #adminmenu, 53 .folded #adminmenu li.menu-top { 54 width: 32px; 55 } 56 57 /* inner 2 column liquid layout */ 58 59 .inner-sidebar { 60 float: right; 61 clear: right; 62 display: none; 63 width: 281px; 64 position: relative; 65 66 .columns-2 & { 67 margin-right: auto; 68 width: 286px; 69 display: block; 70 } 71 72 #side-sortables, 73 .columns-2 & #side-sortables { 74 min-height: 300px; 75 width: 280px; 76 padding: 0; 77 } 78 79 .has-right-sidebar & { 80 display: block; 81 } 82 } 83 84 .has-right-sidebar { 85 #post-body { 86 float: left; 87 clear: left; 88 width: 100%; 89 margin-right: -2000px; 90 } 91 92 #post-body-content { 93 margin-right: 300px; 94 float: none; 95 width: auto; 96 } 97 } 98 99 /* 2 columns main area */ 100 101 #col-container, 102 #col-left, 103 #col-right { 104 overflow: hidden; 105 padding: 0; 106 margin: 0; 107 } 108 109 #col-left { 110 width: 35%; 111 } 112 113 #col-right { 114 float: right; 115 clear: right; 116 width: 65%; 117 } 118 119 .col-wrap { 120 padding: 0 7px; 121 } 122 123 /* utility classes */ 124 .alignleft { 125 float: left; 126 } 127 128 .alignright { 129 float: right; 130 } 131 132 .textleft { 133 text-align: left; 134 } 135 136 .textright { 137 text-align: right; 138 } 139 140 .clear { 141 clear: both; 142 } 143 144 /* Hide visually but not from screen readers */ 145 .screen-reader-text, 146 .screen-reader-text span, 147 .ui-helper-hidden-accessible { 148 position: absolute; 149 left: -1000em; 150 top: -1000em; 151 height: 1px; 152 width: 1px; 153 overflow: hidden; 154 } 155 156 .screen-reader-shortcut { 157 position: absolute; 158 top: -1000em; 159 160 &:focus { 161 left: 6px; 162 top: -21px; 163 height: auto; 164 width: auto; 165 display: block; 166 .bold-font(14px); 167 padding: 15px 23px 14px; 168 background: #f1f1f1; 169 color: #21759b; 170 .rounded(3px); 171 z-index: 100000; 172 -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6); 173 box-shadow: 0 0 2px 2px rgba(0,0,0,.6); 174 text-decoration: none; 175 } 176 } 177 178 .hidden, 179 .js .closed .inside, 180 .js .hide-if-js, 181 .no-js .hide-if-no-js, 182 .js.wp-core-ui .hide-if-js, 183 .js .wp-core-ui .hide-if-js, 184 .no-js.wp-core-ui .hide-if-no-js, 185 .no-js .wp-core-ui .hide-if-no-js { 186 display: none; 187 } 188 189 /* include margin and padding in the width calculation of input and textarea */ 190 input[type="text"], 191 input[type="password"], 192 input[type="number"], 193 input[type="search"], 194 input[type="email"], 195 input[type="url"], 196 textarea { 197 .border-box(); 198 } 199 200 input[type="checkbox"], 201 input[type="radio"] { 202 vertical-align: text-top; 203 padding: 0; 204 margin: 1px 0 0; 205 } 206 207 input[type="search"] { 208 -webkit-appearance: textfield; 209 } 210 211 input[type="search"]::-webkit-search-decoration { 212 display: none; 213 } 214 215 /* general */ 216 html, 217 body { 218 height: 100%; 219 margin: 0; 220 padding: 0; 221 } 222 223 body { 224 font-family: sans-serif; 225 font-size: 12px; 226 line-height: 1.4em; 227 min-width: 600px; 228 229 &.iframe { 230 min-width: 0; 231 padding-top: 1px; 232 } 233 234 &.login { 235 background: #fbfbfb; 236 min-width: 0; 237 } 238 } 239 240 iframe, 241 img { 242 border: 0; 243 } 244 245 td, 246 textarea, 247 input, 248 select, 249 button { 250 font-family: inherit; 251 font-size: inherit; 252 font-weight: inherit; 253 } 254 255 td, 256 textarea { 257 line-height: inherit; 258 } 259 260 input, 261 select { 262 line-height: 15px; 263 } 264 265 a, 266 input[type="text"], 267 input[type="password"], 268 input[type="number"], 269 input[type="search"], 270 input[type="email"], 271 input[type="url"], 272 select, 273 textarea, 274 div { 275 outline: 0; 276 } 277 278 a:focus, 279 a:active { 280 outline: thin dotted; 281 } 282 283 #adminmenu a:focus, 284 #adminmenu a:active, 285 .screen-reader-text:focus { 286 outline: none; 287 } 288 289 blockquote, 290 q { 291 quotes: none; 292 } 293 294 blockquote:before, 295 blockquote:after, 296 q:before, 297 q:after { 298 content: ''; 299 content: none; 300 } 301 302 p { 303 margin: 1em 0; 304 } 305 306 blockquote { 307 margin: 1em; 308 } 309 310 label { 311 cursor: pointer; 312 } 313 314 li, 315 dd { 316 margin-bottom: 6px; 317 } 318 319 textarea, 320 input, 321 select { 322 margin: 1px; 323 padding: 3px; 324 } 325 326 h1, 327 h2, 328 h3, 329 h4, 330 h5, 331 h6 { 332 display: block; 333 font-weight: bold; 334 } 335 336 h1 { 337 font-size: 2em; 338 margin: .67em 0; 339 } 340 341 h2 { 342 font-size: 1.5em; 343 margin: .83em 0; 344 } 345 346 h3 { 347 font-size: 1.17em; 348 margin: 1em 0; 349 } 350 351 h4 { 352 font-size: 1em; 353 margin: 1.33em 0; 354 } 355 356 h5 { 357 font-size: 0.83em; 358 margin: 1.67em 0; 359 } 360 361 h6 { 362 font-size: 0.67em; 363 margin: 2.33em 0; 364 } 365 366 ul, 367 ol { 368 padding: 0; 369 } 370 371 ul { 372 list-style: none; 373 } 374 375 ol { 376 list-style-type: decimal; 377 margin-left: 2em; 378 } 379 380 ul.ul-disc { 381 list-style: disc outside; 382 } 383 384 ul.ul-square { 385 list-style: square outside; 386 } 387 388 ol.ol-decimal { 389 list-style: decimal outside; 390 } 391 392 ul.ul-disc, 393 ul.ul-square, 394 ol.ol-decimal { 395 margin-left: 1.8em; 396 } 397 398 ul.ul-disc > li, 399 ul.ul-square > li, 400 ol.ol-decimal > li { 401 margin: 0 0 0.5em; 402 } 403 404 .code, 405 code { 406 font-family: Consolas, Monaco, monospace; 407 } 408 409 kbd, 410 code { 411 padding: 1px 3px; 412 margin: 0 1px; 413 font-size: 11px; 414 } 415 416 .subsubsub { 417 list-style: none; 418 margin: 8px 0 5px; 419 padding: 0; 420 font-size: 12px; 421 float: left; 422 423 a { 424 line-height: 2; 425 padding: .2em; 426 text-decoration: none; 427 } 428 429 a .count, 430 a.current .count { 431 color: #999; 432 font-weight: normal; 433 } 434 435 a.current { 436 font-weight: bold; 437 border: none; 438 } 439 440 li { 441 display: inline-block; 442 margin: 0; 443 padding: 0; 444 white-space: nowrap; 445 } 446 } 447 448 .widefat, 449 div.updated, 450 div.error, 451 .wrap .add-new-h2, 452 textarea, 453 input[type="text"], 454 input[type="password"], 455 input[type="file"], 456 input[type="email"], 457 input[type="number"], 458 input[type="search"], 459 input[type="tel"], 460 input[type="url"], 461 select, 462 .tablenav .tablenav-pages a, 463 .tablenav-pages span.current, 464 #titlediv #title, 465 .postbox, 466 #postcustomstuff table, 467 #postcustomstuff input, 468 #postcustomstuff textarea, 469 .imgedit-menu div, 470 .plugin-update-tr .update-message, 471 #poststuff .inside .the-tagcloud, 472 .login form, 473 #login_error, 474 .login .message, 475 #menu-management .menu-edit, 476 .nav-menus-php .list-container, 477 .menu-item-handle, 478 .link-to-original, 479 .nav-menus-php .major-publishing-actions .form-invalid, 480 .press-this #message, 481 #TB_window, 482 .tbtitle, 483 .highlight, 484 .feature-filter, 485 #widget-list .widget-top, 486 .editwidget .widget-inside { 487 .rounded(3px); 488 border-width: 1px; 489 border-style: solid; 490 } 491 492 /* .widefat - main style for tables */ 493 .widefat { 494 border-spacing: 0; 495 width: 100%; 496 clear: both; 497 margin: 0; 498 499 * { 500 word-wrap: break-word; 501 } 502 503 a { 504 text-decoration: none; 505 } 506 507 thead th:first-of-type { 508 -moz-border-top-left-radius: 3px; 509 -webkit-border-top-left-radius: 3px; 510 border-top-left-radius: 3px; 511 } 512 thead th:last-of-type { 513 -moz-border-top-right-radius: 3px; 514 -webkit-border-top-right-radius: 3px; 515 border-top-right-radius: 3px; 516 } 517 tfoot th:first-of-type { 518 -moz-border-bottom-left-radius: 3px; 519 -webkit-border-bottom-left-radius: 3px; 520 border-bottom-left-radius: 3px; 521 } 522 tfoot th:last-of-type { 523 -moz-border-bottom-right-radius: 3px; 524 -webkit-border-bottom-right-radius: 3px; 525 border-bottom-right-radius: 3px; 526 } 527 528 td, 529 th { 530 border-width: 1px 0; 531 border-style: solid; 532 } 533 tfoot th { 534 border-bottom: none; 535 } 536 537 .no-items td { 538 border-bottom-width: 0; 539 } 540 541 td { 542 font-size: 12px; 543 padding: 4px 7px 2px; 544 vertical-align: top; 545 } 546 547 td p, 548 td ol, 549 td ul { 550 font-size: 12px; 551 } 552 553 th { 554 padding: 7px 7px 8px; 555 text-align: left; 556 line-height: 1.3em; 557 font-size: 14px; 558 } 559 560 th input { 561 margin: 0 0 0 8px; 562 padding: 0; 563 vertical-align: text-top; 564 } 565 566 .check-column { 567 width: 2.2em; 568 padding: 6px 0 25px; 569 vertical-align: top; 570 } 571 572 tbody th.check-column { 573 padding: 9px 0 22px; 574 } 575 576 &.media .check-column { 577 padding-top: 8px; 578 } 579 580 thead .check-column, 581 tfoot .check-column { 582 padding: 10px 0 0; 583 } 584 585 .no-js & thead .check-column input, 586 .no-js & tfoot .check-column input { 587 display: none; 588 } 589 } 590 591 .widefat .num, 592 .column-comments, 593 .column-links, 594 .column-posts { 595 text-align: center; 596 } 597 598 .widefat th#comments { 599 vertical-align: middle; 600 } 601 602 .wrap { 603 margin: 4px 15px 0 0; 604 } 605 606 div.updated, 607 div.error { 608 padding: 0 0.6em; 609 margin: 5px 15px 2px; 610 } 611 612 div.updated p, 613 div.error p { 614 margin: 0.5em 0; 615 padding: 2px; 616 } 617 618 .wrap div.updated, 619 .wrap div.error, 620 .media-upload-form div.error { 621 margin: 5px 0 15px; 622 } 623 624 .wrap h2, 625 .subtitle { 626 font-weight: normal; 627 margin: 0; 628 text-shadow: #fff 0 1px 0; 629 } 630 631 .wrap h2 { 632 font-size: 23px; 633 padding: 9px 15px 4px 0; 634 line-height: 29px; 635 } 636 637 .subtitle { 638 font-size: 14px; 639 padding-left: 25px; 640 } 641 642 .wrap .add-new-h2 { 643 font-family: sans-serif; 644 margin-left: 4px; 645 padding: 3px 8px; 646 position: relative; 647 top: -3px; 648 text-decoration: none; 649 font-size: 12px; 650 border: 0 none; 651 } 652 653 .wrap h2.long-header { 654 padding-right: 0; 655 } 656 657 html, 658 .wp-dialog { 659 background-color: white; 660 } 661 662 textarea, 663 input[type="text"], 664 input[type="password"], 665 input[type="file"], 666 input[type="email"], 667 input[type="number"], 668 input[type="search"], 669 input[type="tel"], 670 input[type="url"], 671 select { 672 background-color: white; 673 color: #333; 674 } 675 676 select { 677 color: black; 678 } 679 680 select[disabled] { 681 color: #7f7f7f; 682 } 683 684 select:focus { 685 border-color: #aaa; 686 } 687 688 textarea:focus, 689 input[type="text"]:focus, 690 input[type="password"]:focus, 691 input[type="file"]:focus, 692 input[type="email"]:focus, 693 input[type="number"]:focus, 694 input[type="search"]:focus, 695 input[type="tel"]:focus, 696 input[type="url"]:focus, 697 select:focus { 698 -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.1); 699 box-shadow: 1px 1px 2px rgba(0,0,0,0.1); 700 } 701 702 input[readonly] { 703 background-color: #eee; 704 } 705 706 :-moz-placeholder, 707 .wp-core-ui :-moz-placeholder { 708 color: #a9a9a9; 709 } 710 711 .postbox .spinner { 712 display: none; 713 vertical-align: middle; 714 } 715 716 .button-controls { 717 clear:both; 718 margin: 10px 0; 719 } 720 721 .show-all, 722 .hide-all { 723 cursor: pointer; 724 } 725 726 .hide-all { 727 display: none; 728 } 729 730 img { 731 border: none; 732 } 733 No newline at end of file -
new file wp-admin/css/less/modules/header.less
diff --git a/wp-admin/css/less/modules/header.less b/wp-admin/css/less/modules/header.less new file mode 100644 index 0000000..fd7b7e6
- + 1 /*------------------------------------------------------------------------------ 2 6.0 - Admin Header 3 ------------------------------------------------------------------------------*/ 4 #adminmenu a, 5 #sidemenu a, 6 #taglist a, 7 #catlist a { 8 text-decoration: none; 9 } 10 11 /*------------------------------------------------------------------------------ 12 6.1 - Screen Options Tabs 13 ------------------------------------------------------------------------------*/ 14 15 #screen-options-wrap, 16 #contextual-help-wrap { 17 margin: 0; 18 padding: 8px 20px 12px; 19 position: relative; 20 } 21 22 #contextual-help-wrap { 23 overflow: auto; 24 } 25 26 #screen-meta-links { 27 margin: 0 24px 0 0; 28 29 a:focus { 30 -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.4); 31 box-shadow: 1px 1px 1px rgba(0,0,0,0.4); 32 outline: none; 33 } 34 35 .screen-meta-toggle { 36 position: relative; 37 top: -1px; 38 } 39 40 a.show-settings { 41 text-decoration: none; 42 z-index: 1; 43 padding: 1px 16px 0 6px; 44 height: 22px; 45 line-height: 22px; 46 font-size: 12px; 47 display: block; 48 text-shadow: rgba(255,255,255,0.7) 0 1px 0; 49 50 &:hover { 51 text-decoration: none; 52 } 53 } 54 } 55 56 /* screen options and help tabs revert */ 57 #screen-meta { 58 display: none; 59 position: relative; 60 margin: 0 15px 0 5px; 61 border-width: 0 1px 1px; 62 border-style: none solid solid; 63 64 .screen-reader-text { 65 visibility: hidden; 66 } 67 } 68 69 #screen-options-link-wrap, 70 #contextual-help-link-wrap { 71 float: right; 72 height: 23px; 73 padding: 0; 74 margin: 0 0 0 6px; 75 font-family: sans-serif; 76 } 77 78 #screen-options-link-wrap, 79 #contextual-help-link-wrap, 80 #screen-meta { 81 .rounded-bottom(); 82 } 83 84 /* end screen options and help tabs */ 85 86 .toggle-arrow { 87 background-repeat: no-repeat; 88 background-position: top left; 89 background-color: transparent; 90 height: 22px; 91 line-height: 22px; 92 display: block; 93 } 94 95 .toggle-arrow-active { 96 background-position: bottom left; 97 } 98 99 #screen-options-wrap h5, 100 #contextual-help-wrap h5 { 101 margin: 8px 0; 102 font-size: 13px; 103 } 104 105 .metabox-prefs { 106 label { 107 display: inline-block; 108 padding-right: 15px; 109 white-space: nowrap; 110 line-height: 30px; 111 112 input { 113 margin: 0 5px 0 2px; 114 } 115 116 a { 117 display: none; 118 } 119 } 120 121 .columns-prefs label input { 122 margin: 0 2px; 123 } 124 } 125 126 127 128 /*------------------------------------------------------------------------------ 129 6.2 - Help Menu 130 ------------------------------------------------------------------------------*/ 131 132 #contextual-help-wrap { 133 padding: 0; 134 margin-left: -4px; 135 } 136 137 #contextual-help-columns { 138 position: relative; 139 } 140 141 #contextual-help-back { 142 position: absolute; 143 top: 0; 144 bottom: 0; 145 left: 150px; 146 right: 170px; 147 border-width: 0 1px; 148 border-style: solid; 149 150 #contextual-help-wrap.no-sidebar & { 151 right: 0; 152 153 border-right-width: 0; 154 -moz-border-bottom-right-radius: 2px; 155 -webkit-border-bottom-right-radius: 2px; 156 border-bottom-right-radius: 2px; 157 } 158 } 159 160 .contextual-help-tabs { 161 float: left; 162 width: 150px; 163 margin: 0; 164 165 ul { 166 margin: 1em 0; 167 } 168 169 li { 170 margin-bottom: 0; 171 list-style-type: none; 172 border-style: solid; 173 border-width: 1px 0; 174 border-color: transparent; 175 } 176 177 a { 178 display: block; 179 padding: 5px 5px 5px 12px; 180 line-height: 18px; 181 text-decoration: none; 182 } 183 184 .active { 185 padding: 0; 186 margin: 0 -1px 0 0; 187 border-width: 1px 0 1px 1px; 188 border-style: solid; 189 } 190 } 191 192 .contextual-help-tabs-wrap { 193 padding: 0 20px; 194 overflow: auto; 195 } 196 197 .help-tab-content { 198 display: none; 199 margin: 0 22px 12px 0; 200 line-height: 1.6em; 201 202 &.active { 203 display: block; 204 } 205 206 ul li { 207 list-style-type: disc; 208 margin-left: 18px; 209 } 210 } 211 212 .contextual-help-sidebar { 213 width: 150px; 214 float: right; 215 padding: 0 8px 0 12px; 216 overflow: auto; 217 } 218 No newline at end of file -
new file wp-admin/css/less/modules/hidpi.less
diff --git a/wp-admin/css/less/modules/hidpi.less b/wp-admin/css/less/modules/hidpi.less new file mode 100644 index 0000000..7d3e3ea
- + 1 /** 2 * HiDPI Displays 3 */ 4 @media print, 5 (-o-min-device-pixel-ratio: 5/4), 6 (-webkit-min-device-pixel-ratio: 1.25), 7 (min-resolution: 120dpi) { 8 9 .press-this .tagchecklist span a { 10 background-image: url('../images/xit-2x.gif'); 11 background-size: 20px auto; 12 } 13 14 .js .postbox:hover .handlediv, 15 .js .stuffbox:hover .handlediv, 16 .widget-top a.widget-action { 17 background-image: url('../images/arrows-2x.png'); 18 background-size: 15px 123px; 19 } 20 21 .widget-top a.widget-action:hover { 22 background-image: url('../images/arrows-dark-2x.png'); 23 background-size: 15px 123px; 24 } 25 26 .post-com-count { 27 background-image: url('../images/bubble_bg-2x.gif'); 28 background-size: 18px 100px; 29 } 30 31 tr.wp-locked .locked-indicator { 32 background-image: url('../images/lock-2x.png'); 33 background-size: 16px 16px; 34 } 35 36 th .comment-grey-bubble { 37 background-image: url('../images/comment-grey-bubble-2x.png'); 38 background-size: 12px 12px; 39 } 40 41 .sorting-indicator { 42 background-image: url('../images/sort-2x.gif?ver=20130102'); 43 background-size: 14px 4px; 44 } 45 46 #content-resize-handle, 47 #post-body .wp_themeSkin .mceStatusbar a.mceResize { 48 background: transparent url('../images/resize-2x.gif') no-repeat scroll right bottom; 49 background-size: 11px 11px; 50 } 51 52 div.star-holder { 53 background: url('../images/stars-2x.png?ver=20121108') repeat-x bottom left; 54 background-size: 21px 37px; 55 } 56 57 div.star-holder .star-rating { 58 background: url('../images/stars-2x.png?ver=20121108') repeat-x top left; 59 background-size: 21px 37px; 60 } 61 62 .welcome-panel .welcome-panel-close:before { 63 background-image: url('../images/xit-2x.gif'); 64 background-size: 20px auto; 65 } 66 67 .welcome-panel .welcome-icon { 68 background-image: url('../images/welcome-icons-2x.png'); 69 } 70 71 .login h1 a { 72 background-image: url('../images/wordpress-logo-2x.png?ver=20120412'); 73 background-size: 274px 63px; 74 } 75 76 .wp-badge { 77 background-image: url('../images/wp-badge-2x.png?ver=20120516'); 78 background-size: 173px 194px; 79 } 80 81 .wp-full-overlay .collapse-sidebar-arrow { 82 background-image: url('../images/arrows-2x.png'); 83 background-size: 15px 123px; 84 } 85 86 .pressthis a span { 87 background-image: url(../images/press-this-2x.png?v=20121105); 88 } 89 90 .imgedit-crop, 91 .imgedit-rleft, 92 .imgedit-rright, 93 .imgedit-flipv, 94 .imgedit-fliph, 95 .imgedit-undo, 96 .imgedit-redo { 97 background-image: url('../images/imgedit-icons-2x.png'); 98 background-size: 260px 64px; 99 } 100 101 .spinner, 102 .imgedit-wait, 103 .customize-loading #customize-container { 104 background-image: url(../images/wpspin_light-2x.gif); 105 } 106 107 .wp-slider .ui-slider-handle:before { 108 background-image: url(../images/arrows-pr-2x.png); 109 background-size: 16px 102px; 110 } 111 112 } 113 No newline at end of file -
new file wp-admin/css/less/modules/layout-blocks.less
diff --git a/wp-admin/css/less/modules/layout-blocks.less b/wp-admin/css/less/modules/layout-blocks.less new file mode 100644 index 0000000..65da352
- + 1 /*------------------------------------------------------------------------------ 2 8.0 - Layout Blocks 3 ------------------------------------------------------------------------------*/ 4 5 html.wp-toolbar { 6 padding-top: 28px; 7 .border-box(); 8 } 9 10 .narrow { 11 width: 70%; 12 margin-bottom: 40px; 13 14 p { 15 line-height: 150%; 16 } 17 } 18 19 .widefat { 20 th, 21 td { 22 overflow: hidden; 23 } 24 25 th { 26 font-weight: normal; 27 } 28 29 td p { 30 margin: 2px 0 0.8em; 31 } 32 33 .column-comment p { 34 margin: 0.6em 0; 35 } 36 } 37 38 /* Screens with postboxes */ 39 .postbox-container { 40 float: left; 41 } 42 43 #dashboard-widgets { 44 &.columns-1 .postbox-container { 45 width: 100%; 46 } 47 48 &.columns-2 { 49 .postbox-container { 50 width: 49.5%; 51 } 52 53 #postbox-container-2, 54 #postbox-container-3, 55 #postbox-container-4 { 56 float: right; 57 width: 50.5%; 58 } 59 } 60 61 &.columns-3 { 62 .postbox-container { 63 width: 33.5%; 64 } 65 66 #postbox-container-1 { 67 width: 33%; 68 } 69 70 #postbox-container-3, 71 #postbox-container-4 { 72 float: right; 73 } 74 } 75 76 &.columns-4 .postbox-container { 77 width: 25%; 78 } 79 } 80 81 .postbox-container .meta-box-sortables { 82 .border-box(); 83 } 84 85 .metabox-holder .postbox-container .empty-container { 86 border: 3px dashed #ccc; 87 height: 250px; 88 } 89 90 .metabox-holder.columns-1 .postbox-container .empty-container, 91 .columns-2 #postbox-container-3 .empty-container, 92 .columns-2 #postbox-container-4 .empty-container, 93 .columns-3 #postbox-container-4 .empty-container { 94 border: 0 none; 95 height: 0; 96 min-height: 0; 97 } 98 99 #poststuff { 100 padding-top: 10px; 101 102 #post-body { 103 padding: 0; 104 } 105 106 .postbox-container { 107 width: 100%; 108 } 109 110 #post-body.columns-2 { 111 margin-right: 300px; 112 } 113 } 114 115 #post-body-content { 116 width: 100%; 117 float: left; 118 } 119 120 #post-body.columns-2 #postbox-container-1 { 121 float: right; 122 margin-right: -300px; 123 width: 280px; 124 } 125 126 #post-body.columns-2 #side-sortables { 127 min-height: 250px; 128 } 129 130 /* one column on the dash */ 131 @media only screen and (max-width: 799px) { 132 #wpbody-content #dashboard-widgets .postbox-container { 133 width: 100%; 134 } 135 136 #wpbody-content .metabox-holder .postbox-container .empty-container { 137 border: 0 none; 138 height: 0; 139 min-height: 0; 140 } 141 } 142 143 /* two columns on the dash, but keep the setting if one is selected */ 144 @media only screen and (min-width: 800px) and (max-width: 1200px) { 145 #wpbody-content #dashboard-widgets .postbox-container { 146 width: 49.5%; 147 } 148 149 #wpbody-content #dashboard-widgets #postbox-container-2, 150 #wpbody-content #dashboard-widgets #postbox-container-3, 151 #wpbody-content #dashboard-widgets #postbox-container-4 { 152 float: right; 153 width: 50.5%; 154 } 155 156 #dashboard-widgets #postbox-container-3 .empty-container, 157 #dashboard-widgets #postbox-container-4 .empty-container { 158 border: 0 none; 159 height: 0; 160 min-height: 0; 161 } 162 163 #wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container { 164 width: 100%; 165 } 166 167 #wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container { 168 border: 0 none; 169 height: 0; 170 min-height: 0; 171 } 172 173 /* show the radio buttons for column prefs only for one or two columns */ 174 .index-php .screen-layout, 175 .index-php .columns-prefs { 176 display: block; 177 } 178 179 .columns-prefs .columns-prefs-3, 180 .columns-prefs .columns-prefs-4 { 181 display: none; 182 } 183 } 184 185 /* one column on the post write/edit screen */ 186 @media only screen and (max-width: 850px) { 187 #wpbody-content #poststuff #post-body { 188 margin: 0; 189 } 190 191 #wpbody-content #post-body.columns-2 #postbox-container-1 { 192 margin-right: 0; 193 width: 100%; 194 } 195 196 #poststuff #postbox-container-1 .empty-container, 197 #poststuff #postbox-container-1 #side-sortables:empty { 198 border: 0 none; 199 height: 0; 200 min-height: 0; 201 } 202 203 #poststuff #post-body.columns-2 #side-sortables { 204 min-height: 0; 205 } 206 207 /* hide the radio buttons for column prefs */ 208 .screen-layout, 209 .columns-prefs { 210 display: none; 211 } 212 } 213 214 .postbox .hndle { 215 .rounded-top(); 216 } 217 218 .js .postbox .hndle { 219 cursor: move; 220 } 221 222 .postbox.closed .hndle { 223 .rounded(3px); 224 } 225 226 .hndle a { 227 font-size: 11px; 228 font-weight: normal; 229 } 230 231 .postbox .handlediv { 232 float: right; 233 width: 27px; 234 height: 30px; 235 } 236 237 .js .postbox .handlediv { 238 cursor: pointer; 239 } 240 241 .sortable-placeholder { 242 border-width: 1px; 243 border-style: dashed; 244 margin-bottom: 20px; 245 } 246 247 .widget, 248 .postbox, 249 .stuffbox { 250 margin-bottom: 20px; 251 padding: 0; 252 border-width: 1px; 253 border-style: solid; 254 line-height: 1; 255 } 256 257 .widget .widget-top, 258 .postbox h3, 259 .stuffbox h3 { 260 margin-top: 1px; 261 border-bottom-width: 1px; 262 border-bottom-style: solid; 263 .no-user-select(); 264 } 265 266 .js .widget .widget-top, 267 .js .postbox h3 { 268 cursor: move; 269 } 270 271 .postbox .inside, 272 .stuffbox .inside { 273 padding: 0 12px 0 10px; 274 line-height: 1.4em; 275 } 276 277 .postbox .inside { 278 margin: 10px 0; 279 position: relative; 280 } 281 282 .postbox.closed h3 { 283 border: none; 284 .no-box-shadows(); 285 } 286 287 .postbox table.form-table { 288 margin-bottom: 0; 289 } 290 291 .temp-border { 292 border: 1px dotted #ccc; 293 } 294 295 .columns-prefs label { 296 padding: 0 5px; 297 } 298 No newline at end of file -
new file wp-admin/css/less/modules/list-posts.less
diff --git a/wp-admin/css/less/modules/list-posts.less b/wp-admin/css/less/modules/list-posts.less new file mode 100644 index 0000000..99a92d5
- + 1 /*------------------------------------------------------------------------------ 2 10.0 - List Posts (/Pages/etc) 3 ------------------------------------------------------------------------------*/ 4 5 table.fixed { 6 table-layout: fixed; 7 } 8 9 .fixed { 10 .column-rating, 11 .column-visible { 12 width: 8%; 13 } 14 15 .column-posts, 16 .column-date, 17 .column-parent, 18 .column-links, 19 .column-author, 20 .column-format { 21 width: 10%; 22 } 23 24 .column-response, 25 .column-categories, 26 .column-tags, 27 .column-rel, 28 .column-role { 29 width: 15%; 30 } 31 32 .column-slug { 33 width: 25%; 34 } 35 36 .column-locations { 37 width: 35%; 38 } 39 40 .column-comments { 41 width: 4em; 42 padding: 8px 0; 43 text-align: left; 44 45 .vers { 46 padding-left: 3px; 47 } 48 49 a { 50 float: left; 51 } 52 } 53 54 .column-icon { 55 width: 80px; 56 } 57 58 #comments-form & .column-author { 59 width: 20%; 60 } 61 } 62 63 #commentsdiv { 64 &.postbox .inside { 65 margin: 0; 66 padding: 0; 67 } 68 69 .inside .row-actions { 70 line-height:18px; 71 } 72 73 .inside .column-author { 74 width: 25%; 75 } 76 77 .column-comment p { 78 margin: 0.6em 0; 79 padding: 0; 80 } 81 82 #replyrow td { 83 padding: 0; 84 } 85 86 p { 87 padding: 8px 10px; 88 margin: 0; 89 } 90 91 #add-new-comment { 92 border-width: 0 0 1px; 93 border-style: none none solid; 94 } 95 96 .comments-box { 97 border: 0 none; 98 99 thead th { 100 background: transparent; 101 padding: 0 7px 4px; 102 font-style: italic; 103 } 104 105 tr:last-child td { 106 border-bottom: 0 none; 107 } 108 } 109 110 .spinner { 111 padding-left: 5px; 112 } 113 } 114 115 .sorting-indicator { 116 display: none; 117 width: 7px; 118 height: 4px; 119 margin-top: 8px; 120 margin-left: 7px; 121 background-image: url('../images/sort.gif'); 122 background-repeat: no-repeat; 123 } 124 125 tr.wp-locked .locked-indicator { 126 background: url('../images/lock.png') no-repeat; 127 margin: -2px 0 0 6px; 128 height: 20px; 129 width: 16px; 130 } 131 132 tr.wp-locked .check-column label, 133 tr.wp-locked .check-column input[type="checkbox"], 134 tr.wp-locked .row-actions .inline, 135 tr.wp-locked .row-actions .trash { 136 display: none; 137 } 138 139 tr .locked-info { 140 height: 0; 141 opacity: 0; 142 } 143 144 tr.wp-locked .locked-info { 145 height: auto; 146 opacity: 1; 147 } 148 149 tr.locked-info, tr.wp-locked .locked-info { 150 -webkit-transition: height 1s, opacity 500ms; 151 -moz-transition: height 1s, opacity 500ms; 152 -ms-transition: height 1s, opacity 500ms; 153 -o-transition: height 1s, opacity 500ms; 154 transition: height 1s, opacity 500ms; 155 } 156 157 .fixed .column-comments .sorting-indicator { 158 margin-top: 3px; 159 } 160 161 #menu-locations-wrap .widefat { 162 width: 60%; 163 } 164 165 .widefat th.sortable, 166 .widefat th.sorted { 167 padding: 0; 168 } 169 170 th.sortable a, 171 th.sorted a { 172 display: block; 173 overflow: hidden; 174 padding: 7px 7px 8px; 175 } 176 177 .fixed .column-comments.sortable a, 178 .fixed .column-comments.sorted a { 179 padding: 8px 0; 180 } 181 182 th.sortable a span, 183 th.sorted a span { 184 float: left; 185 cursor: pointer; 186 } 187 188 th.sorted.asc .sorting-indicator, 189 th.desc:hover span.sorting-indicator { 190 display: block; 191 background-position: 0 0; 192 } 193 194 th.sorted.desc .sorting-indicator, 195 th.asc:hover span.sorting-indicator { 196 display: block; 197 background-position: -7px 0; 198 } 199 200 /* Bulk Actions */ 201 .tablenav-pages a { 202 border-bottom-style: solid; 203 border-bottom-width: 2px; 204 font-weight: bold; 205 margin-right: 1px; 206 padding: 0 2px; 207 } 208 .tablenav-pages .current-page { 209 text-align: center; 210 } 211 .tablenav-pages .next-page { 212 margin-left: 2px; 213 } 214 215 .tablenav { 216 clear: both; 217 height: 30px; 218 margin: 6px 0 4px; 219 vertical-align: middle; 220 221 222 &.themes { 223 max-width: 98%; 224 } 225 226 a.button-secondary { 227 display: block; 228 margin: 3px 8px 0 0; 229 } 230 231 .tablenav-pages { 232 float: right; 233 display: block; 234 cursor: default; 235 height: 30px; 236 line-height: 30px; 237 font-size: 12px; 238 239 a.disabled:hover , 240 a.disabled:active { 241 cursor: default; 242 } 243 } 244 245 .no-pages, 246 .one-page .pagination-links { 247 display: none; 248 } 249 250 .displaying-num { 251 margin-right: 10px; 252 font-size: 12px; 253 font-style: italic; 254 } 255 256 .actions { 257 overflow: hidden; 258 padding: 2px 8px 0 0; 259 } 260 261 .delete { 262 margin-right: 20px; 263 } 264 } 265 266 .tablenav .tablenav-pages a, 267 .tablenav-pages span.current { 268 text-decoration: none; 269 padding: 3px 6px; 270 } 271 272 .view-switch { 273 float: right; 274 margin: 6px 8px 0; 275 276 a { 277 text-decoration: none; 278 } 279 } 280 281 .filter { 282 float: left; 283 margin: -5px 0 0 10px; 284 285 .subsubsub { 286 margin-left: -10px; 287 margin-top: 13px; 288 } 289 } 290 291 .screen-per-page { 292 width: 4em; 293 } 294 295 #posts-filter fieldset { 296 float: left; 297 margin: 0 1.5ex 1em 0; 298 padding: 0; 299 } 300 301 #posts-filter fieldset legend { 302 padding: 0 0 .2em 1px; 303 } 304 305 306 /*------------------------------------------------------------------------------ 307 10.1 - Inline Editing 308 ------------------------------------------------------------------------------*/ 309 310 /* 311 .quick-edit* is for Quick Edit 312 .bulk-edit* is for Bulk Edit 313 .inline-edit* is for everything 314 */ 315 316 /* Layout */ 317 318 #wpbody-content { 319 .inline-edit-row fieldset { 320 font-size: 12px; 321 float: left; 322 margin: 0; 323 padding: 0; 324 width: 100%; 325 } 326 327 .quick-edit-row-post { 328 .inline-edit-col-left { 329 width: 40%; 330 } 331 332 .inline-edit-col-right { 333 width: 39%; 334 } 335 } 336 337 .quick-edit-row-page { 338 fieldset.inline-edit-col-right .inline-edit-col { 339 border-width: 0 0 0 1px; 340 border-style: none none none solid; 341 } 342 343 .inline-edit-col-left { 344 width: 50%; 345 } 346 } 347 348 .inline-edit-row-post .inline-edit-col-center { 349 width: 20%; 350 } 351 352 .quick-edit-row-page .inline-edit-col-right, 353 .bulk-edit-row-post .inline-edit-col-right { 354 width: 49%; 355 } 356 357 .bulk-edit-row .inline-edit-col-left { 358 width: 30%; 359 } 360 361 .bulk-edit-row-page .inline-edit-col-right { 362 width: 69%; 363 } 364 365 .bulk-edit-row .inline-edit-col-bottom { 366 float: right; 367 width: 69%; 368 } 369 370 .inline-edit-row-page .inline-edit-col-right { 371 margin-top: 27px; 372 } 373 } 374 375 tr.inline-edit-row td, 376 #wpbody-content .inline-edit-row fieldset .inline-edit-col { 377 padding: 0 0.5em; 378 } 379 380 .inline-edit-row { 381 fieldset .inline-edit-group { 382 clear: both; 383 384 &:after { 385 content: "."; 386 display: block; 387 height: 0; 388 clear: both; 389 visibility: hidden; 390 } 391 } 392 393 p.submit { 394 clear: both; 395 padding: 0.5em; 396 margin: 0.5em 0 0; 397 } 398 399 span.error { 400 line-height: 22px; 401 margin: 0 15px; 402 padding: 3px 5px; 403 } 404 405 /* Positioning */ 406 h4 { 407 margin: .2em 0; 408 padding: 0; 409 line-height: 23px; 410 text-transform: uppercase; 411 } 412 413 fieldset { 414 span.title, 415 span.checkbox-title { 416 margin: 0; 417 padding: 0; 418 line-height: 27px; 419 font-style: italic; 420 line-height: 1.8em; 421 } 422 423 label, 424 span.inline-edit-categories-label { 425 display: block; 426 margin: .2em 0; 427 } 428 429 label.inline-edit-tags { 430 margin-top: 0; 431 } 432 433 label.inline-edit-tags span.title { 434 margin: .2em 0; 435 width: auto; 436 } 437 438 label span.title { 439 display: block; 440 float: left; 441 width: 5em; 442 } 443 444 label span.input-text-wrap { 445 display: block; 446 margin-left: 5em; 447 } 448 449 label input[type=checkbox] { 450 vertical-align: text-bottom; 451 } 452 453 label textarea { 454 width: 100%; 455 height: 4em; 456 } 457 458 /* Specific Elements */ 459 input[type="text"], 460 textarea { 461 border-style: solid; 462 border-width: 1px; 463 } 464 465 .inline-edit-date { 466 float: left; 467 } 468 469 input[name=jj], 470 input[name=hh], 471 input[name=mn] { 472 font-size: 12px; 473 width: 2.1em; 474 } 475 476 input[name=aa] { 477 font-size: 12px; 478 width: 3.5em; 479 } 480 481 label input.inline-edit-password-input { 482 width: 8em; 483 } 484 485 ul.cat-checklist li, 486 ul.cat-checklist input { 487 margin: 0; 488 } 489 490 label input.inline-edit-menu-order-input { 491 width: 3em; 492 } 493 494 label input.inline-edit-slug-input { 495 width: 75%; 496 } 497 } 498 499 .input-text-wrap input[type=text] { 500 width: 100%; 501 } 502 503 fieldset ul.cat-checklist label, 504 #bulk-titles div { 505 font-family: sans-serif; 506 font-style: normal; 507 font-size: 11px; 508 } 509 } 510 511 .quick-edit-row-post fieldset.inline-edit-col-right label span.title { 512 width: auto; 513 padding-right: 0.5em; 514 } 515 516 #wpbody-content .bulk-edit-row fieldset .inline-edit-group label { 517 max-width: 50%; 518 } 519 520 #wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child { 521 margin-right: 0.5em; 522 } 523 524 .inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input { 525 width: 6em; 526 } 527 528 .inline-edit-save .spinner { 529 padding: 4px 10px 0; 530 vertical-align: top; 531 float: right; 532 } 533 534 ul.cat-checklist { 535 height: 12em; 536 border-style: solid; 537 border-width: 1px; 538 overflow-y: scroll; 539 padding: 0 5px; 540 margin: 0; 541 } 542 543 #bulk-titles { 544 display: block; 545 height: 12em; 546 border-style: solid; 547 border-width: 1px; 548 overflow-y: scroll; 549 padding: 0 5px; 550 margin: 0 0 5px; 551 } 552 553 .quick-edit-row-post fieldset label.inline-edit-status { 554 float: left; 555 } 556 557 #bulk-titles { 558 line-height: 140%; 559 560 div { 561 margin: 0.2em 0.3em; 562 563 a { 564 cursor: pointer; 565 display: block; 566 float: left; 567 height: 10px; 568 margin: 3px 3px 0 -2px; 569 overflow: hidden; 570 position: relative; 571 text-indent: -9999px; 572 width: 10px; 573 } 574 } 575 } 576 No newline at end of file -
new file wp-admin/css/less/modules/localized.less
diff --git a/wp-admin/css/less/modules/localized.less b/wp-admin/css/less/modules/localized.less new file mode 100644 index 0000000..d5abc10
- + 1 /* =Localized CSS 2 -------------------------------------------------------------- */ 3 4 /* zh_CN: Remove italic properties. */ 5 .locale-zh-cn .howto, 6 .locale-zh-cn .tablenav .displaying-num, 7 .locale-zh-cn .js .input-with-default-title, 8 .locale-zh-cn .link-to-original, 9 .locale-zh-cn .inline-edit-row fieldset span.title, 10 .locale-zh-cn .inline-edit-row fieldset span.checkbox-title, 11 .locale-zh-cn #utc-time, 12 .locale-zh-cn #local-time, 13 .locale-zh-cn p.install-help, 14 .locale-zh-cn p.help, 15 .locale-zh-cn p.description, 16 .locale-zh-cn span.description, 17 .locale-zh-cn .form-wrap p { 18 font-style: normal; 19 } 20 21 /* zh_CN: Enlarge dashboard widget 'Configure' link */ 22 .locale-zh-cn .hdnle a { font-size: 12px; } 23 24 /* zn_CH: Enlarge font size, set font-size: normal */ 25 .locale-zh-cn form.upgrade .hint { font-style: normal; font-size: 100%; } 26 27 /* Zn_CH: Distraction free writing. 28 * More beautiful font for "Just write." 29 * Larger text for HTML/Visual mode. 30 */ 31 .locale-zh-cn #wp-fullscreen-tagline { font-family: KaiTi, "楷体", sans-serif; } 32 .locale-zh-cn #wp-fullscreen-modes a { font-size: 12px; } 33 34 /* zh_CN: Enlarge font-size. */ 35 .locale-zh-cn #sort-buttons { font-size: 1em !important; } 36 37 /* ru_RU: Text needs more room to breathe. */ 38 .locale-ru-ru .inline-edit-row fieldset label span.title { 39 width: auto; /* default 5em */ 40 min-width: 5em; 41 } 42 .locale-ru-ru.press-this .posting { 43 margin-right: 257px; /* default 212px + 45px */ 44 } 45 .locale-ru-ru.press-this #photo-add-url-div input[type="text"] { 46 width: 255px; /* default 300px - 45px */ 47 } 48 .locale-ru-ru.press-this #side-sortables { 49 width: 245px; /* default 200px + 45px */ 50 } 51 .locale-ru-ru #customize-header-actions .button { 52 padding: 0 8px 1px; /* default 0 10px 1px; */ 53 } 54 55 /* lt_LT: QuickEdit */ 56 .locale-lt-lt .inline-edit-row fieldset label span.title { 57 width: 8em; 58 } 59 .locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap { 60 margin-left: 8em; 61 } 62 No newline at end of file -
new file wp-admin/css/less/modules/login.less
diff --git a/wp-admin/css/less/modules/login.less b/wp-admin/css/less/modules/login.less new file mode 100644 index 0000000..2a772ac
- + 1 /* login */ 2 3 .login { 4 * { 5 margin: 0; 6 padding: 0; 7 } 8 9 h1 a { 10 background-image: url('../images/wordpress-logo.png?ver=20120216'); 11 background-size: 274px 63px; 12 background-position: top center; 13 background-repeat: no-repeat; 14 width: 326px; 15 height: 67px; 16 text-indent: -9999px; 17 outline: none; 18 overflow: hidden; 19 padding-bottom: 15px; 20 display: block; 21 } 22 23 form { 24 margin-left: 8px; 25 padding: 26px 24px 46px; 26 font-weight: normal; 27 background: #fff; 28 border: 1px solid #e5e5e5; 29 -webkit-box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px; 30 box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px; 31 32 .forgetmenot { 33 float: left; 34 margin-bottom: 0; 35 36 label { 37 .normal-font(12px, 19px); 38 } 39 } 40 } 41 42 .button-primary { 43 float: right; 44 } 45 46 label { 47 color: #777; 48 font-size: 14px; 49 } 50 51 #nav, 52 #backtoblog { 53 text-shadow: #fff 0 1px 0; 54 margin: 0 0 0 16px; 55 padding: 16px 16px 0; 56 } 57 58 form .input, 59 input[type="text"] { 60 color: #555; 61 font-weight: 200; 62 font-size: 24px; 63 line-height: 1; 64 width: 100%; 65 padding: 3px; 66 margin-top: 2px; 67 margin-right: 6px; 68 margin-bottom: 16px; 69 border: 1px solid #e5e5e5; 70 background: #fbfbfb; 71 outline: none; 72 -webkit-box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2); 73 box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2); 74 } 75 76 #pass-strength-result { 77 width: 250px; 78 font-weight: bold; 79 border-style: solid; 80 border-width: 1px; 81 margin: 12px 0 6px; 82 padding: 6px 5px; 83 text-align: center; 84 } 85 } 86 87 #login { 88 width: 320px; 89 padding: 114px 0 0; 90 margin: auto; 91 92 form p { 93 margin-bottom: 0; 94 95 &.submit { 96 padding: 0; 97 } 98 } 99 } 100 101 #login_error, 102 .login .message { 103 margin: 0 0 16px 8px; 104 padding: 12px; 105 } 106 107 #backtoblog { 108 padding: 12px 16px 0; 109 } 110 111 .mobile #login { 112 padding: 20px 0; 113 114 #nav, 115 #backtoblog { 116 margin-left: 8px; 117 } 118 119 h1 a { 120 width: auto; 121 } 122 } 123 124 .mobile #login form, 125 .mobile #login .message, 126 .mobile #login_error { 127 margin-left: 0; 128 } 129 130 body.interim-login { 131 height: auto; 132 } 133 134 .interim-login { 135 #login { 136 padding: 0; 137 margin: 5px auto 20px; 138 } 139 140 &.login h1 a { 141 width: auto; 142 } 143 144 #login_error, 145 &.login .message { 146 margin: 0 0 16px; 147 } 148 149 &.login form { 150 margin: 0; 151 } 152 } 153 No newline at end of file -
new file wp-admin/css/less/modules/media-queries.less
diff --git a/wp-admin/css/less/modules/media-queries.less b/wp-admin/css/less/modules/media-queries.less new file mode 100644 index 0000000..0b7eac2
- + 1 /* =Media Queries 2 -------------------------------------------------------------- */ 3 4 @media only screen and (max-width: 768px) { 5 /* categories */ 6 #col-left { 7 width: 100%; 8 } 9 10 #col-right { 11 width: 100%; 12 } 13 } 14 15 @media only screen and (min-width: 769px) { 16 /* categories */ 17 #col-left { 18 width: 35%; 19 } 20 21 #col-right { 22 width: 65%; 23 } 24 } 25 26 @media only screen and (max-width: 860px) { 27 28 /* categories */ 29 #col-left { 30 width: 35%; 31 } 32 33 #col-right { 34 width: 65%; 35 } 36 } 37 38 @media only screen and (min-width: 980px) { 39 40 /* categories */ 41 #col-left { 42 width: 35%; 43 } 44 45 #col-right { 46 width: 65%; 47 } 48 } 49 50 @media only screen and (max-width: 768px) { 51 /* categories */ 52 #col-left { 53 width: 100%; 54 } 55 56 #col-right { 57 width: 100%; 58 } 59 60 .form-field input, 61 .form-field textarea { 62 width: 99%; 63 } 64 65 .form-wrap .form-field { 66 padding:0; 67 } 68 69 /* users */ 70 #profile-page .form-table textarea { 71 max-width: 400px; 72 width: auto; 73 } 74 } 75 No newline at end of file -
new file wp-admin/css/less/modules/media.less
diff --git a/wp-admin/css/less/modules/media.less b/wp-admin/css/less/modules/media.less new file mode 100644 index 0000000..092755c
- + 1 /*------------------------------------------------------------------------------ 2 14.0 - Media Screen 3 ------------------------------------------------------------------------------*/ 4 5 .media-item { 6 .describe { 7 border-collapse: collapse; 8 width: 100%; 9 border-top-style: solid; 10 border-top-width: 1px; 11 clear: both; 12 cursor: default; 13 14 td { 15 padding: 0 8px 8px 0; 16 vertical-align: top; 17 } 18 19 th { 20 vertical-align: top; 21 text-align: left; 22 padding: 5px 10px 10px; 23 width: 140px; 24 25 .align & { 26 padding-top: 0; 27 } 28 } 29 30 input[type="text"], 31 textarea { 32 width: 460px; 33 } 34 35 p.help { 36 margin: 0; 37 padding: 0 0 0 5px; 38 } 39 } 40 41 &.media-blank .describe { 42 border: 0; 43 } 44 45 .media-item-info tr { 46 background-color: transparent; 47 } 48 49 thead.media-item-info td { 50 padding: 4px 10px 0; 51 } 52 53 .media-item-info .A1B1 { 54 padding: 0 0 0 10px; 55 } 56 57 td.savesend { 58 padding-bottom: 15px; 59 } 60 61 .thumbnail { 62 max-height: 128px; 63 max-width: 128px; 64 } 65 66 .filename { 67 line-height: 36px; 68 overflow: hidden; 69 padding: 0 10px; 70 } 71 72 .error-div { 73 padding-left: 10px; 74 } 75 76 .pinkynail { 77 float: left; 78 margin: 2px 2px 0; 79 max-width: 40px; 80 max-height: 32px; 81 } 82 83 .startopen, 84 .startclosed { 85 display: none; 86 } 87 88 .original { 89 position: relative; 90 height: 34px; 91 } 92 93 .progress { 94 float: right; 95 height: 22px; 96 margin: 6px 10px 0 0; 97 width: 200px; 98 line-height: 2em; 99 padding: 0; 100 overflow: hidden; 101 margin-bottom: 2px; 102 border: 1px solid #d1d1d1; 103 .linear-gradient(#fff, #f7f7f7); 104 .rounded(3px); 105 -moz-box-shadow: inset 0 0 3px rgba(0,0,0,0.1); 106 -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.1); 107 box-shadow: inset 0 0 3px rgba(0,0,0,0.1); 108 } 109 110 .bar { 111 z-index: 9; 112 width: 0; 113 height: 100%; 114 margin-top: -24px; 115 .linear-gradient(#72a7cf, #8cc1e9); 116 .rounded(3px); 117 -moz-box-shadow: 0 0 3px rgba(0,0,0,0.3); 118 -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3); 119 box-shadow: 0 0 3px rgba(0,0,0,0.3); 120 } 121 122 .progress .percent { 123 z-index: 10; 124 position: relative; 125 width: 200px; 126 padding: 0 8px; 127 text-shadow: 0 1px 0 rgba(255,255,255,0.4); 128 color: rgba(0,0,0,0.6); 129 } 130 } 131 132 #wpbody-content #async-upload-wrap a { 133 display: none; 134 } 135 136 .media-upload-form { 137 margin-top: 20px; 138 139 td label { 140 margin-right: 6px; 141 margin-left: 2px; 142 } 143 144 .align .field label { 145 display: inline; 146 padding: 0 0 0 23px; 147 margin: 0 1em 0 3px; 148 font-weight: bold; 149 } 150 151 tr.image-size label { 152 margin: 0 0 0 5px; 153 font-weight: bold; 154 } 155 156 th.label label { 157 .bold-font(13px); 158 margin: 0.5em; 159 160 span { 161 padding: 0 5px; 162 } 163 } 164 } 165 166 abbr.required { 167 border: medium none; 168 text-decoration: none; 169 } 170 171 .media-item .edit-attachment, 172 .describe-toggle-on, 173 .describe-toggle-off { 174 display: block; 175 line-height: 36px; 176 float: right; 177 margin-right: 15px; 178 } 179 180 .media-item .describe-toggle-off, 181 .media-item.open .describe-toggle-on { 182 display: none; 183 } 184 185 .media-item.open .describe-toggle-off { 186 display: block; 187 } 188 189 #media-items .media-item { 190 border-style: solid; 191 border-width: 1px; 192 min-height: 36px; 193 position: relative; 194 margin-top: -1px; 195 width: 100%; 196 } 197 198 #media-items { 199 width: 623px; 200 } 201 202 .media-new-php #media-items { 203 margin: 1em 0; 204 } 205 206 #media-items:empty { 207 border: 0 none; 208 } 209 210 .upload-php .fixed .column-parent { 211 width: 15%; 212 } 213 214 .js .html-uploader #plupload-upload-ui { 215 display: none; 216 } 217 218 .js .html-uploader #html-upload-ui { 219 display: block; 220 } 221 222 .media-upload-form .media-item.error { 223 margin: 0; 224 padding: 0; 225 } 226 227 .media-upload-form .media-item.error p, 228 .media-item .error-div { 229 line-height: 16px; 230 margin: 5px 10px; 231 padding: 0; 232 } 233 234 .media-item .error-div a.dismiss { 235 display: block; 236 float: right; 237 margin: 5px 4px 0 15px; 238 } 239 240 /*------------------------------------------------------------------------------ 241 14.1 - Media Library 242 ------------------------------------------------------------------------------*/ 243 244 .find-box { 245 width: 600px; 246 height: 300px; 247 overflow: hidden; 248 padding: 33px 0 51px; 249 position: absolute; 250 z-index: 1000; 251 } 252 253 .find-box-head { 254 cursor: move; 255 font-weight: bold; 256 height: 2em; 257 line-height: 2em; 258 padding: 1px 12px; 259 position: absolute; 260 top: 5px; 261 width: 100%; 262 } 263 264 .find-box-inside { 265 overflow: auto; 266 padding: 6px; 267 height: 100%; 268 } 269 270 .find-box-search { 271 overflow: hidden; 272 padding: 9px; 273 position: relative; 274 275 .spinner { 276 float: none; 277 left: 125px; 278 position: absolute; 279 top: 9px; 280 } 281 } 282 283 #find-posts-input { 284 float: left; 285 width: 140px; 286 height: 24px; 287 } 288 289 #find-posts-search { 290 float: left; 291 margin: 1px 4px 0 3px; 292 } 293 294 #find-posts-response { 295 margin: 8px 0; 296 padding: 0 1px 6px; 297 } 298 299 #find-posts-response table { 300 width: 100%; 301 } 302 303 #find-posts-response .found-radio { 304 padding: 3px 0 0 8px; 305 width: 15px; 306 } 307 308 .find-box-buttons { 309 padding: 8px; 310 overflow: hidden; 311 } 312 313 .find-box #resize-se { 314 position: absolute; 315 right: 1px; 316 bottom: 1px; 317 } 318 319 .ui-find-overlay { 320 position: absolute; 321 top: 0; 322 left: 0; 323 background-color: black; 324 opacity: 0.6; 325 filter: alpha(opacity=60); 326 } 327 328 ul#dismissed-updates { 329 display: none; 330 } 331 332 form.upgrade { 333 margin-top: 8px; 334 } 335 336 form.upgrade .hint { 337 font-style: italic; 338 font-size: 85%; 339 margin: -0.5em 0 2em 0; 340 } 341 342 #poststuff .inside .the-tagcloud { 343 margin: 5px 0 10px; 344 padding: 8px; 345 border-width: 1px; 346 border-style: solid; 347 line-height: 1.8em; 348 word-spacing: 3px; 349 .rounded(6px); 350 } 351 352 .drag-drop #drag-drop-area { 353 border: 4px dashed #DDDDDD; 354 height: 200px; 355 } 356 357 .drag-drop .drag-drop-inside { 358 margin: 70px auto 0; 359 width: 250px; 360 } 361 362 .drag-drop-inside p { 363 color: #aaa; 364 font-size: 14px; 365 margin: 5px 0; 366 display: none; 367 } 368 369 .drag-drop .drag-drop-inside p { 370 text-align: center; 371 } 372 373 .drag-drop-inside p.drag-drop-info { 374 font-size: 20px; 375 } 376 377 .drag-drop .drag-drop-inside p, 378 .drag-drop-inside p.drag-drop-buttons { 379 display: block; 380 } 381 382 /* 383 #drag-drop-area:-moz-drag-over { 384 border-color: #83b4d8; 385 } 386 borger color while dragging a file over the uploader drop area */ 387 .drag-drop.drag-over #drag-drop-area { 388 border-color: #83b4d8; 389 } 390 391 #plupload-upload-ui { 392 position: relative; 393 } 394 395 396 /*------------------------------------------------------------------------------ 397 14.2 - Image Editor 398 ------------------------------------------------------------------------------*/ 399 400 .describe .image-editor { 401 vertical-align: top; 402 } 403 404 .imgedit-wrap { 405 position: relative; 406 } 407 408 .imgedit-settings p { 409 margin: 8px 0; 410 } 411 412 .post-php .imgedit-wrap table { 413 width: 100%; 414 } 415 416 .describe .imgedit-wrap table td, 417 .wp_attachment_holder .imgedit-wrap table td { 418 vertical-align: top; 419 padding-top: 0; 420 } 421 422 .describe .imgedit-wrap table td.imgedit-settings { 423 padding: 0 5px; 424 } 425 426 .wp_attachment_holder .imgedit-wrap table td.imgedit-settings { 427 width: 250px; 428 } 429 430 td.imgedit-settings input { 431 margin-top: 0; 432 vertical-align: middle; 433 } 434 435 .imgedit-wait { 436 position: absolute; 437 top: 0; 438 background: #fff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px; 439 background-size: 16px 16px; 440 opacity: 0.7; 441 filter: alpha(opacity=70); 442 width: 100%; 443 height: 500px; 444 display: none; 445 } 446 447 .spinner { 448 background: url(../images/wpspin_light.gif) no-repeat; 449 background-size: 16px 16px; 450 display: none; 451 float: right; 452 opacity: 0.7; 453 filter: alpha(opacity=70); 454 width: 16px; 455 height: 16px; 456 margin: 5px 5px 0; 457 } 458 459 .no-float { 460 float: none; 461 } 462 463 .media-disabled, 464 .imgedit-settings .disabled { 465 color: grey; 466 } 467 468 .wp_attachment_image, 469 .A1B1 { 470 overflow: hidden; 471 } 472 473 .wp_attachment_image .button, 474 .A1B1 .button { 475 float: left; 476 } 477 478 .no-js .wp_attachment_image .button { 479 display: none; 480 } 481 482 .wp_attachment_image .spinner, 483 .A1B1 .spinner { 484 float: left; 485 padding: 0 4px 4px; 486 vertical-align: bottom; 487 } 488 489 .imgedit-menu { 490 margin: 0 0 12px; 491 min-width: 300px; 492 493 div { 494 float: left; 495 width: 32px; 496 height: 32px; 497 } 498 } 499 500 .imgedit-crop-wrap { 501 position: relative; 502 } 503 504 .imgedit-crop { 505 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -9px -31px; 506 margin: 0 8px 0 0; 507 508 &.disabled:hover { 509 background-position: -9px -31px; 510 } 511 512 &:hover { 513 background-position: -9px -1px; 514 } 515 } 516 517 .imgedit-rleft { 518 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -46px -31px; 519 margin: 0 3px; 520 521 &.disabled:hover { 522 background-position: -46px -31px; 523 } 524 525 &:hover { 526 background-position: -46px -1px; 527 } 528 } 529 530 .imgedit-rright { 531 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -77px -31px; 532 margin: 0 8px 0 3px; 533 534 &.disabled:hover { 535 background-position: -77px -31px; 536 } 537 538 &:hover { 539 background-position: -77px -1px; 540 } 541 } 542 543 .imgedit-flipv { 544 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -115px -31px; 545 margin: 0 3px; 546 547 &.disabled:hover { 548 background-position: -115px -31px; 549 } 550 551 &:hover { 552 background-position: -115px -1px; 553 } 554 } 555 556 .imgedit-fliph { 557 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -147px -31px; 558 margin: 0 8px 0 3px; 559 560 &.disabled:hover { 561 background-position: -147px -31px; 562 } 563 564 &:hover { 565 background-position: -147px -1px; 566 } 567 } 568 569 .imgedit-undo { 570 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -184px -31px; 571 margin: 0 3px; 572 573 &.disabled:hover { 574 background-position: -184px -31px; 575 } 576 577 &:hover { 578 background-position: -184px -1px; 579 } 580 } 581 582 .imgedit-redo { 583 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -215px -31px; 584 margin: 0 8px 0 3px; 585 586 &.disabled:hover { 587 background-position: -215px -31px; 588 } 589 590 &:hover { 591 background-position: -215px -1px; 592 } 593 } 594 595 .imgedit-applyto img { 596 margin: 0 8px 0 0; 597 } 598 599 .imgedit-group-top { 600 margin: 5px 0; 601 } 602 603 .imgedit-applyto .imgedit-label { 604 padding: 2px 0 0; 605 display: block; 606 } 607 608 .imgedit-help { 609 display: none; 610 font-style: italic; 611 margin-bottom: 8px; 612 } 613 614 a.imgedit-help-toggle { 615 text-decoration: none; 616 } 617 618 .form-table td.imgedit-response { 619 padding: 0; 620 } 621 622 .imgedit-submit { 623 margin: 8px 0; 624 } 625 626 .imgedit-submit-btn { 627 margin-left: 20px; 628 } 629 630 .imgedit-wrap .nowrap { 631 white-space: nowrap; 632 } 633 634 span.imgedit-scale-warn { 635 color: red; 636 font-size: 20px; 637 font-style: normal; 638 visibility: hidden; 639 vertical-align: middle; 640 } 641 642 .imgedit-group { 643 border-width: 1px; 644 border-style: solid; 645 .rounded(3px); 646 margin-bottom: 8px; 647 padding: 2px 10px; 648 } 649 No newline at end of file -
new file wp-admin/css/less/modules/misc.less
diff --git a/wp-admin/css/less/modules/misc.less b/wp-admin/css/less/modules/misc.less new file mode 100644 index 0000000..9798ccc
- + 1 /*------------------------------------------------------------------------------ 2 25.0 - Misc 3 ------------------------------------------------------------------------------*/ 4 5 #excerpt, 6 .attachmentlinks { 7 margin: 0; 8 height: 4em; 9 width: 98%; 10 } 11 12 #template div { 13 margin-right: 190px; 14 } 15 16 p.pagenav { 17 margin: 0; 18 display: inline; 19 } 20 21 .pagenav span { 22 font-weight: bold; 23 margin: 0 6px; 24 } 25 26 .row-title { 27 font-size: 13px !important; 28 font-weight: bold; 29 } 30 31 .column-author img, .column-username img { 32 float: left; 33 margin-right: 10px; 34 margin-top: 1px; 35 } 36 37 .row-actions { 38 visibility: hidden; 39 padding: 2px 0 0; 40 } 41 42 .mobile .row-actions { 43 visibility: visible; 44 } 45 46 tr:hover .row-actions, 47 div.comment-item:hover .row-actions { 48 visibility: visible; 49 } 50 51 .row-actions-visible { 52 padding: 2px 0 0; 53 } 54 55 .form-table .pre { 56 padding: 8px; 57 margin: 0; 58 } 59 60 table.form-table td .updated { 61 font-size: 13px; 62 } 63 64 .tagchecklist { 65 margin-left: 14px; 66 font-size: 12px; 67 overflow: auto; 68 69 strong { 70 margin-left: -8px; 71 position: absolute; 72 } 73 span { 74 margin-right: 25px; 75 display: block; 76 float: left; 77 font-size: 11px; 78 line-height: 1.8em; 79 white-space: nowrap; 80 cursor: default; 81 82 a { 83 margin: 6px 0pt 0pt -9px; 84 cursor: pointer; 85 width: 10px; 86 height: 10px; 87 display: block; 88 float: left; 89 text-indent: -9999px; 90 overflow: hidden; 91 position: absolute; 92 } 93 } 94 } 95 96 #poststuff h2 { 97 margin-top: 20px; 98 font-size: 1.5em; 99 margin-bottom: 15px; 100 padding: 0 0 3px; 101 clear: left; 102 } 103 104 #poststuff h3, 105 .metabox-holder h3 { 106 .normal-font(12px); 107 padding: 7px 10px; 108 margin: 0; 109 } 110 111 #poststuff .inside { 112 margin: 6px 0 8px; 113 } 114 115 #poststuff .inside #parent_id, 116 #poststuff .inside #page_template { 117 max-width: 100%; 118 } 119 120 .inline-edit-row #post_parent, 121 .inline-edit-row select[name="page_template"] { 122 max-width: 80%; 123 } 124 125 .ie8 #poststuff .inside #parent_id, 126 .ie8 #poststuff .inside #page_template, 127 .ie8 .inline-edit-row #post_parent, 128 .ie8 .inline-edit-row select[name="page_template"] { 129 width: 250px; 130 } 131 132 #post-visibility-select { 133 line-height: 1.5em; 134 margin-top: 3px; 135 } 136 137 #poststuff #submitdiv .inside { 138 margin: 0; 139 padding: 0; 140 } 141 142 .edit-form-section { 143 margin-bottom: 20px; 144 } 145 146 #templateside ul li a { 147 text-decoration: none; 148 } 149 150 .tool-box .title { 151 margin: 8px 0; 152 .normal-font(18px, 24px); 153 } 154 155 #sidemenu { 156 margin: -30px 15px 0 315px; 157 list-style: none; 158 position: relative; 159 float: right; 160 padding-left: 10px; 161 font-size: 12px; 162 163 a { 164 padding: 0 7px; 165 display: block; 166 float: left; 167 line-height: 28px; 168 border-top-width: 1px; 169 border-top-style: solid; 170 border-bottom-width: 1px; 171 border-bottom-style: solid; 172 173 &.current { 174 font-weight: normal; 175 padding-left: 6px; 176 padding-right: 6px; 177 .rounded-top(3px); 178 border-width: 1px; 179 border-style: solid; 180 } 181 } 182 183 li { 184 display: inline; 185 line-height: 200%; 186 list-style: none; 187 text-align: center; 188 white-space: nowrap; 189 margin: 0; 190 padding: 0; 191 192 a .count-0 { 193 display: none; 194 } 195 } 196 } 197 198 .plugin-install #description, 199 .plugin-install-network #description { 200 width: 60%; 201 } 202 203 table .vers, 204 table .column-visible, 205 table .column-rating { 206 text-align: left; 207 } 208 209 .error-message { 210 color: red; 211 font-weight: bold; 212 } 213 214 /* Scrollbar fix for bulk upgrade iframe */ 215 body.iframe { 216 height: 98%; 217 } 218 219 220 /* - Only used once or twice in all of WP - deprecate for global style 221 ------------------------------------------------------------------------------*/ 222 td.media-icon { 223 text-align: center; 224 width: 80px; 225 padding-top: 8px; 226 padding-bottom: 8px; 227 228 img { 229 max-width: 80px; 230 max-height: 60px; 231 } 232 } 233 234 #howto { 235 font-size: 11px; 236 margin: 0 5px; 237 display: block; 238 } 239 240 .importers { 241 font-size: 16px; 242 width: auto; 243 td { 244 padding-right: 14px; 245 } 246 } 247 248 #namediv { 249 table { 250 width: 100%; 251 } 252 253 td.first { 254 width: 10px; 255 white-space: nowrap; 256 } 257 258 input { 259 width: 98%; 260 } 261 262 p { 263 margin: 10px 0; 264 } 265 } 266 267 #submitdiv h3 { 268 margin-bottom: 0 !important; 269 } 270 271 /* - Used - but could/should be deprecated with a CSS reset 272 ------------------------------------------------------------------------------*/ 273 .zerosize { 274 height: 0; 275 width: 0; 276 margin: 0; 277 border: 0; 278 padding: 0; 279 overflow: hidden; 280 position: absolute; 281 } 282 283 br.clear { 284 height: 2px; 285 line-height: 2px; 286 } 287 288 .checkbox { 289 border: none; 290 margin: 0; 291 padding: 0; 292 } 293 294 fieldset { 295 border: 0; 296 padding: 0; 297 margin: 0; 298 } 299 300 .post-categories { 301 display: inline; 302 margin: 0; 303 padding: 0; 304 } 305 306 .post-categories li { 307 display: inline; 308 } 309 310 311 /*----------------------------------------------------------------------------- 312 MERGED 313 -------------------------------------------------------------------------------*/ 314 315 316 /* ms */ 317 /* Dashboard: MS Specific Data */ 318 319 #dashboard_right_now { 320 p.musub { 321 margin-top: 12px; 322 border-top: 1px solid #ececec; 323 padding-left: 16px; 324 position: static; 325 } 326 327 .rtl & p.musub { 328 padding-left: 0; 329 padding-right: 16px; 330 } 331 332 td.b a.musublink { 333 font-size: 16px; 334 } 335 336 div.musubtable { 337 border-top: none; 338 } 339 340 div.musubtable .t { 341 white-space: normal; 342 } 343 } 344 345 /* Background Color for Site Status */ 346 .wp-list-table .site-deleted { 347 background: #ff8573; 348 } 349 .wp-list-table .site-spammed { 350 background: #faafaa; 351 } 352 .wp-list-table .site-archived { 353 background: #ffebe8; 354 } 355 .wp-list-table .site-mature { 356 background: #fecac2; 357 } 358 359 /* Star ratings */ 360 div.star-holder { 361 position: relative; 362 height: 17px; 363 width: 100px; 364 background: url('../images/stars.png?ver=20121108') repeat-x bottom left; 365 366 .star-rating { 367 background: url('../images/stars.png?ver=20121108') repeat-x top left; 368 height: 17px; 369 float: left; 370 } 371 } 372 373 div.action-links { 374 font-weight: normal; 375 margin: 6px 0 0; 376 } 377 378 /* Header on thickbox */ 379 #plugin-information-header { 380 margin: 0; 381 padding: 0 5px; 382 font-weight: bold; 383 position: relative; 384 border-bottom-width: 1px; 385 border-bottom-style: solid; 386 height: 2.5em; 387 } 388 389 #plugin-information { 390 ul#sidemenu { 391 font-weight: normal; 392 margin: 0 5px; 393 position: absolute; 394 left: 0; 395 bottom: -1px; 396 } 397 398 /* Install sidemenu */ 399 p.action-button { 400 width: 100%; 401 padding-bottom: 0; 402 margin-bottom: 0; 403 margin-top: 10px; 404 .rounded-left(3px); 405 } 406 407 .action-button a { 408 text-align: center; 409 font-weight: bold; 410 text-decoration: none; 411 display: block; 412 line-height: 2em; 413 } 414 415 h2 { 416 clear: none !important; 417 margin-right: 200px; 418 } 419 420 .fyi { 421 margin: 0 10px 50px; 422 width: 210px; 423 424 h2 { 425 font-size: 0.9em; 426 margin-bottom: 0; 427 margin-right: 0; 428 } 429 430 h2.mainheader { 431 padding: 5px; 432 -moz-border-top-left-radius: 3px; 433 -webkit-border-top-left-radius: 3px; 434 border-top-left-radius: 3px; 435 } 436 437 ul { 438 padding: 10px 5px 10px 7px; 439 margin: 0; 440 list-style: none; 441 -moz-border-bottom-left-radius: 3px; 442 -webkit-border-bottom-left-radius: 3px; 443 border-bottom-left-radius: 3px; 444 } 445 446 li { 447 margin-right: 0; 448 } 449 } 450 451 #section-holder { 452 padding: 10px; 453 } 454 455 .section ul, 456 .section ol { 457 margin-left: 16px; 458 list-style-type: square; 459 list-style-image: none; 460 } 461 462 #section-screenshots ol { 463 list-style: none; 464 margin: 0; 465 } 466 467 #section-screenshots li img { 468 vertical-align: text-top; 469 max-width: 100%; 470 width: auto; 471 height: auto; 472 } 473 474 #section-screenshots li p { 475 font-style: italic; 476 padding-left: 20px; 477 padding-bottom: 2em; 478 } 479 480 #section-screenshots ol, 481 .updated, 482 pre { 483 margin-right: 215px; 484 } 485 486 pre { 487 padding: 7px; 488 overflow: auto; 489 } 490 } 491 492 #poststuff #editor-toolbar { 493 height: 30px; 494 } 495 496 div.zerosize { 497 border: 0 none; 498 height: 0; 499 margin: 0; 500 overflow: hidden; 501 padding: 0; 502 width: 0; 503 } 504 505 .posting { 506 margin-right: 212px; 507 position: relative; 508 } 509 510 511 512 h3.tb { 513 text-shadow: 0 1px 0 #fff; 514 .bold-font(); 515 margin-left: 5px; 516 } 517 518 #TB_window { 519 border: 1px solid #333; 520 } 521 522 .js .postbox:hover .handlediv, 523 .js .stuffbox:hover .handlediv { 524 background: transparent url(../images/arrows.png) no-repeat 6px 7px; 525 } 526 527 .press-this #submitdiv:hover .handlediv { 528 background: none; 529 } 530 531 .tbtitle { 532 font-size: 1.7em; 533 outline: none; 534 padding: 3px 4px; 535 border-color: @border-color; 536 } 537 538 #extra-fields .button { 539 margin-right: 5px; 540 } 541 542 /* Photo Styles */ 543 #photo_saving { 544 margin: 0 8px 8px; 545 vertical-align: middle; 546 } 547 548 #img_container_container { 549 overflow: auto; 550 } 551 552 #extra-fields { 553 margin-top: 10px; 554 position: relative; 555 556 h2 { 557 margin: 12px; 558 } 559 } 560 561 #waiting { 562 margin-top: 10px; 563 overflow: hidden; 564 565 span { 566 float: right; 567 margin: 0 0 0 5px; 568 } 569 570 .spinner { 571 display: block; 572 } 573 } 574 575 #extra-fields .postbox { 576 margin-bottom: 5px; 577 } 578 579 #extra-fields .titlewrap { 580 padding: 0; 581 overflow: auto; 582 height: 100px; 583 } 584 585 #img_container { 586 a { 587 display: block; 588 float: left; 589 overflow: hidden; 590 } 591 592 img, 593 a { 594 width: 68px; 595 height: 68px; 596 } 597 598 img { 599 border: none; 600 background-color: #f4f4f4; 601 cursor: pointer; 602 } 603 604 a, 605 a:link, 606 a:visited { 607 border: 1px solid #ccc; 608 display: block; 609 position: relative; 610 } 611 612 a:hover, 613 a:active { 614 border-color: black; 615 z-index: 1000; 616 border-width: 2px; 617 margin: -1px; 618 } 619 } 620 621 622 /* Video */ 623 #embed-code { 624 width: 100%; 625 height: 98px; 626 } 627 628 #TB_ajaxContent #options { 629 position: absolute; 630 top: 20px; 631 right: 25px; 632 padding: 5px; 633 } 634 635 #TB_ajaxContent h3 { 636 margin-bottom: .25em; 637 } 638 639 .error a { 640 text-decoration: underline; 641 } 642 643 .updated a { 644 text-decoration: none; 645 padding-bottom: 2px; 646 } 647 648 /* tag hints */ 649 .taghint { 650 color: #aaa; 651 margin: -17px 0 0 7px; 652 visibility: hidden; 653 } 654 655 input.newtag ~ div.taghint { 656 visibility: visible; 657 } 658 659 input.newtag:focus ~ div.taghint { 660 visibility: hidden; 661 } 662 663 /* TinyMCE */ 664 #mce_fullscreen_container { 665 background: #fff; 666 } 667 668 #photo-add-url-div input[type="text"] { 669 width: 300px; 670 } 671 672 /* theme-editor */ 673 .alignleft h3 { 674 margin: 0; 675 } 676 677 h3 span { 678 font-weight: normal; 679 } 680 681 #template textarea { 682 font-family: Consolas, Monaco, monospace; 683 font-size: 12px; 684 width: 97%; 685 background: #f9f9f9; 686 outline: none; 687 } 688 689 #template p { 690 width: 97%; 691 } 692 693 #templateside { 694 float: right; 695 width: 190px; 696 word-wrap: break-word; 697 } 698 699 #templateside h3, 700 #postcustomstuff p.submit { 701 margin: 0; 702 } 703 704 #templateside h4 { 705 margin: 1em 0 0; 706 } 707 708 #templateside ol, 709 #templateside ul { 710 margin: .5em; 711 padding: 0; 712 } 713 714 #templateside li { 715 margin: 4px 0; 716 } 717 718 #templateside ul li a span.highlight { 719 display:block; 720 } 721 722 .nonessential { 723 font-size: 11px; 724 font-style: italic; 725 padding-left: 12px; 726 } 727 728 .highlight { 729 padding: 3px 3px 3px 12px; 730 margin-left: -12px; 731 font-weight: bold; 732 border: 0 none; 733 } 734 735 #documentation { 736 margin-top: 10px; 737 } 738 #documentation label { 739 line-height: 22px; 740 vertical-align: top; 741 font-weight: bold; 742 } 743 744 .fileedit-sub { 745 padding: 10px 0 8px; 746 line-height: 180%; 747 } 748 749 #filter-box { 750 clear: both; 751 } 752 753 .feature-filter { 754 padding: 8px 12px 0; 755 } 756 757 .feature-filter .feature-group { 758 float: left; 759 margin: 5px 10px 10px; 760 } 761 762 .feature-filter .feature-group li { 763 display: inline-block; 764 vertical-align: top; 765 list-style-type: none; 766 padding-right: 25px; 767 width: 150px; 768 } 769 770 .feature-container { 771 width: 100%; 772 overflow: auto; 773 margin-bottom: 10px; 774 } 775 776 /* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */ 777 .ui-sortable, 778 .ui-draggable { 779 -ms-touch-action: none; 780 } -
new file wp-admin/css/less/modules/nav-menus.less
diff --git a/wp-admin/css/less/modules/nav-menus.less b/wp-admin/css/less/modules/nav-menus.less new file mode 100644 index 0000000..e75ab6b
- + 1 /* nav-menu */ 2 3 .no-js #message { 4 display: block; 5 } 6 7 #nav-menu-meta ul.outer-border { 8 .rounded(3px); 9 } 10 11 .accordion-section ul.category-tabs, 12 .accordion-section ul.add-menu-item-tabs, 13 .accordion-section ul.wp-tab-bar { 14 margin: 0; 15 } 16 17 .accordion-section .categorychecklist { 18 margin: 13px 0; 19 } 20 21 #nav-menu-meta .accordion-section-content { 22 padding: 18px 13px; 23 } 24 25 #nav-menu-meta .button-controls { 26 margin-bottom: 0; 27 } 28 29 #nav-menus-frame { 30 margin-left: 300px; 31 margin-top: 23px; 32 } 33 34 #wpbody-content #menu-settings-column { 35 display: inline; 36 width:281px; 37 margin-left: -300px; 38 clear: both; 39 float: left; 40 padding-top: 0; 41 } 42 43 #menu-settings-column .inside { 44 clear: both; 45 margin: 10px 0 0; 46 } 47 48 .metabox-holder-disabled .postbox, 49 .metabox-holder-disabled .accordion-section-content { 50 opacity: 0.5; 51 filter: alpha(opacity=50); 52 } 53 54 .metabox-holder-disabled .button-controls .select-all { 55 display: none; 56 } 57 58 #wpbody { 59 position: relative; 60 } 61 62 .blank-slate .menu-name { 63 height: 2em; 64 } 65 66 .blank-slate .menu-settings { 67 border: none; 68 margin-top: 0; 69 padding-top: 0; 70 overflow: hidden; 71 } 72 73 .is-submenu { 74 font-style: italic; 75 font-weight: normal; 76 margin-left: 4px; 77 } 78 79 .manage-menus { 80 margin-top: 23px; 81 padding: 10px; 82 overflow: hidden; 83 .rounded(3px); 84 85 select { 86 float: left; 87 margin-right: 6px; 88 } 89 90 .selected-menu { 91 float: left; 92 margin: 5px 6px 0 0; 93 } 94 95 .submit-btn { 96 float: left; 97 margin-top: 1px; 98 } 99 } 100 101 .menu-edit { 102 p { 103 margin: .3em 0 .6em; 104 } 105 106 #post-body-content h3 { 107 margin: 0 0 10px; 108 } 109 110 .checkbox-input { 111 margin-top: 4px; 112 } 113 } 114 115 .menu-settings { 116 margin-top: 2em; 117 overflow: hidden; 118 119 dl { 120 margin: 0 0 10px; 121 overflow: hidden; 122 position: relative; 123 } 124 125 dd { 126 float: left; 127 margin: 0; 128 width: 60%; 129 } 130 } 131 132 .theme-location-set { 133 font-size: 11px; 134 } 135 136 /* Menu Container */ 137 #menu-management-liquid { 138 float: left; 139 min-width: 100%; 140 margin-top: 3px; 141 } 142 143 #menu-management { 144 position: relative; 145 margin-right: 20px; 146 margin-top: -3px; 147 width: 100%; 148 149 .menu-edit { 150 margin-bottom: 20px; 151 } 152 } 153 154 .nav-menus-php #post-body { 155 padding: 0 10px 10px; 156 border-width: 1px 0; 157 border-style: solid; 158 } 159 160 #nav-menu-header, 161 #nav-menu-footer { 162 padding: 0 10px; 163 } 164 165 #nav-menu-header { 166 border-bottom: 1px solid; 167 margin-bottom: 13px; 168 .menu-name-label { 169 margin-top: 2px; 170 } 171 } 172 173 #nav-menu-footer { 174 border-top: 1px solid; 175 } 176 177 .nav-menus-php #post-body div.updated, 178 .nav-menus-php #post-body div.error { 179 margin: 0; 180 } 181 182 .nav-menus-php #post-body-content { 183 position: relative; 184 float: none; 185 } 186 187 #menu-management .menu-add-new abbr { 188 font-weight: bold; 189 } 190 191 #select-nav-menu-container { 192 text-align: right; 193 padding: 0 10px 3px 10px; 194 margin-bottom: 5px; 195 } 196 197 #select-nav-menu { 198 width: 100px; 199 display: inline; 200 } 201 202 #menu-name-label { 203 margin-top: -2px; 204 } 205 206 .widefat td.menu-location-menus { 207 padding-bottom: 5px; 208 } 209 210 .menu-location-menus select { 211 float: left; 212 } 213 214 #locations-nav-menu-wrapper { 215 padding: 5px 0; 216 } 217 218 .locations-nav-menu-select select { 219 float: left; 220 width: 160px; 221 margin-right: 5px; 222 } 223 224 .locations-row-links { 225 float: left; 226 margin: 6px 0 0 6px; 227 } 228 229 .locations-edit-menu-link, 230 .locations-add-menu-link { 231 margin: 0 3px; 232 } 233 234 .locations-edit-menu-link { 235 padding-right: 3px; 236 border-right: 1px solid #ccc; 237 } 238 239 #wpbody .open-label { 240 display: block; 241 float:left; 242 } 243 244 #wpbody .open-label span { 245 padding-right: 10px; 246 } 247 248 .js .input-with-default-title { 249 font-style: italic; 250 } 251 252 #menu-management .inside { 253 padding: 0 10px; 254 } 255 256 /* Add Menu Item Boxes */ 257 .postbox .howto input, 258 .accordion-container .howto input { 259 width: 180px; 260 float: right; 261 } 262 263 .accordion-container .outer-border { 264 margin: 0; 265 } 266 267 #nav-menu-meta .accordion-container { 268 .top { 269 border-top: 1px solid @border-color; 270 } 271 272 .accordion-section:first-child, 273 .accordion-section:first-child h3, 274 .top, 275 .top h3 { 276 .rounded-top(); 277 } 278 279 .accordion-section:last-child, 280 .accordion-section:last-child .accordion-section-content, 281 .bottom, 282 .bottom:not(.open) h3 { 283 .rounded-bottom(); 284 } 285 } 286 287 .customlinkdiv .howto input { 288 width: 180px; 289 } 290 291 .customlinkdiv p { 292 margin-top: 0; 293 } 294 295 #nav-menu-theme-locations { 296 .howto select { 297 width: 100%; 298 } 299 300 .button-controls { 301 text-align: right; 302 } 303 } 304 305 .add-menu-item-view-all { 306 height: 400px; 307 } 308 309 /* Button Primary Actions */ 310 #menu-container .submit { 311 margin: 0 0 10px; 312 padding: 0; 313 } 314 315 .nav-menus-php { 316 .add-new-menu-action { 317 float: left; 318 margin: 6px 0 0 6px; 319 line-height: 15px; 320 } 321 322 .meta-sep, 323 .submitdelete, 324 .submitcancel { 325 display: block; 326 float: left; 327 margin: 4px 0; 328 line-height: 15px; 329 } 330 } 331 332 .meta-sep { 333 padding: 0 2px; 334 } 335 336 #cancel-save { 337 text-decoration: underline; 338 font-size: 12px; 339 margin-left: 20px; 340 margin-top: 5px; 341 } 342 343 .button.right, .button-secondary.right, .button-primary.right { 344 float: right; 345 } 346 347 /* Button Secondary Actions */ 348 .list-controls { 349 float: left; 350 margin-top: 5px; 351 } 352 353 .add-to-menu { 354 float: right; 355 } 356 357 /* Create Menu */ 358 #menu-name { 359 width: 270px; 360 } 361 362 #manage-menu .inside { 363 padding: 0px 0px; 364 } 365 366 /* Custom Links */ 367 #available-links dt { 368 display: block; 369 } 370 371 #add-custom-link .howto { 372 font-size: 12px; 373 } 374 375 #add-custom-link label span { 376 display: block; 377 float: left; 378 margin-top: 5px; 379 padding-right: 5px; 380 } 381 382 .menu-item-textbox { 383 width: 180px; 384 } 385 386 .nav-menus-php .howto span { 387 margin-top: 4px; 388 display: block; 389 float: left; 390 } 391 392 /* Menu item types */ 393 .quick-search { 394 width: 190px; 395 } 396 397 .nav-menus-php { 398 .list-wrap { 399 display: none; 400 clear: both; 401 margin-bottom: 10px; 402 } 403 404 .list-container { 405 max-height: 200px; 406 overflow-y: auto; 407 padding: 10px 10px 5px; 408 } 409 410 .postbox p.submit { 411 margin-bottom: 0; 412 } 413 } 414 415 /* Listings */ 416 .nav-menus-php .list li { 417 display: none; 418 margin: 0; 419 margin-bottom: 5px; 420 421 .menu-item-title { 422 cursor: pointer; 423 display: block; 424 } 425 426 .menu-item-title input { 427 margin-right: 3px; 428 margin-top: -3px; 429 } 430 } 431 432 /* Nav Menu */ 433 #menu-container .inside { 434 padding-bottom: 10px; 435 } 436 437 .menu { 438 padding-top:1em; 439 440 ul { 441 width: 100%; 442 } 443 444 li { 445 margin-bottom: 0; 446 position: relative; 447 } 448 } 449 450 #menu-to-edit { 451 margin: 0; 452 padding: 0.1em 0; 453 } 454 455 456 .menu-item-bar { 457 clear:both; 458 line-height:1.5em; 459 position:relative; 460 margin: 9px 0 0; 461 } 462 463 .menu-item-handle { 464 border: 1px solid @border-color; 465 position: relative; 466 padding-left: 10px; 467 height: auto; 468 width: 400px; 469 line-height: 35px; 470 text-shadow: 0 1px 0 #FFFFFF; 471 overflow: hidden; 472 word-wrap: break-word; 473 } 474 475 #menu-to-edit .menu-item-invalid .menu-item-handle { 476 .linear-gradient(#f6c9cc, #fdf8ff); 477 } 478 479 .menu-item-edit-active .menu-item-handle { 480 .rounded-bottom(0); 481 } 482 483 .no-js .menu-item-edit-active .item-edit { 484 display: none; 485 } 486 487 .js .menu-item-handle { 488 cursor: move; 489 } 490 491 .menu li.deleting .menu-item-handle { 492 background-image: none; 493 text-shadow: 0 0 0; 494 } 495 496 .menu-item-handle .item-title { 497 font-size: 12px; 498 font-weight: bold; 499 padding: 7px 0; 500 line-height: 20px; 501 display: block; 502 margin-right:13em; 503 } 504 505 /* Sortables */ 506 li.menu-item.ui-sortable-helper dl { 507 margin-top: 0; 508 } 509 510 li.menu-item.ui-sortable-helper .menu-item-transport dl { 511 margin-top: 13px; 512 } 513 514 .menu .sortable-placeholder { 515 height: 35px; 516 width: 410px; 517 margin-top: 13px; 518 } 519 520 /* WARNING: The factor of 30px is hardcoded into the nav-menus javascript. */ 521 .menu-item-depth-0 { margin-left: 0px; } 522 .menu-item-depth-1 { margin-left: 30px; } 523 .menu-item-depth-2 { margin-left: 60px; } 524 .menu-item-depth-3 { margin-left: 90px; } 525 .menu-item-depth-4 { margin-left: 120px; } 526 .menu-item-depth-5 { margin-left: 150px; } 527 .menu-item-depth-6 { margin-left: 180px; } 528 .menu-item-depth-7 { margin-left: 210px; } 529 .menu-item-depth-8 { margin-left: 240px; } 530 .menu-item-depth-9 { margin-left: 270px; } 531 .menu-item-depth-10 { margin-left: 300px; } 532 .menu-item-depth-11 { margin-left: 330px; } 533 534 .menu-item-depth-0 .menu-item-transport { margin-left: 0px; } 535 .menu-item-depth-1 .menu-item-transport { margin-left: -30px; } 536 .menu-item-depth-2 .menu-item-transport { margin-left: -60px; } 537 .menu-item-depth-3 .menu-item-transport { margin-left: -90px; } 538 .menu-item-depth-4 .menu-item-transport { margin-left: -120px; } 539 .menu-item-depth-5 .menu-item-transport { margin-left: -150px; } 540 .menu-item-depth-6 .menu-item-transport { margin-left: -180px; } 541 .menu-item-depth-7 .menu-item-transport { margin-left: -210px; } 542 .menu-item-depth-8 .menu-item-transport { margin-left: -240px; } 543 .menu-item-depth-9 .menu-item-transport { margin-left: -270px; } 544 .menu-item-depth-10 .menu-item-transport { margin-left: -300px; } 545 .menu-item-depth-11 .menu-item-transport { margin-left: -330px; } 546 547 body.menu-max-depth-0 { min-width: 950px !important; } 548 body.menu-max-depth-1 { min-width: 980px !important; } 549 body.menu-max-depth-2 { min-width: 1010px !important; } 550 body.menu-max-depth-3 { min-width: 1040px !important; } 551 body.menu-max-depth-4 { min-width: 1070px !important; } 552 body.menu-max-depth-5 { min-width: 1100px !important; } 553 body.menu-max-depth-6 { min-width: 1130px !important; } 554 body.menu-max-depth-7 { min-width: 1160px !important; } 555 body.menu-max-depth-8 { min-width: 1190px !important; } 556 body.menu-max-depth-9 { min-width: 1220px !important; } 557 body.menu-max-depth-10 { min-width: 1250px !important; } 558 body.menu-max-depth-11 { min-width: 1280px !important; } 559 560 /* Menu item controls */ 561 .item-type { 562 font-size: 12px; 563 padding-right: 10px; 564 } 565 566 .item-controls { 567 font-size: 12px; 568 position: absolute; 569 right: 20px; 570 top: -1px; 571 572 a { 573 text-decoration: none; 574 &:hover { 575 cursor: pointer; 576 } 577 } 578 579 .item-order { 580 padding-right: 10px; 581 } 582 } 583 584 .nav-menus-php .item-edit { 585 position: absolute; 586 right: -20px; 587 top: 0; 588 display: block; 589 width: 30px; 590 height: 36px; 591 overflow: hidden; 592 text-indent:-999em; 593 border-bottom: 1px solid; 594 -moz-border-bottom-left-radius: 3px; 595 -webkit-border-bottom-left-radius: 3px; 596 border-bottom-left-radius: 3px; 597 } 598 599 /* Menu editing */ 600 .menu-instructions-inactive { 601 display: none; 602 } 603 604 .menu-item-settings { 605 display: block; 606 width: 400px; 607 padding: 10px 0 10px 10px; 608 border: solid; 609 border-width: 0 1px 1px 1px; 610 .rounded-bottom(); 611 612 .field-move a { 613 display: none; 614 margin: 0 2px; 615 } 616 617 .menu-item-edit-active & { 618 display: block; 619 } 620 621 .menu-item-edit-inactive & { 622 display: none; 623 } 624 625 .description-thin, 626 .description-wide { 627 margin-right: 10px; 628 float: left; 629 } 630 } 631 632 .add-menu-item-pagelinks { 633 margin: .5em auto; 634 text-align: center; 635 } 636 637 .link-to-original { 638 display: block; 639 margin: 0 0 10px; 640 padding: 3px 5px 5px; 641 font-size: 12px; 642 font-style: italic; 643 644 a { 645 padding-left: 4px; 646 font-style: normal; 647 } 648 } 649 650 .hidden-field { 651 display: none; 652 } 653 654 .description-thin { 655 width: 190px; 656 height: 40px; 657 } 658 659 .description-wide { 660 width: 390px; 661 } 662 663 .menu-item-actions { 664 padding-top: 15px; 665 } 666 667 #cancel-save { 668 cursor: pointer; 669 } 670 671 /* Major/minor publishing actions (classes) */ 672 .nav-menus-php { 673 .major-publishing-actions { 674 clear: both; 675 padding: 3px 0 5px; 676 677 .publishing-action { 678 text-align: right; 679 float: right; 680 line-height: 23px; 681 margin: 2px 0 1px; 682 } 683 684 .form-invalid { 685 padding-left: 4px; 686 margin-left: -4px; 687 border: 0 none; 688 } 689 } 690 691 .blank-slate .menu-settings { 692 display: none; 693 } 694 695 .delete-action { 696 float: left; 697 margin-top: 2px; 698 } 699 700 .submitbox .submitcancel { 701 border-bottom: 1px solid; 702 padding: 1px 2px; 703 text-decoration: none; 704 } 705 } 706 707 708 /* Clearfix */ 709 #menu-item-name-wrap:after, 710 #menu-item-url-wrap:after, 711 #menu-name-label:after, 712 #menu-settings-column .inside:after, 713 #nav-menus-frame:after, 714 .nav-menus-php #post-body-content:after, 715 .nav-menus-php .button-controls:after, 716 .nav-menus-php .major-publishing-actions:after, 717 .nav-menus-php .menu-item-settings:after { 718 clear: both; 719 content: "."; 720 display: block; 721 height: 0; 722 visibility: hidden; 723 } 724 725 #nav-menus-frame, 726 .button-controls, 727 #menu-item-url-wrap, 728 #menu-item-name-wrap { 729 display: block; 730 } 731 No newline at end of file -
new file wp-admin/css/less/modules/navigation.less
diff --git a/wp-admin/css/less/modules/navigation.less b/wp-admin/css/less/modules/navigation.less new file mode 100644 index 0000000..00e4e10
- + 1 /*------------------------------------------------------------------------------ 2 7.0 - Main Navigation (Left Menu) 3 ------------------------------------------------------------------------------*/ 4 5 #adminmenuback, 6 #adminmenuwrap { 7 border-width: 0 1px 0 0; 8 border-style: solid; 9 } 10 11 #adminmenuwrap { 12 position: relative; 13 float: left; 14 } 15 16 #adminmenushadow { 17 position: absolute; 18 top: 0; 19 right: 0; 20 bottom: 0; 21 width: 6px; 22 z-index: 20; 23 } 24 25 /* side admin menu */ 26 #adminmenu { 27 28 * { 29 .no-user-select(); 30 } 31 32 li { 33 margin: 0; 34 padding: 0; 35 cursor: pointer; 36 } 37 38 a { 39 display: block; 40 line-height: 18px; 41 padding: 2px 5px; 42 } 43 44 li.menu-top { 45 min-height: 28px; 46 position: relative; 47 } 48 49 .wp-submenu { 50 list-style: none; 51 padding: 4px 0; 52 margin: 0; 53 position: absolute; 54 top: -1000em; 55 left: 146px; 56 z-index: 1000; 57 overflow: visible; 58 border-width: 1px; 59 border-style: solid; 60 .rounded-right(); 61 } 62 63 .js & .sub-open, 64 .js & .opensub .wp-submenu, 65 a.menu-top:focus + .wp-submenu, 66 .no-js & li.wp-has-submenu:hover .wp-submenu { 67 top: -1px; 68 } 69 70 .wp-has-current-submenu .wp-submenu, 71 .no-js & li.wp-has-current-submenu:hover .wp-submenu, 72 a.wp-has-current-submenu:focus + .wp-submenu, 73 .wp-has-current-submenu .wp-submenu.sub-open, 74 .wp-has-current-submenu.opensub .wp-submenu { 75 position: relative; 76 z-index: 3; 77 top: auto; 78 left: auto; 79 right: auto; 80 bottom: auto; 81 border: 0 none; 82 83 .no-box-shadows(); 84 } 85 86 .folded & .wp-submenu.sub-open, 87 .folded & .opensub .wp-submenu, 88 .folded & .wp-has-current-submenu .wp-submenu.sub-open, 89 .folded & .wp-has-current-submenu.opensub .wp-submenu, 90 .folded & a.menu-top:focus + .wp-submenu, 91 .folded & .wp-has-current-submenu a.menu-top:focus + .wp-submenu, 92 .no-js.folded & .wp-has-submenu:hover .wp-submenu { 93 top: -1px; 94 left: 32px; 95 } 96 97 .folded & a.wp-has-current-submenu:focus + .wp-submenu, 98 .folded & .wp-has-current-submenu .wp-submenu { 99 border-width: 1px; 100 border-style: solid; 101 position: absolute; 102 top: -1000em; 103 } 104 105 .wp-submenu a { 106 font-size: 12px; 107 line-height: 18px; 108 margin: 0; 109 padding-left: 12px; 110 } 111 112 .wp-not-current-submenu li > a { 113 padding-left: 16px; 114 } 115 116 .wp-has-current-submenu ul > li > a, 117 .folded & li.menu-top .wp-submenu > li > a { 118 padding-left: 12px; 119 } 120 121 a.menu-top, 122 .wp-submenu-head { 123 .bold-font(13px, 18px); 124 padding: 0; 125 } 126 127 .wp-submenu-head, 128 .folded & .wp-menu-name { 129 display: none; 130 } 131 132 .folded & .wp-submenu-head { 133 display: block; 134 } 135 136 .wp-submenu li { 137 padding: 0; 138 margin: 0; 139 overflow: hidden; 140 } 141 142 a.menu-top { 143 border-width: 1px 0; 144 border-style: solid none; 145 } 146 147 .wp-menu-image img { 148 padding: 7px 0 0 7px; 149 opacity: 0.6; 150 filter: alpha(opacity=60); 151 } 152 153 div.wp-menu-name { 154 padding: 5px; 155 } 156 157 div.wp-menu-image { 158 float: left; 159 width: 28px; 160 height: 28px; 161 } 162 163 .folded & div.wp-menu-image { 164 width: 32px; 165 position: absolute; 166 z-index: 25; 167 } 168 169 .folded & a.menu-top { 170 height: 28px; 171 } 172 173 .wp-menu-arrow div { 174 display: none; 175 position: absolute; 176 top: 7px; 177 left: -1px; 178 width: 14px; 179 height: 15px; 180 181 -moz-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 ); 182 -webkit-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 ); 183 -o-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 ); 184 -ms-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 ); 185 transform: matrix( -0.6, 1, 0.6, 1, 0, 0 ); 186 } 187 188 li.wp-not-current-submenu .wp-menu-arrow { 189 -moz-transform: translate( 145px ); 190 -webkit-transform: translate( 145px ); 191 -o-transform: translate( 145px ); 192 -ms-transform: translate( 145px ); 193 transform: translate( 145px ); 194 height: 28px; 195 border-width: 1px 0; 196 border-style: solid; 197 top: 0; 198 } 199 200 .folded & li .wp-menu-arrow { 201 -moz-transform: translate( 32px ); 202 -webkit-transform: translate( 32px ); 203 -o-transform: translate( 32px ); 204 -ms-transform: translate( 32px ); 205 transform: translate( 32px ); 206 } 207 208 li.current .wp-menu-arrow, 209 li.wp-has-current-submenu .wp-menu-arrow, 210 li.wp-has-current-submenu .wp-menu-arrow div, 211 li.wp-has-submenu .wp-menu-arrow div, 212 li.current .wp-menu-arrow div, 213 .no-js & li.wp-has-submenu:hover .wp-menu-arrow, 214 li.wp-has-submenu.opensub .wp-menu-arrow, 215 a.wp-has-submenu:focus .wp-menu-arrow, 216 a:hover .wp-menu-arrow { 217 display: block; 218 } 219 220 li.current .wp-menu-arrow, 221 li.wp-menu-open .wp-menu-arrow { 222 top: 0; 223 } 224 225 .no-js & li.wp-has-submenu:hover .wp-menu-arrow, 226 li.wp-has-submenu.opensub .wp-menu-arrow, 227 a.wp-has-submenu:focus .wp-menu-arrow { 228 z-index: 1001; 229 } 230 231 .ie8 & li.menu-top:hover .wp-menu-arrow { 232 display: none; 233 } 234 235 .wp-not-current-submenu .wp-menu-arrow div { 236 width: 15px; 237 top: 6px; 238 border-width: 0 0 1px 1px; 239 border-style: solid; 240 } 241 242 .wp-menu-arrow, 243 .folded & li .wp-menu-arrow div, 244 .no-js & li.wp-not-current-submenu:hover .wp-menu-arrow { 245 display: none; 246 } 247 248 .folded & li.current .wp-menu-arrow, 249 .folded & li.current .wp-menu-arrow div, 250 .folded & li.wp-has-current-submenu .wp-menu-arrow div, 251 .folded & li.wp-menu-open .wp-menu-arrow, 252 .folded & li a:focus .wp-menu-arrow { 253 display: block; 254 } 255 256 li.menu-top:hover .wp-menu-image img, 257 li.wp-has-current-submenu .wp-menu-image img { 258 opacity: 1; 259 filter: alpha(opacity=100); 260 } 261 262 li.wp-menu-separator { 263 height: 3px; 264 padding: 0; 265 margin: 0; 266 border-width: 1px 0; 267 border-style: solid; 268 cursor: inherit; 269 } 270 271 div.separator { 272 height: 1px; 273 padding: 0; 274 border-width: 1px 0 0 0; 275 border-style: solid; 276 } 277 278 .wp-submenu .wp-submenu-head { 279 padding: 5px 4px 5px 10px; 280 margin: -4px -1px 4px; 281 border-width: 1px 0; 282 border-style: solid; 283 -moz-border-top-right-radius: 3px; 284 -webkit-border-top-right-radius: 3px; 285 border-top-right-radius: 3px; 286 } 287 288 li.wp-menu-open { 289 border-width: 0 0 1px; 290 border-style: solid; 291 } 292 293 li.current, 294 .folded & li.wp-menu-open { 295 border: 0 none; 296 } 297 298 .folded & li.wp-has-current-submenu { 299 margin-bottom: 1px; 300 } 301 302 .folded & .wp-has-current-submenu.menu-top-last { 303 margin-bottom: 0; 304 } 305 } 306 307 .wp-menu-arrow { 308 z-index: 25; 309 position: absolute; 310 right: 100%; 311 margin: 0; 312 height: 30px; 313 width: 6px; 314 315 -moz-transform: translate( 146px ); 316 -webkit-transform: translate( 146px ); 317 -o-transform: translate( 146px ); 318 -ms-transform: translate( 146px ); 319 transform: translate( 146px ); 320 } 321 322 #adminmenu .awaiting-mod, 323 #adminmenu span.update-plugins, 324 #sidemenu li a span.update-plugins { 325 position: absolute; 326 font-family: sans-serif; 327 .bold-font(9px, 17px); 328 margin-top: 1px; 329 margin-left: 7px; 330 .rounded(10px); 331 z-index: 26; 332 } 333 334 #adminmenu li .awaiting-mod span, 335 #adminmenu li span.update-plugins span, 336 #sidemenu li a span.update-plugins span { 337 display: block; 338 padding: 0 6px; 339 } 340 341 #adminmenu li span.count-0, 342 #sidemenu li a .count-0 { 343 display: none; 344 } 345 346 #collapse-menu { 347 font-size: 12px; 348 line-height: 34px; 349 border-width: 1px 0 0; 350 border-style: solid; 351 } 352 353 .folded #collapse-menu span { 354 display: none; 355 } 356 357 #collapse-button, 358 #collapse-button div { 359 width: 15px; 360 height: 15px; 361 } 362 363 #collapse-button { 364 float: left; 365 margin: 8px 6px; 366 border-width: 1px; 367 border-style: solid; 368 .rounded(10px); 369 } 370 371 /* Auto-folding of the admin menu */ 372 @media only screen and (max-width: 900px) { 373 .auto-fold #wpcontent, 374 .auto-fold #wpfooter { 375 margin-left: 52px; 376 } 377 378 .auto-fold #adminmenuback, 379 .auto-fold #adminmenuwrap, 380 .auto-fold #adminmenu, 381 .auto-fold #adminmenu li.menu-top { 382 width: 32px; 383 } 384 385 .auto-fold #adminmenu .wp-submenu.sub-open, 386 .auto-fold #adminmenu .opensub .wp-submenu, 387 .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, 388 .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu, 389 .auto-fold #adminmenu a.menu-top:focus + .wp-submenu, 390 .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { 391 top: -1px; 392 left: 32px; 393 } 394 395 .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 396 .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { 397 border-width: 1px; 398 border-style: solid; 399 position: absolute; 400 top: -1000em; 401 } 402 403 .auto-fold #adminmenu li.menu-top .wp-submenu > li > a { 404 padding-left: 12px; 405 } 406 407 .auto-fold #adminmenu .wp-menu-name { 408 display: none; 409 } 410 411 .auto-fold #adminmenu .wp-submenu-head { 412 display: block; 413 } 414 415 .auto-fold #adminmenu div.wp-menu-image { 416 width: 32px; 417 position: absolute; 418 z-index: 25; 419 } 420 421 .auto-fold #adminmenu a.menu-top { 422 height: 28px; 423 } 424 425 .auto-fold #adminmenu li .wp-menu-arrow { 426 -moz-transform: translate( 32px ); 427 -webkit-transform: translate( 32px ); 428 -o-transform: translate( 32px ); 429 -ms-transform: translate( 32px ); 430 transform: translate( 32px ); 431 } 432 433 .auto-fold #adminmenu li .wp-menu-arrow div { 434 display: none; 435 } 436 437 .auto-fold #adminmenu li.current .wp-menu-arrow, 438 .auto-fold #adminmenu li.current .wp-menu-arrow div, 439 .auto-fold #adminmenu li.wp-has-current-submenu .wp-menu-arrow div, 440 .auto-fold #adminmenu li.wp-menu-open .wp-menu-arrow, 441 .auto-fold #adminmenu li a:focus .wp-menu-arrow { 442 display: block; 443 } 444 445 .auto-fold #adminmenu li.wp-menu-open { 446 border: 0 none; 447 } 448 449 .auto-fold #adminmenu li.wp-has-current-submenu { 450 margin-bottom: 1px; 451 } 452 453 .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last { 454 margin-bottom: 0; 455 } 456 457 .auto-fold #collapse-menu span { 458 display: none; 459 } 460 461 } 462 463 /* List table styles */ 464 .post-com-count-wrapper { 465 min-width: 22px; 466 font-family: sans-serif; 467 } 468 469 .post-com-count { 470 background-image: url('../images/bubble_bg.gif'); 471 height: 1.3em; 472 line-height: 1.1em; 473 display: block; 474 text-decoration: none; 475 padding: 0 0 6px; 476 cursor: pointer; 477 background-position: center -80px; 478 background-repeat: no-repeat; 479 480 span { 481 .bold-font(11px, 1.4em); 482 height: 1.4em; 483 min-width: 0.7em; 484 padding: 0 6px; 485 display: inline-block; 486 .rounded(5px); 487 } 488 489 strong & { 490 background-position: center -55px; 491 } 492 493 &:hover { 494 background-position: center -3px; 495 } 496 497 .column-response & { 498 float: left; 499 margin-right: 5px; 500 text-align: center; 501 } 502 } 503 504 .response-links { 505 float: left; 506 } 507 508 #the-comment-list .attachment-80x60 { 509 padding: 4px 8px; 510 } 511 512 th .comment-grey-bubble { 513 background-image: url('../images/comment-grey-bubble.png'); 514 background-repeat: no-repeat; 515 height: 12px; 516 width: 12px; 517 } 518 No newline at end of file -
new file wp-admin/css/less/modules/notifications.less
diff --git a/wp-admin/css/less/modules/notifications.less b/wp-admin/css/less/modules/notifications.less new file mode 100644 index 0000000..485a792
- + 1 /*------------------------------------------------------------------------------ 2 4.0 - Notifications 3 ------------------------------------------------------------------------------*/ 4 5 #update-nag, 6 .update-nag { 7 line-height: 19px; 8 padding: 5px 0; 9 font-size: 12px; 10 text-align: center; 11 margin: -1px 15px 0 5px; 12 border-width: 1px; 13 border-style: solid; 14 .rounded-bottom(); 15 } 16 17 .plugins .plugin-update { 18 padding: 0; 19 } 20 21 .plugin-update .update-message { 22 margin: 0 10px 8px 31px; 23 font-weight: bold; 24 } 25 26 ul#dismissed-updates { 27 display: none; 28 } 29 30 form.upgrade { 31 margin-top: 8px; 32 } 33 34 form.upgrade .hint { 35 font-style: italic; 36 font-size: 85%; 37 margin: -0.5em 0 2em 0; 38 } 39 40 .update-php .spinner { 41 float: none; 42 margin: -4px 0; 43 } 44 45 #ajax-loading, 46 .ajax-loading, 47 .ajax-feedback, 48 .imgedit-wait-spin, 49 .list-ajax-loading { /* deprecated */ 50 visibility: hidden; 51 } 52 53 #ajax-response.alignleft { 54 margin-left: 2em; 55 } 56 No newline at end of file -
new file wp-admin/css/less/modules/plugins.less
diff --git a/wp-admin/css/less/modules/plugins.less b/wp-admin/css/less/modules/plugins.less new file mode 100644 index 0000000..e7b826d
- + 1 /*------------------------------------------------------------------------------ 2 17.0 - Plugins 3 ------------------------------------------------------------------------------*/ 4 5 #dashboard_right_now .versions .b, 6 #post-status-display, 7 #post-visibility-display, 8 #adminmenu .wp-submenu li.current, 9 #adminmenu .wp-submenu li.current a, 10 #adminmenu .wp-submenu li.current a:hover, 11 .media-item .percent, 12 .plugins .name, 13 #pass-strength-result.strong, 14 #pass-strength-result.short, 15 #ed_reply_toolbar #ed_reply_strong, 16 .item-controls .item-order a, 17 .feature-filter .feature-name { 18 font-weight: bold; 19 } 20 21 .plugins { 22 p { 23 margin: 0 4px; 24 padding: 0; 25 26 .desc & { 27 margin: 0 0 8px; 28 } 29 } 30 31 td.desc { 32 line-height: 1.5em; 33 } 34 35 .desc ul, 36 .desc ol { 37 margin: 0 0 0 2em; 38 } 39 40 .desc ul { 41 list-style-type: disc; 42 } 43 44 .row-actions-visible { 45 padding: 0; 46 } 47 48 tbody th.check-column { 49 padding: 7px 0; 50 } 51 52 .inactive td, 53 .inactive th, 54 .active td, 55 .active th { 56 border-top-style: solid; 57 border-top-width: 1px; 58 padding: 5px 7px 0; 59 } 60 61 .update th, 62 .update td { 63 border-bottom: 0; 64 } 65 66 #wpbody-content & .plugin-title, 67 #wpbody-content & .theme-title { 68 padding-right: 12px; 69 white-space: nowrap; 70 } 71 72 .second, 73 .row-actions-visible { 74 padding: 0 0 5px; 75 } 76 77 .update .second, 78 .update .row-actions-visible { 79 padding-bottom: 0; 80 } 81 } 82 83 .plugin-update-tr td { 84 border-top: 0; 85 } 86 87 .plugins-php .widefat tfoot th, 88 .plugins-php .widefat tfoot td { 89 border-top-style: solid; 90 border-top-width: 1px; 91 } 92 93 .plugin-update-tr .update-message { 94 margin: 5px; 95 padding: 3px 5px; 96 } 97 98 .plugin-install-php h4 { 99 margin: 2.5em 0 8px; 100 } 101 No newline at end of file -
new file wp-admin/css/less/modules/press-this.less
diff --git a/wp-admin/css/less/modules/press-this.less b/wp-admin/css/less/modules/press-this.less new file mode 100644 index 0000000..b105735
- + 1 .pressthis { 2 margin: 20px 0; 3 4 a, 5 a:hover, 6 a:focus, 7 a:active { 8 display: inline-block; 9 position: relative; 10 cursor: move; 11 color: #333; 12 .linear-gradient(#e6e6e6, 7%, #d8d8d8, 77%); 13 .rounded(5px); 14 border: 1px solid #b4b4b4; 15 font-style: normal; 16 line-height: 16px; 17 font-size: 14px; 18 text-decoration: none; 19 text-shadow: 0 1px 0px #fff; 20 } 21 22 a:active { 23 outline: none; 24 } 25 26 a:hover:after { 27 -webkit-transform: skew(20deg) rotate(9deg); 28 -moz-transform: skew(20deg) rotate(9deg); 29 transform: skew(20deg) rotate(9deg); 30 -moz-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); 31 -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); 32 box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); 33 } 34 35 a span { 36 background: url(../images/press-this.png?v=20120502) no-repeat 0px 5px; 37 background-size: 24px 20px; 38 padding: 8px 11px 8px 27px; 39 margin: 0 5px; 40 display: inline-block; 41 } 42 43 a:after { 44 content: ''; 45 width: 70%; 46 height: 55%; 47 z-index: -1; 48 position: absolute; 49 right: 10px; 50 bottom: 9px; 51 background: transparent; 52 53 -webkit-transform: skew(20deg) rotate(6deg); 54 -moz-transform: skew(20deg) rotate(6deg); 55 transform: skew(20deg) rotate(6deg); 56 -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6); 57 box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6); 58 } 59 60 /* Header */ 61 #wphead { 62 height: 32px; 63 margin-left: 0; 64 margin-right: 0; 65 margin-bottom: 5px; 66 67 h1 { 68 .normal-font(16px, 32px); 69 margin: 0; 70 float: left; 71 72 a { 73 text-decoration: none; 74 75 &:hover { 76 text-decoration: underline; 77 } 78 } 79 } 80 } 81 82 #header-logo { 83 float: left; 84 margin: 7px 7px 0; 85 .no-user-select(); 86 } 87 88 #message { 89 margin: 10px 0; 90 } 91 92 #title { 93 margin-left: 0; 94 margin-right: 0; 95 .border-box(); 96 } 97 98 .tagchecklist span a { 99 background: transparent url(../images/xit.gif) no-repeat 0 0; 100 } 101 102 #titlediv { 103 margin: 0; 104 } 105 106 .wp-media-buttons { 107 cursor: default; 108 padding: 8px 8px 0; 109 } 110 111 .howto { 112 margin-top: 2px; 113 margin-bottom: 3px; 114 font-size: 12px; 115 font-style: italic; 116 display: block; 117 } 118 119 /* Editor/Main Column */ 120 #poststuff { 121 margin: 0 10px 10px; 122 padding: 0; 123 } 124 125 #photo-add-url-div input[type="text"] { 126 width: 220px; 127 } 128 129 .inner-sidebar { 130 width: 200px; 131 132 .sleeve { 133 padding-top: 5px; 134 } 135 } 136 137 #submitdiv p { 138 margin: 0; 139 padding: 6px; 140 } 141 142 #submitdiv #publishing-actions { 143 border-bottom: 1px solid @border-color; 144 } 145 146 #publish { 147 float: right; 148 } 149 150 #poststuff h2, 151 #poststuff h3 { 152 font-size: 14px; 153 line-height: 1; 154 } 155 156 #tagsdiv-post_tag h3, 157 #categorydiv h3 { 158 cursor: pointer; 159 } 160 161 #submitdiv h3 { 162 cursor: default; 163 } 164 165 .postbox, 166 .stuffbox { 167 margin-bottom: 10px; 168 min-width: 0; 169 } 170 171 .actions { 172 float: right; 173 margin: -19px 0 0; 174 175 #extra-fields & { 176 margin: -32px -7px 0 0; 177 } 178 179 li { 180 float: left; 181 list-style: none; 182 margin-right: 10px; 183 } 184 } 185 186 /* Categories */ 187 .categorydiv div.tabs-panel { 188 height: 100px; 189 } 190 191 /* Tags */ 192 .tagsdiv .newtag { 193 width: 120px; 194 } 195 196 #content { 197 margin: 5px 0; 198 padding: 0 5px; 199 border: 0 none; 200 height: 345px; 201 font-family: Consolas, Monaco, monospace; 202 font-size: 13px; 203 line-height: 19px; 204 background: transparent; 205 } 206 207 /* Submit */ 208 #publishing-actions .spinner { 209 display: inline; 210 vertical-align: middle; 211 } 212 } 213 214 /* press-this */ 215 body.press-this { 216 color: #333; 217 margin: 0; 218 padding: 0; 219 min-width: 675px; 220 min-height: 400px; 221 } 222 223 .press-this-sidebar { 224 float: right; 225 width: 200px; 226 padding-top: 10px; 227 } 228 No newline at end of file -
new file wp-admin/css/less/modules/settings.less
diff --git a/wp-admin/css/less/modules/settings.less b/wp-admin/css/less/modules/settings.less new file mode 100644 index 0000000..61893d7
- + 1 /*------------------------------------------------------------------------------ 2 20.0 - Settings 3 ------------------------------------------------------------------------------*/ 4 5 #utc-time, #local-time { 6 padding-left: 25px; 7 font-style: italic; 8 font-family: sans-serif; 9 } 10 11 .defaultavatarpicker .avatar { 12 margin: 2px 0; 13 vertical-align: middle; 14 } 15 16 .options-general-php .spinner { 17 float: none; 18 margin: -3px 3px; 19 } 20 No newline at end of file -
new file wp-admin/css/less/modules/tags.less
diff --git a/wp-admin/css/less/modules/tags.less b/wp-admin/css/less/modules/tags.less new file mode 100644 index 0000000..1f9407c
- + 1 /*------------------------------------------------------------------------------ 2 13.0 - Tags 3 ------------------------------------------------------------------------------*/ 4 5 #poststuff .taghint { 6 color: #aaa; 7 margin: 15px 0 -24px 12px; 8 } 9 10 11 .ajaxtag .newtag { 12 position: relative; 13 } 14 15 .tagsdiv { 16 .newtag { 17 width: 180px; 18 } 19 20 .the-tags { 21 display: block; 22 height: 60px; 23 margin: 0 auto; 24 overflow: auto; 25 width: 260px; 26 27 #post-body-content & { 28 margin: 0 5px; 29 } 30 } 31 32 #poststuff & .howto { 33 margin: 0 0 6px 8px; 34 } 35 } 36 37 p.popular-tags { 38 .rounded(8px); 39 border-width: 1px; 40 border-style: solid; 41 line-height: 2em; 42 max-width: 1000px; 43 padding: 8px 12px 12px; 44 text-align: justify; 45 46 a { 47 padding: 0 3px; 48 } 49 } 50 51 .tagcloud { 52 width: 97%; 53 margin: 0 0 40px; 54 text-align: justify; 55 56 h3 { 57 margin: 2px 0 12px; 58 } 59 } 60 61 .ac_results { 62 padding: 0; 63 margin: 0; 64 list-style: none; 65 position: absolute; 66 z-index: 10000; 67 display: none; 68 border-width: 1px; 69 border-style: solid; 70 71 li { 72 padding: 2px 5px; 73 white-space: nowrap; 74 text-align: left; 75 } 76 } 77 78 .ac_over { 79 cursor: pointer; 80 } 81 82 .ac_match { 83 text-decoration: underline; 84 } 85 86 /* links tables */ 87 table.links-table { 88 width: 100%; 89 } 90 91 .links-table { 92 th { 93 font-weight: normal; 94 text-align: left; 95 vertical-align: top; 96 min-width: 80px; 97 width: 20%; 98 word-wrap: break-word; 99 } 100 101 th, 102 td { 103 padding: 5px 0; 104 } 105 106 td { 107 label { 108 margin-right: 8px; 109 } 110 111 input[type="text"], 112 textarea { 113 width: 100%; 114 } 115 } 116 117 #link_rel { 118 max-width: 280px; 119 } 120 } 121 No newline at end of file -
new file wp-admin/css/less/modules/text.less
diff --git a/wp-admin/css/less/modules/text.less b/wp-admin/css/less/modules/text.less new file mode 100644 index 0000000..6182848
- + 1 div.sidebar-name h3, 2 #menu-management .nav-tab, 3 #dashboard_plugins h5, 4 a.rsswidget, 5 #dashboard_right_now td.b, 6 #dashboard-widgets h4, 7 .tool-box .title, 8 #poststuff h3, 9 .metabox-holder h3, 10 .pressthis a, 11 #your-profile legend, 12 .inline-edit-row fieldset span.title, 13 .inline-edit-row fieldset span.checkbox-title, 14 .tablenav .displaying-num, 15 .widefat th, 16 .quicktags, 17 .search { 18 .serif-font(); 19 } 20 21 h2 .nav-tab, 22 .wrap h2, 23 .subtitle, 24 .login form .input { 25 .sans-serif-font(); 26 } 27 28 .quicktags, 29 .search { 30 font-size: 12px; 31 } 32 33 .icon32 { 34 float: left; 35 height: 34px; 36 margin: 7px 8px 0 0; 37 width: 36px; 38 } 39 40 .icon16 { 41 height: 18px; 42 width: 18px; 43 padding: 6px 6px; 44 margin: -6px 0 0 -8px; 45 float: left; 46 } 47 48 .key-labels label { 49 line-height: 24px; 50 } 51 52 .pre { 53 /* https://developer.mozilla.org/en-US/docs/CSS/white-space */ 54 white-space: pre-wrap; /* css-3 */ 55 word-wrap: break-word; /* IE 5.5 - 7 */ 56 } 57 58 .howto { 59 font-style: italic; 60 display: block; 61 font-family: sans-serif; 62 } 63 64 p.install-help { 65 margin: 8px 0; 66 font-style: italic; 67 } 68 69 .no-break { 70 white-space: nowrap; 71 } 72 No newline at end of file -
new file wp-admin/css/less/modules/themes.less
diff --git a/wp-admin/css/less/modules/themes.less b/wp-admin/css/less/modules/themes.less new file mode 100644 index 0000000..5206de1
- + 1 /*------------------------------------------------------------------------------ 2 16.0 - Themes 3 ------------------------------------------------------------------------------*/ 4 5 .theme-install-php { 6 .tablenav { 7 height: auto; 8 } 9 10 .spinner { 11 margin-top: 9px; 12 } 13 } 14 15 h3.available-themes { 16 margin: 0.3em 0 1em; 17 float: left; 18 } 19 20 .available-theme { 21 display: inline-block; 22 margin-right: 10px; 23 overflow: hidden; 24 padding: 20px 20px 20px 0; 25 vertical-align: top; 26 width: 300px; 27 28 .screenshot { 29 width: 300px; 30 height: 225px; 31 display: block; 32 border-width: 1px; 33 border-style: solid; 34 margin-bottom: 10px; 35 overflow: hidden; 36 } 37 38 img { 39 width: 300px; 40 } 41 42 h3 { 43 margin: 15px 0 0; 44 } 45 46 .theme-author { 47 line-height: 18px; 48 } 49 50 .action-links { 51 margin-top: 10px; 52 overflow: hidden; 53 } 54 55 a.screenshot:focus { 56 border-color: #777; 57 } 58 } 59 60 #current-theme .theme-info li, 61 .theme-options li, 62 .available-theme .action-links li { 63 float: left; 64 padding-right: 10px; 65 margin-right: 10px; 66 border-right: 1px solid @border-color; 67 68 &:last-child { 69 padding-right: 0; 70 margin-right: 0; 71 border-right: 0; 72 } 73 } 74 75 .available-theme .action-links { 76 li { 77 padding-right: 8px; 78 margin-right: 8px; 79 80 .ie8 & { 81 padding-right: 7px; 82 margin-right: 7px; 83 } 84 } 85 86 .delete-theme { 87 float: right; 88 margin-left: 8px; 89 margin-right: 0; 90 91 a { 92 color: red; 93 padding: 2px; 94 95 &:hover { 96 background: red; 97 color: white; 98 text-decoration: none; 99 } 100 } 101 } 102 103 p { 104 float: left; 105 } 106 } 107 108 #current-theme { 109 margin: 20px 0 10px; 110 padding: 0 0 20px; 111 border-bottom-width: 1px; 112 border-bottom-style: solid; 113 overflow: hidden; 114 115 &.has-screenshot { 116 padding-left: 330px; 117 } 118 119 h3 { 120 margin: 0; 121 font-size: 12px; 122 font-weight: normal; 123 color: #999; 124 } 125 126 h4 { 127 margin: 3px 0 16px; 128 font-size: 20px; 129 } 130 131 h4 span { 132 margin-left: 20px; 133 font-size: 12px; 134 font-weight: normal; 135 } 136 137 a { 138 border-bottom: none; 139 } 140 141 .theme-info { 142 margin: 1em 0; 143 overflow: hidden; 144 } 145 146 .theme-description { 147 margin-top: 5px; 148 max-width: 600px; 149 line-height: 1.6em; 150 } 151 152 img { 153 float: left; 154 width: 300px; 155 margin-left: -330px; 156 157 border-width: 1px; 158 border-style: solid; 159 } 160 } 161 162 .theme-options { 163 overflow: hidden; 164 font-size: 14px; 165 padding-bottom: 10px; 166 167 .load-customize { 168 margin-right: 30px; 169 float: left; 170 } 171 172 span { 173 float: left; 174 margin-right: 10px; 175 text-transform: uppercase; 176 font-size: 11px; 177 line-height: 18px; 178 color: #999; 179 } 180 181 ul { 182 float: left; 183 margin: 0; 184 } 185 } 186 187 /* Allow for three-up in small windows when sidebar is collapsed */ 188 @media only screen and (max-width: 1200px) { 189 .folded { 190 .available-theme, 191 .available-theme .screenshot { 192 width: 300px; 193 } 194 195 .available-theme .screenshot { 196 height: 225px; 197 } 198 199 #current-theme { 200 img { 201 width: 300px; 202 margin-left: -330px; 203 } 204 205 &.has-screenshot { 206 padding-left: 330px; 207 } 208 } 209 } 210 } 211 212 /* Adjust three-up display in smaller windows when sidebar is collapsed */ 213 @media only screen and (max-width: 1079px) { 214 .folded { 215 .available-theme, 216 .available-theme .screenshot { 217 width: 270px; 218 } 219 220 .available-theme .screenshot { 221 height: 203px; 222 } 223 224 #current-theme { 225 img { 226 width: 270px; 227 margin-left: -300px; 228 } 229 230 &.has-screenshot { 231 padding-left: 300px; 232 } 233 } 234 } 235 } 236 237 /* Allow for three-up on 1024px wide screens, e.g. tablets */ 238 @media only screen and (max-width: 1200px) { 239 .available-theme, 240 .available-theme .screenshot, 241 #current-theme img { 242 width: 240px; 243 } 244 245 .available-theme { 246 .screenshot { 247 height: 180px; 248 } 249 250 img { 251 width: 100%; 252 } 253 } 254 255 #current-theme { 256 &.has-screenshot { 257 padding-left: 270px; 258 } 259 260 img { 261 margin-left: -270px; 262 } 263 } 264 } 265 266 #post-body ul.add-menu-item-tabs li.tabs a, 267 #TB_window #TB_title a.tb-theme-preview-link, 268 #TB_window #TB_title a.tb-theme-preview-link:visited { 269 font-weight: bold; 270 text-decoration: none; 271 } 272 273 #TB_window #TB_title { 274 background-color: #222; 275 color: #cfcfcf; 276 } 277 278 #broken-themes { 279 text-align: left; 280 width: 50%; 281 border-spacing: 3px; 282 padding: 3px; 283 } 284 285 .theme-install-php h4 { 286 margin: 2.5em 0 8px; 287 } 288 289 /*------------------------------------------------------------------------------ 290 16.1 - Custom Header Screen 291 ------------------------------------------------------------------------------*/ 292 293 .appearance_page_custom-header { 294 #headimg { 295 border: 1px solid @border-color; 296 overflow: hidden; 297 width: 100%; 298 } 299 300 #upload-form p label { 301 font-size: 12px; 302 } 303 304 .available-headers .default-header { 305 float: left; 306 margin: 0 20px 20px 0; 307 } 308 309 .random-header { 310 clear: both; 311 margin: 0 20px 20px 0; 312 vertical-align: middle; 313 } 314 315 .available-headers label input, 316 .random-header label input { 317 margin-right: 10px; 318 } 319 320 .available-headers label img { 321 vertical-align: middle; 322 } 323 } 324 325 326 /*------------------------------------------------------------------------------ 327 16.2 - Custom Background Screen 328 ------------------------------------------------------------------------------*/ 329 330 div#custom-background-image { 331 min-height: 100px; 332 border: 1px solid @border-color; 333 334 img { 335 max-width: 400px; 336 max-height: 300px; 337 } 338 } 339 340 341 /*------------------------------------------------------------------------------ 342 16.3 - Tabbed Admin Screen Interface (Experimental) 343 ------------------------------------------------------------------------------*/ 344 345 .nav-tab { 346 border-style: solid; 347 border-width: 1px 1px 0; 348 color: #aaa; 349 text-shadow: #fff 0 1px 0; 350 font-size: 12px; 351 line-height: 16px; 352 display: inline-block; 353 padding: 4px 14px 6px; 354 text-decoration: none; 355 margin: 0 6px -1px 0; 356 .rounded-top(); 357 358 h2 & { 359 padding: 4px 10px 6px; 360 font-weight: 200; 361 font-size: 20px; 362 line-height: 24px; 363 } 364 } 365 366 .nav-tab-active { 367 border-width: 1px; 368 color: #464646; 369 } 370 371 h2.nav-tab-wrapper, h3.nav-tab-wrapper { 372 border-bottom-width: 1px; 373 border-bottom-style: solid; 374 padding-bottom: 0; 375 } 376 No newline at end of file -
new file wp-admin/css/less/modules/users.less
diff --git a/wp-admin/css/less/modules/users.less b/wp-admin/css/less/modules/users.less new file mode 100644 index 0000000..08a960d
- + 1 /*------------------------------------------------------------------------------ 2 18.0 - Users 3 ------------------------------------------------------------------------------*/ 4 5 #profile-page { 6 .form-table { 7 textarea { 8 width: 500px; 9 margin-bottom: 6px; 10 } 11 12 #rich_editing { 13 margin-right: 5px; 14 } 15 } 16 } 17 18 #your-profile { 19 legend { 20 font-size: 22px; 21 } 22 23 #rich_editing { 24 border: none; 25 } 26 } 27 28 #display_name { 29 width: 15em; 30 } 31 32 #createuser .form-field input { 33 width: 25em; 34 } 35 No newline at end of file -
new file wp-admin/css/less/modules/widgets.less
diff --git a/wp-admin/css/less/modules/widgets.less b/wp-admin/css/less/modules/widgets.less new file mode 100644 index 0000000..83cd534
- + 1 /* widgets */ 2 3 /* 2 column liquid layout */ 4 div.widget-liquid-left { 5 float: left; 6 clear: left; 7 width: 100%; 8 margin-right: -325px; 9 } 10 11 div#widgets-left { 12 margin-left: 5px; 13 margin-right: 325px; 14 } 15 16 div#widgets-right { 17 width: 285px; 18 margin: 0 auto; 19 } 20 21 div.widget-liquid-right { 22 float: right; 23 clear: right; 24 width: 300px; 25 } 26 27 .widget-liquid-right .widget, 28 .inactive-sidebar .widget, 29 .widget-liquid-right .sidebar-description { 30 width: 250px; 31 margin: 0 auto 20px; 32 overflow: hidden; 33 } 34 35 .widget-liquid-right .sidebar-description { 36 margin-bottom: 10px; 37 } 38 39 .inactive-sidebar .widget { 40 margin: 0 10px 20px; 41 display: inline-block; 42 } 43 44 div.sidebar-name { 45 font-size: 13px; 46 border-width: 1px; 47 border-style: solid; 48 .rounded-top(); 49 50 h3 { 51 font-weight: normal; 52 font-size: 15px; 53 margin: 0; 54 padding: 8px 10px; 55 overflow: hidden; 56 white-space: nowrap; 57 } 58 } 59 60 .js .sidebar-name { 61 cursor: pointer; 62 } 63 64 .js .closed .sidebar-name { 65 .rounded-bottom(); 66 } 67 68 .widget-liquid-right .widgets-sortables, 69 #widgets-left .widget-holder { 70 border-width: 0 1px 1px; 71 border-style: none solid solid; 72 .rounded-bottom(); 73 } 74 75 .js .closed .widgets-sortables, 76 .js .closed .widget-holder { 77 display: none; 78 } 79 80 .widget-liquid-right .widgets-sortables { 81 padding: 15px 0 0; 82 } 83 84 #available-widgets .widget-holder { 85 padding: 7px 5px 0; 86 } 87 88 #available-widgets .widget { 89 .no-box-shadows(); 90 } 91 92 .inactive-sidebar { 93 padding: 5px 5px 0; 94 } 95 96 #widget-list .widget { 97 width: 250px; 98 margin: 0 10px 15px; 99 border: 0 none; 100 background: transparent; 101 display: inline-block; 102 vertical-align: top; 103 } 104 105 #widget-list .widget-description { 106 padding: 5px 8px; 107 } 108 109 .widget-placeholder { 110 border-width: 1px; 111 border-style: dashed; 112 margin: 0 auto 20px; 113 height: 27px; 114 width: 250px; 115 116 .inactive-sidebar & { 117 margin: 0 10px 20px; 118 float: left; 119 } 120 } 121 122 div.widgets-holder-wrap { 123 padding: 0; 124 margin: 10px 0 20px; 125 } 126 127 #widgets-left #available-widgets { 128 background-color: transparent; 129 border: 0 none; 130 } 131 132 ul#widget-list { 133 list-style: none; 134 margin: 0; 135 padding: 0; 136 min-height: 100px; 137 } 138 139 .widget .widget-top { 140 margin-bottom: -1px; 141 .bold-font(12px, 26px); 142 overflow: hidden; 143 } 144 145 a.widget-action { 146 display: block; 147 width: 24px; 148 height: 26px; 149 } 150 151 #available-widgets a.widget-action { 152 display: none; 153 } 154 155 .widget-top { 156 .widget-title { 157 padding: 7px 9px; 158 } 159 160 .widget-title-action { 161 float: right; 162 } 163 164 a.widget-action { 165 background: transparent url(../images/arrows.png) no-repeat 4px 6px; 166 167 &:hover { 168 background: transparent url(../images/arrows-dark.png) no-repeat 4px 6px; 169 } 170 } 171 } 172 173 .widget .widget-inside, 174 .widget .widget-description { 175 padding: 12px 12px 10px; 176 font-size: 12px; 177 line-height: 16px; 178 } 179 180 .widget-inside, 181 .widget-description { 182 display: none; 183 } 184 185 #available-widgets .widget-description { 186 display: block; 187 } 188 189 .widget .widget-inside p { 190 margin: 0 0 1em; 191 padding: 0; 192 } 193 194 .widget-title h4 { 195 margin: 0; 196 padding-bottom: 0.2em; 197 line-height: 1; 198 overflow: hidden; 199 white-space: nowrap; 200 } 201 202 .widgets-sortables { 203 min-height: 90px; 204 } 205 206 .widget-control-actions { 207 margin-top: 8px; 208 209 a { 210 text-decoration: none; 211 } 212 213 a:hover { 214 text-decoration: underline; 215 } 216 217 div.alignleft { 218 margin-top: 6px; 219 } 220 } 221 222 div#sidebar-info { 223 padding: 0 1em; 224 margin-bottom: 1em; 225 font-size: 12px; 226 } 227 228 .widget-title a, 229 .widget-title a:hover { 230 text-decoration: none; 231 border-bottom: none; 232 } 233 234 .widget-control-edit { 235 display: block; 236 .normal-font(12px, 26px); 237 padding: 0 8px 0 0; 238 239 .add, 240 .edit { 241 display: none; 242 } 243 } 244 245 a.widget-control-edit { 246 text-decoration: none; 247 } 248 249 #available-widgets .widget-control-edit .add, 250 #widgets-right .widget-control-edit .edit, 251 .inactive-sidebar .widget-control-edit .edit { 252 display: inline; 253 } 254 255 .editwidget { 256 margin: 0 auto 15px; 257 258 .widget-inside { 259 display: block; 260 padding: 10px; 261 } 262 } 263 264 .inactive p.description { 265 margin: 5px 15px 10px; 266 } 267 268 #available-widgets p.description { 269 margin: 0 12px 12px; 270 } 271 272 .widget-position { 273 margin-top: 8px; 274 } 275 276 .inactive { 277 padding-top: 2px; 278 } 279 280 .sidebar-name .spinner { 281 float: none; 282 margin: 0 3px -3px; 283 } 284 285 .sidebar-name-arrow { 286 float: right; 287 height: 29px; 288 width: 26px; 289 } 290 291 .widget-title .in-widget-title { 292 font-size: 12px; 293 white-space: nowrap; 294 } 295 296 #removing-widget { 297 display: none; 298 padding-left: 15px; 299 .normal-font(12px); 300 } 301 302 .widget-control-noform, 303 #access-off, 304 .widgets_access .widget-action, 305 .widgets_access .sidebar-name-arrow, 306 .widgets_access #access-on, 307 .widgets_access .widget-holder .description { 308 display: none; 309 } 310 311 .widgets_access { 312 .widget-holder, 313 #widget-list { 314 padding-top: 10px; 315 } 316 317 #access-off { 318 display: inline; 319 } 320 321 #wpbody-content .widget-title-action, 322 #wpbody-content .widget-control-edit, 323 .closed .widgets-sortables, 324 .closed .widget-holder { 325 display: block; 326 } 327 328 .closed .sidebar-name { 329 .rounded-bottom(0); 330 } 331 332 .sidebar-name, 333 .widget .widget-top { 334 cursor: default; 335 } 336 } 337 No newline at end of file -
new file wp-admin/css/less/variables.less
diff --git a/wp-admin/css/less/variables.less b/wp-admin/css/less/variables.less new file mode 100644 index 0000000..2e1ee5e
- + 1 @border-color: #dfdfdf; -
new file wp-admin/css/less/wp-admin.less
diff --git a/wp-admin/css/less/wp-admin.less b/wp-admin/css/less/wp-admin.less new file mode 100644 index 0000000..78ce4f1
- + 1 @import "variables.less"; 2 @import "mixins.less"; 3 4 /* 5 Hello, this is the main WordPress admin CSS file. 6 All the important stuff is in here. 7 8 TABLE OF CONTENTS: 9 ------------------ 10 1.0 - Text Elements 11 2.0 - Forms 12 3.0 - Actions 13 4.0 - Notifications 14 5.0 - TinyMCE 15 6.0 - Admin Header 16 6.1 - Screen Options Tabs 17 6.2 - Help Menu 18 7.0 - Main Navigation 19 8.0 - Layout Blocks 20 9.0 - Dashboard 21 10.0 - List Posts 22 10.1 - Inline Editing 23 11.0 - Write/Edit Post Screen 24 11.1 - Custom Fields 25 11.2 - Post Revisions 26 11.3 - Featured Images 27 11.4 - Post Format Selection 28 12.0 - Categories 29 13.0 - Tags 30 14.0 - Media Screen 31 14.1 - Media Library 32 14.2 - Image Editor 33 15.0 - Comments Screen 34 16.0 - Themes 35 16.1 - Custom Header 36 16.2 - Custom Background 37 16.3 - Tabbed Admin Screen Interface 38 17.0 - Plugins 39 18.0 - Users 40 19.0 - Tools (deprecated) 41 20.0 - Settings 42 21.0 - Admin Footer 43 22.0 - About Pages 44 23.0 - Full Overlay w/ Sidebar 45 24.0 - Customize Loader 46 25.0 - Misc 47 */ 48 49 @import "modules/global.less"; 50 @import "modules/text.less"; 51 @import "modules/forms.less"; 52 @import "modules/actions.less"; 53 @import "modules/notifications.less"; 54 @import "modules/header.less"; 55 @import "modules/navigation.less"; 56 @import "modules/layout-blocks.less"; 57 @import "modules/dashboard.less"; 58 @import "modules/list-posts.less"; 59 @import "modules/edit-post.less"; 60 @import "modules/categories.less"; 61 @import "modules/tags.less"; 62 @import "modules/media.less"; 63 @import "modules/comments.less"; 64 @import "modules/themes.less"; 65 @import "modules/plugins.less"; 66 @import "modules/users.less"; 67 @import "modules/settings.less"; 68 @import "modules/footer.less"; 69 @import "modules/about.less"; 70 @import "modules/full-overlay.less"; 71 @import "modules/customize.less"; 72 @import "modules/misc.less"; 73 @import "modules/login.less"; 74 @import "modules/press-this.less"; 75 @import "modules/nav-menus.less"; 76 @import "modules/widgets.less"; 77 @import "modules/accordion.less"; 78 @import "modules/media-queries.less"; 79 @import "modules/hidpi.less"; 80 @import "modules/localized.less"; 81 No newline at end of file -
wp-admin/css/wp-admin.css
diff --git a/wp-admin/css/wp-admin.css b/wp-admin/css/wp-admin.css index 95c0482..94bab99 100644
a b 1 /*------------------------------------------------------------------------------ 2 3 1 /* 4 2 Hello, this is the main WordPress admin CSS file. 5 3 All the important stuff is in here. 6 4 7 8 5 TABLE OF CONTENTS: 9 6 ------------------ 10 7 1.0 - Text Elements … … TABLE OF CONTENTS: 37 34 16.3 - Tabbed Admin Screen Interface 38 35 17.0 - Plugins 39 36 18.0 - Users 40 19.0 - Tools 37 19.0 - Tools (deprecated) 41 38 20.0 - Settings 42 39 21.0 - Admin Footer 43 40 22.0 - About Pages 44 41 23.0 - Full Overlay w/ Sidebar 45 42 24.0 - Customize Loader 46 43 25.0 - Misc 47 48 ------------------------------------------------------------------------*/ 49 44 */ 50 45 /* 2 column liquid layout */ 51 46 #wpwrap { 52 53 54 55 47 height: auto; 48 min-height: 100%; 49 width: 100%; 50 position: relative; 56 51 } 57 58 52 #wpcontent { 59 53 height: 100%; 60 54 } 61 62 55 #wpcontent, 63 56 #wpfooter { 64 57 margin-left: 165px; 65 58 } 66 67 59 .folded #wpcontent, 68 60 .folded #wpfooter { 69 61 margin-left: 52px; 70 62 } 71 72 63 #wpbody-content { 73 74 75 64 padding-bottom: 65px; 65 float: left; 66 width: 100%; 76 67 } 77 78 68 #adminmenuback, 79 69 #adminmenuwrap, 80 70 #adminmenu, 81 71 #adminmenu .wp-submenu { 82 72 width: 145px; 83 73 } 84 85 74 #adminmenuback { 86 87 88 89 75 position: absolute; 76 top: 0; 77 bottom: 0; 78 z-index: -1; 90 79 } 91 92 80 #adminmenu { 93 94 95 96 81 clear: left; 82 margin: 0; 83 padding: 0; 84 list-style: none; 97 85 } 98 99 86 .folded #adminmenuback, 100 87 .folded #adminmenuwrap, 101 88 .folded #adminmenu, 102 89 .folded #adminmenu li.menu-top { 103 90 width: 32px; 104 91 } 105 106 92 /* inner 2 column liquid layout */ 107 108 93 .inner-sidebar { 109 110 111 112 113 94 float: right; 95 clear: right; 96 display: none; 97 width: 281px; 98 position: relative; 114 99 } 115 116 100 .columns-2 .inner-sidebar { 117 118 119 101 margin-right: auto; 102 width: 286px; 103 display: block; 120 104 } 121 122 105 .inner-sidebar #side-sortables, 123 106 .columns-2 .inner-sidebar #side-sortables { 124 125 126 107 min-height: 300px; 108 width: 280px; 109 padding: 0; 127 110 } 128 129 111 .has-right-sidebar .inner-sidebar { 130 112 display: block; 131 113 } 132 133 114 .has-right-sidebar #post-body { 134 135 136 137 115 float: left; 116 clear: left; 117 width: 100%; 118 margin-right: -2000px; 138 119 } 139 140 120 .has-right-sidebar #post-body-content { 141 142 143 121 margin-right: 300px; 122 float: none; 123 width: auto; 144 124 } 145 146 125 /* 2 columns main area */ 147 148 126 #col-container, 149 127 #col-left, 150 128 #col-right { 151 152 153 129 overflow: hidden; 130 padding: 0; 131 margin: 0; 154 132 } 155 156 133 #col-left { 157 134 width: 35%; 158 135 } 159 160 136 #col-right { 161 162 163 137 float: right; 138 clear: right; 139 width: 65%; 164 140 } 165 166 141 .col-wrap { 167 142 padding: 0 7px; 168 143 } 169 170 144 /* utility classes */ 171 145 .alignleft { 172 146 float: left; 173 147 } 174 175 148 .alignright { 176 149 float: right; 177 150 } 178 179 151 .textleft { 180 152 text-align: left; 181 153 } 182 183 154 .textright { 184 155 text-align: right; 185 156 } 186 187 157 .clear { 188 158 clear: both; 189 159 } 190 191 160 /* Hide visually but not from screen readers */ 192 161 .screen-reader-text, 193 162 .screen-reader-text span, 194 163 .ui-helper-hidden-accessible { 195 196 197 198 199 200 164 position: absolute; 165 left: -1000em; 166 top: -1000em; 167 height: 1px; 168 width: 1px; 169 overflow: hidden; 201 170 } 202 203 171 .screen-reader-shortcut { 204 205 172 position: absolute; 173 top: -1000em; 206 174 } 207 208 175 .screen-reader-shortcut:focus { 209 left: 6px; 210 top: -21px; 211 height: auto; 212 width: auto; 213 display: block; 214 font-size: 14px; 215 font-weight: bold; 216 padding: 15px 23px 14px; 217 background: #f1f1f1; 218 color: #21759b; 219 border-radius: 3px; 220 z-index: 100000; 221 line-height: normal; 222 -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6); 223 box-shadow: 0 0 2px 2px rgba(0,0,0,.6); 224 text-decoration: none; 176 left: 6px; 177 top: -21px; 178 height: auto; 179 width: auto; 180 display: block; 181 font-size: 14px; 182 font-weight: bold; 183 line-height: normal; 184 padding: 15px 23px 14px; 185 background: #f1f1f1; 186 color: #21759b; 187 border-radius: 3px; 188 -moz-border-radius: 3px; 189 -webkit-border-radius: 3px; 190 z-index: 100000; 191 -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); 192 box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); 193 text-decoration: none; 225 194 } 226 227 195 .hidden, 228 196 .js .closed .inside, 229 197 .js .hide-if-js, … … TABLE OF CONTENTS: 232 200 .js .wp-core-ui .hide-if-js, 233 201 .no-js.wp-core-ui .hide-if-no-js, 234 202 .no-js .wp-core-ui .hide-if-no-js { 235 203 display: none; 236 204 } 237 238 205 /* include margin and padding in the width calculation of input and textarea */ 239 206 input[type="text"], 240 207 input[type="password"], … … input[type="search"], 243 210 input[type="email"], 244 211 input[type="url"], 245 212 textarea { 246 247 248 -ms-box-sizing: border-box; /* ie8 only */ 249 213 -moz-box-sizing: border-box; 214 -webkit-box-sizing: border-box; 215 -ms-box-sizing: border-box; 216 box-sizing: border-box; 250 217 } 251 252 218 input[type="checkbox"], 253 219 input[type="radio"] { 254 255 256 220 vertical-align: text-top; 221 padding: 0; 222 margin: 1px 0 0; 257 223 } 258 259 224 input[type="search"] { 260 225 -webkit-appearance: textfield; 261 226 } 262 263 227 input[type="search"]::-webkit-search-decoration { 264 228 display: none; 265 229 } 266 267 230 /* general */ 268 231 html, 269 232 body { 270 271 272 233 height: 100%; 234 margin: 0; 235 padding: 0; 273 236 } 274 275 237 body { 276 277 278 279 238 font-family: sans-serif; 239 font-size: 12px; 240 line-height: 1.4em; 241 min-width: 600px; 280 242 } 281 282 243 body.iframe { 283 284 244 min-width: 0; 245 padding-top: 1px; 285 246 } 286 287 247 body.login { 288 289 248 background: #fbfbfb; 249 min-width: 0; 290 250 } 291 292 251 iframe, 293 252 img { 294 253 border: 0; 295 254 } 296 297 255 td, 298 256 textarea, 299 257 input, 300 258 select, 301 259 button { 302 303 304 260 font-family: inherit; 261 font-size: inherit; 262 font-weight: inherit; 305 263 } 306 307 264 td, 308 265 textarea { 309 266 line-height: inherit; 310 267 } 311 312 268 input, 313 269 select { 314 270 line-height: 15px; 315 271 } 316 317 272 a, 318 273 input[type="text"], 319 274 input[type="password"], … … input[type="url"], 324 279 select, 325 280 textarea, 326 281 div { 327 282 outline: 0; 328 283 } 329 330 284 a:focus, 331 285 a:active { 332 286 outline: thin dotted; 333 287 } 334 335 288 #adminmenu a:focus, 336 289 #adminmenu a:active, 337 290 .screen-reader-text:focus { 338 291 outline: none; 339 292 } 340 341 293 blockquote, 342 294 q { 343 295 quotes: none; 344 296 } 345 346 297 blockquote:before, 347 298 blockquote:after, 348 299 q:before, 349 300 q:after { 350 351 301 content: ''; 302 content: none; 352 303 } 353 354 304 p { 355 305 margin: 1em 0; 356 306 } 357 358 307 blockquote { 359 308 margin: 1em; 360 309 } 361 362 310 label { 363 311 cursor: pointer; 364 312 } 365 366 313 li, 367 314 dd { 368 315 margin-bottom: 6px; 369 316 } 370 371 317 textarea, 372 318 input, 373 319 select { 374 375 320 margin: 1px; 321 padding: 3px; 376 322 } 377 378 323 h1, 379 324 h2, 380 325 h3, 381 326 h4, 382 327 h5, 383 328 h6 { 384 385 329 display: block; 330 font-weight: bold; 386 331 } 387 388 332 h1 { 389 390 333 font-size: 2em; 334 margin: .67em 0; 391 335 } 392 393 336 h2 { 394 395 337 font-size: 1.5em; 338 margin: .83em 0; 396 339 } 397 398 340 h3 { 399 400 341 font-size: 1.17em; 342 margin: 1em 0; 401 343 } 402 403 344 h4 { 404 405 345 font-size: 1em; 346 margin: 1.33em 0; 406 347 } 407 408 348 h5 { 409 410 349 font-size: 0.83em; 350 margin: 1.67em 0; 411 351 } 412 413 352 h6 { 414 415 353 font-size: 0.67em; 354 margin: 2.33em 0; 416 355 } 417 418 356 ul, 419 357 ol { 420 358 padding: 0; 421 359 } 422 423 360 ul { 424 361 list-style: none; 425 362 } 426 427 363 ol { 428 429 364 list-style-type: decimal; 365 margin-left: 2em; 430 366 } 431 432 367 ul.ul-disc { 433 368 list-style: disc outside; 434 369 } 435 436 370 ul.ul-square { 437 371 list-style: square outside; 438 372 } 439 440 373 ol.ol-decimal { 441 374 list-style: decimal outside; 442 375 } 443 444 376 ul.ul-disc, 445 377 ul.ul-square, 446 378 ol.ol-decimal { 447 379 margin-left: 1.8em; 448 380 } 449 450 381 ul.ul-disc > li, 451 382 ul.ul-square > li, 452 383 ol.ol-decimal > li { 453 384 margin: 0 0 0.5em; 454 385 } 455 456 386 .code, 457 387 code { 458 388 font-family: Consolas, Monaco, monospace; 459 389 } 460 461 390 kbd, 462 391 code { 463 464 465 392 padding: 1px 3px; 393 margin: 0 1px; 394 font-size: 11px; 466 395 } 467 468 396 .subsubsub { 469 470 471 472 473 397 list-style: none; 398 margin: 8px 0 5px; 399 padding: 0; 400 font-size: 12px; 401 float: left; 474 402 } 475 476 403 .subsubsub a { 477 478 479 404 line-height: 2; 405 padding: .2em; 406 text-decoration: none; 480 407 } 481 482 408 .subsubsub a .count, 483 409 .subsubsub a.current .count { 484 485 410 color: #999; 411 font-weight: normal; 486 412 } 487 488 413 .subsubsub a.current { 489 490 414 font-weight: bold; 415 border: none; 491 416 } 492 493 417 .subsubsub li { 494 495 496 497 418 display: inline-block; 419 margin: 0; 420 padding: 0; 421 white-space: nowrap; 498 422 } 499 500 423 .widefat, 501 424 div.updated, 502 425 div.error, … … select, 536 459 .feature-filter, 537 460 #widget-list .widget-top, 538 461 .editwidget .widget-inside { 539 -webkit-border-radius: 3px; 540 border-radius: 3px; 541 border-width: 1px; 542 border-style: solid; 462 border-radius: 3px; 463 -moz-border-radius: 3px; 464 -webkit-border-radius: 3px; 465 border-width: 1px; 466 border-style: solid; 543 467 } 544 545 468 /* .widefat - main style for tables */ 546 469 .widefat { 547 548 549 550 470 border-spacing: 0; 471 width: 100%; 472 clear: both; 473 margin: 0; 551 474 } 552 553 475 .widefat * { 554 476 word-wrap: break-word; 555 477 } 556 557 478 .widefat a { 558 479 text-decoration: none; 559 480 } 560 561 481 .widefat thead th:first-of-type { 562 -webkit-border-top-left-radius: 3px; 563 border-top-left-radius: 3px; 482 -moz-border-top-left-radius: 3px; 483 -webkit-border-top-left-radius: 3px; 484 border-top-left-radius: 3px; 564 485 } 565 486 .widefat thead th:last-of-type { 566 -webkit-border-top-right-radius: 3px; 567 border-top-right-radius: 3px; 487 -moz-border-top-right-radius: 3px; 488 -webkit-border-top-right-radius: 3px; 489 border-top-right-radius: 3px; 568 490 } 569 491 .widefat tfoot th:first-of-type { 570 -webkit-border-bottom-left-radius: 3px; 571 border-bottom-left-radius: 3px; 492 -moz-border-bottom-left-radius: 3px; 493 -webkit-border-bottom-left-radius: 3px; 494 border-bottom-left-radius: 3px; 572 495 } 573 496 .widefat tfoot th:last-of-type { 574 -webkit-border-bottom-right-radius: 3px; 575 border-bottom-right-radius: 3px; 497 -moz-border-bottom-right-radius: 3px; 498 -webkit-border-bottom-right-radius: 3px; 499 border-bottom-right-radius: 3px; 576 500 } 577 578 501 .widefat td, 579 502 .widefat th { 580 581 503 border-width: 1px 0; 504 border-style: solid; 582 505 } 583 506 .widefat tfoot th { 584 507 border-bottom: none; 585 508 } 586 587 509 .widefat .no-items td { 588 510 border-bottom-width: 0; 589 511 } 590 591 512 .widefat td { 592 593 594 513 font-size: 12px; 514 padding: 4px 7px 2px; 515 vertical-align: top; 595 516 } 596 597 517 .widefat td p, 598 518 .widefat td ol, 599 519 .widefat td ul { 600 520 font-size: 12px; 601 521 } 602 603 522 .widefat th { 604 605 606 607 523 padding: 7px 7px 8px; 524 text-align: left; 525 line-height: 1.3em; 526 font-size: 14px; 608 527 } 609 610 528 .widefat th input { 611 612 613 529 margin: 0 0 0 8px; 530 padding: 0; 531 vertical-align: text-top; 614 532 } 615 616 533 .widefat .check-column { 617 618 619 534 width: 2.2em; 535 padding: 6px 0 25px; 536 vertical-align: top; 620 537 } 621 622 538 .widefat tbody th.check-column { 623 539 padding: 9px 0 22px; 624 540 } 625 626 541 .widefat.media .check-column { 627 542 padding-top: 8px; 628 543 } 629 630 544 .widefat thead .check-column, 631 545 .widefat tfoot .check-column { 632 546 padding: 10px 0 0; 633 547 } 634 635 548 .no-js .widefat thead .check-column input, 636 549 .no-js .widefat tfoot .check-column input { 637 550 display: none; 638 551 } 639 640 552 .widefat .num, 641 553 .column-comments, 642 554 .column-links, 643 555 .column-posts { 644 556 text-align: center; 645 557 } 646 647 558 .widefat th#comments { 648 559 vertical-align: middle; 649 560 } 650 651 561 .wrap { 652 562 margin: 4px 15px 0 0; 653 563 } 654 655 564 div.updated, 656 565 div.error { 657 658 566 padding: 0 0.6em; 567 margin: 5px 15px 2px; 659 568 } 660 661 569 div.updated p, 662 570 div.error p { 663 664 571 margin: 0.5em 0; 572 padding: 2px; 665 573 } 666 667 574 .wrap div.updated, 668 575 .wrap div.error, 669 576 .media-upload-form div.error { 670 577 margin: 5px 0 15px; 671 578 } 672 673 579 .wrap h2, 674 580 .subtitle { 675 676 677 581 font-weight: normal; 582 margin: 0; 583 text-shadow: #fff 0 1px 0; 678 584 } 679 680 585 .wrap h2 { 681 682 683 586 font-size: 23px; 587 padding: 9px 15px 4px 0; 588 line-height: 29px; 684 589 } 685 686 590 .subtitle { 687 688 591 font-size: 14px; 592 padding-left: 25px; 689 593 } 690 691 594 .wrap .add-new-h2 { 692 693 694 695 696 697 698 699 595 font-family: sans-serif; 596 margin-left: 4px; 597 padding: 3px 8px; 598 position: relative; 599 top: -3px; 600 text-decoration: none; 601 font-size: 12px; 602 border: 0 none; 700 603 } 701 702 604 .wrap h2.long-header { 703 605 padding-right: 0; 704 606 } 705 706 607 html, 707 608 .wp-dialog { 708 background-color: #fff;609 background-color: white; 709 610 } 710 711 611 textarea, 712 612 input[type="text"], 713 613 input[type="password"], … … input[type="search"], 718 618 input[type="tel"], 719 619 input[type="url"], 720 620 select { 721 background-color: #fff;722 621 background-color: white; 622 color: #333; 723 623 } 724 725 624 select { 726 color: #000;625 color: black; 727 626 } 728 729 627 select[disabled] { 730 628 color: #7f7f7f; 731 629 } 732 733 630 select:focus { 734 631 border-color: #aaa; 735 632 } 736 737 633 textarea:focus, 738 634 input[type="text"]:focus, 739 635 input[type="password"]:focus, … … input[type="search"]:focus, 744 640 input[type="tel"]:focus, 745 641 input[type="url"]:focus, 746 642 select:focus { 747 -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.1);748 box-shadow: 1px 1px 2px rgba(0,0,0,0.1);643 -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); 644 box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); 749 645 } 750 751 646 input[readonly] { 752 647 background-color: #eee; 753 648 } 754 755 649 :-moz-placeholder, 756 650 .wp-core-ui :-moz-placeholder { 757 color: #a9a9a9; 651 color: #a9a9a9; 652 } 653 .postbox .spinner { 654 display: none; 655 vertical-align: middle; 656 } 657 .button-controls { 658 clear: both; 659 margin: 10px 0; 660 } 661 .show-all, 662 .hide-all { 663 cursor: pointer; 664 } 665 .hide-all { 666 display: none; 667 } 668 img { 669 border: none; 758 670 } 759 760 /*------------------------------------------------------------------------------761 1.0 - Text Styles762 ------------------------------------------------------------------------------*/763 764 671 div.sidebar-name h3, 765 672 #menu-management .nav-tab, 766 673 #dashboard_plugins h5, … … a.rsswidget, 778 685 .widefat th, 779 686 .quicktags, 780 687 .search { 781 688 font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; 782 689 } 783 784 690 h2 .nav-tab, 785 691 .wrap h2, 786 692 .subtitle, 787 693 .login form .input { 788 694 font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif; 789 695 } 790 791 696 .quicktags, 792 697 .search { 793 698 font-size: 12px; 794 699 } 795 796 700 .icon32 { 797 798 799 800 701 float: left; 702 height: 34px; 703 margin: 7px 8px 0 0; 704 width: 36px; 801 705 } 802 803 706 .icon16 { 804 805 806 807 808 707 height: 18px; 708 width: 18px; 709 padding: 6px 6px; 710 margin: -6px 0 0 -8px; 711 float: left; 809 712 } 810 811 713 .key-labels label { 812 714 line-height: 24px; 813 715 } 814 815 716 .pre { 816 /* https://developer.mozilla.org/en-US/docs/CSS/white-space */ 817 white-space: pre-wrap; /* css-3 */ 818 word-wrap: break-word; /* IE 5.5 - 7 */ 819 } 717 /* https://developer.mozilla.org/en-US/docs/CSS/white-space */ 718 719 white-space: pre-wrap; 720 /* css-3 */ 721 722 word-wrap: break-word; 723 /* IE 5.5 - 7 */ 820 724 725 } 821 726 .howto { 822 823 824 727 font-style: italic; 728 display: block; 729 font-family: sans-serif; 825 730 } 826 827 731 p.install-help { 828 829 732 margin: 8px 0; 733 font-style: italic; 830 734 } 831 832 735 .no-break { 833 736 white-space: nowrap; 834 737 } 835 836 738 /*------------------------------------------------------------------------------ 837 739 2.0 - Forms 838 740 ------------------------------------------------------------------------------*/ 839 840 841 741 .wp-admin select { 842 843 742 padding: 2px; 743 height: 2em; 844 744 } 845 846 745 .wp-admin select[multiple] { 847 746 height: auto; 848 747 } 849 850 748 .submit { 851 padding: 1.5em 0; 852 margin: 5px 0; 853 -webkit-border-bottom-left-radius: 3px; 854 -webkit-border-bottom-right-radius: 3px; 855 border-bottom-left-radius: 3px; 856 border-bottom-right-radius: 3px; 749 padding: 1.5em 0; 750 margin: 5px 0; 751 border-bottom-left-radius: 3px; 752 border-bottom-right-radius: 3px; 753 -moz-border-bottom-left-radius: 3px; 754 -moz-border-bottom-right-radius: 3px; 755 -webkit-border-bottom-left-radius: 3px; 756 -webkit-border-bottom-right-radius: 3px; 857 757 } 858 859 758 form p.submit a.cancel:hover { 860 759 text-decoration: none; 861 760 } 862 863 761 #minor-publishing-actions input, 864 762 #major-publishing-actions input, 865 763 #minor-publishing-actions .preview { 866 764 text-align: center; 867 765 } 868 869 766 textarea.all-options, 870 767 input.all-options { 871 768 width: 250px; 872 769 } 873 874 770 input.large-text, 875 771 textarea.large-text { 876 772 width: 99%; 877 773 } 878 879 774 input.regular-text, 880 775 #adduser .form-field input { 881 776 width: 25em; 882 777 } 883 884 778 input.small-text { 885 779 width: 50px; 886 780 } 887 888 input[type="number"].small-text { 889 width: 60px; 781 input.small-text[type="number"] { 782 width: 60px; 890 783 } 891 892 784 #doaction, 893 785 #doaction2, 894 786 #post-query-submit { 895 787 margin: 1px 8px 0 0; 896 788 } 897 898 789 .tablenav #changeit, 899 790 .tablenav #delete_all, 900 791 .tablenav #clear-recent-list { 901 792 margin-top: 1px; 902 793 } 903 904 794 .tablenav .actions select { 905 906 907 795 float: left; 796 margin-right: 6px; 797 max-width: 200px; 908 798 } 909 910 799 .ie8 .tablenav .actions select { 911 800 width: 155px; 912 801 } 913 914 802 .ie8 .tablenav .actions select#cat { 915 803 width: 200px; 916 804 } 917 918 805 #timezone_string option { 919 806 margin-left: 1em; 920 807 } 921 922 808 label, 923 809 #your-profile label + a { 924 810 vertical-align: middle; 925 811 } 926 927 812 #misc-publishing-actions label { 928 813 vertical-align: baseline; 929 814 } 930 931 815 #pass-strength-result { 932 933 934 935 936 937 938 939 816 border-style: solid; 817 border-width: 1px; 818 float: left; 819 margin: 13px 5px 5px 1px; 820 padding: 3px 5px; 821 text-align: center; 822 width: 200px; 823 display: none; 940 824 } 941 825 .indicator-hint { 942 826 padding-top: 8px; 943 827 } 944 945 828 p.search-box { 946 947 829 float: right; 830 margin: 0; 948 831 } 949 950 832 .search-box input[name="s"], 951 833 #search-plugins input[name="s"], 952 834 .tagsdiv .newtag { 953 954 955 835 float: left; 836 height: 2em; 837 margin: 0 4px 0 0; 956 838 } 957 958 839 input[type="text"].ui-autocomplete-loading { 959 960 840 background: transparent url('../images/loading.gif') no-repeat right center; 841 visibility: visible; 961 842 } 962 963 843 ul#add-to-blog-users { 964 844 margin: 0 0 0 14px; 965 845 } 966 967 846 .ui-autocomplete-input.open { 968 969 847 border-bottom-right-radius: 0; 848 border-bottom-left-radius: 0; 970 849 } 971 972 850 .ui-autocomplete { 973 974 975 976 977 978 979 980 981 851 padding: 0; 852 margin: 0; 853 list-style: none; 854 position: absolute; 855 z-index: 10000; 856 border-bottom-right-radius: 3px; 857 border-bottom-left-radius: 3px; 858 border-width: 1px; 859 border-style: solid; 982 860 } 983 984 861 .ui-autocomplete li { 985 986 987 862 margin-bottom: 0; 863 white-space: nowrap; 864 text-align: left; 988 865 } 989 990 866 .ui-autocomplete li a { 991 992 993 867 display: block; 868 height: 100%; 869 padding: 4px 10px; 994 870 } 995 996 871 .ui-autocomplete li a.ui-state-focus { 997 872 cursor: pointer; 998 873 } 999 1000 874 /*------------------------------------------------------------------------------ 1001 875 3.0 - Actions 1002 876 ------------------------------------------------------------------------------*/ 1003 1004 877 #major-publishing-actions { 1005 1006 1007 1008 878 padding: 10px 10px 8px; 879 clear: both; 880 border-top: 1px solid #f5f5f5; 881 margin-top: -2px; 1009 882 } 1010 1011 883 #delete-action { 1012 1013 1014 1015 884 line-height: 25px; 885 vertical-align: middle; 886 text-align: left; 887 float: left; 1016 888 } 1017 1018 889 #publishing-action { 1019 1020 1021 890 text-align: right; 891 float: right; 892 line-height: 23px; 1022 893 } 1023 1024 894 #publishing-action .spinner { 1025 895 float: left; 1026 896 } 1027 1028 897 #misc-publishing-actions { 1029 898 padding: 6px 0 0; 1030 899 } 1031 1032 900 .misc-pub-section { 1033 1034 1035 901 padding: 6px 10px 8px; 902 border-width: 1px 0; 903 border-style: solid; 1036 904 } 1037 1038 905 .misc-pub-section:first-child { 1039 906 border-top-width: 0; 1040 907 } 1041 1042 908 .misc-pub-section-last { 1043 909 border-bottom-width: 0; 1044 910 } 1045 1046 911 #minor-publishing-actions { 1047 1048 912 padding: 10px 10px 2px 8px; 913 text-align: right; 1049 914 } 1050 1051 915 #minor-publishing { 1052 1053 1054 1055 916 border-bottom-width: 1px; 917 border-bottom-style: solid; 918 -webkit-box-shadow: 0 1px 0 #fff; 919 box-shadow: 0 1px 0 #fff; 1056 920 } 1057 1058 921 #save-post { 1059 922 float: left; 1060 923 } 1061 1062 924 .preview { 1063 925 float: right; 1064 926 } 1065 1066 927 #sticky-span { 1067 928 margin-left: 18px; 1068 929 } 1069 1070 930 .side-info { 1071 1072 1073 931 margin: 0; 932 padding: 4px; 933 font-size: 11px; 1074 934 } 1075 1076 935 .side-info h5 { 1077 1078 1079 1080 1081 936 padding-bottom: 7px; 937 font-size: 14px; 938 margin: 12px 2px 5px; 939 border-bottom-width: 1px; 940 border-bottom-style: solid; 1082 941 } 1083 1084 942 .side-info ul { 1085 1086 1087 943 margin: 0; 944 padding-left: 18px; 945 list-style: square; 1088 946 } 1089 1090 947 .approve, 1091 948 .unapproved .unapprove { 1092 949 display: none; 1093 950 } 1094 1095 951 .unapproved .approve, 1096 952 .spam .approve, 1097 953 .trash .approve { 1098 954 display: inline; 1099 955 } 1100 1101 956 td.action-links, 1102 957 th.action-links { 1103 958 text-align: right; 1104 959 } 1105 1106 1107 960 /*------------------------------------------------------------------------------ 1108 961 4.0 - Notifications 1109 962 ------------------------------------------------------------------------------*/ 1110 1111 963 #update-nag, 1112 964 .update-nag { 1113 line-height: 19px; 1114 padding: 5px 0; 1115 font-size: 12px; 1116 text-align: center; 1117 margin: -1px 15px 0 5px; 1118 border-width: 1px; 1119 border-style: solid; 1120 -webkit-border-bottom-right-radius: 3px; 1121 -webkit-border-bottom-left-radius: 3px; 1122 border-bottom-right-radius: 3px; 1123 border-bottom-left-radius: 3px; 965 line-height: 19px; 966 padding: 5px 0; 967 font-size: 12px; 968 text-align: center; 969 margin: -1px 15px 0 5px; 970 border-width: 1px; 971 border-style: solid; 972 border-bottom-left-radius: 3px; 973 border-bottom-right-radius: 3px; 974 -moz-border-bottom-left-radius: 3px; 975 -moz-border-bottom-right-radius: 3px; 976 -webkit-border-bottom-left-radius: 3px; 977 -webkit-border-bottom-right-radius: 3px; 1124 978 } 1125 1126 979 .plugins .plugin-update { 1127 980 padding: 0; 1128 981 } 1129 1130 982 .plugin-update .update-message { 1131 1132 983 margin: 0 10px 8px 31px; 984 font-weight: bold; 1133 985 } 1134 1135 986 ul#dismissed-updates { 1136 987 display: none; 1137 988 } 1138 1139 989 form.upgrade { 1140 990 margin-top: 8px; 1141 991 } 1142 1143 992 form.upgrade .hint { 1144 1145 1146 993 font-style: italic; 994 font-size: 85%; 995 margin: -0.5em 0 2em 0; 1147 996 } 1148 1149 997 .update-php .spinner { 1150 1151 998 float: none; 999 margin: -4px 0; 1152 1000 } 1153 1154 1001 #ajax-loading, 1155 1002 .ajax-loading, 1156 1003 .ajax-feedback, 1157 1004 .imgedit-wait-spin, 1158 .list-ajax-loading { /* deprecated */ 1159 visibility: hidden; 1160 } 1005 .list-ajax-loading { 1006 /* deprecated */ 1161 1007 1008 visibility: hidden; 1009 } 1162 1010 #ajax-response.alignleft { 1163 1011 margin-left: 2em; 1164 1012 } 1165 1166 1167 1013 /*------------------------------------------------------------------------------ 1168 1014 6.0 - Admin Header 1169 1015 ------------------------------------------------------------------------------*/ … … form.upgrade .hint { 1171 1017 #sidemenu a, 1172 1018 #taglist a, 1173 1019 #catlist a { 1174 1020 text-decoration: none; 1175 1021 } 1176 1177 1022 /*------------------------------------------------------------------------------ 1178 1023 6.1 - Screen Options Tabs 1179 1024 ------------------------------------------------------------------------------*/ 1180 1181 1025 #screen-options-wrap, 1182 1026 #contextual-help-wrap { 1183 1184 1185 1027 margin: 0; 1028 padding: 8px 20px 12px; 1029 position: relative; 1186 1030 } 1187 1188 1031 #contextual-help-wrap { 1189 overflow: auto; 1190 } 1191 1192 #screen-meta .screen-reader-text { 1193 visibility: hidden; 1032 overflow: auto; 1194 1033 } 1195 1196 1034 #screen-meta-links { 1197 1035 margin: 0 24px 0 0; 1198 1036 } 1199 1200 1037 #screen-meta-links a:focus { 1201 -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.4); 1202 box-shadow: 1px 1px 1px rgba(0,0,0,0.4); 1203 outline: none; 1038 -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4); 1039 box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4); 1040 outline: none; 1041 } 1042 #screen-meta-links .screen-meta-toggle { 1043 position: relative; 1044 top: -1px; 1045 } 1046 #screen-meta-links a.show-settings { 1047 text-decoration: none; 1048 z-index: 1; 1049 padding: 1px 16px 0 6px; 1050 height: 22px; 1051 line-height: 22px; 1052 font-size: 12px; 1053 display: block; 1054 text-shadow: rgba(255, 255, 255, 0.7) 0 1px 0; 1055 } 1056 #screen-meta-links a.show-settings:hover { 1057 text-decoration: none; 1204 1058 } 1205 1206 1059 /* screen options and help tabs revert */ 1207 1060 #screen-meta { 1208 display: none; 1209 position: relative; 1210 margin: 0 15px 0 5px; 1211 border-width: 0 1px 1px; 1212 border-style: none solid solid; 1061 display: none; 1062 position: relative; 1063 margin: 0 15px 0 5px; 1064 border-width: 0 1px 1px; 1065 border-style: none solid solid; 1066 } 1067 #screen-meta .screen-reader-text { 1068 visibility: hidden; 1213 1069 } 1214 1215 1070 #screen-options-link-wrap, 1216 1071 #contextual-help-link-wrap { 1217 1218 1219 1220 1221 1072 float: right; 1073 height: 23px; 1074 padding: 0; 1075 margin: 0 0 0 6px; 1076 font-family: sans-serif; 1222 1077 } 1223 1224 1078 #screen-options-link-wrap, 1225 1079 #contextual-help-link-wrap, 1226 1080 #screen-meta { 1227 -webkit-border-bottom-left-radius: 3px; 1228 -webkit-border-bottom-right-radius: 3px; 1229 border-bottom-left-radius: 3px; 1230 border-bottom-right-radius: 3px; 1231 } 1232 1233 #screen-meta-links .screen-meta-toggle { 1234 position: relative; 1235 top: -1px; 1236 } 1237 1238 #screen-meta-links a.show-settings { 1239 text-decoration: none; 1240 z-index: 1; 1241 padding: 1px 16px 0 6px; 1242 height: 22px; 1243 line-height: 22px; 1244 font-size: 12px; 1245 display: block; 1246 text-shadow: rgba(255,255,255,0.7) 0 1px 0; 1247 } 1248 1249 #screen-meta-links a.show-settings:hover { 1250 text-decoration: none; 1081 border-bottom-left-radius: 3px; 1082 border-bottom-right-radius: 3px; 1083 -moz-border-bottom-left-radius: 3px; 1084 -moz-border-bottom-right-radius: 3px; 1085 -webkit-border-bottom-left-radius: 3px; 1086 -webkit-border-bottom-right-radius: 3px; 1251 1087 } 1252 1088 /* end screen options and help tabs */ 1253 1254 1089 .toggle-arrow { 1255 1256 1257 1258 1259 1260 1090 background-repeat: no-repeat; 1091 background-position: top left; 1092 background-color: transparent; 1093 height: 22px; 1094 line-height: 22px; 1095 display: block; 1261 1096 } 1262 1263 1097 .toggle-arrow-active { 1264 1098 background-position: bottom left; 1265 1099 } 1266 1267 1100 #screen-options-wrap h5, 1268 1101 #contextual-help-wrap h5 { 1269 1270 1102 margin: 8px 0; 1103 font-size: 13px; 1271 1104 } 1272 1273 1105 .metabox-prefs label { 1274 1275 1276 1277 1106 display: inline-block; 1107 padding-right: 15px; 1108 white-space: nowrap; 1109 line-height: 30px; 1278 1110 } 1279 1280 1111 .metabox-prefs label input { 1281 1112 margin: 0 5px 0 2px; 1282 1113 } 1283 1284 .metabox-prefs .columns-prefs label input {1285 margin: 0 2px;1286 }1287 1288 1114 .metabox-prefs label a { 1289 display: none; 1115 display: none; 1116 } 1117 .metabox-prefs .columns-prefs label input { 1118 margin: 0 2px; 1290 1119 } 1291 1292 1120 /*------------------------------------------------------------------------------ 1293 1121 6.2 - Help Menu 1294 1122 ------------------------------------------------------------------------------*/ 1295 1296 1123 #contextual-help-wrap { 1297 1298 1124 padding: 0; 1125 margin-left: -4px; 1299 1126 } 1300 1301 1127 #contextual-help-columns { 1302 1128 position: relative; 1303 1129 } 1304 1305 1130 #contextual-help-back { 1306 1307 1308 1309 1310 1311 1312 1131 position: absolute; 1132 top: 0; 1133 bottom: 0; 1134 left: 150px; 1135 right: 170px; 1136 border-width: 0 1px; 1137 border-style: solid; 1313 1138 } 1314 1315 1139 #contextual-help-wrap.no-sidebar #contextual-help-back { 1316 1317 1318 border-right-width: 0;1319 1320 1140 right: 0; 1141 border-right-width: 0; 1142 -moz-border-bottom-right-radius: 2px; 1143 -webkit-border-bottom-right-radius: 2px; 1144 border-bottom-right-radius: 2px; 1321 1145 } 1322 1323 1146 .contextual-help-tabs { 1324 1325 1326 1147 float: left; 1148 width: 150px; 1149 margin: 0; 1327 1150 } 1328 1329 1151 .contextual-help-tabs ul { 1330 1152 margin: 1em 0; 1331 1153 } 1332 1333 1154 .contextual-help-tabs li { 1334 1335 1336 1337 1338 1155 margin-bottom: 0; 1156 list-style-type: none; 1157 border-style: solid; 1158 border-width: 1px 0; 1159 border-color: transparent; 1339 1160 } 1340 1341 1161 .contextual-help-tabs a { 1342 1343 1344 1345 1162 display: block; 1163 padding: 5px 5px 5px 12px; 1164 line-height: 18px; 1165 text-decoration: none; 1346 1166 } 1347 1348 1167 .contextual-help-tabs .active { 1349 1350 1351 1352 1168 padding: 0; 1169 margin: 0 -1px 0 0; 1170 border-width: 1px 0 1px 1px; 1171 border-style: solid; 1353 1172 } 1354 1355 1173 .contextual-help-tabs-wrap { 1356 1357 1174 padding: 0 20px; 1175 overflow: auto; 1358 1176 } 1359 1360 1177 .help-tab-content { 1361 1362 1363 1178 display: none; 1179 margin: 0 22px 12px 0; 1180 line-height: 1.6em; 1364 1181 } 1365 1366 1182 .help-tab-content.active { 1367 1183 display: block; 1368 1184 } 1369 1370 1185 .help-tab-content ul li { 1371 1372 1186 list-style-type: disc; 1187 margin-left: 18px; 1373 1188 } 1374 1375 1189 .contextual-help-sidebar { 1376 1377 1378 1379 1190 width: 150px; 1191 float: right; 1192 padding: 0 8px 0 12px; 1193 overflow: auto; 1380 1194 } 1381 1382 1383 1195 /*------------------------------------------------------------------------------ 1384 1196 7.0 - Main Navigation (Left Menu) 1385 1197 ------------------------------------------------------------------------------*/ 1386 1387 1198 #adminmenuback, 1388 1199 #adminmenuwrap { 1389 1390 1200 border-width: 0 1px 0 0; 1201 border-style: solid; 1391 1202 } 1392 1393 1203 #adminmenuwrap { 1394 1395 1204 position: relative; 1205 float: left; 1396 1206 } 1397 1398 1207 #adminmenushadow { 1399 1400 1401 1402 1403 1404 1208 position: absolute; 1209 top: 0; 1210 right: 0; 1211 bottom: 0; 1212 width: 6px; 1213 z-index: 20; 1405 1214 } 1406 1407 1215 /* side admin menu */ 1408 1216 #adminmenu * { 1409 1410 1411 1217 -webkit-user-select: none; 1218 -moz-user-select: none; 1219 user-select: none; 1412 1220 } 1413 1414 1221 #adminmenu li { 1415 1416 1417 1222 margin: 0; 1223 padding: 0; 1224 cursor: pointer; 1418 1225 } 1419 1420 1226 #adminmenu a { 1421 1422 1423 1227 display: block; 1228 line-height: 18px; 1229 padding: 2px 5px; 1424 1230 } 1425 1426 1231 #adminmenu li.menu-top { 1427 1428 1232 min-height: 28px; 1233 position: relative; 1429 1234 } 1430 1431 1235 #adminmenu .wp-submenu { 1432 list-style: none; 1433 padding: 4px 0; 1434 margin: 0; 1435 position: absolute; 1436 top: -1000em; 1437 left: 146px; 1438 z-index: 1000; 1439 overflow: visible; 1440 border-width: 1px; 1441 border-style: solid; 1442 -webkit-border-bottom-right-radius: 3px; 1443 -webkit-border-top-right-radius: 3px; 1444 border-bottom-right-radius: 3px; 1445 border-top-right-radius: 3px; 1236 list-style: none; 1237 padding: 4px 0; 1238 margin: 0; 1239 position: absolute; 1240 top: -1000em; 1241 left: 146px; 1242 z-index: 1000; 1243 overflow: visible; 1244 border-width: 1px; 1245 border-style: solid; 1246 border-top-right-radius: 3px; 1247 border-bottom-right-radius: 3px; 1248 -moz-border-top-right-radius: 3px; 1249 -moz-border-bottom-right-radius: 3px; 1250 -webkit-border-top-right-radius: 3px; 1251 -webkit-border-bottom-right-radius: 3px; 1446 1252 } 1447 1448 1253 .js #adminmenu .sub-open, 1449 1254 .js #adminmenu .opensub .wp-submenu, 1450 1255 #adminmenu a.menu-top:focus + .wp-submenu, 1451 .no-js li.wp-has-submenu:hover .wp-submenu {1452 1256 .no-js #adminmenu li.wp-has-submenu:hover .wp-submenu { 1257 top: -1px; 1453 1258 } 1454 1455 1259 #adminmenu .wp-has-current-submenu .wp-submenu, 1456 .no-js li.wp-has-current-submenu:hover .wp-submenu,1260 .no-js #adminmenu li.wp-has-current-submenu:hover .wp-submenu, 1457 1261 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 1458 1262 #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, 1459 1263 #adminmenu .wp-has-current-submenu.opensub .wp-submenu { 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1264 position: relative; 1265 z-index: 3; 1266 top: auto; 1267 left: auto; 1268 right: auto; 1269 bottom: auto; 1270 border: 0 none; 1271 -moz-box-shadow: none; 1272 -webkit-box-shadow: none; 1273 box-shadow: none; 1470 1274 } 1471 1472 1275 .folded #adminmenu .wp-submenu.sub-open, 1473 1276 .folded #adminmenu .opensub .wp-submenu, 1474 1277 .folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, 1475 1278 .folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu, 1476 1279 .folded #adminmenu a.menu-top:focus + .wp-submenu, 1477 1280 .folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu, 1478 .no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu 1479 1480 1281 .no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu { 1282 top: -1px; 1283 left: 32px; 1481 1284 } 1482 1483 1285 .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 1484 1286 .folded #adminmenu .wp-has-current-submenu .wp-submenu { 1485 1486 1487 1488 1287 border-width: 1px; 1288 border-style: solid; 1289 position: absolute; 1290 top: -1000em; 1489 1291 } 1490 1491 1292 #adminmenu .wp-submenu a { 1492 1493 1494 1495 1293 font-size: 12px; 1294 line-height: 18px; 1295 margin: 0; 1296 padding-left: 12px; 1496 1297 } 1497 1498 1298 #adminmenu .wp-not-current-submenu li > a { 1499 1299 padding-left: 16px; 1500 1300 } 1501 1502 1301 #adminmenu .wp-has-current-submenu ul > li > a, 1503 1302 .folded #adminmenu li.menu-top .wp-submenu > li > a { 1504 1303 padding-left: 12px; 1505 1304 } 1506 1507 1305 #adminmenu a.menu-top, 1508 1306 #adminmenu .wp-submenu-head { 1509 1510 1511 1512 1307 font-size: 13px; 1308 font-weight: bold; 1309 line-height: 18px; 1310 padding: 0; 1513 1311 } 1514 1515 1312 #adminmenu .wp-submenu-head, 1516 1313 .folded #adminmenu .wp-menu-name { 1517 1314 display: none; 1518 1315 } 1519 1520 1316 .folded #adminmenu .wp-submenu-head { 1521 1317 display: block; 1522 1318 } 1523 1524 1319 #adminmenu .wp-submenu li { 1525 1526 1527 1320 padding: 0; 1321 margin: 0; 1322 overflow: hidden; 1528 1323 } 1529 1530 1324 #adminmenu a.menu-top { 1531 1532 1325 border-width: 1px 0; 1326 border-style: solid none; 1533 1327 } 1534 1535 1328 #adminmenu .wp-menu-image img { 1536 1537 1538 1329 padding: 7px 0 0 7px; 1330 opacity: 0.6; 1331 filter: alpha(opacity=60); 1539 1332 } 1540 1541 1333 #adminmenu div.wp-menu-name { 1542 1334 padding: 5px; 1543 1335 } 1544 1545 1336 #adminmenu div.wp-menu-image { 1546 1547 1548 1337 float: left; 1338 width: 28px; 1339 height: 28px; 1549 1340 } 1550 1551 1341 .folded #adminmenu div.wp-menu-image { 1552 1553 1554 1342 width: 32px; 1343 position: absolute; 1344 z-index: 25; 1555 1345 } 1556 1557 1346 .folded #adminmenu a.menu-top { 1558 height: 28px; 1559 } 1560 1561 .wp-menu-arrow { 1562 z-index: 25; 1563 position: absolute; 1564 right: 100%; 1565 margin: 0; 1566 height: 30px; 1567 width: 6px; 1568 1569 -moz-transform: translate( 146px ); 1570 -webkit-transform: translate( 146px ); 1571 -o-transform: translate( 146px ); 1572 -ms-transform: translate( 146px ); 1573 transform: translate( 146px ); 1347 height: 28px; 1574 1348 } 1575 1576 1349 #adminmenu .wp-menu-arrow div { 1577 display: none; 1578 position: absolute; 1579 top: 7px; 1580 left: -1px; 1581 width: 14px; 1582 height: 15px; 1583 1584 -moz-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 ); 1585 -webkit-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 ); 1586 -o-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 ); 1587 -ms-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 ); 1588 transform: matrix( -0.6, 1, 0.6, 1, 0, 0 ); 1350 display: none; 1351 position: absolute; 1352 top: 7px; 1353 left: -1px; 1354 width: 14px; 1355 height: 15px; 1356 -moz-transform: matrix(-0.6, 1, 0.6, 1, 0, 0); 1357 -webkit-transform: matrix(-0.6, 1, 0.6, 1, 0, 0); 1358 -o-transform: matrix(-0.6, 1, 0.6, 1, 0, 0); 1359 -ms-transform: matrix(-0.6, 1, 0.6, 1, 0, 0); 1360 transform: matrix(-0.6, 1, 0.6, 1, 0, 0); 1589 1361 } 1590 1591 1362 #adminmenu li.wp-not-current-submenu .wp-menu-arrow { 1592 -moz-transform: translate( 145px);1593 -webkit-transform: translate( 145px);1594 -o-transform: translate( 145px);1595 -ms-transform: translate( 145px);1596 transform: translate( 145px);1597 1598 1599 1600 1363 -moz-transform: translate(145px); 1364 -webkit-transform: translate(145px); 1365 -o-transform: translate(145px); 1366 -ms-transform: translate(145px); 1367 transform: translate(145px); 1368 height: 28px; 1369 border-width: 1px 0; 1370 border-style: solid; 1371 top: 0; 1601 1372 } 1602 1603 1373 .folded #adminmenu li .wp-menu-arrow { 1604 -moz-transform: translate( 32px);1605 -webkit-transform: translate( 32px);1606 -o-transform: translate( 32px);1607 -ms-transform: translate( 32px);1608 transform: translate( 32px);1374 -moz-transform: translate(32px); 1375 -webkit-transform: translate(32px); 1376 -o-transform: translate(32px); 1377 -ms-transform: translate(32px); 1378 transform: translate(32px); 1609 1379 } 1610 1611 1380 #adminmenu li.current .wp-menu-arrow, 1612 1381 #adminmenu li.wp-has-current-submenu .wp-menu-arrow, 1613 1382 #adminmenu li.wp-has-current-submenu .wp-menu-arrow div, … … form.upgrade .hint { 1617 1386 #adminmenu li.wp-has-submenu.opensub .wp-menu-arrow, 1618 1387 #adminmenu a.wp-has-submenu:focus .wp-menu-arrow, 1619 1388 #adminmenu a:hover .wp-menu-arrow { 1620 1389 display: block; 1621 1390 } 1622 1623 1391 #adminmenu li.current .wp-menu-arrow, 1624 1392 #adminmenu li.wp-menu-open .wp-menu-arrow { 1625 1393 top: 0; 1626 1394 } 1627 1628 1395 .no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow, 1629 1396 #adminmenu li.wp-has-submenu.opensub .wp-menu-arrow, 1630 1397 #adminmenu a.wp-has-submenu:focus .wp-menu-arrow { 1631 1398 z-index: 1001; 1632 1399 } 1633 1634 1400 .ie8 #adminmenu li.menu-top:hover .wp-menu-arrow { 1635 1401 display: none; 1636 1402 } 1637 1638 1403 #adminmenu .wp-not-current-submenu .wp-menu-arrow div { 1639 1640 1641 1642 1404 width: 15px; 1405 top: 6px; 1406 border-width: 0 0 1px 1px; 1407 border-style: solid; 1643 1408 } 1644 1645 .wp-menu-arrow, 1409 #adminmenu .wp-menu-arrow, 1646 1410 .folded #adminmenu li .wp-menu-arrow div, 1647 1411 .no-js #adminmenu li.wp-not-current-submenu:hover .wp-menu-arrow { 1648 1412 display: none; 1649 1413 } 1650 1651 1414 .folded #adminmenu li.current .wp-menu-arrow, 1652 1415 .folded #adminmenu li.current .wp-menu-arrow div, 1653 1416 .folded #adminmenu li.wp-has-current-submenu .wp-menu-arrow div, 1654 1417 .folded #adminmenu li.wp-menu-open .wp-menu-arrow, 1655 1418 .folded #adminmenu li a:focus .wp-menu-arrow { 1656 1419 display: block; 1657 1420 } 1658 1659 1421 #adminmenu li.menu-top:hover .wp-menu-image img, 1660 1422 #adminmenu li.wp-has-current-submenu .wp-menu-image img { 1661 1662 1423 opacity: 1; 1424 filter: alpha(opacity=100); 1663 1425 } 1664 1665 1426 #adminmenu li.wp-menu-separator { 1666 1667 1668 1669 1670 1671 1427 height: 3px; 1428 padding: 0; 1429 margin: 0; 1430 border-width: 1px 0; 1431 border-style: solid; 1432 cursor: inherit; 1672 1433 } 1673 1674 1434 #adminmenu div.separator { 1675 1676 1677 1678 1435 height: 1px; 1436 padding: 0; 1437 border-width: 1px 0 0 0; 1438 border-style: solid; 1679 1439 } 1680 1681 1440 #adminmenu .wp-submenu .wp-submenu-head { 1682 padding: 5px 4px 5px 10px; 1683 margin: -4px -1px 4px; 1684 border-width: 1px 0; 1685 border-style: solid; 1686 -webkit-border-top-right-radius: 3px; 1687 border-top-right-radius: 3px; 1441 padding: 5px 4px 5px 10px; 1442 margin: -4px -1px 4px; 1443 border-width: 1px 0; 1444 border-style: solid; 1445 -moz-border-top-right-radius: 3px; 1446 -webkit-border-top-right-radius: 3px; 1447 border-top-right-radius: 3px; 1688 1448 } 1689 1690 1449 #adminmenu li.wp-menu-open { 1691 1692 1450 border-width: 0 0 1px; 1451 border-style: solid; 1693 1452 } 1694 1695 1453 #adminmenu li.current, 1696 1454 .folded #adminmenu li.wp-menu-open { 1697 1455 border: 0 none; 1698 1456 } 1699 1700 1457 .folded #adminmenu li.wp-has-current-submenu { 1701 1458 margin-bottom: 1px; 1702 1459 } 1703 1704 1460 .folded #adminmenu .wp-has-current-submenu.menu-top-last { 1705 margin-bottom: 0; 1461 margin-bottom: 0; 1462 } 1463 .wp-menu-arrow { 1464 z-index: 25; 1465 position: absolute; 1466 right: 100%; 1467 margin: 0; 1468 height: 30px; 1469 width: 6px; 1470 -moz-transform: translate(146px); 1471 -webkit-transform: translate(146px); 1472 -o-transform: translate(146px); 1473 -ms-transform: translate(146px); 1474 transform: translate(146px); 1706 1475 } 1707 1708 1476 #adminmenu .awaiting-mod, 1709 1477 #adminmenu span.update-plugins, 1710 1478 #sidemenu li a span.update-plugins { 1711 position: absolute; 1712 font-family: sans-serif; 1713 font-size: 9px; 1714 line-height: 17px; 1715 font-weight: bold; 1716 margin-top: 1px; 1717 margin-left: 7px; 1718 -webkit-border-radius: 10px; 1719 border-radius: 10px; 1720 z-index: 26; 1479 position: absolute; 1480 font-family: sans-serif; 1481 font-size: 9px; 1482 font-weight: bold; 1483 line-height: 17px; 1484 margin-top: 1px; 1485 margin-left: 7px; 1486 border-radius: 10px; 1487 -moz-border-radius: 10px; 1488 -webkit-border-radius: 10px; 1489 z-index: 26; 1721 1490 } 1722 1723 1491 #adminmenu li .awaiting-mod span, 1724 1492 #adminmenu li span.update-plugins span, 1725 1493 #sidemenu li a span.update-plugins span { 1726 1727 1494 display: block; 1495 padding: 0 6px; 1728 1496 } 1729 1730 1497 #adminmenu li span.count-0, 1731 1498 #sidemenu li a .count-0 { 1732 1499 display: none; 1733 1500 } 1734 1735 1501 #collapse-menu { 1736 1737 1738 1739 1502 font-size: 12px; 1503 line-height: 34px; 1504 border-width: 1px 0 0; 1505 border-style: solid; 1740 1506 } 1741 1742 1507 .folded #collapse-menu span { 1743 1508 display: none; 1744 1509 } 1745 1746 1510 #collapse-button, 1747 1511 #collapse-button div { 1748 1749 1512 width: 15px; 1513 height: 15px; 1750 1514 } 1751 1752 1515 #collapse-button { 1753 float: left; 1754 margin: 8px 6px; 1755 border-width: 1px; 1756 border-style: solid; 1757 -webkit-border-radius: 10px; 1758 border-radius: 10px; 1516 float: left; 1517 margin: 8px 6px; 1518 border-width: 1px; 1519 border-style: solid; 1520 border-radius: 10px; 1521 -moz-border-radius: 10px; 1522 -webkit-border-radius: 10px; 1759 1523 } 1760 1761 1524 /* Auto-folding of the admin menu */ 1762 1525 @media only screen and (max-width: 900px) { 1763 .auto-fold #wpcontent, 1764 .auto-fold #wpfooter { 1765 margin-left: 52px; 1766 } 1767 1768 .auto-fold #adminmenuback, 1769 .auto-fold #adminmenuwrap, 1770 .auto-fold #adminmenu, 1771 .auto-fold #adminmenu li.menu-top { 1772 width: 32px; 1773 } 1774 1775 .auto-fold #adminmenu .wp-submenu.sub-open, 1776 .auto-fold #adminmenu .opensub .wp-submenu, 1777 .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, 1778 .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu, 1779 .auto-fold #adminmenu a.menu-top:focus + .wp-submenu, 1780 .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { 1781 top: -1px; 1782 left: 32px; 1783 } 1784 1785 .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 1786 .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { 1787 border-width: 1px; 1788 border-style: solid; 1789 position: absolute; 1790 top: -1000em; 1791 } 1792 1793 .auto-fold #adminmenu li.menu-top .wp-submenu > li > a { 1794 padding-left: 12px; 1795 } 1796 1797 .auto-fold #adminmenu .wp-menu-name { 1798 display: none; 1799 } 1800 1801 .auto-fold #adminmenu .wp-submenu-head { 1802 display: block; 1803 } 1804 1805 .auto-fold #adminmenu div.wp-menu-image { 1806 width: 32px; 1807 position: absolute; 1808 z-index: 25; 1809 } 1810 1811 .auto-fold #adminmenu a.menu-top { 1812 height: 28px; 1813 } 1814 1815 .auto-fold #adminmenu li .wp-menu-arrow { 1816 -moz-transform: translate( 32px ); 1817 -webkit-transform: translate( 32px ); 1818 -o-transform: translate( 32px ); 1819 -ms-transform: translate( 32px ); 1820 transform: translate( 32px ); 1821 } 1822 1823 .auto-fold #adminmenu li .wp-menu-arrow div { 1824 display: none; 1825 } 1826 1827 .auto-fold #adminmenu li.current .wp-menu-arrow, 1828 .auto-fold #adminmenu li.current .wp-menu-arrow div, 1829 .auto-fold #adminmenu li.wp-has-current-submenu .wp-menu-arrow div, 1830 .auto-fold #adminmenu li.wp-menu-open .wp-menu-arrow, 1831 .auto-fold #adminmenu li a:focus .wp-menu-arrow { 1832 display: block; 1833 } 1834 1835 .auto-fold #adminmenu li.wp-menu-open { 1836 border: 0 none; 1837 } 1838 1839 .auto-fold #adminmenu li.wp-has-current-submenu { 1840 margin-bottom: 1px; 1841 } 1842 1843 .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last { 1844 margin-bottom: 0; 1845 } 1846 1847 .auto-fold #collapse-menu span { 1848 display: none; 1849 } 1850 1526 .auto-fold #wpcontent, 1527 .auto-fold #wpfooter { 1528 margin-left: 52px; 1529 } 1530 .auto-fold #adminmenuback, 1531 .auto-fold #adminmenuwrap, 1532 .auto-fold #adminmenu, 1533 .auto-fold #adminmenu li.menu-top { 1534 width: 32px; 1535 } 1536 .auto-fold #adminmenu .wp-submenu.sub-open, 1537 .auto-fold #adminmenu .opensub .wp-submenu, 1538 .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, 1539 .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu, 1540 .auto-fold #adminmenu a.menu-top:focus + .wp-submenu, 1541 .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { 1542 top: -1px; 1543 left: 32px; 1544 } 1545 .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 1546 .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { 1547 border-width: 1px; 1548 border-style: solid; 1549 position: absolute; 1550 top: -1000em; 1551 } 1552 .auto-fold #adminmenu li.menu-top .wp-submenu > li > a { 1553 padding-left: 12px; 1554 } 1555 .auto-fold #adminmenu .wp-menu-name { 1556 display: none; 1557 } 1558 .auto-fold #adminmenu .wp-submenu-head { 1559 display: block; 1560 } 1561 .auto-fold #adminmenu div.wp-menu-image { 1562 width: 32px; 1563 position: absolute; 1564 z-index: 25; 1565 } 1566 .auto-fold #adminmenu a.menu-top { 1567 height: 28px; 1568 } 1569 .auto-fold #adminmenu li .wp-menu-arrow { 1570 -moz-transform: translate(32px); 1571 -webkit-transform: translate(32px); 1572 -o-transform: translate(32px); 1573 -ms-transform: translate(32px); 1574 transform: translate(32px); 1575 } 1576 .auto-fold #adminmenu li .wp-menu-arrow div { 1577 display: none; 1578 } 1579 .auto-fold #adminmenu li.current .wp-menu-arrow, 1580 .auto-fold #adminmenu li.current .wp-menu-arrow div, 1581 .auto-fold #adminmenu li.wp-has-current-submenu .wp-menu-arrow div, 1582 .auto-fold #adminmenu li.wp-menu-open .wp-menu-arrow, 1583 .auto-fold #adminmenu li a:focus .wp-menu-arrow { 1584 display: block; 1585 } 1586 .auto-fold #adminmenu li.wp-menu-open { 1587 border: 0 none; 1588 } 1589 .auto-fold #adminmenu li.wp-has-current-submenu { 1590 margin-bottom: 1px; 1591 } 1592 .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last { 1593 margin-bottom: 0; 1594 } 1595 .auto-fold #collapse-menu span { 1596 display: none; 1597 } 1851 1598 } 1852 1853 1599 /* List table styles */ 1854 1600 .post-com-count-wrapper { 1855 1856 1601 min-width: 22px; 1602 font-family: sans-serif; 1857 1603 } 1858 1859 1604 .post-com-count { 1860 1861 1862 1863 1864 1865 1866 1867 1868 1605 background-image: url('../images/bubble_bg.gif'); 1606 height: 1.3em; 1607 line-height: 1.1em; 1608 display: block; 1609 text-decoration: none; 1610 padding: 0 0 6px; 1611 cursor: pointer; 1612 background-position: center -80px; 1613 background-repeat: no-repeat; 1869 1614 } 1870 1871 1615 .post-com-count span { 1872 font-size: 11px; 1873 font-weight: bold; 1874 height: 1.4em; 1875 line-height: 1.4em; 1876 min-width: 0.7em; 1877 padding: 0 6px; 1878 display: inline-block; 1879 -webkit-border-radius: 5px; 1880 border-radius: 5px; 1616 font-size: 11px; 1617 font-weight: bold; 1618 line-height: 1.4em; 1619 height: 1.4em; 1620 min-width: 0.7em; 1621 padding: 0 6px; 1622 display: inline-block; 1623 border-radius: 5px; 1624 -moz-border-radius: 5px; 1625 -webkit-border-radius: 5px; 1881 1626 } 1882 1883 1627 strong .post-com-count { 1884 1628 background-position: center -55px; 1885 1629 } 1886 1887 1630 .post-com-count:hover { 1888 1631 background-position: center -3px; 1889 1632 } 1890 1891 1633 .column-response .post-com-count { 1892 1893 1894 1634 float: left; 1635 margin-right: 5px; 1636 text-align: center; 1895 1637 } 1896 1897 1638 .response-links { 1898 1639 float: left; 1899 1640 } 1900 1901 1641 #the-comment-list .attachment-80x60 { 1902 1642 padding: 4px 8px; 1903 1643 } 1904 1905 1644 th .comment-grey-bubble { 1906 1907 1908 1909 1645 background-image: url('../images/comment-grey-bubble.png'); 1646 background-repeat: no-repeat; 1647 height: 12px; 1648 width: 12px; 1910 1649 } 1911 1912 1650 /*------------------------------------------------------------------------------ 1913 1651 8.0 - Layout Blocks 1914 1652 ------------------------------------------------------------------------------*/ 1915 1916 1653 html.wp-toolbar { 1917 padding-top: 28px; 1918 -webkit-box-sizing: border-box; 1919 -moz-box-sizing: border-box; 1920 box-sizing: border-box; 1654 padding-top: 28px; 1655 -moz-box-sizing: border-box; 1656 -webkit-box-sizing: border-box; 1657 -ms-box-sizing: border-box; 1658 box-sizing: border-box; 1921 1659 } 1922 1923 1660 .narrow { 1924 1925 1661 width: 70%; 1662 margin-bottom: 40px; 1926 1663 } 1927 1928 1664 .narrow p { 1929 1665 line-height: 150%; 1930 1666 } 1931 1932 1667 .widefat th, 1933 1668 .widefat td { 1934 1669 overflow: hidden; 1935 1670 } 1936 1937 1671 .widefat th { 1938 1672 font-weight: normal; 1939 1673 } 1940 1941 1674 .widefat td p { 1942 1675 margin: 2px 0 0.8em; 1943 1676 } 1944 1945 1677 .widefat .column-comment p { 1946 1678 margin: 0.6em 0; 1947 1679 } 1948 1949 1680 /* Screens with postboxes */ 1950 1681 .postbox-container { 1951 1682 float: left; 1952 1683 } 1953 1954 1684 #dashboard-widgets.columns-1 .postbox-container { 1955 1685 width: 100%; 1956 1686 } 1957 1958 1687 #dashboard-widgets.columns-2 .postbox-container { 1959 1688 width: 49.5%; 1960 1689 } 1961 1962 1690 #dashboard-widgets.columns-2 #postbox-container-2, 1963 1691 #dashboard-widgets.columns-2 #postbox-container-3, 1964 1692 #dashboard-widgets.columns-2 #postbox-container-4 { 1965 1966 1693 float: right; 1694 width: 50.5%; 1967 1695 } 1968 1969 1696 #dashboard-widgets.columns-3 .postbox-container { 1970 1697 width: 33.5%; 1971 1698 } 1972 1973 1699 #dashboard-widgets.columns-3 #postbox-container-1 { 1974 1700 width: 33%; 1975 1701 } 1976 1977 1702 #dashboard-widgets.columns-3 #postbox-container-3, 1978 1703 #dashboard-widgets.columns-3 #postbox-container-4 { 1979 1704 float: right; 1980 1705 } 1981 1982 1706 #dashboard-widgets.columns-4 .postbox-container { 1983 1707 width: 25%; 1984 1708 } 1985 1986 1709 .postbox-container .meta-box-sortables { 1987 1988 1989 1990 1710 -moz-box-sizing: border-box; 1711 -webkit-box-sizing: border-box; 1712 -ms-box-sizing: border-box; 1713 box-sizing: border-box; 1991 1714 } 1992 1993 1715 .metabox-holder .postbox-container .empty-container { 1994 border: 3px dashed #CCCCCC;1995 1716 border: 3px dashed #ccc; 1717 height: 250px; 1996 1718 } 1997 1998 1719 .metabox-holder.columns-1 .postbox-container .empty-container, 1999 1720 .columns-2 #postbox-container-3 .empty-container, 2000 1721 .columns-2 #postbox-container-4 .empty-container, 2001 1722 .columns-3 #postbox-container-4 .empty-container { 2002 2003 2004 1723 border: 0 none; 1724 height: 0; 1725 min-height: 0; 2005 1726 } 2006 2007 1727 #poststuff { 2008 1728 padding-top: 10px; 2009 1729 } 2010 2011 1730 #poststuff #post-body { 2012 padding: 0; 2013 } 2014 2015 #post-body-content { 2016 width: 100%; 2017 float: left; 1731 padding: 0; 2018 1732 } 2019 2020 1733 #poststuff .postbox-container { 2021 1734 width: 100%; 2022 1735 } 2023 2024 1736 #poststuff #post-body.columns-2 { 2025 margin-right: 300px; 1737 margin-right: 300px; 1738 } 1739 #post-body-content { 1740 width: 100%; 1741 float: left; 2026 1742 } 2027 2028 1743 #post-body.columns-2 #postbox-container-1 { 2029 2030 2031 1744 float: right; 1745 margin-right: -300px; 1746 width: 280px; 2032 1747 } 2033 2034 1748 #post-body.columns-2 #side-sortables { 2035 1749 min-height: 250px; 2036 1750 } 2037 2038 1751 /* one column on the dash */ 2039 1752 @media only screen and (max-width: 799px) { 2040 #wpbody-content #dashboard-widgets .postbox-container { 2041 width: 100%; 2042 } 2043 2044 #wpbody-content .metabox-holder .postbox-container .empty-container { 2045 border: 0 none; 2046 height: 0; 2047 min-height: 0; 2048 } 1753 #wpbody-content #dashboard-widgets .postbox-container { 1754 width: 100%; 1755 } 1756 #wpbody-content .metabox-holder .postbox-container .empty-container { 1757 border: 0 none; 1758 height: 0; 1759 min-height: 0; 1760 } 2049 1761 } 2050 2051 1762 /* two columns on the dash, but keep the setting if one is selected */ 2052 1763 @media only screen and (min-width: 800px) and (max-width: 1200px) { 2053 #wpbody-content #dashboard-widgets .postbox-container { 2054 width: 49.5%; 2055 } 2056 2057 #wpbody-content #dashboard-widgets #postbox-container-2, 2058 #wpbody-content #dashboard-widgets #postbox-container-3, 2059 #wpbody-content #dashboard-widgets #postbox-container-4 { 2060 float: right; 2061 width: 50.5%; 2062 } 2063 2064 #dashboard-widgets #postbox-container-3 .empty-container, 2065 #dashboard-widgets #postbox-container-4 .empty-container { 2066 border: 0 none; 2067 height: 0; 2068 min-height: 0; 2069 } 2070 2071 #wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container { 2072 width: 100%; 2073 } 2074 2075 #wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container { 2076 border: 0 none; 2077 height: 0; 2078 min-height: 0; 2079 } 2080 2081 /* show the radio buttons for column prefs only for one or two columns */ 2082 .index-php .screen-layout, 2083 .index-php .columns-prefs { 2084 display: block; 2085 } 2086 2087 .columns-prefs .columns-prefs-3, 2088 .columns-prefs .columns-prefs-4 { 2089 display: none; 2090 } 1764 #wpbody-content #dashboard-widgets .postbox-container { 1765 width: 49.5%; 1766 } 1767 #wpbody-content #dashboard-widgets #postbox-container-2, 1768 #wpbody-content #dashboard-widgets #postbox-container-3, 1769 #wpbody-content #dashboard-widgets #postbox-container-4 { 1770 float: right; 1771 width: 50.5%; 1772 } 1773 #dashboard-widgets #postbox-container-3 .empty-container, 1774 #dashboard-widgets #postbox-container-4 .empty-container { 1775 border: 0 none; 1776 height: 0; 1777 min-height: 0; 1778 } 1779 #wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container { 1780 width: 100%; 1781 } 1782 #wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container { 1783 border: 0 none; 1784 height: 0; 1785 min-height: 0; 1786 } 1787 /* show the radio buttons for column prefs only for one or two columns */ 1788 .index-php .screen-layout, 1789 .index-php .columns-prefs { 1790 display: block; 1791 } 1792 .columns-prefs .columns-prefs-3, 1793 .columns-prefs .columns-prefs-4 { 1794 display: none; 1795 } 2091 1796 } 2092 2093 1797 /* one column on the post write/edit screen */ 2094 1798 @media only screen and (max-width: 850px) { 2095 #wpbody-content #poststuff #post-body { 2096 margin: 0; 2097 } 2098 2099 #wpbody-content #post-body.columns-2 #postbox-container-1 { 2100 margin-right: 0; 2101 width: 100%; 2102 } 2103 2104 #poststuff #postbox-container-1 .empty-container, 2105 #poststuff #postbox-container-1 #side-sortables:empty { 2106 border: 0 none; 2107 height: 0; 2108 min-height: 0; 2109 } 2110 2111 #poststuff #post-body.columns-2 #side-sortables { 2112 min-height: 0; 2113 } 2114 2115 /* hide the radio buttons for column prefs */ 2116 .screen-layout, 2117 .columns-prefs { 2118 display: none; 2119 } 1799 #wpbody-content #poststuff #post-body { 1800 margin: 0; 1801 } 1802 #wpbody-content #post-body.columns-2 #postbox-container-1 { 1803 margin-right: 0; 1804 width: 100%; 1805 } 1806 #poststuff #postbox-container-1 .empty-container, 1807 #poststuff #postbox-container-1 #side-sortables:empty { 1808 border: 0 none; 1809 height: 0; 1810 min-height: 0; 1811 } 1812 #poststuff #post-body.columns-2 #side-sortables { 1813 min-height: 0; 1814 } 1815 /* hide the radio buttons for column prefs */ 1816 .screen-layout, 1817 .columns-prefs { 1818 display: none; 1819 } 2120 1820 } 2121 2122 1821 .postbox .hndle { 2123 -webkit-border-top-left-radius: 3px; 2124 -webkit-border-top-right-radius: 3px; 2125 border-top-left-radius: 3px; 2126 border-top-right-radius: 3px; 1822 border-top-left-radius: 3px; 1823 border-top-right-radius: 3px; 1824 -moz-border-top-left-radius: 3px; 1825 -moz-border-top-right-radius: 3px; 1826 -webkit-border-top-left-radius: 3px; 1827 -webkit-border-top-right-radius: 3px; 2127 1828 } 2128 2129 1829 .js .postbox .hndle { 2130 1830 cursor: move; 2131 1831 } 2132 2133 1832 .postbox.closed .hndle { 2134 -webkit-border-radius: 3px; 2135 border-radius: 3px; 1833 border-radius: 3px; 1834 -moz-border-radius: 3px; 1835 -webkit-border-radius: 3px; 2136 1836 } 2137 2138 1837 .hndle a { 2139 2140 1838 font-size: 11px; 1839 font-weight: normal; 2141 1840 } 2142 2143 1841 .postbox .handlediv { 2144 2145 2146 1842 float: right; 1843 width: 27px; 1844 height: 30px; 2147 1845 } 2148 2149 1846 .js .postbox .handlediv { 2150 1847 cursor: pointer; 2151 1848 } 2152 2153 1849 .sortable-placeholder { 2154 2155 2156 1850 border-width: 1px; 1851 border-style: dashed; 1852 margin-bottom: 20px; 2157 1853 } 2158 2159 1854 .widget, 2160 1855 .postbox, 2161 1856 .stuffbox { 2162 2163 2164 2165 2166 1857 margin-bottom: 20px; 1858 padding: 0; 1859 border-width: 1px; 1860 border-style: solid; 1861 line-height: 1; 2167 1862 } 2168 2169 1863 .widget .widget-top, 2170 1864 .postbox h3, 2171 1865 .stuffbox h3 { 2172 2173 2174 2175 2176 2177 1866 margin-top: 1px; 1867 border-bottom-width: 1px; 1868 border-bottom-style: solid; 1869 -webkit-user-select: none; 1870 -moz-user-select: none; 1871 user-select: none; 2178 1872 } 2179 2180 1873 .js .widget .widget-top, 2181 1874 .js .postbox h3 { 2182 1875 cursor: move; 2183 1876 } 2184 2185 1877 .postbox .inside, 2186 1878 .stuffbox .inside { 2187 2188 1879 padding: 0 12px 0 10px; 1880 line-height: 1.4em; 2189 1881 } 2190 2191 1882 .postbox .inside { 2192 2193 1883 margin: 10px 0; 1884 position: relative; 2194 1885 } 2195 2196 1886 .postbox.closed h3 { 2197 border: none; 2198 -webkit-box-shadow: none; 2199 box-shadow: none; 1887 border: none; 1888 -moz-box-shadow: none; 1889 -webkit-box-shadow: none; 1890 box-shadow: none; 2200 1891 } 2201 2202 1892 .postbox table.form-table { 2203 1893 margin-bottom: 0; 2204 1894 } 2205 2206 1895 .temp-border { 2207 1896 border: 1px dotted #ccc; 2208 1897 } 2209 2210 1898 .columns-prefs label { 2211 1899 padding: 0 5px; 2212 1900 } 2213 2214 2215 1901 /*------------------------------------------------------------------------------ 2216 1902 9.0 - Dashboard 2217 1903 ------------------------------------------------------------------------------*/ 2218 2219 1904 #dashboard-widgets-wrap { 2220 1905 margin: 0 -8px; 2221 1906 } 2222 2223 1907 #wpbody-content .metabox-holder { 2224 1908 padding-top: 10px; 2225 1909 } 2226 2227 1910 #dashboard-widgets .meta-box-sortables { 2228 1911 margin: 0 8px; 2229 1912 } 2230 2231 1913 #dashboard_recent_comments div.undo { 2232 border-top-style: solid; 2233 border-top-width: 1px; 2234 margin: 0 -10px; 2235 padding: 3px 8px; 2236 font-size: 11px; 2237 } 2238 2239 #the-comment-list td.comment p.comment-author { 2240 margin-top: 0; 2241 margin-left: 0; 2242 } 2243 2244 #the-comment-list p.comment-author img { 2245 float: left; 2246 margin-right: 8px; 2247 } 2248 2249 #the-comment-list p.comment-author strong a { 2250 border: none; 2251 } 2252 2253 #the-comment-list td { 2254 vertical-align: top; 2255 } 2256 2257 #the-comment-list td.comment { 2258 word-wrap: break-word; 1914 border-top-style: solid; 1915 border-top-width: 1px; 1916 margin: 0 -10px; 1917 padding: 3px 8px; 1918 font-size: 11px; 2259 1919 } 2260 2261 1920 /* Welcome Panel */ 2262 1921 .welcome-panel { 2263 position: relative; 2264 overflow: auto; 2265 margin: 20px 0; 2266 padding: 23px 10px 12px; 2267 border-width: 1px; 2268 border-style: solid; 2269 border-radius: 3px; 2270 font-size: 13px; 2271 line-height: 2.1em; 1922 position: relative; 1923 overflow: auto; 1924 margin: 20px 0; 1925 padding: 23px 10px 12px; 1926 border-width: 1px; 1927 border-style: solid; 1928 border-radius: 3px; 1929 -moz-border-radius: 3px; 1930 -webkit-border-radius: 3px; 1931 font-size: 13px; 1932 line-height: 2.1em; 2272 1933 } 2273 2274 1934 .welcome-panel h3 { 2275 2276 2277 2278 2279 1935 margin: 0; 1936 font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif; 1937 font-size: 21px; 1938 font-weight: normal; 1939 line-height: 1.2; 2280 1940 } 2281 1941 .welcome-panel h4 { 2282 2283 1942 margin: 1.33em 0 0; 1943 font-size: 13px; 2284 1944 } 2285 2286 1945 .welcome-panel .about-description { 2287 2288 1946 font-size: 16px; 1947 margin: 0; 2289 1948 } 2290 2291 1949 .welcome-panel .welcome-panel-close { 2292 2293 2294 2295 2296 2297 2298 1950 position: absolute; 1951 top: 5px; 1952 right: 10px; 1953 padding: 8px 3px; 1954 font-size: 13px; 1955 text-decoration: none; 1956 line-height: 1; 2299 1957 } 2300 2301 1958 .welcome-panel .welcome-panel-close:before { 2302 2303 2304 2305 2306 2307 1959 content: ' '; 1960 position: absolute; 1961 left: -12px; 1962 width: 10px; 1963 height: 100%; 1964 background: url('../images/xit.gif') 0 17% no-repeat; 2308 1965 } 2309 2310 1966 .welcome-panel .welcome-panel-close:hover:before { 2311 1967 background-position: 100% 17%; 2312 1968 } 2313 2314 1969 .wp-core-ui .welcome-panel .button.button-hero { 2315 1970 margin: 15px 0 3px; 2316 1971 } 2317 2318 .welcome-panel-content {2319 margin-left: 13px;2320 max-width: 1500px;2321 }2322 2323 1972 .welcome-panel .welcome-panel-column-container { 2324 2325 2326 1973 clear: both; 1974 overflow: hidden; 1975 position: relative; 2327 1976 } 2328 2329 1977 .welcome-panel .welcome-panel-column { 2330 width: 32%; 2331 min-width: 200px; 2332 float: left; 2333 } 2334 2335 .ie8 .welcome-panel .welcome-panel-column { 2336 min-width: 230px; 1978 width: 32%; 1979 min-width: 200px; 1980 float: left; 2337 1981 } 2338 2339 1982 .welcome-panel .welcome-panel-column:first-child { 2340 1983 width: 36%; 2341 1984 } 2342 2343 .welcome-panel-column p { 2344 margin-top: 7px; 1985 .welcome-panel .welcome-panel-column ul { 1986 margin: 0.8em 1em 1em 0; 1987 } 1988 .welcome-panel .welcome-panel-column li { 1989 line-height: 16px; 1990 list-style-type: none; 1991 } 1992 .ie8 .welcome-panel .welcome-panel-column { 1993 min-width: 230px; 2345 1994 } 2346 2347 1995 .welcome-panel .welcome-icon { 2348 2349 2350 2351 2352 1996 display: block; 1997 padding: 2px 0 8px 32px; 1998 background-image: url('../images/welcome-icons.png'); 1999 background-repeat: no-repeat; 2000 background-size: 16px; 2353 2001 } 2354 2355 2002 .welcome-panel .welcome-add-page { 2356 2003 background-position: 0 2px; 2357 2004 } 2358 2359 2005 .welcome-panel .welcome-edit-page { 2360 2006 background-position: 0 -90px; 2361 2007 } 2362 2363 2008 .welcome-panel .welcome-learn-more { 2364 2009 background-position: 0 -136px; 2365 2010 } 2366 2367 2011 .welcome-panel .welcome-comments { 2368 2012 background-position: 0 -182px; 2369 2013 } 2370 2371 2014 .welcome-panel .welcome-view-site { 2372 2015 background-position: 0 -274px; 2373 2016 } 2374 2375 2017 .welcome-panel .welcome-widgets-menus { 2376 2377 2018 background-position: 1px -229px; 2019 line-height: 14px; 2378 2020 } 2379 2380 2021 .welcome-panel .welcome-write-blog { 2381 2022 background-position: 0 -44px; 2382 2023 } 2383 2384 .welcome-panel .welcome-panel-column ul { 2385 margin: 0.8em 1em 1em 0;2024 .welcome-panel-content { 2025 margin-left: 13px; 2026 max-width: 1500px; 2386 2027 } 2387 2388 .welcome-panel .welcome-panel-column li { 2389 line-height: 16px; 2390 list-style-type: none; 2028 .welcome-panel-content p { 2029 margin-top: 7px; 2391 2030 } 2392 2393 2031 @media screen and (max-width: 870px) { 2394 .welcome-panel .welcome-panel-column, 2395 .welcome-panel .welcome-panel-column:first-child { 2396 display: block; 2397 float: none; 2398 width: 100%; 2399 } 2400 2401 .welcome-panel .welcome-panel-column li { 2402 display: inline-block; 2403 margin-right: 13px; 2404 } 2405 2406 .welcome-panel .welcome-panel-column ul { 2407 margin: 0.4em 0 0; 2408 } 2409 2410 .welcome-panel .welcome-icon { 2411 padding-left: 25px; 2412 } 2032 .welcome-panel .welcome-panel-column, 2033 .welcome-panel .welcome-panel-column:first-child { 2034 display: block; 2035 float: none; 2036 width: 100%; 2037 } 2038 .welcome-panel .welcome-panel-column li { 2039 display: inline-block; 2040 margin-right: 13px; 2041 } 2042 .welcome-panel .welcome-panel-column ul { 2043 margin: 0.4em 0 0; 2044 } 2045 .welcome-panel .welcome-icon { 2046 padding-left: 25px; 2047 } 2413 2048 } 2414 2415 /*------------------------------------------------------------------------------ 2416 10.0 - List Posts (/Pages/etc) 2417 ------------------------------------------------------------------------------*/ 2418 2419 table.fixed { 2420 table-layout: fixed; 2049 /* dashboard */ 2050 .edit-box { 2051 display: none; 2421 2052 } 2422 2423 .fixed .column-rating, 2424 .fixed .column-visible { 2425 width: 8%; 2053 h3:hover .edit-box { 2054 display: inline; 2426 2055 } 2427 2428 .fixed .column-posts, 2429 .fixed .column-date, 2430 .fixed .column-parent, 2431 .fixed .column-links, 2432 .fixed .column-author, 2433 .fixed .column-format { 2434 width: 10%; 2056 #dashboard-widgets form .input-text-wrap input { 2057 width: 100%; 2435 2058 } 2436 2437 .fixed .column-response, 2438 .fixed .column-categories, 2439 .fixed .column-tags, 2440 .fixed .column-rel, 2441 .fixed .column-role { 2442 width: 15%; 2059 #dashboard-widgets form .textarea-wrap textarea { 2060 width: 100%; 2443 2061 } 2444 2445 .fixed .column-slug { 2446 width: 25%; 2062 #dashboard-widgets .postbox form .submit { 2063 float: none; 2064 margin: .5em 0 0; 2065 padding: 0; 2066 border: none; 2447 2067 } 2448 2449 .fixed .column-locations { 2450 width: 35%; 2068 #dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish { 2069 min-width: 0; 2451 2070 } 2452 2453 .fixed .column-comments { 2454 width: 4em; 2455 padding: 8px 0; 2456 text-align: left; 2071 #dashboard-widgets a { 2072 text-decoration: none; 2457 2073 } 2458 2459 .fixed .column-comments .vers { 2460 padding-left: 3px; 2074 #dashboard-widgets h3 a { 2075 text-decoration: underline; 2461 2076 } 2462 2463 .fixed .column-comments a { 2464 float: left; 2077 #dashboard-widgets h3 .postbox-title-action { 2078 position: absolute; 2079 right: 10px; 2080 padding: 0; 2081 top: 5px; 2465 2082 } 2466 2467 .fixed .column-icon { 2468 width: 80px; 2083 .js #dashboard-widgets h3 .postbox-title-action { 2084 right: 30px; 2085 } 2086 #dashboard-widgets h4 { 2087 font-size: 13px; 2088 font-weight: normal; 2089 line-height: 1; 2090 margin: 0 0 .2em; 2091 padding: 0; 2092 } 2093 /* Right Now */ 2094 #dashboard_right_now p.sub, 2095 #dashboard_right_now .table, 2096 #dashboard_right_now .versions { 2097 margin: -12px; 2098 } 2099 #dashboard_right_now .inside { 2100 font-size: 12px; 2101 padding-top: 20px; 2102 } 2103 #dashboard_right_now p.sub { 2104 padding: 5px 0 15px; 2105 color: #8f8f8f; 2106 font-size: 14px; 2107 position: absolute; 2108 top: -17px; 2109 left: 15px; 2110 } 2111 #dashboard_right_now .table { 2112 margin: 0; 2113 padding: 0; 2114 position: relative; 2115 } 2116 #dashboard_right_now .table_content { 2117 float: left; 2118 border-top-width: 1px; 2119 border-top-style: solid; 2120 width: 45%; 2121 } 2122 #dashboard_right_now .table_discussion { 2123 float: right; 2124 border-top-width: 1px; 2125 border-top-style: solid; 2126 width: 45%; 2127 } 2128 #dashboard_right_now table td { 2129 padding: 3px 0; 2130 white-space: nowrap; 2131 } 2132 #dashboard_right_now table tr.first td { 2133 border-top: none; 2134 } 2135 #dashboard_right_now td.b { 2136 padding-right: 6px; 2137 text-align: right; 2138 font-size: 14px; 2139 width: 1%; 2140 } 2141 #dashboard_right_now td.b a { 2142 font-size: 18px; 2143 } 2144 #dashboard_right_now td.b a:hover { 2145 color: #d54e21; 2146 } 2147 #dashboard_right_now .t { 2148 font-size: 12px; 2149 padding-right: 12px; 2150 padding-top: 6px; 2151 color: #777; 2152 } 2153 #dashboard_right_now .t a { 2154 white-space: nowrap; 2155 } 2156 #dashboard_right_now .spam { 2157 color: red; 2158 } 2159 #dashboard_right_now .waiting { 2160 color: #e66f00; 2161 } 2162 #dashboard_right_now .approved { 2163 color: green; 2164 } 2165 #dashboard_right_now .versions { 2166 padding: 6px 10px 12px; 2167 clear: both; 2168 } 2169 #dashboard_right_now a.button { 2170 float: right; 2171 clear: right; 2172 position: relative; 2173 top: -5px; 2174 } 2175 /* Recent Comments */ 2176 #dashboard_recent_comments h3 { 2177 margin-bottom: 0; 2178 } 2179 #dashboard_recent_comments .inside { 2180 margin-top: 0; 2181 } 2182 #dashboard_recent_comments .comment-meta .approve { 2183 font-style: italic; 2184 font-family: sans-serif; 2185 font-size: 10px; 2186 } 2187 #dashboard_recent_comments .subsubsub { 2188 float: none; 2189 white-space: normal; 2190 } 2191 #the-comment-list { 2192 position: relative; 2193 } 2194 #the-comment-list p.comment-author img { 2195 float: left; 2196 margin-right: 8px; 2197 } 2198 #the-comment-list p.comment-author strong a { 2199 border: none; 2200 } 2201 #the-comment-list td { 2202 vertical-align: top; 2203 } 2204 #the-comment-list td.comment { 2205 word-wrap: break-word; 2206 } 2207 #the-comment-list td.comment p.comment-author { 2208 margin-top: 0; 2209 margin-left: 0; 2210 } 2211 #the-comment-list .comment-item { 2212 padding: 1em 10px; 2213 border-top: 1px solid; 2214 } 2215 #the-comment-list .comment-item .avatar { 2216 float: left; 2217 margin: 0 10px 5px 0; 2218 } 2219 #the-comment-list .comment-item h4 { 2220 line-height: 1.7em; 2221 margin-top: -0.4em; 2222 color: #777; 2223 } 2224 #the-comment-list .comment-item h4 cite { 2225 font-style: normal; 2226 font-weight: normal; 2227 } 2228 #the-comment-list .comment-item:first-child { 2229 border-top: none; 2230 } 2231 #the-comment-list .comment-item blockquote, 2232 #the-comment-list .comment-item blockquote p { 2233 margin: 0; 2234 padding: 0; 2235 display: inline; 2236 } 2237 #the-comment-list .comment-item p.row-actions { 2238 margin: 3px 0 0; 2239 padding: 0; 2240 font-size: 12px; 2241 } 2242 #the-comment-list .pingback { 2243 padding-left: 9px !important; 2244 } 2245 #the-comment-list .comment-item, 2246 #the-comment-list #replyrow { 2247 margin: 0 -10px; 2248 } 2249 #dashboard_recent_comments #the-comment-list .trackback blockquote, 2250 #dashboard_recent_comments #the-comment-list .pingback blockquote { 2251 display: block; 2252 } 2253 /* QuickPress */ 2254 #title-wrap label, 2255 #tags-input-wrap label { 2256 cursor: text; 2257 } 2258 #title-wrap #title { 2259 padding: 2px 6px; 2260 font-size: 1.3em; 2261 line-height: 100%; 2262 outline: none; 2263 } 2264 #title-wrap #title-prompt-text { 2265 font-size: 1.3em; 2266 padding: 5px 8px; 2267 } 2268 #tags-input-wrap #tags-input { 2269 outline: none; 2270 } 2271 #tags-input-wrap #tags-input-prompt-text { 2272 font-size: 1em; 2273 padding: 4px 8px; 2274 } 2275 .no-js #dashboard_quick_press { 2276 display: none; 2277 } 2278 #dashboard_quick_press .easy-blogging { 2279 padding: 0 8px; 2280 text-align: left; 2281 } 2282 #dashboard_quick_press .input-text-wrap { 2283 position: relative; 2284 } 2285 #dashboard_quick_press .prompt { 2286 color: #bbb; 2287 position: absolute; 2288 } 2289 #dashboard_quick_press div.updated { 2290 padding: 0 5px; 2291 } 2292 #dashboard_quick_press .input-text-wrap, 2293 #dashboard_quick_press .textarea-wrap { 2294 margin: 0 0 1em 0; 2295 } 2296 #dashboard_quick_press .wp-media-buttons { 2297 margin: 0 0 .2em 1px; 2298 padding: 0; 2299 } 2300 #dashboard_quick_press .wp-media-buttons a { 2301 color: #777; 2302 } 2303 #dashboard-widgets #dashboard_quick_press form p.submit input { 2304 float: left; 2305 } 2306 #dashboard-widgets #dashboard_quick_press form p.submit #save-post { 2307 margin: 0 0.7em 0 1px; 2308 } 2309 #dashboard-widgets #dashboard_quick_press form p.submit #publish { 2310 float: right; 2311 } 2312 #dashboard-widgets #dashboard_quick_press form p.submit .spinner { 2313 vertical-align: middle; 2314 margin: 4px 6px 0 0; 2315 } 2316 /* Recent Drafts */ 2317 #dashboard_recent_drafts ul, 2318 #dashboard_recent_drafts p { 2319 margin: 0; 2320 padding: 0; 2321 word-wrap: break-word; 2322 } 2323 #dashboard_recent_drafts ul { 2324 list-style: none; 2325 } 2326 #dashboard_recent_drafts ul li { 2327 margin-bottom: 1em; 2328 } 2329 #dashboard_recent_drafts h4 { 2330 line-height: 1.7em; 2331 word-wrap: break-word; 2332 } 2333 #dashboard_recent_drafts h4 abbr { 2334 font-weight: normal; 2335 font-family: sans-serif; 2336 font-size: 12px; 2337 color: #999; 2338 margin-left: 3px; 2339 } 2340 /* Feeds */ 2341 .rss-widget ul { 2342 margin: 0; 2343 padding: 0; 2344 list-style: none; 2345 } 2346 .rss-widget ul li { 2347 line-height: 1.5em; 2348 margin-bottom: 12px; 2349 } 2350 .rss-widget span.rss-date { 2351 color: #999; 2352 font-size: 12px; 2353 margin-left: 3px; 2354 } 2355 .rss-widget cite { 2356 display: block; 2357 text-align: right; 2358 margin: 0 0 1em; 2359 padding: 0; 2360 } 2361 .rss-widget cite:before { 2362 content: '\2014'; 2363 } 2364 a.rsswidget { 2365 font-size: 13px; 2366 line-height: 1.7em; 2367 } 2368 /* Plugins */ 2369 #dashboard_plugins h4 { 2370 line-height: 1.7em; 2371 } 2372 #dashboard_plugins h5 { 2373 font-size: 13px; 2374 font-weight: normal; 2375 line-height: 1.4em; 2376 margin: 0; 2377 display: inline; 2378 } 2379 #dashboard_plugins h5 a { 2380 line-height: 1.4em; 2381 } 2382 #dashboard_plugins .inside span { 2383 font-size: 12px; 2384 padding-left: 5px; 2385 } 2386 #dashboard_plugins p { 2387 margin: 0.3em 0 1.4em; 2388 line-height: 1.4em; 2389 } 2390 .dashboard-comment-wrap { 2391 overflow: hidden; 2392 word-wrap: break-word; 2393 } 2394 /* Browser Nag */ 2395 #dashboard_browser_nag a { 2396 color: white; 2397 text-decoration: underline; 2398 } 2399 #dashboard_browser_nag a.update-browser-link { 2400 font-size: 1.2em; 2401 font-weight: bold; 2402 line-height: normal; 2403 } 2404 #dashboard_browser_nag a.browse-happy-link, 2405 #dashboard_browser_nag a.update-browser-link { 2406 text-shadow: #d29a04 0 1px 0; 2407 } 2408 #dashboard_browser_nag p.browser-update-nag.has-browser-icon { 2409 padding-right: 125px; 2410 } 2411 #dashboard_browser_nag .browser-icon { 2412 margin-top: -35px; 2413 } 2414 #dashboard_browser_nag.postbox { 2415 background-color: #e29808; 2416 background-image: none; 2417 border-color: #edc048; 2418 color: white; 2419 -moz-box-shadow: none; 2420 -webkit-box-shadow: none; 2421 box-shadow: none; 2422 } 2423 #dashboard_browser_nag.postbox h3 { 2424 border-bottom-color: #f6e2ac; 2425 text-shadow: none; 2426 background: transparent none; 2427 color: white; 2428 -moz-box-shadow: none; 2429 -webkit-box-shadow: none; 2430 box-shadow: none; 2431 } 2432 #dashboard_browser_nag.postbox.browser-insecure { 2433 background-color: #ac1b1b; 2434 border-color: #ac1b1b; 2435 } 2436 #dashboard_browser_nag.postbox.browser-insecure h3 { 2437 border-bottom-color: #cd5a5a; 2438 color: white; 2439 } 2440 #dashboard_browser_nag.browser-insecure a.browse-happy-link, 2441 #dashboard_browser_nag.browser-insecure a.update-browser-link { 2442 text-shadow: #871b15 0 1px 0; 2443 } 2444 /*------------------------------------------------------------------------------ 2445 10.0 - List Posts (/Pages/etc) 2446 ------------------------------------------------------------------------------*/ 2447 table.fixed { 2448 table-layout: fixed; 2449 } 2450 .fixed .column-rating, 2451 .fixed .column-visible { 2452 width: 8%; 2453 } 2454 .fixed .column-posts, 2455 .fixed .column-date, 2456 .fixed .column-parent, 2457 .fixed .column-links, 2458 .fixed .column-author, 2459 .fixed .column-format { 2460 width: 10%; 2461 } 2462 .fixed .column-response, 2463 .fixed .column-categories, 2464 .fixed .column-tags, 2465 .fixed .column-rel, 2466 .fixed .column-role { 2467 width: 15%; 2468 } 2469 .fixed .column-slug { 2470 width: 25%; 2471 } 2472 .fixed .column-locations { 2473 width: 35%; 2474 } 2475 .fixed .column-comments { 2476 width: 4em; 2477 padding: 8px 0; 2478 text-align: left; 2479 } 2480 .fixed .column-comments .vers { 2481 padding-left: 3px; 2482 } 2483 .fixed .column-comments a { 2484 float: left; 2485 } 2486 .fixed .column-icon { 2487 width: 80px; 2469 2488 } 2470 2471 2489 #comments-form .fixed .column-author { 2472 2490 width: 20%; 2473 2491 } 2474 2475 2492 #commentsdiv.postbox .inside { 2476 2477 2493 margin: 0; 2494 padding: 0; 2478 2495 } 2479 2480 2496 #commentsdiv .inside .row-actions { 2481 line-height:18px;2497 line-height: 18px; 2482 2498 } 2483 2484 2499 #commentsdiv .inside .column-author { 2485 2500 width: 25%; 2486 2501 } 2487 2488 2502 #commentsdiv .column-comment p { 2489 2490 2503 margin: 0.6em 0; 2504 padding: 0; 2491 2505 } 2492 2493 2506 #commentsdiv #replyrow td { 2494 2507 padding: 0; 2495 2508 } 2496 2497 2509 #commentsdiv p { 2498 2499 2510 padding: 8px 10px; 2511 margin: 0; 2500 2512 } 2501 2502 2513 #commentsdiv #add-new-comment { 2503 2504 2514 border-width: 0 0 1px; 2515 border-style: none none solid; 2505 2516 } 2506 2507 2517 #commentsdiv .comments-box { 2508 2518 border: 0 none; 2509 2519 } 2510 2511 2520 #commentsdiv .comments-box thead th { 2512 2513 2514 2521 background: transparent; 2522 padding: 0 7px 4px; 2523 font-style: italic; 2515 2524 } 2516 2517 2525 #commentsdiv .comments-box tr:last-child td { 2518 2526 border-bottom: 0 none; 2519 2527 } 2520 2521 2528 #commentsdiv .spinner { 2522 2529 padding-left: 5px; 2523 2530 } 2524 2525 2531 .sorting-indicator { 2526 2527 2528 2529 2530 2531 2532 2532 display: none; 2533 width: 7px; 2534 height: 4px; 2535 margin-top: 8px; 2536 margin-left: 7px; 2537 background-image: url('../images/sort.gif'); 2538 background-repeat: no-repeat; 2533 2539 } 2534 2535 2540 tr.wp-locked .locked-indicator { 2536 2537 2538 2539 2541 background: url('../images/lock.png') no-repeat; 2542 margin: -2px 0 0 6px; 2543 height: 20px; 2544 width: 16px; 2540 2545 } 2541 2542 2546 tr.wp-locked .check-column label, 2543 2547 tr.wp-locked .check-column input[type="checkbox"], 2544 2548 tr.wp-locked .row-actions .inline, 2545 2549 tr.wp-locked .row-actions .trash { 2546 2550 display: none; 2547 2551 } 2548 2549 2552 tr .locked-info { 2550 2551 2553 height: 0; 2554 opacity: 0; 2552 2555 } 2553 2554 2556 tr.wp-locked .locked-info { 2555 2556 2557 height: auto; 2558 opacity: 1; 2557 2559 } 2558 2559 tr. locked-info, tr.wp-locked .locked-info {2560 2561 -moz-transition:height 1s, opacity 500ms;2562 -ms-transition:height 1s, opacity 500ms;2563 -o-transition:height 1s, opacity 500ms;2564 transition:height 1s, opacity 500ms;2560 tr.locked-info, 2561 tr.wp-locked .locked-info { 2562 -webkit-transition: height 1s, opacity 500ms; 2563 -moz-transition: height 1s, opacity 500ms; 2564 -ms-transition: height 1s, opacity 500ms; 2565 -o-transition: height 1s, opacity 500ms; 2566 transition: height 1s, opacity 500ms; 2565 2567 } 2566 2567 2568 .fixed .column-comments .sorting-indicator { 2568 2569 margin-top: 3px; 2569 2570 } 2570 2571 2571 #menu-locations-wrap .widefat { 2572 2572 width: 60%; 2573 2573 } 2574 2575 2574 .widefat th.sortable, 2576 2575 .widefat th.sorted { 2577 2576 padding: 0; 2578 2577 } 2579 2580 2578 th.sortable a, 2581 2579 th.sorted a { 2582 2583 2584 2580 display: block; 2581 overflow: hidden; 2582 padding: 7px 7px 8px; 2585 2583 } 2586 2587 2584 .fixed .column-comments.sortable a, 2588 2585 .fixed .column-comments.sorted a { 2589 2586 padding: 8px 0; 2590 2587 } 2591 2592 2588 th.sortable a span, 2593 2589 th.sorted a span { 2594 2595 2590 float: left; 2591 cursor: pointer; 2596 2592 } 2597 2598 2593 th.sorted.asc .sorting-indicator, 2599 2594 th.desc:hover span.sorting-indicator { 2600 2601 2595 display: block; 2596 background-position: 0 0; 2602 2597 } 2603 2604 2598 th.sorted.desc .sorting-indicator, 2605 2599 th.asc:hover span.sorting-indicator { 2606 2607 2600 display: block; 2601 background-position: -7px 0; 2608 2602 } 2609 2610 2603 /* Bulk Actions */ 2611 2604 .tablenav-pages a { 2612 2613 2614 2615 2616 2605 border-bottom-style: solid; 2606 border-bottom-width: 2px; 2607 font-weight: bold; 2608 margin-right: 1px; 2609 padding: 0 2px; 2617 2610 } 2618 2611 .tablenav-pages .current-page { 2619 2612 text-align: center; 2620 2613 } 2621 2614 .tablenav-pages .next-page { 2622 margin-left: 2px; 2623 } 2624 2625 .tablenav a.button-secondary { 2626 display: block; 2627 margin: 3px 8px 0 0; 2615 margin-left: 2px; 2628 2616 } 2629 2630 2617 .tablenav { 2631 2632 2633 2634 2618 clear: both; 2619 height: 30px; 2620 margin: 6px 0 4px; 2621 vertical-align: middle; 2635 2622 } 2636 2637 2623 .tablenav.themes { 2638 max-width: 98%; 2624 max-width: 98%; 2625 } 2626 .tablenav a.button-secondary { 2627 display: block; 2628 margin: 3px 8px 0 0; 2639 2629 } 2640 2641 2630 .tablenav .tablenav-pages { 2642 float: right; 2643 display: block; 2644 cursor: default; 2645 height: 30px; 2646 line-height: 30px; 2647 font-size: 12px; 2631 float: right; 2632 display: block; 2633 cursor: default; 2634 height: 30px; 2635 line-height: 30px; 2636 font-size: 12px; 2637 } 2638 .tablenav .tablenav-pages a.disabled:hover, 2639 .tablenav .tablenav-pages a.disabled:active { 2640 cursor: default; 2648 2641 } 2649 2650 2642 .tablenav .no-pages, 2651 2643 .tablenav .one-page .pagination-links { 2652 2644 display: none; 2653 2645 } 2654 2655 .tablenav .tablenav-pages a, 2656 .tablenav-pages span.current { 2657 text-decoration: none; 2658 padding: 3px 6px; 2646 .tablenav .displaying-num { 2647 margin-right: 10px; 2648 font-size: 12px; 2649 font-style: italic; 2659 2650 } 2660 2661 .tablenav .tablenav-pages a.disabled:hover ,2662 .tablenav .tablenav-pages a.disabled:active {2663 cursor: default;2664 }2665 2666 .tablenav .displaying-num {2667 margin-right: 10px;2668 font-size: 12px;2669 font-style: italic;2670 }2671 2672 2651 .tablenav .actions { 2673 2674 2652 overflow: hidden; 2653 padding: 2px 8px 0 0; 2675 2654 } 2676 2677 2655 .tablenav .delete { 2678 margin-right: 20px; 2656 margin-right: 20px; 2657 } 2658 .tablenav .tablenav-pages a, 2659 .tablenav-pages span.current { 2660 text-decoration: none; 2661 padding: 3px 6px; 2679 2662 } 2680 2681 2663 .view-switch { 2682 2683 2664 float: right; 2665 margin: 6px 8px 0; 2684 2666 } 2685 2686 2667 .view-switch a { 2687 2668 text-decoration: none; 2688 2669 } 2689 2690 2670 .filter { 2691 2692 2671 float: left; 2672 margin: -5px 0 0 10px; 2693 2673 } 2694 2695 2674 .filter .subsubsub { 2696 2697 2675 margin-left: -10px; 2676 margin-top: 13px; 2698 2677 } 2699 2678 .screen-per-page { 2700 2679 width: 4em; 2701 2680 } 2702 2703 2681 #posts-filter fieldset { 2704 2705 2706 2682 float: left; 2683 margin: 0 1.5ex 1em 0; 2684 padding: 0; 2707 2685 } 2708 2709 2686 #posts-filter fieldset legend { 2710 2687 padding: 0 0 .2em 1px; 2711 2688 } 2712 2713 2714 2689 /*------------------------------------------------------------------------------ 2715 2690 10.1 - Inline Editing 2716 2691 ------------------------------------------------------------------------------*/ 2717 2718 2692 /* 2719 2693 .quick-edit* is for Quick Edit 2720 2694 .bulk-edit* is for Bulk Edit 2721 2695 .inline-edit* is for everything 2722 2696 */ 2723 2724 2697 /* Layout */ 2725 2726 2698 #wpbody-content .inline-edit-row fieldset { 2727 font-size: 12px; 2728 float: left; 2729 margin: 0; 2730 padding: 0; 2731 width: 100%; 2732 } 2733 2734 tr.inline-edit-row td, 2735 #wpbody-content .inline-edit-row fieldset .inline-edit-col { 2736 padding: 0 0.5em; 2737 } 2738 2739 #wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col { 2740 border-width: 0 0 0 1px; 2741 border-style: none none none solid; 2699 font-size: 12px; 2700 float: left; 2701 margin: 0; 2702 padding: 0; 2703 width: 100%; 2742 2704 } 2743 2744 2705 #wpbody-content .quick-edit-row-post .inline-edit-col-left { 2745 2706 width: 40%; 2746 2707 } 2747 2748 2708 #wpbody-content .quick-edit-row-post .inline-edit-col-right { 2749 2709 width: 39%; 2750 2710 } 2751 2752 #wpbody-content .inline-edit-row-post .inline-edit-col-center { 2753 width: 20%;2711 #wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col { 2712 border-width: 0 0 0 1px; 2713 border-style: none none none solid; 2754 2714 } 2755 2756 2715 #wpbody-content .quick-edit-row-page .inline-edit-col-left { 2757 width: 50%; 2716 width: 50%; 2717 } 2718 #wpbody-content .inline-edit-row-post .inline-edit-col-center { 2719 width: 20%; 2758 2720 } 2759 2760 2721 #wpbody-content .quick-edit-row-page .inline-edit-col-right, 2761 2722 #wpbody-content .bulk-edit-row-post .inline-edit-col-right { 2762 2723 width: 49%; 2763 2724 } 2764 2765 2725 #wpbody-content .bulk-edit-row .inline-edit-col-left { 2766 2726 width: 30%; 2767 2727 } 2768 2769 2728 #wpbody-content .bulk-edit-row-page .inline-edit-col-right { 2770 2729 width: 69%; 2771 2730 } 2772 2773 2731 #wpbody-content .bulk-edit-row .inline-edit-col-bottom { 2774 2775 2732 float: right; 2733 width: 69%; 2776 2734 } 2777 2778 2735 #wpbody-content .inline-edit-row-page .inline-edit-col-right { 2779 margin-top: 27px; 2736 margin-top: 27px; 2737 } 2738 tr.inline-edit-row td, 2739 #wpbody-content .inline-edit-row fieldset .inline-edit-col { 2740 padding: 0 0.5em; 2780 2741 } 2742 .inline-edit-row { 2743 /* Positioning */ 2781 2744 2745 } 2782 2746 .inline-edit-row fieldset .inline-edit-group { 2783 2747 clear: both; 2784 2748 } 2785 2786 2749 .inline-edit-row fieldset .inline-edit-group:after { 2787 2788 2789 2790 2791 2750 content: "."; 2751 display: block; 2752 height: 0; 2753 clear: both; 2754 visibility: hidden; 2792 2755 } 2793 2794 2756 .inline-edit-row p.submit { 2795 2796 2797 2757 clear: both; 2758 padding: 0.5em; 2759 margin: 0.5em 0 0; 2798 2760 } 2799 2800 2761 .inline-edit-row span.error { 2801 2802 2803 2762 line-height: 22px; 2763 margin: 0 15px; 2764 padding: 3px 5px; 2804 2765 } 2805 2806 /* Positioning */2807 2766 .inline-edit-row h4 { 2808 margin: .2em 0; 2809 padding: 0; 2810 line-height: 23px; 2767 margin: .2em 0; 2768 padding: 0; 2769 line-height: 23px; 2770 text-transform: uppercase; 2771 } 2772 .inline-edit-row fieldset { 2773 /* Specific Elements */ 2774 2811 2775 } 2812 2776 .inline-edit-row fieldset span.title, 2813 2777 .inline-edit-row fieldset span.checkbox-title { 2814 margin: 0; 2815 padding: 0; 2816 line-height: 27px; 2778 margin: 0; 2779 padding: 0; 2780 line-height: 27px; 2781 font-style: italic; 2782 line-height: 1.8em; 2817 2783 } 2818 2819 2784 .inline-edit-row fieldset label, 2820 2785 .inline-edit-row fieldset span.inline-edit-categories-label { 2821 2822 2786 display: block; 2787 margin: .2em 0; 2823 2788 } 2824 2825 2789 .inline-edit-row fieldset label.inline-edit-tags { 2826 2790 margin-top: 0; 2827 2791 } 2828 2829 2792 .inline-edit-row fieldset label.inline-edit-tags span.title { 2830 2831 2793 margin: .2em 0; 2794 width: auto; 2832 2795 } 2833 2834 2796 .inline-edit-row fieldset label span.title { 2835 2836 2837 2797 display: block; 2798 float: left; 2799 width: 5em; 2838 2800 } 2839 2840 2801 .inline-edit-row fieldset label span.input-text-wrap { 2841 2842 2802 display: block; 2803 margin-left: 5em; 2843 2804 } 2844 2845 .quick-edit-row-post fieldset.inline-edit-col-right label span.title {2846 width: auto;2847 padding-right: 0.5em;2848 }2849 2850 .inline-edit-row .input-text-wrap input[type=text] {2851 width: 100%;2852 }2853 2854 2805 .inline-edit-row fieldset label input[type=checkbox] { 2855 2806 vertical-align: text-bottom; 2856 2807 } 2857 2858 2808 .inline-edit-row fieldset label textarea { 2859 2860 2809 width: 100%; 2810 height: 4em; 2861 2811 } 2862 2863 #wpbody-content .bulk-edit-row fieldset .inline-edit-group label {2864 max-width: 50%;2865 }2866 2867 #wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child {2868 margin-right: 0.5em2869 }2870 2871 .inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input {2872 width: 6em;2873 }2874 2875 .inline-edit-save .spinner {2876 padding: 4px 10px 0;2877 vertical-align: top;2878 float: right;2879 }2880 2881 /* Styling */2882 .inline-edit-row h4 {2883 text-transform: uppercase;2884 }2885 2886 .inline-edit-row fieldset span.title,2887 .inline-edit-row fieldset span.checkbox-title {2888 font-style: italic;2889 line-height: 1.8em;2890 }2891 2892 /* Specific Elements */2893 2812 .inline-edit-row fieldset input[type="text"], 2894 2813 .inline-edit-row fieldset textarea { 2895 2896 2814 border-style: solid; 2815 border-width: 1px; 2897 2816 } 2898 2899 2817 .inline-edit-row fieldset .inline-edit-date { 2900 2818 float: left; 2901 2819 } 2902 2903 2820 .inline-edit-row fieldset input[name=jj], 2904 2821 .inline-edit-row fieldset input[name=hh], 2905 2822 .inline-edit-row fieldset input[name=mn] { 2906 2907 2823 font-size: 12px; 2824 width: 2.1em; 2908 2825 } 2909 2910 2826 .inline-edit-row fieldset input[name=aa] { 2911 2912 2827 font-size: 12px; 2828 width: 3.5em; 2913 2829 } 2914 2915 2830 .inline-edit-row fieldset label input.inline-edit-password-input { 2916 2831 width: 8em; 2917 2832 } 2918 2919 ul.cat-checklist {2920 height: 12em;2921 border-style: solid;2922 border-width: 1px;2923 overflow-y: scroll;2924 padding: 0 5px;2925 margin: 0;2926 }2927 2928 #bulk-titles {2929 display: block;2930 height: 12em;2931 border-style: solid;2932 border-width: 1px;2933 overflow-y: scroll;2934 padding: 0 5px;2935 margin: 0 0 5px;2936 }2937 2938 2833 .inline-edit-row fieldset ul.cat-checklist li, 2939 2834 .inline-edit-row fieldset ul.cat-checklist input { 2940 margin: 0; 2835 margin: 0; 2836 } 2837 .inline-edit-row fieldset label input.inline-edit-menu-order-input { 2838 width: 3em; 2839 } 2840 .inline-edit-row fieldset label input.inline-edit-slug-input { 2841 width: 75%; 2842 } 2843 .inline-edit-row .input-text-wrap input[type=text] { 2844 width: 100%; 2941 2845 } 2942 2943 2846 .inline-edit-row fieldset ul.cat-checklist label, 2944 2847 .inline-edit-row #bulk-titles div { 2945 2946 2947 2848 font-family: sans-serif; 2849 font-style: normal; 2850 font-size: 11px; 2948 2851 } 2949 2950 .inline-edit-row fieldset label input.inline-edit-menu-order-input { 2951 width: 3em;2852 .quick-edit-row-post fieldset.inline-edit-col-right label span.title { 2853 width: auto; 2854 padding-right: 0.5em; 2952 2855 } 2953 2954 .inline-edit-row fieldset label input.inline-edit-slug-input { 2955 width: 75%; 2856 #wpbody-content .bulk-edit-row fieldset .inline-edit-group label { 2857 max-width: 50%; 2858 } 2859 #wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child { 2860 margin-right: 0.5em; 2861 } 2862 .inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input { 2863 width: 6em; 2864 } 2865 .inline-edit-save .spinner { 2866 padding: 4px 10px 0; 2867 vertical-align: top; 2868 float: right; 2869 } 2870 ul.cat-checklist { 2871 height: 12em; 2872 border-style: solid; 2873 border-width: 1px; 2874 overflow-y: scroll; 2875 padding: 0 5px; 2876 margin: 0; 2877 } 2878 #bulk-titles { 2879 display: block; 2880 height: 12em; 2881 border-style: solid; 2882 border-width: 1px; 2883 overflow-y: scroll; 2884 padding: 0 5px; 2885 margin: 0 0 5px; 2956 2886 } 2957 2958 2887 .quick-edit-row-post fieldset label.inline-edit-status { 2959 2888 float: left; 2960 2889 } 2961 2962 2890 #bulk-titles { 2963 2891 line-height: 140%; 2964 2892 } 2965 2893 #bulk-titles div { 2966 2894 margin: 0.2em 0.3em; 2967 2895 } 2968 2969 2896 #bulk-titles div a { 2970 2971 2972 2973 2974 2975 2976 2977 2978 2897 cursor: pointer; 2898 display: block; 2899 float: left; 2900 height: 10px; 2901 margin: 3px 3px 0 -2px; 2902 overflow: hidden; 2903 position: relative; 2904 text-indent: -9999px; 2905 width: 10px; 2979 2906 } 2980 2981 2982 2907 /*------------------------------------------------------------------------------ 2983 2908 11.0 - Write/Edit Post Screen 2984 2909 ------------------------------------------------------------------------------*/ 2985 2986 2910 #show-comments { 2987 2911 overflow: hidden; 2988 2912 } 2989 2990 2913 #save-action .spinner, 2991 2914 #show-comments a, 2992 2915 #show-comments .spinner { 2993 2916 float: left; 2994 2917 } 2995 2996 2918 #lost-connection-notice .spinner { 2997 2998 2999 2919 display: block; 2920 float: left; 2921 margin: 0 5px 0 0; 3000 2922 } 3001 3002 2923 .rtl #lost-connection-notice .spinner { 3003 3004 2924 float: right; 2925 margin: 0 0 0 5px; 3005 2926 } 3006 3007 2927 #titlediv { 3008 3009 2928 position: relative; 2929 margin-bottom: 5px; 3010 2930 } 3011 3012 2931 #titlediv label { 3013 2932 cursor: text; 3014 2933 } 3015 3016 2934 #titlediv div.inside { 3017 margin: 0; 3018 } 3019 3020 #poststuff #titlewrap { 3021 border: 0; 3022 padding: 0; 2935 margin: 0; 3023 2936 } 3024 3025 2937 #titlediv #title { 3026 padding: 3px 8px; 3027 font-size: 1.7em; 3028 line-height: 100%; 3029 height: 1.7em; 3030 width: 100%; 3031 outline: none; 3032 margin: 1px 0; 2938 padding: 3px 8px; 2939 font-size: 1.7em; 2940 line-height: 100%; 2941 height: 1.7em; 2942 width: 100%; 2943 outline: none; 2944 margin: 1px 0; 2945 } 2946 #poststuff #titlewrap { 2947 border: 0; 2948 padding: 0; 3033 2949 } 3034 3035 2950 #titlediv #title-prompt-text, 3036 2951 #wp-fullscreen-title-prompt-text { 3037 3038 3039 3040 2952 color: #bbb; 2953 position: absolute; 2954 font-size: 1.7em; 2955 padding: 11px 10px; 3041 2956 } 3042 3043 2957 #wp-fullscreen-save .fs-saved { 3044 3045 3046 2958 color: #999; 2959 float: right; 2960 margin-top: 4px; 3047 2961 } 3048 3049 2962 #wp-fullscreen-title-prompt-text { 3050 2963 padding: 11px; 3051 2964 } 3052 3053 2965 #poststuff .inside-submitbox, 3054 2966 #side-sortables .inside-submitbox { 3055 3056 2967 margin: 0 3px; 2968 font-size: 11px; 3057 2969 } 3058 3059 2970 input#link_description, 3060 2971 input#link_url { 3061 2972 width: 98%; 3062 2973 } 3063 3064 2974 #pending { 3065 3066 3067 3068 3069 2975 background: 0 none; 2976 border: 0 none; 2977 padding: 0; 2978 font-size: 11px; 2979 margin-top: -1px; 3070 2980 } 3071 3072 2981 #edit-slug-box { 3073 line-height: 24px; 3074 min-height: 25px; /* Yes, line-height + 1 */ 3075 margin-top: 5px; 3076 padding-right: 6px; 3077 } 2982 line-height: 24px; 2983 min-height: 25px; 2984 /* Yes, line-height + 1 */ 3078 2985 2986 margin-top: 5px; 2987 padding-right: 6px; 2988 } 3079 2989 #edit-slug-box .cancel { 3080 3081 2990 margin-right: 10px; 2991 font-size: 11px; 3082 2992 } 3083 3084 2993 #editable-post-name-full { 3085 2994 display: none; 3086 2995 } 3087 3088 2996 #editable-post-name input { 3089 2997 width: 16em; 3090 2998 } 3091 3092 2999 .postarea h3 label { 3093 3000 float: left; 3094 3001 } 3095 3096 3002 .submitbox .submit { 3097 3098 3099 3003 text-align: left; 3004 padding: 12px 10px 10px; 3005 font-size: 11px; 3100 3006 } 3101 3102 3007 .submitbox .submitdelete { 3103 3104 3008 text-decoration: none; 3009 padding: 1px 2px; 3105 3010 } 3106 3107 3011 .submitbox .submitdelete, 3108 3012 .submitbox .submit a:hover { 3109 3110 3013 border-bottom-width: 1px; 3014 border-bottom-style: solid; 3111 3015 } 3112 3113 3016 .submitbox .submit input { 3114 3115 3116 3017 margin-bottom: 8px; 3018 margin-right: 4px; 3019 padding: 6px; 3117 3020 } 3118 3119 3021 .inside-submitbox #post_status { 3120 3022 margin: 2px 0 2px -2px; 3121 3023 } 3122 3123 3024 #post-status-select { 3124 3125 3025 line-height: 2.5em; 3026 margin-top: 3px; 3126 3027 } 3127 3128 3028 /* Post Screen */ 3129 3029 #post-body #normal-sortables { 3130 3030 min-height: 50px; 3131 3031 } 3132 3133 3032 .postbox { 3134 3135 3033 position: relative; 3034 min-width: 255px; 3136 3035 } 3137 3138 3036 #trackback_url { 3139 3037 width: 99%; 3140 3038 } 3141 3142 3039 #normal-sortables .postbox .submit { 3143 3144 3145 3146 3147 margin:0;3040 background: transparent none; 3041 border: 0 none; 3042 float: right; 3043 padding: 0 12px; 3044 margin: 0; 3148 3045 } 3149 3150 3046 .category-add input[type="text"], 3151 3047 .category-add select { 3152 3153 3048 width: 100%; 3049 max-width: 260px; 3154 3050 } 3155 3156 3051 .press-this #side-sortables .category-tabs li, 3157 3052 ul.category-tabs li, 3158 3053 #side-sortables .add-menu-item-tabs li, 3159 3054 .wp-tab-bar li { 3160 3161 3055 display: inline; 3056 line-height: 1.35em; 3162 3057 } 3163 3164 3058 .no-js .category-tabs li.hide-if-no-js { 3165 3059 display: none; 3166 3060 } 3167 3168 3061 .category-tabs a, 3169 3062 #side-sortables .add-menu-item-tabs a, 3170 3063 .wp-tab-bar a { 3171 3064 text-decoration: none; 3172 3065 } 3173 3174 3066 .category-tabs { 3175 3067 margin: 8px 0 3px; 3176 3068 } 3177 3178 3069 #category-adder h4 { 3179 3070 margin: 10px 0; 3180 3071 } 3181 3182 3072 #side-sortables .add-menu-item-tabs, 3183 3073 .wp-tab-bar { 3184 3074 margin-bottom: 3px; 3185 3075 } 3186 3187 3076 #normal-sortables .postbox #replyrow .submit { 3188 3189 3190 3077 float: none; 3078 margin: 0; 3079 padding: 0 7px 5px; 3191 3080 } 3192 3193 3081 #side-sortables .submitbox .submit input, 3194 3082 #side-sortables .submitbox .submit .preview, 3195 3083 #side-sortables .submitbox .submit a.preview:hover { 3196 3084 border: 0 none; 3197 3085 } 3198 3199 3086 #side-sortables .inside-submitbox .insidebox, 3200 3087 .stuffbox .insidebox { 3201 3088 margin: 11px 0; 3202 3089 } 3203 3204 3090 ul.category-tabs, 3205 3091 ul.add-menu-item-tabs, 3206 3092 ul.wp-tab-bar { 3207 3093 margin-top: 12px; 3208 3094 } 3209 3210 3095 ul.category-tabs li { 3211 3212 3213 3096 border-style: solid; 3097 border-width: 1px; 3098 position: relative; 3214 3099 } 3215 3216 3100 ul.add-menu-item-tabs li.tabs, 3217 3101 .wp-tab-active { 3218 3219 3102 border-style: solid solid none; 3103 border-width: 1px 1px 0; 3220 3104 } 3221 3222 3105 #post-body .add-menu-item-tabs li.tabs { 3223 3224 3225 3106 border-style: solid none solid solid; 3107 border-width: 1px 0 1px 1px; 3108 margin-right: -1px; 3226 3109 } 3227 3228 3110 ul.category-tabs li, 3229 3111 ul.add-menu-item-tabs li, 3230 3112 ul.wp-tab-bar li { 3231 padding: 3px 5px 5px; 3232 -webkit-border-top-left-radius: 3px; 3233 -webkit-border-top-right-radius: 3px; 3234 border-top-left-radius: 3px; 3235 border-top-right-radius: 3px; 3113 padding: 3px 5px 5px; 3114 border-top-left-radius: 3px; 3115 border-top-right-radius: 3px; 3116 -moz-border-top-left-radius: 3px; 3117 -moz-border-top-right-radius: 3px; 3118 -webkit-border-top-left-radius: 3px; 3119 -webkit-border-top-right-radius: 3px; 3236 3120 } 3237 3238 3121 /* positioning etc. */ 3239 3122 form#tags-filter { 3240 3123 position: relative; 3241 3124 } 3242 3243 3125 /* Edit posts */ 3244 3126 td.post-title strong, 3245 3127 td.plugin-title strong { 3246 3247 3128 display: block; 3129 margin-bottom: .2em; 3248 3130 } 3249 3250 3131 td.post-title p, 3251 3132 td.plugin-title p { 3252 3133 margin: 6px 0; 3253 3134 } 3254 3255 3135 /* Global classes */ 3256 3136 .wp-hidden-children .wp-hidden-child, 3257 3137 .ui-tabs-hide { 3258 3138 display: none; 3259 3139 } 3260 3261 3140 .commentlist .avatar { 3262 3141 vertical-align: text-top; 3263 3142 } 3264 3265 3143 #post-body .tagsdiv #newtag { 3266 3267 3144 margin-right: 5px; 3145 width: 16em; 3268 3146 } 3269 3270 3147 #side-sortables input#post_password { 3271 width: 94% 3148 width: 94%; 3272 3149 } 3273 3274 3150 #side-sortables .tagsdiv #newtag { 3275 3151 width: 68%; 3276 3152 } 3277 3278 3153 #post-status-info { 3279 border-width: 0 1px 1px; 3280 border-style: none solid solid; 3281 width: 100%; 3282 -webkit-border-bottom-left-radius: 3px; 3283 -webkit-border-bottom-right-radius: 3px; 3284 border-bottom-left-radius: 3px; 3285 border-bottom-right-radius: 3px; 3154 border-width: 0 1px 1px; 3155 border-style: none solid solid; 3156 width: 100%; 3157 border-bottom-left-radius: 3px; 3158 border-bottom-right-radius: 3px; 3159 -moz-border-bottom-left-radius: 3px; 3160 -moz-border-bottom-right-radius: 3px; 3161 -webkit-border-bottom-left-radius: 3px; 3162 -webkit-border-bottom-right-radius: 3px; 3286 3163 } 3287 3288 3164 #post-status-info td { 3289 3165 font-size: 12px; 3290 3166 } 3291 3292 3167 .autosave-info { 3293 3294 3168 padding: 2px 15px; 3169 text-align: right; 3295 3170 } 3296 3297 3171 #editorcontent #post-status-info { 3298 3172 border: none; 3299 3173 } 3300 3301 3174 #post-body .wp_themeSkin .mceStatusbar a.mceResize { 3302 3303 3304 3305 3306 3307 3308 3175 display: block; 3176 background: transparent url('../images/resize.gif') no-repeat scroll right bottom; 3177 width: 12px; 3178 cursor: se-resize; 3179 margin: 0 1px; 3180 position: relative; 3181 top: -2px; 3309 3182 } 3310 3311 3183 #post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize { 3312 3184 top: 20px; 3313 3185 } 3314 3315 3186 #content-resize-handle { 3316 3317 3318 3319 3320 3321 3187 background: transparent url('../images/resize.gif') no-repeat scroll right bottom; 3188 width: 12px; 3189 cursor: se-resize; 3190 position: absolute; 3191 right: 2px; 3192 height: 19px; 3322 3193 } 3323 3324 3194 .press-this #content-resize-handle { 3325 3195 bottom: 2px; 3326 3196 } 3327 3328 3197 .tmce-active #content-resize-handle { 3329 3198 display: none; 3330 3199 } 3331 3332 3200 #wp-word-count { 3333 3334 3201 display: block; 3202 padding: 2px 10px; 3335 3203 } 3336 3337 3204 #timestampdiv select { 3338 height: 20px; 3339 line-height: 14px; 3340 padding: 0; 3341 vertical-align: top; 3205 height: 20px; 3206 line-height: 14px; 3207 padding: 0; 3208 vertical-align: top; 3209 } 3210 #aa, 3211 #jj, 3212 #hh, 3213 #mn { 3214 padding: 1px; 3215 font-size: 12px; 3216 } 3217 #jj, 3218 #hh, 3219 #mn { 3220 width: 2em; 3342 3221 } 3343 3344 #aa, #jj, #hh, #mn {3345 padding: 1px;3346 font-size: 12px;3347 }3348 3349 #jj, #hh, #mn {3350 width: 2em;3351 }3352 3353 3222 #aa { 3354 3223 width: 3.4em; 3355 3224 } 3356 3357 3225 .curtime #timestamp { 3358 3359 3360 3226 background-repeat: no-repeat; 3227 background-position: left center; 3228 padding: 2px 0 1px 20px; 3361 3229 } 3362 3363 3230 #timestampdiv { 3364 3365 3231 padding-top: 5px; 3232 line-height: 23px; 3366 3233 } 3367 3368 3234 #timestampdiv p { 3369 3235 margin: 8px 0 6px; 3370 3236 } 3371 3372 3237 #timestampdiv input { 3373 3374 3238 border-width: 1px; 3239 border-style: solid; 3375 3240 } 3376 3377 3241 .notification-dialog { 3378 3379 3380 3381 3382 3383 3384 3385 3242 position: fixed; 3243 top: 30%; 3244 left: 50%; 3245 width: 450px; 3246 margin-left: -225px; 3247 background: #fff; 3248 line-height: 1.5; 3249 z-index: 1000005; 3386 3250 } 3387 3388 3251 .notification-dialog-background { 3389 3390 3391 3392 3393 3394 3395 3396 3397 3252 position: fixed; 3253 top: 0; 3254 left: 0; 3255 right: 0; 3256 bottom: 0; 3257 background: #000; 3258 opacity: 0.5; 3259 filter: alpha(opacity=50); 3260 z-index: 1000000; 3398 3261 } 3399 3400 3262 #post-lock-dialog .post-locked-message, 3401 3263 #post-lock-dialog .post-taken-over { 3402 3264 margin: 25px; 3403 3265 } 3404 3405 3266 #post-lock-dialog .post-locked-message a.button { 3406 3267 margin-right: 10px; 3407 3268 } 3408 3409 3269 #post-lock-dialog .post-locked-avatar { 3410 3411 3270 float: left; 3271 margin: 0 20px 20px 0; 3412 3272 } 3413 3414 3273 #post-lock-dialog .wp-tab-first { 3415 3274 outline: 0; 3416 3275 } 3417 3418 3276 #post-lock-dialog .locked-saving img { 3419 3420 3277 float: left; 3278 margin-right: 3px; 3421 3279 } 3422 3423 3280 #post-lock-dialog.saving .locked-saving, 3424 3281 #post-lock-dialog.saved .locked-saved { 3425 3282 display: inline; 3426 3283 } 3427 3428 3284 /*------------------------------------------------------------------------------ 3429 3285 11.1 - Custom Fields 3430 3286 ------------------------------------------------------------------------------*/ 3431 3432 3287 #postcustomstuff thead th { 3433 3288 padding: 5px 8px 8px; 3434 3289 } 3435 3436 3290 #postcustom #postcustomstuff .submit { 3437 3438 3439 3291 border: 0 none; 3292 float: none; 3293 padding: 0 8px 8px; 3440 3294 } 3441 3442 3295 #side-sortables #postcustom #postcustomstuff .submit { 3443 3444 3296 margin: 0; 3297 padding: 0; 3445 3298 } 3446 3447 3299 #side-sortables #postcustom #postcustomstuff #the-list textarea { 3448 3300 height: 85px; 3449 3301 } 3450 3451 3302 #side-sortables #postcustom #postcustomstuff td.left input, 3452 #side-sortables #postcustom #postcustomstuff td.left select, 3303 #side-sortables #postcustom #postcustomstuff td.left select { 3304 margin: 3px 3px 0; 3305 } 3453 3306 #side-sortables #postcustomstuff #newmetaleft a { 3454 3307 margin: 3px 3px 0; 3455 3308 } 3456 3457 3309 #postcustomstuff table { 3458 3459 3460 3461 3462 3310 margin: 0; 3311 width: 100%; 3312 border-width: 1px; 3313 border-style: solid; 3314 border-spacing: 0; 3463 3315 } 3464 3465 3316 #postcustomstuff tr { 3466 3317 vertical-align: top; 3467 3318 } 3468 3469 3319 #postcustomstuff table input, 3470 3320 #postcustomstuff table select, 3471 3321 #postcustomstuff table textarea { 3472 3473 3322 width: 96%; 3323 margin: 8px; 3474 3324 } 3475 3476 3325 #side-sortables #postcustomstuff table input, 3477 3326 #side-sortables #postcustomstuff table select, 3478 3327 #side-sortables #postcustomstuff table textarea { 3479 3328 margin: 3px; 3480 3329 } 3481 3482 3330 #postcustomstuff th.left, 3483 3331 #postcustomstuff td.left { 3484 3332 width: 38%; 3485 3333 } 3486 3487 3334 #postcustomstuff .submit input { 3488 3489 3335 margin: 0; 3336 width: auto; 3490 3337 } 3491 3492 3338 #postcustomstuff #newmetaleft a { 3493 3494 3495 3339 display: inline-block; 3340 margin: 0 8px 8px; 3341 text-decoration: none; 3496 3342 } 3497 3498 3343 .no-js #postcustomstuff #enternew { 3499 3344 display: none; 3500 3345 } 3501 3502 3346 #post-body-content .compat-attachment-fields { 3503 3347 margin-bottom: 20px; 3504 3348 } 3505 3506 3349 .compat-attachment-fields th { 3507 3508 3350 padding-top: 5px; 3351 padding-right: 10px; 3509 3352 } 3510 3511 3353 /*------------------------------------------------------------------------------ 3512 3354 11.2 - Post Revisions 3513 3355 ------------------------------------------------------------------------------*/ 3514 3356 .revisions-control-frame, 3515 3357 .revisions-diff-frame { 3516 3358 position: relative; 3517 3359 } 3518 3519 3360 .revisions-controls { 3520 3521 3522 3361 padding-top: 40px; 3362 height: 100px; 3363 z-index: 1; 3523 3364 } 3524 3525 3365 .revisions-controls input[type="checkbox"] { 3526 3527 3528 3366 position: relative; 3367 top: -1px; 3368 vertical-align: text-bottom; 3529 3369 } 3530 3531 3370 .revisions.pinned .revisions-controls { 3532 position: fixed; 3533 top: 0; 3534 padding-bottom: 10px; 3371 position: fixed; 3372 top: 0; 3373 padding-bottom: 10px; 3374 } 3375 .revisions-controls .author-card .date { 3376 color: #777; 3377 } 3378 .revisions-controls .author-card .avatar, 3379 .revisions-controls .author-card .author-info { 3380 float: left; 3381 margin-left: 6px; 3382 margin-right: 6px; 3383 } 3384 .revisions-controls .author-card.autosave { 3385 color: #d54e21; 3386 } 3387 .revisions-controls .author-card .author-name { 3388 font-weight: bold; 3389 } 3390 .revisions-controls .author-card .byline { 3391 display: block; 3392 font-size: 12px; 3393 } 3394 .revisions-controls .author-card .avatar { 3395 vertical-align: middle; 3396 } 3397 .revisions-controls .wp-slider { 3398 max-width: 70%; 3399 margin: 0 auto; 3400 top: -3px; 3535 3401 } 3536 3537 3402 .revisions-tickmarks { 3538 position: relative; 3539 margin: 0 auto; 3540 height: 0.8em; 3541 top: 7px; 3542 max-width: 70%; 3543 -moz-box-sizing: border-box; 3544 -webkit-box-sizing: border-box; 3545 box-sizing: border-box; 3403 position: relative; 3404 margin: 0 auto; 3405 height: 0.8em; 3406 top: 7px; 3407 max-width: 70%; 3408 -moz-box-sizing: border-box; 3409 -webkit-box-sizing: border-box; 3410 -ms-box-sizing: border-box; 3411 box-sizing: border-box; 3546 3412 } 3547 3548 3413 .revisions-tickmarks > div { 3549 position: absolute; 3550 height: 100%; 3551 border-style: solid; 3552 border-width: 0 1px 0 0; 3553 -moz-box-sizing: border-box; 3554 -webkit-box-sizing: border-box; 3555 box-sizing: border-box; 3414 position: absolute; 3415 height: 100%; 3416 border-style: solid; 3417 border-width: 0 1px 0 0; 3418 -moz-box-sizing: border-box; 3419 -webkit-box-sizing: border-box; 3420 -ms-box-sizing: border-box; 3421 box-sizing: border-box; 3556 3422 } 3557 3558 3423 .revisions-tickmarks > div:first-child { 3559 3424 border-width: 0; 3560 3425 } 3561 3562 3426 .comparing-two-revisions .revisions-controls { 3563 3427 height: 140px; 3564 3428 } 3565 3566 3429 .revisions .diff-error { 3567 3568 3569 3570 3571 3430 position: absolute; 3431 text-align: center; 3432 margin: 0 auto; 3433 width: 100%; 3434 display: none; 3572 3435 } 3573 3574 3436 .revisions.diff-error .diff-error { 3575 3437 display: block; 3576 3438 } 3577 3578 3439 .revisions .loading-indicator { 3579 3580 3581 3582 3583 3584 3585 3586 -moz-transition:opacity 0.5s;3587 -ms-transition:opacity 0.5s;3588 -o-transition:opacity 0.5s;3589 transition:opacity 0.5s;3590 filter: alpha(opacity=0); /* ie8 and earlier */ 3591 } 3440 position: fixed; 3441 vertical-align: middle; 3442 opacity: 0; 3443 width: 100%; 3444 top: 50%; 3445 margin-left: -90px; 3446 -webkit-transition: opacity 0.5s; 3447 -moz-transition: opacity 0.5s; 3448 -ms-transition: opacity 0.5s; 3449 -o-transition: opacity 0.5s; 3450 transition: opacity 0.5s; 3451 filter: alpha(opacity=0); 3452 /* ie8 and earlier */ 3592 3453 3454 } 3593 3455 body.folded .revisions .loading-indicator { 3594 3456 margin-left: -32px; 3595 3457 } 3596 3597 3458 .revisions .loading-indicator span.spinner { 3598 3599 3600 3459 display: block; 3460 margin: 0 auto; 3461 float: none; 3601 3462 } 3602 3603 3463 .revisions.loading .loading-indicator { 3604 3605 filter: alpha(opacity=100); /* ie8 and earlier */ 3606 } 3464 opacity: 1; 3465 filter: alpha(opacity=100); 3466 /* ie8 and earlier */ 3607 3467 3468 } 3608 3469 .revisions .diff { 3609 3610 -moz-transition:opacity 0.5s;3611 -ms-transition:opacity 0.5s;3612 -o-transition:opacity 0.5s;3613 transition:opacity 0.5s;3470 -webkit-transition: opacity 0.5s; 3471 -moz-transition: opacity 0.5s; 3472 -ms-transition: opacity 0.5s; 3473 -o-transition: opacity 0.5s; 3474 transition: opacity 0.5s; 3614 3475 } 3615 3616 3476 .revisions.loading .diff { 3617 3618 filter: alpha(opacity=50); /* ie8 and earlier */ 3619 } 3477 opacity: 0.5; 3478 filter: alpha(opacity=50); 3479 /* ie8 and earlier */ 3620 3480 3481 } 3621 3482 .revisions.diff-error .diff { 3622 3483 visibility: hidden; 3623 3484 } 3624 3625 3485 .revisions-meta { 3626 3486 margin-top: 15px; 3627 3487 } 3628 3629 3488 .revision-toggle-compare-mode { 3630 3631 3632 3489 position: absolute; 3490 top: 0; 3491 right: 0; 3633 3492 } 3634 3635 3493 .comparing-two-revisions .revisions-previous, 3636 3494 .comparing-two-revisions .revisions-next, 3637 3495 .revisions-meta .diff-meta-to strong { 3638 display: none; 3639 } 3640 3641 .revisions-controls .author-card .date { 3642 color: #777; 3643 } 3644 3645 .revisions-controls .author-card.autosave { 3646 color: #d54e21; 3647 } 3648 3649 .revisions-controls .author-card .author-name { 3650 font-weight: bold; 3496 display: none; 3651 3497 } 3652 3653 3498 .comparing-two-revisions .diff-meta-to strong { 3654 3499 display: block; 3655 3500 } 3656 3657 3501 .revisions-previous, 3658 3502 .revisions-next { 3659 3660 3503 position: relative; 3504 z-index: 1; 3661 3505 } 3662 3663 3506 .revisions-previous { 3664 3507 float: left; 3665 3508 } 3666 3667 3509 .revisions-next { 3668 float: right; 3669 } 3670 3671 .revisions-controls .wp-slider { 3672 max-width: 70%; 3673 margin: 0 auto; 3674 top: -3px; 3510 float: right; 3675 3511 } 3676 3677 3512 /* Revision meta box */ 3678 3513 .post-revisions li img, 3679 3514 #revisions-meta-restored img { 3680 3515 vertical-align: middle; 3681 3516 } 3682 3683 3517 table.diff { 3684 3685 3686 3687 3518 table-layout: fixed; 3519 width: 100%; 3520 white-space: pre-wrap; 3521 word-wrap: break-word; 3688 3522 } 3689 3690 3523 table.diff col.content { 3691 3524 width: auto; 3692 3525 } 3693 3694 3526 table.diff col.content.diffsplit { 3695 3527 width: 48%; 3696 3528 } 3697 3698 table.diff col.diffsplit.middle { 3699 width: auto; 3529 table.diff col.content.middle { 3530 width: auto; 3700 3531 } 3701 3702 3532 table.diff col.ltype { 3703 3533 width: 30px; 3704 3534 } 3705 3706 3535 table.diff tr { 3707 3536 background-color: transparent; 3708 3537 } 3709 3710 3538 table.diff td, 3711 3539 table.diff th { 3712 3713 3540 padding: .5em; 3541 font-family: Consolas, Monaco, monospace; 3714 3542 } 3715 3716 3543 table.diff .diff-deletedline del, 3717 3544 table.diff .diff-addedline ins { 3718 3545 text-decoration: none; 3719 3546 } 3720 3721 3547 .diff-meta { 3722 -webkit-border-radius: 3px; 3723 border-radius: 3px; 3724 padding: 5px; 3725 clear: both; 3726 min-height: 32px; 3727 } 3728 3729 .diff-title strong { 3730 line-height: 32px; 3731 min-width: 60px; 3732 text-align: right; 3733 float: left; 3734 margin-right: 5px; 3735 } 3736 3737 .revisions-controls .author-card .avatar, 3738 .revisions-controls .author-card .author-info { 3739 float: left; 3740 margin-left: 6px; 3741 margin-right: 6px; 3742 } 3743 3744 .revisions-controls .author-card .byline { 3745 display: block; 3746 font-size: 12px; 3548 border-radius: 3px; 3549 -moz-border-radius: 3px; 3550 -webkit-border-radius: 3px; 3551 padding: 5px; 3552 clear: both; 3553 min-height: 32px; 3747 3554 } 3748 3749 .revisions-controls .author-card .avatar {3750 vertical-align: middle;3751 }3752 3753 3555 .diff-meta input.restore-revision { 3754 float: right; 3755 margin-left: 6px; 3756 margin-right: 6px; 3757 margin-top: 4px; 3556 float: right; 3557 margin-left: 6px; 3558 margin-right: 6px; 3559 margin-top: 4px; 3560 } 3561 .diff-title strong { 3562 line-height: 32px; 3563 min-width: 60px; 3564 text-align: right; 3565 float: left; 3566 margin-right: 5px; 3758 3567 } 3759 3760 3568 .diff-meta-from { 3761 3569 display: none; 3762 3570 } 3763 3764 3571 .comparing-two-revisions .diff-meta-from { 3765 3572 display: block; 3766 3573 } 3767 3768 3574 .revisions-tooltip { 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3575 position: absolute; 3576 bottom: 105px; 3577 margin-right: 0; 3578 margin-left: -69px; 3579 z-index: 0; 3580 max-width: 350px; 3581 min-width: 130px; 3582 padding: 8px 4px; 3583 display: none; 3584 opacity: 0; 3779 3585 } 3780 3781 3586 .revisions-tooltip.flipped { 3782 margin-left: 0; 3783 margin-right: -70px; 3587 margin-left: 0; 3588 margin-right: -70px; 3589 } 3590 .revisions-tooltip.flipped .revisions-tooltip-arrow { 3591 margin-left: 0; 3592 margin-right: 35px; 3593 left: auto; 3594 right: 0; 3595 } 3596 .ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow > span { 3597 right: 25px; 3784 3598 } 3785 3786 3599 .revisions.pinned .revisions-tooltip { 3787 3600 display: none !important; 3788 3601 } 3789 3790 3602 .comparing-two-revisions .revisions-tooltip { 3791 3603 bottom: 145px; 3792 3604 } 3793 3794 3605 .revisions-tooltip-arrow { 3795 width: 70px; 3796 height: 15px; 3797 overflow: hidden; 3798 position: absolute; 3799 left: 0; 3800 margin-left: 35px; 3801 bottom: -15px; 3802 } 3803 3804 .revisions-tooltip.flipped .revisions-tooltip-arrow { 3805 margin-left: 0; 3806 margin-right: 35px; 3807 left: auto; 3808 right: 0; 3606 width: 70px; 3607 height: 15px; 3608 overflow: hidden; 3609 position: absolute; 3610 left: 0; 3611 margin-left: 35px; 3612 bottom: -15px; 3809 3613 } 3810 3811 3614 .revisions-tooltip-arrow > span { 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3615 content: ""; 3616 position: absolute; 3617 left: 20px; 3618 top: -20px; 3619 width: 25px; 3620 height: 25px; 3621 -webkit-transform: rotate(45deg); 3622 -moz-transform: rotate(45deg); 3623 -ms-transform: rotate(45deg); 3624 -o-transform: rotate(45deg); 3625 tranform: rotate(45deg); 3823 3626 } 3824 3825 3627 .revisions-tooltip.flipped .revisions-tooltip-arrow > span { 3826 3827 3628 left: auto; 3629 right: 20px; 3828 3630 } 3829 3830 3631 .ie8 .revisions-tooltip-arrow > span { 3831 left: 15px; 3832 top: -25px; 3833 -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)"; 3834 } 3835 3836 .ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow > span { 3837 right: 25px; 3632 left: 15px; 3633 top: -25px; 3634 -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)"; 3838 3635 } 3839 3840 3636 .revisions-tooltip, 3841 3637 .revisions-tooltip-arrow > span { 3842 3843 3638 border-width: 1px; 3639 border-style: solid; 3844 3640 } 3845 3846 3641 div.revisions-controls > .wp-slider > .ui-slider-handle { 3847 3642 margin-left: -10px; 3848 3643 } 3849 3850 /* jQuery UI Slider */ 3644 /* jQuery UI Slider */ 3851 3645 .wp-slider.ui-slider { 3852 position: relative; 3853 border-width: 1px; 3854 border-style: solid; 3855 border-radius: 3px; 3856 text-align: left; 3857 cursor: pointer; 3646 position: relative; 3647 border-width: 1px; 3648 border-style: solid; 3649 border-radius: 3px; 3650 -moz-border-radius: 3px; 3651 -webkit-border-radius: 3px; 3652 text-align: left; 3653 cursor: pointer; 3858 3654 } 3859 3860 3655 .wp-slider .ui-slider-handle { 3861 position: absolute; 3862 z-index: 2; 3863 margin-top: -3px; 3864 width: 19px; 3865 height: 19px; 3866 border-width: 1px; 3867 border-style: solid; 3868 border-radius: 50%; 3656 position: absolute; 3657 z-index: 2; 3658 margin-top: -3px; 3659 width: 19px; 3660 height: 19px; 3661 border-width: 1px; 3662 border-style: solid; 3663 border-radius: 50%; 3664 -moz-border-radius: 50%; 3665 -webkit-border-radius: 50%; 3869 3666 } 3870 3871 3667 .wp-slider .ui-slider-handle:before { 3872 3873 3874 3875 3876 3877 3878 3668 content: ""; 3669 position: absolute; 3670 top: 6px; 3671 left: 3px; 3672 height: 8px; 3673 width: 13px; 3674 background: url(../images/arrows-pr.png) no-repeat -2px -47px; 3879 3675 } 3880 3881 3676 .wp-slider .ui-slider-handle.from-handle:before, 3882 3677 .wp-slider .ui-slider-handle.to-handle:before { 3883 3884 3678 height: 8px; 3679 width: 7px; 3885 3680 } 3886 3887 3681 .wp-slider .ui-slider-handle.from-handle:before { 3888 3889 3682 background-position: -5px -84px; 3683 left: 7px; 3890 3684 } 3891 3892 3685 .wp-slider .ui-slider-handle.to-handle:before { 3893 3894 3686 background-position: -4px -65px; 3687 left: 5px; 3895 3688 } 3896 3897 3689 .wp-slider .ui-slider-range { 3898 3899 3900 3901 3902 3903 3690 position: absolute; 3691 font-size: .7em; 3692 display: block; 3693 border: 0; 3694 background-color: transparent; 3695 background-image: none; 3904 3696 } 3905 3906 3697 .wp-slider.ui-slider-horizontal { 3907 3698 height: .8em; 3908 3699 } 3909 3910 3700 .wp-slider.ui-slider-horizontal .ui-slider-handle { 3911 top: -.25em;3912 margin-left: -.6em;3701 top: -0.25em; 3702 margin-left: -0.6em; 3913 3703 } 3914 3915 3704 .wp-slider.ui-slider-horizontal .ui-slider-range { 3916 3917 3705 top: 0; 3706 height: 100%; 3918 3707 } 3919 3920 3708 .wp-slider.ui-slider-horizontal .ui-slider-range-min { 3921 3709 left: 0; 3922 3710 } 3923 3924 3711 .wp-slider.ui-slider-horizontal .ui-slider-range-max { 3925 3712 right: 0; 3926 3713 } 3927 3928 3929 3714 /*------------------------------------------------------------------------------ 3930 3715 11.3 - Featured Images 3931 3716 ------------------------------------------------------------------------------*/ 3932 3933 3717 #select-featured-image { 3934 3935 3718 padding: 4px 0; 3719 overflow: hidden; 3936 3720 } 3937 3938 3721 #select-featured-image img { 3939 3940 3941 3722 max-width: 100%; 3723 height: auto; 3724 margin-bottom: 10px; 3942 3725 } 3943 3944 3726 #select-featured-image a { 3945 3946 3727 float: left; 3728 clear: both; 3947 3729 } 3948 3949 3730 #select-featured-image .remove { 3950 3951 3731 display: none; 3732 margin-top: 10px; 3952 3733 } 3953 3954 3734 .js #select-featured-image.has-featured-image .remove { 3955 3735 display: inline-block; 3956 3736 } 3957 3958 3737 .no-js #select-featured-image .choose { 3959 3738 display: none; 3960 3739 } 3961 3962 3740 /*------------------------------------------------------------------------------ 3963 3741 11.4 - Post formats 3964 3742 ------------------------------------------------------------------------------*/ 3965 3966 3743 a.post-state-format { 3967 3968 3969 3970 3971 3972 3973 3974 3744 overflow: hidden; 3745 display: inline-block; 3746 vertical-align: middle; 3747 height: 16px; 3748 width: 16px; 3749 margin-right: 5px; 3750 background-repeat: no-repeat; 3751 text-indent: -999em; 3975 3752 } 3976 3977 3753 #post-formats-select { 3978 3754 line-height: 2em; 3979 3755 } 3980 3981 label.post-format-icon { 3982 margin-left: 5px;3983 padding: 2px 0 2px 21px;3756 .post-format-icon { 3757 margin-left: 5px; 3758 padding: 2px 0 2px 21px; 3759 line-height: 2em; 3984 3760 } 3985 3986 .post-format-icon.post-format-standard { 3987 background-position: 0 0; 3761 .post-format-icon.post-format-standard { 3762 background-position: 0 0; 3988 3763 } 3989 3990 .post-format-icon.post-format-image { 3991 background-position: 0 -32px; 3764 .post-format-icon.post-format-image { 3765 background-position: 0 -32px; 3992 3766 } 3993 3994 3767 .post-format-icon.post-format-gallery { 3995 3768 background-position: 0 -64px; 3996 3769 } 3997 3998 3770 .post-format-icon.post-format-audio { 3999 3771 background-position: 0 -96px; 4000 3772 } 4001 4002 3773 .post-format-icon.post-format-video { 4003 3774 background-position: 0 -128px; 4004 3775 } 4005 4006 3776 .post-format-icon.post-format-chat { 4007 3777 background-position: 0 -160px; 4008 3778 } 4009 4010 3779 .post-format-icon.post-format-status { 4011 3780 background-position: 0 -192px; 4012 3781 } 4013 4014 3782 .post-format-icon.post-format-aside { 4015 3783 background-position: 0 -224px; 4016 3784 } 4017 4018 3785 .post-format-icon.post-format-quote { 4019 3786 background-position: 0 -256px; 4020 3787 } 4021 4022 3788 .post-format-icon.post-format-link { 4023 3789 background-position: 0 -288px; 4024 3790 } 4025 4026 4027 3791 /*------------------------------------------------------------------------------ 4028 3792 12.0 - Categories 4029 3793 ------------------------------------------------------------------------------*/ 4030 4031 3794 .category-adder { 4032 4033 3795 margin-left: 120px; 3796 padding: 4px 0; 4034 3797 } 4035 4036 3798 .category-adder h4 { 4037 3799 margin: 0 0 8px; 4038 3800 } 4039 4040 3801 #side-sortables .category-adder { 4041 3802 margin: 0; 4042 3803 } 4043 4044 3804 #post-body ul.add-menu-item-tabs { 4045 float: left; 4046 width: 120px; 4047 text-align: right; 4048 /* Negative margin for the sake of those without JS: all tabs display */ 4049 margin: 0 -120px 0 5px; 4050 padding: 0; 4051 } 3805 float: left; 3806 width: 120px; 3807 text-align: right; 3808 /* Negative margin for the sake of those without JS: all tabs display */ 4052 3809 3810 margin: 0 -120px 0 5px; 3811 padding: 0; 3812 } 4053 3813 #post-body ul.add-menu-item-tabs li { 4054 3814 padding: 8px; 4055 3815 } 4056 4057 3816 #post-body ul.add-menu-item-tabs li.tabs { 4058 -webkit-border-top-left-radius: 3px; 4059 -webkit-border-bottom-left-radius: 3px; 4060 border-top-left-radius: 3px; 4061 border-bottom-left-radius: 3px; 3817 border-top-left-radius: 3px; 3818 border-bottom-left-radius: 3px; 3819 -moz-border-top-left-radius: 3px; 3820 -moz-border-bottom-left-radius: 3px; 3821 -webkit-border-top-left-radius: 3px; 3822 -webkit-border-bottom-left-radius: 3px; 4062 3823 } 4063 4064 3824 .wp-tab-panel, 4065 3825 .categorydiv div.tabs-panel, 4066 3826 .customlinkdiv div.tabs-panel, 4067 3827 .posttypediv div.tabs-panel, 4068 3828 .taxonomydiv div.tabs-panel { 4069 4070 4071 4072 4073 4074 3829 min-height: 42px; 3830 max-height: 200px; 3831 overflow: auto; 3832 padding: 0 0.9em; 3833 border-style: solid; 3834 border-width: 1px; 4075 3835 } 4076 4077 3836 div.tabs-panel-active { 4078 display:block;3837 display: block; 4079 3838 } 4080 4081 3839 div.tabs-panel-inactive { 4082 display:none;3840 display: none; 4083 3841 } 4084 4085 3842 #front-page-warning, 4086 3843 #front-static-pages ul, 4087 3844 ul.export-filters, … … ul.export-filters, 4090 3847 .customlinkdiv ul.categorychecklist ul, 4091 3848 .posttypediv ul.categorychecklist ul, 4092 3849 .taxonomydiv ul.categorychecklist ul { 4093 3850 margin-left: 18px; 4094 3851 } 4095 4096 3852 ul.categorychecklist li { 4097 4098 4099 4100 3853 margin: 0; 3854 padding: 0; 3855 line-height: 19px; 3856 word-wrap: break-word; 4101 3857 } 4102 4103 3858 .categorydiv .tabs-panel, 4104 3859 .customlinkdiv .tabs-panel, 4105 3860 .posttypediv .tabs-panel, 4106 3861 .taxonomydiv .tabs-panel { 4107 4108 3862 border-width: 3px; 3863 border-style: solid; 4109 3864 } 4110 4111 3865 .form-wrap p, 4112 3866 .form-wrap label { 4113 3867 font-size: 11px; 4114 3868 } 4115 4116 3869 .form-wrap label { 4117 display: block; 4118 padding: 2px; 4119 font-size: 12px; 3870 display: block; 3871 padding: 2px; 3872 font-size: 12px; 3873 } 3874 .form-wrap .form-field { 3875 margin: 0 0 10px; 3876 padding: 8px 0; 3877 } 3878 .form-wrap .form-field #parent { 3879 max-width: 100%; 4120 3880 } 4121 4122 3881 .form-field input, 4123 3882 .form-field textarea { 4124 4125 4126 3883 border-style: solid; 3884 border-width: 1px; 3885 width: 95%; 4127 3886 } 4128 4129 3887 p.description, 4130 3888 .form-wrap p { 4131 3889 margin: 2px 0 5px; 4132 3890 } 4133 4134 3891 p.help, 4135 3892 p.description, 4136 3893 span.description, 4137 3894 .form-wrap p { 4138 font-size: 12px; 4139 font-style: italic; 4140 font-family: sans-serif; 4141 } 4142 4143 .form-wrap .form-field { 4144 margin: 0 0 10px; 4145 padding: 8px 0; 4146 } 4147 4148 .form-wrap .form-field #parent { 4149 max-width: 100%; 3895 font-size: 12px; 3896 font-style: italic; 3897 font-family: sans-serif; 4150 3898 } 4151 4152 3899 .col-wrap h3 { 4153 4154 3900 margin: 12px 0; 3901 font-size: 1.1em; 4155 3902 } 4156 4157 3903 .col-wrap p.submit { 4158 3904 margin-top: -10px; 4159 3905 } 4160 4161 4162 3906 /*------------------------------------------------------------------------------ 4163 3907 13.0 - Tags 4164 3908 ------------------------------------------------------------------------------*/ 4165 4166 3909 #poststuff .taghint { 4167 color: #aaa; 4168 margin: 15px 0 -24px 12px; 4169 } 4170 4171 #poststuff .tagsdiv .howto { 4172 margin: 0 0 6px 8px; 3910 color: #aaa; 3911 margin: 15px 0 -24px 12px; 4173 3912 } 4174 4175 3913 .ajaxtag .newtag { 4176 3914 position: relative; 4177 3915 } 4178 4179 3916 .tagsdiv .newtag { 4180 3917 width: 180px; 4181 3918 } 4182 4183 3919 .tagsdiv .the-tags { 4184 4185 4186 4187 4188 3920 display: block; 3921 height: 60px; 3922 margin: 0 auto; 3923 overflow: auto; 3924 width: 260px; 4189 3925 } 4190 4191 3926 #post-body-content .tagsdiv .the-tags { 4192 margin: 0 5px; 3927 margin: 0 5px; 3928 } 3929 #poststuff .tagsdiv .howto { 3930 margin: 0 0 6px 8px; 4193 3931 } 4194 4195 3932 p.popular-tags { 4196 -webkit-border-radius: 8px; 4197 border-radius: 8px; 4198 border-width: 1px; 4199 border-style: solid; 4200 line-height: 2em; 4201 max-width: 1000px; 4202 padding: 8px 12px 12px; 4203 text-align: justify; 3933 border-radius: 8px; 3934 -moz-border-radius: 8px; 3935 -webkit-border-radius: 8px; 3936 border-width: 1px; 3937 border-style: solid; 3938 line-height: 2em; 3939 max-width: 1000px; 3940 padding: 8px 12px 12px; 3941 text-align: justify; 4204 3942 } 4205 4206 3943 p.popular-tags a { 4207 3944 padding: 0 3px; 4208 3945 } 4209 4210 3946 .tagcloud { 4211 4212 4213 3947 width: 97%; 3948 margin: 0 0 40px; 3949 text-align: justify; 4214 3950 } 4215 4216 3951 .tagcloud h3 { 4217 3952 margin: 2px 0 12px; 4218 3953 } 4219 4220 3954 .ac_results { 4221 4222 4223 4224 4225 4226 4227 4228 3955 padding: 0; 3956 margin: 0; 3957 list-style: none; 3958 position: absolute; 3959 z-index: 10000; 3960 display: none; 3961 border-width: 1px; 3962 border-style: solid; 4229 3963 } 4230 4231 3964 .ac_results li { 4232 4233 4234 3965 padding: 2px 5px; 3966 white-space: nowrap; 3967 text-align: left; 4235 3968 } 4236 4237 3969 .ac_over { 4238 3970 cursor: pointer; 4239 3971 } 4240 4241 3972 .ac_match { 4242 3973 text-decoration: underline; 4243 3974 } 4244 4245 3975 /* links tables */ 4246 3976 table.links-table { 4247 3977 width: 100%; 4248 3978 } 4249 4250 3979 .links-table th { 4251 4252 4253 4254 4255 4256 3980 font-weight: normal; 3981 text-align: left; 3982 vertical-align: top; 3983 min-width: 80px; 3984 width: 20%; 3985 word-wrap: break-word; 4257 3986 } 4258 4259 3987 .links-table th, 4260 3988 .links-table td { 4261 3989 padding: 5px 0; 4262 3990 } 4263 4264 3991 .links-table td label { 4265 3992 margin-right: 8px; 4266 3993 } 4267 4268 3994 .links-table td input[type="text"], 4269 3995 .links-table td textarea { 4270 3996 width: 100%; 4271 3997 } 4272 4273 3998 .links-table #link_rel { 4274 3999 max-width: 280px; 4275 4000 } 4276 4277 4001 /*------------------------------------------------------------------------------ 4278 4002 14.0 - Media Screen 4279 4003 ------------------------------------------------------------------------------*/ 4280 4281 4004 .media-item .describe { 4282 4283 4284 4285 4286 4287 4005 border-collapse: collapse; 4006 width: 100%; 4007 border-top-style: solid; 4008 border-top-width: 1px; 4009 clear: both; 4010 cursor: default; 4288 4011 } 4289 4290 .media-item.media-blank .describe { 4291 border: 0;4012 .media-item .describe td { 4013 padding: 0 8px 8px 0; 4014 vertical-align: top; 4292 4015 } 4293 4294 4016 .media-item .describe th { 4295 4296 4297 4298 4017 vertical-align: top; 4018 text-align: left; 4019 padding: 5px 10px 10px; 4020 width: 140px; 4299 4021 } 4300 4301 .media-item .describe .align th { 4302 padding-top: 0; 4022 .align .media-item .describe th { 4023 padding-top: 0; 4303 4024 } 4304 4305 .media-item . media-item-info tr{4306 background-color: transparent;4025 .media-item .describe input[type="text"], 4026 .media-item .describe textarea { 4027 width: 460px; 4307 4028 } 4308 4309 .media-item .describe td { 4310 padding: 0 8px 8px 0; 4311 vertical-align: top; 4029 .media-item .describe p.help { 4030 margin: 0; 4031 padding: 0 0 0 5px; 4032 } 4033 .media-item.media-blank .describe { 4034 border: 0; 4035 } 4036 .media-item .media-item-info tr { 4037 background-color: transparent; 4312 4038 } 4313 4314 4039 .media-item thead.media-item-info td { 4315 4040 padding: 4px 10px 0; 4316 4041 } 4317 4318 4042 .media-item .media-item-info .A1B1 { 4319 4043 padding: 0 0 0 10px; 4320 4044 } 4321 4322 4045 .media-item td.savesend { 4323 4046 padding-bottom: 15px; 4324 4047 } 4325 4326 4048 .media-item .thumbnail { 4327 max-height: 128px; 4328 max-width: 128px; 4049 max-height: 128px; 4050 max-width: 128px; 4051 } 4052 .media-item .filename { 4053 line-height: 36px; 4054 overflow: hidden; 4055 padding: 0 10px; 4056 } 4057 .media-item .error-div { 4058 padding-left: 10px; 4059 } 4060 .media-item .pinkynail { 4061 float: left; 4062 margin: 2px 2px 0; 4063 max-width: 40px; 4064 max-height: 32px; 4065 } 4066 .media-item .startopen, 4067 .media-item .startclosed { 4068 display: none; 4069 } 4070 .media-item .original { 4071 position: relative; 4072 height: 34px; 4073 } 4074 .media-item .progress { 4075 float: right; 4076 height: 22px; 4077 margin: 6px 10px 0 0; 4078 width: 200px; 4079 line-height: 2em; 4080 padding: 0; 4081 overflow: hidden; 4082 margin-bottom: 2px; 4083 border: 1px solid #d1d1d1; 4084 background: #f7f7f7; 4085 background-image: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(#f7f7f7)); 4086 background-image: -webkit-linear-gradient(bottom, #ffffff, #f7f7f7); 4087 background-image: -moz-linear-gradient(bottom, #ffffff, #f7f7f7); 4088 background-image: -o-linear-gradient(bottom, #ffffff, #f7f7f7); 4089 background-image: linear-gradient(to top, #ffffff, #f7f7f7); 4090 border-radius: 3px; 4091 -moz-border-radius: 3px; 4092 -webkit-border-radius: 3px; 4093 -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1); 4094 -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1); 4095 box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1); 4096 } 4097 .media-item .bar { 4098 z-index: 9; 4099 width: 0; 4100 height: 100%; 4101 margin-top: -24px; 4102 background: #8cc1e9; 4103 background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9)); 4104 background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9); 4105 background-image: -moz-linear-gradient(bottom, #72a7cf, #8cc1e9); 4106 background-image: -o-linear-gradient(bottom, #72a7cf, #8cc1e9); 4107 background-image: linear-gradient(to top, #72a7cf, #8cc1e9); 4108 border-radius: 3px; 4109 -moz-border-radius: 3px; 4110 -webkit-border-radius: 3px; 4111 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3); 4112 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3); 4113 box-shadow: 0 0 3px rgba(0, 0, 0, 0.3); 4114 } 4115 .media-item .progress .percent { 4116 z-index: 10; 4117 position: relative; 4118 width: 200px; 4119 padding: 0 8px; 4120 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); 4121 color: rgba(0, 0, 0, 0.6); 4329 4122 } 4330 4331 4123 #wpbody-content #async-upload-wrap a { 4332 4124 display: none; 4333 4125 } 4334 4335 4126 .media-upload-form { 4336 4127 margin-top: 20px; 4337 4128 } 4338 4339 4129 .media-upload-form td label { 4340 4341 4130 margin-right: 6px; 4131 margin-left: 2px; 4342 4132 } 4343 4344 4133 .media-upload-form .align .field label { 4345 4346 4347 4348 4134 display: inline; 4135 padding: 0 0 0 23px; 4136 margin: 0 1em 0 3px; 4137 font-weight: bold; 4349 4138 } 4350 4351 4139 .media-upload-form tr.image-size label { 4352 4353 4140 margin: 0 0 0 5px; 4141 font-weight: bold; 4354 4142 } 4355 4356 4143 .media-upload-form th.label label { 4357 font-weight: bold; 4358 margin: 0.5em; 4359 font-size: 13px; 4144 font-size: 13px; 4145 font-weight: bold; 4146 line-height: normal; 4147 margin: 0.5em; 4360 4148 } 4361 4362 4149 .media-upload-form th.label label span { 4363 4150 padding: 0 5px; 4364 4151 } 4365 4366 4152 abbr.required { 4367 border: medium none; 4368 text-decoration: none; 4369 } 4370 4371 .media-item .describe input[type="text"], 4372 .media-item .describe textarea { 4373 width: 460px; 4374 } 4375 4376 .media-item .describe p.help { 4377 margin: 0; 4378 padding: 0 0 0 5px; 4153 border: medium none; 4154 text-decoration: none; 4379 4155 } 4380 4381 4156 .media-item .edit-attachment, 4382 4157 .describe-toggle-on, 4383 4158 .describe-toggle-off { 4384 4385 4386 4387 4159 display: block; 4160 line-height: 36px; 4161 float: right; 4162 margin-right: 15px; 4388 4163 } 4389 4390 4164 .media-item .describe-toggle-off, 4391 4165 .media-item.open .describe-toggle-on { 4392 4166 display: none; 4393 4167 } 4394 4395 4168 .media-item.open .describe-toggle-off { 4396 4169 display: block; 4397 4170 } 4398 4399 4171 #media-items .media-item { 4400 4401 4402 4403 4404 4405 4172 border-style: solid; 4173 border-width: 1px; 4174 min-height: 36px; 4175 position: relative; 4176 margin-top: -1px; 4177 width: 100%; 4406 4178 } 4407 4408 4179 #media-items { 4409 4180 width: 623px; 4410 4181 } 4411 4412 4182 .media-new-php #media-items { 4413 4183 margin: 1em 0; 4414 4184 } 4415 4416 4185 #media-items:empty { 4417 border: 0 none; 4418 } 4419 4420 .media-item .filename { 4421 line-height: 36px; 4422 overflow: hidden; 4423 padding: 0 10px; 4424 } 4425 4426 .media-item .error-div { 4427 padding-left: 10px; 4428 } 4429 4430 .media-item .pinkynail { 4431 float: left; 4432 margin: 2px 2px 0; 4433 max-width: 40px; 4434 max-height: 32px; 4435 } 4436 4437 .media-item .startopen, 4438 .media-item .startclosed { 4439 display: none; 4440 } 4441 4442 .media-item .original { 4443 position: relative; 4444 height: 34px; 4445 } 4446 4447 .media-item .progress { 4448 float: right; 4449 height: 22px; 4450 margin: 6px 10px 0 0; 4451 width: 200px; 4452 line-height: 2em; 4453 padding: 0; 4454 overflow: hidden; 4455 margin-bottom: 2px; 4456 border: 1px solid #d1d1d1; 4457 background: #f7f7f7; 4458 background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f7f7f7)); 4459 background-image: -webkit-linear-gradient(bottom, #fff, #f7f7f7); 4460 background-image: -moz-linear-gradient(bottom, #fff, #f7f7f7); 4461 background-image: -o-linear-gradient(bottom, #fff, #f7f7f7); 4462 background-image: linear-gradient(to top, #fff, #f7f7f7); 4463 -webkit-border-radius: 3px; 4464 border-radius: 3px; 4465 -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.1); 4466 box-shadow: inset 0 0 3px rgba(0,0,0,0.1); 4467 } 4468 4469 .media-item .bar { 4470 z-index: 9; 4471 width: 0; 4472 height: 100%; 4473 margin-top: -24px; 4474 background-color: #8cc1e9; 4475 background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9)); 4476 background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9); 4477 background-image: -moz-linear-gradient(bottom, #72a7cf, #8cc1e9); 4478 background-image: -o-linear-gradient(bottom, #72a7cf, #8cc1e9); 4479 background-image: linear-gradient(to top, #72a7cf, #8cc1e9); 4480 -webkit-border-radius: 3px; 4481 border-radius: 3px; 4482 -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3); 4483 box-shadow: 0 0 3px rgba(0,0,0,0.3); 4484 } 4485 4486 .media-item .progress .percent { 4487 z-index: 10; 4488 position: relative; 4489 width: 200px; 4490 padding: 0 8px; 4491 text-shadow: 0 1px 0 rgba(255,255,255,0.4); 4492 color: rgba(0,0,0,0.6); 4186 border: 0 none; 4493 4187 } 4494 4495 4188 .upload-php .fixed .column-parent { 4496 4189 width: 15%; 4497 4190 } 4498 4499 4191 .js .html-uploader #plupload-upload-ui { 4500 4192 display: none; 4501 4193 } 4502 4503 4194 .js .html-uploader #html-upload-ui { 4504 4195 display: block; 4505 4196 } 4506 4507 4197 .media-upload-form .media-item.error { 4508 4509 4198 margin: 0; 4199 padding: 0; 4510 4200 } 4511 4512 4201 .media-upload-form .media-item.error p, 4513 4202 .media-item .error-div { 4514 4515 4516 4203 line-height: 16px; 4204 margin: 5px 10px; 4205 padding: 0; 4517 4206 } 4518 4519 4207 .media-item .error-div a.dismiss { 4520 4521 4522 4208 display: block; 4209 float: right; 4210 margin: 5px 4px 0 15px; 4523 4211 } 4524 4525 4212 /*------------------------------------------------------------------------------ 4526 4213 14.1 - Media Library 4527 4214 ------------------------------------------------------------------------------*/ 4528 4529 4215 .find-box { 4530 4531 4532 4533 4534 4535 4216 width: 600px; 4217 height: 300px; 4218 overflow: hidden; 4219 padding: 33px 0 51px; 4220 position: absolute; 4221 z-index: 1000; 4536 4222 } 4537 4538 4223 .find-box-head { 4539 4540 4541 4542 4543 4544 4545 4546 4224 cursor: move; 4225 font-weight: bold; 4226 height: 2em; 4227 line-height: 2em; 4228 padding: 1px 12px; 4229 position: absolute; 4230 top: 5px; 4231 width: 100%; 4547 4232 } 4548 4549 4233 .find-box-inside { 4550 4551 4552 4234 overflow: auto; 4235 padding: 6px; 4236 height: 100%; 4553 4237 } 4554 4555 4238 .find-box-search { 4556 4557 4558 4239 overflow: hidden; 4240 padding: 9px; 4241 position: relative; 4559 4242 } 4560 4561 4243 .find-box-search .spinner { 4562 4563 4564 4565 4244 float: none; 4245 left: 125px; 4246 position: absolute; 4247 top: 9px; 4566 4248 } 4567 4568 4249 #find-posts-input { 4569 4570 4571 4250 float: left; 4251 width: 140px; 4252 height: 24px; 4572 4253 } 4573 4574 4254 #find-posts-search { 4575 4576 4255 float: left; 4256 margin: 1px 4px 0 3px; 4577 4257 } 4578 4579 4258 #find-posts-response { 4580 4581 4259 margin: 8px 0; 4260 padding: 0 1px 6px; 4582 4261 } 4583 4584 4262 #find-posts-response table { 4585 4263 width: 100%; 4586 4264 } 4587 4588 4265 #find-posts-response .found-radio { 4589 4590 4266 padding: 3px 0 0 8px; 4267 width: 15px; 4591 4268 } 4592 4593 4269 .find-box-buttons { 4594 4595 4270 padding: 8px; 4271 overflow: hidden; 4596 4272 } 4597 4598 4273 .find-box #resize-se { 4599 4600 4601 4274 position: absolute; 4275 right: 1px; 4276 bottom: 1px; 4602 4277 } 4603 4604 4278 .ui-find-overlay { 4605 4606 4607 4608 background-color: #000;4609 4610 4279 position: absolute; 4280 top: 0; 4281 left: 0; 4282 background-color: black; 4283 opacity: 0.6; 4284 filter: alpha(opacity=60); 4611 4285 } 4612 4613 4286 ul#dismissed-updates { 4614 4287 display: none; 4615 4288 } 4616 4617 4289 form.upgrade { 4618 4290 margin-top: 8px; 4619 4291 } 4620 4621 4292 form.upgrade .hint { 4622 4623 4624 4293 font-style: italic; 4294 font-size: 85%; 4295 margin: -0.5em 0 2em 0; 4625 4296 } 4626 4627 4297 #poststuff .inside .the-tagcloud { 4628 margin: 5px 0 10px; 4629 padding: 8px; 4630 border-width: 1px; 4631 border-style: solid; 4632 line-height: 1.8em; 4633 word-spacing: 3px; 4634 -webkit-border-radius: 6px; 4635 border-radius: 6px; 4298 margin: 5px 0 10px; 4299 padding: 8px; 4300 border-width: 1px; 4301 border-style: solid; 4302 line-height: 1.8em; 4303 word-spacing: 3px; 4304 border-radius: 6px; 4305 -moz-border-radius: 6px; 4306 -webkit-border-radius: 6px; 4636 4307 } 4637 4638 4308 .drag-drop #drag-drop-area { 4639 4640 4309 border: 4px dashed #DDDDDD; 4310 height: 200px; 4641 4311 } 4642 4643 4312 .drag-drop .drag-drop-inside { 4644 4645 4313 margin: 70px auto 0; 4314 width: 250px; 4646 4315 } 4647 4648 4316 .drag-drop-inside p { 4649 4650 4651 4652 4317 color: #aaa; 4318 font-size: 14px; 4319 margin: 5px 0; 4320 display: none; 4653 4321 } 4654 4655 4322 .drag-drop .drag-drop-inside p { 4656 4323 text-align: center; 4657 4324 } 4658 4659 4325 .drag-drop-inside p.drag-drop-info { 4660 4326 font-size: 20px; 4661 4327 } 4662 4663 4328 .drag-drop .drag-drop-inside p, 4664 4329 .drag-drop-inside p.drag-drop-buttons { 4665 4330 display: block; 4666 4331 } 4667 4668 4332 /* 4669 4333 #drag-drop-area:-moz-drag-over { 4670 4334 border-color: #83b4d8; 4671 4335 } 4672 4336 borger color while dragging a file over the uploader drop area */ 4673 4337 .drag-drop.drag-over #drag-drop-area { 4674 4338 border-color: #83b4d8; 4675 4339 } 4676 4677 4340 #plupload-upload-ui { 4678 4341 position: relative; 4679 4342 } 4680 4681 4682 4343 /*------------------------------------------------------------------------------ 4683 4344 14.2 - Image Editor 4684 4345 ------------------------------------------------------------------------------*/ 4685 4686 4346 .describe .image-editor { 4687 4347 vertical-align: top; 4688 4348 } 4689 4690 4349 .imgedit-wrap { 4691 4350 position: relative; 4692 4351 } 4693 4694 4352 .imgedit-settings p { 4695 4353 margin: 8px 0; 4696 4354 } 4697 4698 4355 .post-php .imgedit-wrap table { 4699 4356 width: 100%; 4700 4357 } 4701 4702 4358 .describe .imgedit-wrap table td, 4703 4359 .wp_attachment_holder .imgedit-wrap table td { 4704 4705 4360 vertical-align: top; 4361 padding-top: 0; 4706 4362 } 4707 4708 4363 .describe .imgedit-wrap table td.imgedit-settings { 4709 4364 padding: 0 5px; 4710 4365 } 4711 4712 4366 .wp_attachment_holder .imgedit-wrap table td.imgedit-settings { 4713 4367 width: 250px; 4714 4368 } 4715 4716 4369 td.imgedit-settings input { 4717 4718 4370 margin-top: 0; 4371 vertical-align: middle; 4719 4372 } 4720 4721 4373 .imgedit-wait { 4722 4723 4724 background: #fff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px;4725 4726 4727 4728 4729 4730 4374 position: absolute; 4375 top: 0; 4376 background: #ffffff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px; 4377 background-size: 16px 16px; 4378 opacity: 0.7; 4379 filter: alpha(opacity=70); 4380 width: 100%; 4381 height: 500px; 4382 display: none; 4731 4383 } 4732 4733 4384 .spinner { 4734 4735 4736 4737 4738 4739 4740 4741 4742 4385 background: url(../images/wpspin_light.gif) no-repeat; 4386 background-size: 16px 16px; 4387 display: none; 4388 float: right; 4389 opacity: 0.7; 4390 filter: alpha(opacity=70); 4391 width: 16px; 4392 height: 16px; 4393 margin: 5px 5px 0; 4743 4394 } 4744 4745 4395 .no-float { 4746 4396 float: none; 4747 4397 } 4748 4749 4398 .media-disabled, 4750 .imgedit-settings .disabled 4751 4399 .imgedit-settings .disabled { 4400 color: grey; 4752 4401 } 4753 4754 4402 .wp_attachment_image, 4755 4403 .A1B1 { 4756 4404 overflow: hidden; 4757 4405 } 4758 4759 4406 .wp_attachment_image .button, 4760 4407 .A1B1 .button { 4761 4408 float: left; 4762 4409 } 4763 4764 4410 .no-js .wp_attachment_image .button { 4765 4411 display: none; 4766 4412 } 4767 4768 4413 .wp_attachment_image .spinner, 4769 4414 .A1B1 .spinner { 4770 4771 4772 4415 float: left; 4416 padding: 0 4px 4px; 4417 vertical-align: bottom; 4773 4418 } 4774 4775 4419 .imgedit-menu { 4776 4777 4420 margin: 0 0 12px; 4421 min-width: 300px; 4778 4422 } 4779 4780 4423 .imgedit-menu div { 4781 4782 4783 4424 float: left; 4425 width: 32px; 4426 height: 32px; 4784 4427 } 4785 4786 4428 .imgedit-crop-wrap { 4787 4429 position: relative; 4788 4430 } 4789 4790 4431 .imgedit-crop { 4791 4792 4432 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -9px -31px; 4433 margin: 0 8px 0 0; 4793 4434 } 4794 4795 4435 .imgedit-crop.disabled:hover { 4796 4436 background-position: -9px -31px; 4797 4437 } 4798 4799 4438 .imgedit-crop:hover { 4800 4439 background-position: -9px -1px; 4801 4440 } 4802 4803 4441 .imgedit-rleft { 4804 4805 4442 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -46px -31px; 4443 margin: 0 3px; 4806 4444 } 4807 4808 4445 .imgedit-rleft.disabled:hover { 4809 4446 background-position: -46px -31px; 4810 4447 } 4811 4812 4448 .imgedit-rleft:hover { 4813 4449 background-position: -46px -1px; 4814 4450 } 4815 4816 4451 .imgedit-rright { 4817 4818 4452 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -77px -31px; 4453 margin: 0 8px 0 3px; 4819 4454 } 4820 4821 4455 .imgedit-rright.disabled:hover { 4822 4456 background-position: -77px -31px; 4823 4457 } 4824 4825 4458 .imgedit-rright:hover { 4826 4459 background-position: -77px -1px; 4827 4460 } 4828 4829 4461 .imgedit-flipv { 4830 4831 4462 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -115px -31px; 4463 margin: 0 3px; 4832 4464 } 4833 4834 4465 .imgedit-flipv.disabled:hover { 4835 4466 background-position: -115px -31px; 4836 4467 } 4837 4838 4468 .imgedit-flipv:hover { 4839 4469 background-position: -115px -1px; 4840 4470 } 4841 4842 4471 .imgedit-fliph { 4843 4844 4472 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -147px -31px; 4473 margin: 0 8px 0 3px; 4845 4474 } 4846 4847 4475 .imgedit-fliph.disabled:hover { 4848 4476 background-position: -147px -31px; 4849 4477 } 4850 4851 4478 .imgedit-fliph:hover { 4852 4479 background-position: -147px -1px; 4853 4480 } 4854 4855 4481 .imgedit-undo { 4856 4857 4482 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -184px -31px; 4483 margin: 0 3px; 4858 4484 } 4859 4860 4485 .imgedit-undo.disabled:hover { 4861 4486 background-position: -184px -31px; 4862 4487 } 4863 4864 4488 .imgedit-undo:hover { 4865 4489 background-position: -184px -1px; 4866 4490 } 4867 4868 4491 .imgedit-redo { 4869 4870 4492 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -215px -31px; 4493 margin: 0 8px 0 3px; 4871 4494 } 4872 4873 4495 .imgedit-redo.disabled:hover { 4874 4496 background-position: -215px -31px; 4875 4497 } 4876 4877 4498 .imgedit-redo:hover { 4878 4499 background-position: -215px -1px; 4879 4500 } 4880 4881 4501 .imgedit-applyto img { 4882 4502 margin: 0 8px 0 0; 4883 4503 } 4884 4885 4504 .imgedit-group-top { 4886 4505 margin: 5px 0; 4887 4506 } 4888 4889 4507 .imgedit-applyto .imgedit-label { 4890 4891 4508 padding: 2px 0 0; 4509 display: block; 4892 4510 } 4893 4894 4511 .imgedit-help { 4895 4896 4897 4512 display: none; 4513 font-style: italic; 4514 margin-bottom: 8px; 4898 4515 } 4899 4900 4516 a.imgedit-help-toggle { 4901 4517 text-decoration: none; 4902 4518 } 4903 4904 4519 .form-table td.imgedit-response { 4905 4520 padding: 0; 4906 4521 } 4907 4908 4522 .imgedit-submit { 4909 4523 margin: 8px 0; 4910 4524 } 4911 4912 4525 .imgedit-submit-btn { 4913 4526 margin-left: 20px; 4914 4527 } 4915 4916 4528 .imgedit-wrap .nowrap { 4917 4529 white-space: nowrap; 4918 4530 } 4919 4920 4531 span.imgedit-scale-warn { 4921 4922 4923 4924 4925 4532 color: red; 4533 font-size: 20px; 4534 font-style: normal; 4535 visibility: hidden; 4536 vertical-align: middle; 4926 4537 } 4927 4928 4538 .imgedit-group { 4929 border-width: 1px; 4930 border-style: solid; 4931 -webkit-border-radius: 3px; 4932 border-radius: 3px; 4933 margin-bottom: 8px; 4934 padding: 2px 10px; 4539 border-width: 1px; 4540 border-style: solid; 4541 border-radius: 3px; 4542 -moz-border-radius: 3px; 4543 -webkit-border-radius: 3px; 4544 margin-bottom: 8px; 4545 padding: 2px 10px; 4935 4546 } 4936 4937 4547 /*------------------------------------------------------------------------------ 4938 4548 15.0 - Comments Screen 4939 4549 ------------------------------------------------------------------------------*/ 4940 4941 4550 .form-table { 4942 4943 4944 4945 4946 4551 border-collapse: collapse; 4552 margin-top: 0.5em; 4553 width: 100%; 4554 margin-bottom: -8px; 4555 clear: both; 4947 4556 } 4948 4949 4557 .form-table td { 4950 4951 4952 4953 4558 margin-bottom: 9px; 4559 padding: 8px 10px; 4560 line-height: 20px; 4561 font-size: 12px; 4954 4562 } 4955 4956 .form-table th, 4957 .form-wrap label { 4958 font-weight: normal; 4959 text-shadow: #fff 0 1px 0; 4563 .form-table td p { 4564 margin-top: 4px; 4565 } 4566 .color-palette .form-table td { 4567 border-width: 1px 1px 0; 4568 border-style: solid solid none; 4569 height: 10px; 4570 line-height: 20px; 4571 width: 10px; 4960 4572 } 4961 4962 4573 .form-table th { 4963 4964 4965 4966 4574 vertical-align: top; 4575 text-align: left; 4576 padding: 10px; 4577 width: 200px; 4967 4578 } 4968 4969 4579 .form-table th.th-full { 4970 4580 width: auto; 4971 4581 } 4972 4973 4582 .form-table div.color-option { 4974 4975 4976 4583 display: block; 4584 clear: both; 4585 margin-top: 12px; 4977 4586 } 4978 4979 4587 .form-table input.tog { 4980 4981 4982 4588 margin-top: 2px; 4589 margin-right: 2px; 4590 float: left; 4983 4591 } 4984 4985 .form-table td p {4986 margin-top: 4px;4987 }4988 4989 4592 .form-table table.color-palette { 4990 4991 4992 4593 vertical-align: bottom; 4594 float: left; 4595 margin: -12px 3px 11px; 4993 4596 } 4994 4995 .form-table .color-palette td { 4996 border-width: 1px 1px 0; 4997 border-style: solid solid none; 4998 height: 10px; 4999 line-height: 20px; 5000 width: 10px; 4597 .form-table th, 4598 .form-wrap label { 4599 font-weight: normal; 4600 text-shadow: #fff 0 1px 0; 5001 4601 } 5002 5003 4602 .commentlist li { 5004 5005 5006 5007 4603 padding: 1em 1em .2em; 4604 margin: 0; 4605 border-bottom-width: 1px; 4606 border-bottom-style: solid; 5008 4607 } 5009 5010 4608 .commentlist li li { 5011 5012 4609 border-bottom: 0; 4610 padding: 0; 5013 4611 } 5014 5015 4612 .commentlist p { 5016 padding: 0; 5017 margin: 0 0 .8em; 4613 padding: 0; 4614 margin: 0 0 .8em; 4615 } 4616 .commentlist .avatar { 4617 vertical-align: text-top; 5018 4618 } 5019 5020 4619 /* reply to comments */ 5021 4620 #replyrow input { 5022 5023 4621 border-width: 1px; 4622 border-style: solid; 5024 4623 } 5025 5026 4624 #replyrow td { 5027 padding: 2px; 4625 padding: 2px; 4626 } 4627 #replyrow h5 { 4628 margin: .2em 0 0; 4629 padding: 0 5px; 4630 line-height: 1.4em; 4631 font-size: 1em; 5028 4632 } 5029 5030 4633 #replysubmit { 5031 5032 5033 4634 margin: 0; 4635 padding: 0 5px 3px; 4636 text-align: center; 5034 4637 } 5035 5036 4638 #replysubmit .spinner { 5037 5038 5039 4639 padding: 2px 0 0; 4640 vertical-align: top; 4641 float: right; 5040 4642 } 5041 5042 4643 #replysubmit .button { 5043 4644 margin-right: 5px; 5044 4645 } 5045 5046 4646 #replysubmit .error { 5047 5048 5049 4647 color: red; 4648 line-height: 21px; 4649 text-align: center; 5050 4650 } 5051 5052 #replyrow h5 {5053 margin: .2em 0 0;5054 padding: 0 5px;5055 line-height: 1.4em;5056 font-size: 1em;5057 }5058 5059 4651 #edithead .inside { 5060 5061 5062 5063 4652 float: left; 4653 padding: 3px 0 2px 5px; 4654 margin: 0; 4655 text-align: center; 5064 4656 } 5065 5066 4657 #edithead .inside input { 5067 4658 width: 180px; 5068 4659 } 5069 5070 4660 #edithead label { 5071 4661 padding: 2px 0; 5072 4662 } 5073 5074 4663 #replycontainer { 5075 4664 padding: 5px; 5076 4665 } 5077 5078 4666 #replycontent { 5079 height: 120px; 5080 -webkit-box-shadow: none; 5081 box-shadow: none; 4667 height: 120px; 4668 -moz-box-shadow: none; 4669 -webkit-box-shadow: none; 4670 box-shadow: none; 5082 4671 } 5083 5084 4672 .comment-php .wp-editor-area { 5085 4673 height: 200px; 5086 4674 } 5087 5088 4675 .comment-ays { 5089 5090 5091 4676 margin-bottom: 0; 4677 border-style: solid; 4678 border-width: 1px; 5092 4679 } 5093 5094 4680 .comment-ays th { 5095 5096 4681 border-right-style: solid; 4682 border-right-width: 1px; 5097 4683 } 5098 5099 4684 .trash-undo-inside, 5100 4685 .spam-undo-inside { 5101 5102 4686 margin: 1px 8px 1px 0; 4687 line-height: 16px; 5103 4688 } 5104 5105 .spam-undo-inside .avatar, 5106 .trash-undo-inside .avatar { 5107 height: 20px; 5108 width: 20px; 5109 margin-right: 8px; 5110 vertical-align: middle; 4689 .trash-undo-inside .avatar, 4690 .spam-undo-inside .avatar { 4691 height: 20px; 4692 width: 20px; 4693 margin-right: 8px; 4694 vertical-align: middle; 5111 4695 } 5112 5113 4696 .stuffbox .editcomment { 5114 4697 clear: none; 5115 4698 } 5116 5117 4699 #comment-status-radio p { 5118 4700 margin: 3px 0 5px; 5119 4701 } 5120 5121 4702 #comment-status-radio input { 5122 5123 4703 margin: 2px 3px 5px 0; 4704 vertical-align: middle; 5124 4705 } 5125 5126 4706 #comment-status-radio label { 5127 padding: 5px 0; 5128 } 5129 5130 .commentlist .avatar { 5131 vertical-align: text-top; 4707 padding: 5px 0; 5132 4708 } 5133 5134 5135 4709 /*------------------------------------------------------------------------------ 5136 4710 16.0 - Themes 5137 4711 ------------------------------------------------------------------------------*/ 5138 5139 4712 .theme-install-php .tablenav { 5140 4713 height: auto; 5141 4714 } 5142 5143 4715 .theme-install-php .spinner { 5144 4716 margin-top: 9px; 5145 4717 } 5146 5147 4718 h3.available-themes { 5148 5149 4719 margin: 0.3em 0 1em; 4720 float: left; 5150 4721 } 5151 5152 4722 .available-theme { 5153 5154 5155 5156 5157 5158 4723 display: inline-block; 4724 margin-right: 10px; 4725 overflow: hidden; 4726 padding: 20px 20px 20px 0; 4727 vertical-align: top; 4728 width: 300px; 5159 4729 } 5160 5161 4730 .available-theme .screenshot { 5162 5163 5164 5165 5166 5167 5168 4731 width: 300px; 4732 height: 225px; 4733 display: block; 4734 border-width: 1px; 4735 border-style: solid; 4736 margin-bottom: 10px; 4737 overflow: hidden; 5169 4738 } 5170 5171 4739 .available-theme img { 5172 4740 width: 300px; 5173 4741 } 5174 5175 4742 .available-theme h3 { 5176 4743 margin: 15px 0 0; 5177 4744 } 5178 5179 4745 .available-theme .theme-author { 5180 4746 line-height: 18px; 5181 4747 } 5182 5183 4748 .available-theme .action-links { 5184 5185 4749 margin-top: 10px; 4750 overflow: hidden; 5186 4751 } 5187 5188 4752 .available-theme a.screenshot:focus { 5189 4753 border-color: #777; 5190 4754 } 5191 5192 4755 #current-theme .theme-info li, 5193 4756 .theme-options li, 5194 4757 .available-theme .action-links li { 5195 float: left; 5196 padding-right: 10px; 5197 margin-right: 10px; 5198 border-right: 1px solid #dfdfdf; 5199 } 5200 5201 .available-theme .action-links li { 5202 padding-right: 8px; 5203 margin-right: 8px; 4758 float: left; 4759 padding-right: 10px; 4760 margin-right: 10px; 4761 border-right: 1px solid #dfdfdf; 5204 4762 } 5205 5206 .ie8 .available-theme .action-links li {5207 padding-right: 7px;5208 margin-right: 7px;5209 }5210 5211 4763 #current-theme .theme-info li:last-child, 5212 4764 .theme-options li:last-child, 5213 4765 .available-theme .action-links li:last-child { 5214 padding-right: 0; 5215 margin-right: 0; 5216 border-right: 0; 4766 padding-right: 0; 4767 margin-right: 0; 4768 border-right: 0; 4769 } 4770 .available-theme .action-links li { 4771 padding-right: 8px; 4772 margin-right: 8px; 4773 } 4774 .ie8 .available-theme .action-links li { 4775 padding-right: 7px; 4776 margin-right: 7px; 5217 4777 } 5218 5219 4778 .available-theme .action-links .delete-theme { 5220 5221 5222 4779 float: right; 4780 margin-left: 8px; 4781 margin-right: 0; 5223 4782 } 5224 5225 4783 .available-theme .action-links .delete-theme a { 5226 5227 4784 color: red; 4785 padding: 2px; 5228 4786 } 5229 5230 4787 .available-theme .action-links .delete-theme a:hover { 5231 5232 color: #fff;5233 4788 background: red; 4789 color: white; 4790 text-decoration: none; 5234 4791 } 5235 5236 4792 .available-theme .action-links p { 5237 4793 float: left; 5238 4794 } 5239 5240 4795 #current-theme { 5241 5242 5243 5244 5245 4796 margin: 20px 0 10px; 4797 padding: 0 0 20px; 4798 border-bottom-width: 1px; 4799 border-bottom-style: solid; 4800 overflow: hidden; 5246 4801 } 5247 5248 4802 #current-theme.has-screenshot { 5249 4803 padding-left: 330px; 5250 4804 } 5251 5252 4805 #current-theme h3 { 5253 5254 5255 5256 4806 margin: 0; 4807 font-size: 12px; 4808 font-weight: normal; 4809 color: #999; 5257 4810 } 5258 5259 4811 #current-theme h4 { 5260 5261 4812 margin: 3px 0 16px; 4813 font-size: 20px; 5262 4814 } 5263 5264 4815 #current-theme h4 span { 5265 5266 5267 4816 margin-left: 20px; 4817 font-size: 12px; 4818 font-weight: normal; 5268 4819 } 5269 5270 4820 #current-theme a { 5271 4821 border-bottom: none; 5272 4822 } 5273 5274 4823 #current-theme .theme-info { 5275 5276 4824 margin: 1em 0; 4825 overflow: hidden; 5277 4826 } 5278 5279 4827 #current-theme .theme-description { 5280 5281 5282 4828 margin-top: 5px; 4829 max-width: 600px; 4830 line-height: 1.6em; 5283 4831 } 5284 5285 4832 #current-theme img { 5286 float: left; 5287 width: 300px; 5288 margin-left: -330px; 5289 5290 border-width: 1px; 5291 border-style: solid; 4833 float: left; 4834 width: 300px; 4835 margin-left: -330px; 4836 border-width: 1px; 4837 border-style: solid; 5292 4838 } 5293 5294 4839 .theme-options { 5295 5296 5297 4840 overflow: hidden; 4841 font-size: 14px; 4842 padding-bottom: 10px; 5298 4843 } 5299 5300 4844 .theme-options .load-customize { 5301 5302 4845 margin-right: 30px; 4846 float: left; 5303 4847 } 5304 5305 4848 .theme-options span { 5306 5307 5308 5309 5310 5311 4849 float: left; 4850 margin-right: 10px; 4851 text-transform: uppercase; 4852 font-size: 11px; 4853 line-height: 18px; 4854 color: #999; 5312 4855 } 5313 5314 4856 .theme-options ul { 5315 5316 4857 float: left; 4858 margin: 0; 5317 4859 } 5318 5319 4860 /* Allow for three-up in small windows when sidebar is collapsed */ 5320 4861 @media only screen and (max-width: 1200px) { 5321 .folded .available-theme, 5322 .folded .available-theme .screenshot { 5323 width: 300px; 5324 } 5325 5326 .folded .available-theme .screenshot { 5327 height: 225px; 5328 } 5329 5330 .folded #current-theme img { 5331 width: 300px; 5332 } 5333 5334 .folded #current-theme.has-screenshot { 5335 padding-left: 330px; 5336 } 5337 5338 .folded #current-theme img { 5339 margin-left: -330px; 5340 } 4862 .folded .available-theme, 4863 .folded .available-theme .screenshot { 4864 width: 300px; 4865 } 4866 .folded .available-theme .screenshot { 4867 height: 225px; 4868 } 4869 .folded #current-theme img { 4870 width: 300px; 4871 margin-left: -330px; 4872 } 4873 .folded #current-theme.has-screenshot { 4874 padding-left: 330px; 4875 } 5341 4876 } 5342 5343 4877 /* Adjust three-up display in smaller windows when sidebar is collapsed */ 5344 4878 @media only screen and (max-width: 1079px) { 5345 .folded .available-theme, 5346 .folded .available-theme .screenshot { 5347 width: 270px; 5348 } 5349 5350 .folded .available-theme .screenshot { 5351 height: 203px; 5352 } 5353 5354 .folded #current-theme img { 5355 width: 270px; 5356 } 5357 5358 .folded #current-theme.has-screenshot { 5359 padding-left: 300px; 5360 } 5361 5362 .folded #current-theme img { 5363 margin-left: -300px; 5364 } 4879 .folded .available-theme, 4880 .folded .available-theme .screenshot { 4881 width: 270px; 4882 } 4883 .folded .available-theme .screenshot { 4884 height: 203px; 4885 } 4886 .folded #current-theme img { 4887 width: 270px; 4888 margin-left: -300px; 4889 } 4890 .folded #current-theme.has-screenshot { 4891 padding-left: 300px; 4892 } 5365 4893 } 5366 5367 4894 /* Allow for three-up on 1024px wide screens, e.g. tablets */ 5368 4895 @media only screen and (max-width: 1200px) { 5369 .available-theme, 5370 .available-theme .screenshot, 5371 #current-theme img { 5372 width: 240px; 5373 } 5374 5375 .available-theme .screenshot { 5376 height: 180px; 5377 } 5378 5379 .available-theme img { 5380 width: 100%; 5381 } 5382 5383 #current-theme.has-screenshot { 5384 padding-left: 270px; 5385 } 5386 5387 #current-theme img { 5388 margin-left: -270px; 5389 } 4896 .available-theme, 4897 .available-theme .screenshot, 4898 #current-theme img { 4899 width: 240px; 4900 } 4901 .available-theme .screenshot { 4902 height: 180px; 4903 } 4904 .available-theme img { 4905 width: 100%; 4906 } 4907 #current-theme.has-screenshot { 4908 padding-left: 270px; 4909 } 4910 #current-theme img { 4911 margin-left: -270px; 4912 } 5390 4913 } 5391 5392 4914 #post-body ul.add-menu-item-tabs li.tabs a, 5393 4915 #TB_window #TB_title a.tb-theme-preview-link, 5394 4916 #TB_window #TB_title a.tb-theme-preview-link:visited { 5395 5396 4917 font-weight: bold; 4918 text-decoration: none; 5397 4919 } 5398 5399 4920 #TB_window #TB_title { 5400 5401 4921 background-color: #222; 4922 color: #cfcfcf; 5402 4923 } 5403 5404 4924 #broken-themes { 5405 5406 5407 5408 4925 text-align: left; 4926 width: 50%; 4927 border-spacing: 3px; 4928 padding: 3px; 5409 4929 } 5410 5411 4930 .theme-install-php h4 { 5412 4931 margin: 2.5em 0 8px; 5413 4932 } 5414 5415 5416 4933 /*------------------------------------------------------------------------------ 5417 4934 16.1 - Custom Header Screen 5418 4935 ------------------------------------------------------------------------------*/ 5419 5420 4936 .appearance_page_custom-header #headimg { 5421 border: 1px solid #DFDFDF;5422 5423 4937 border: 1px solid #dfdfdf; 4938 overflow: hidden; 4939 width: 100%; 5424 4940 } 5425 5426 4941 .appearance_page_custom-header #upload-form p label { 5427 4942 font-size: 12px; 5428 4943 } 5429 5430 4944 .appearance_page_custom-header .available-headers .default-header { 5431 5432 4945 float: left; 4946 margin: 0 20px 20px 0; 5433 4947 } 5434 5435 4948 .appearance_page_custom-header .random-header { 5436 5437 5438 4949 clear: both; 4950 margin: 0 20px 20px 0; 4951 vertical-align: middle; 5439 4952 } 5440 5441 4953 .appearance_page_custom-header .available-headers label input, 5442 4954 .appearance_page_custom-header .random-header label input { 5443 4955 margin-right: 10px; 5444 4956 } 5445 5446 4957 .appearance_page_custom-header .available-headers label img { 5447 4958 vertical-align: middle; 5448 4959 } 5449 5450 5451 4960 /*------------------------------------------------------------------------------ 5452 4961 16.2 - Custom Background Screen 5453 4962 ------------------------------------------------------------------------------*/ 5454 5455 4963 div#custom-background-image { 5456 5457 4964 min-height: 100px; 4965 border: 1px solid #dfdfdf; 5458 4966 } 5459 5460 4967 div#custom-background-image img { 5461 5462 4968 max-width: 400px; 4969 max-height: 300px; 5463 4970 } 5464 5465 5466 4971 /*------------------------------------------------------------------------------ 5467 4972 16.3 - Tabbed Admin Screen Interface (Experimental) 5468 4973 ------------------------------------------------------------------------------*/ 5469 5470 4974 .nav-tab { 5471 border-style: solid; 5472 border-width: 1px 1px 0; 5473 color: #aaa; 5474 text-shadow: #fff 0 1px 0; 5475 font-size: 12px; 5476 line-height: 16px; 5477 display: inline-block; 5478 padding: 4px 14px 6px; 5479 text-decoration: none; 5480 margin: 0 6px -1px 0; 5481 -webkit-border-top-left-radius: 3px; 5482 -webkit-border-top-right-radius: 3px; 5483 border-top-left-radius: 3px; 5484 border-top-right-radius: 3px; 4975 border-style: solid; 4976 border-width: 1px 1px 0; 4977 color: #aaa; 4978 text-shadow: #fff 0 1px 0; 4979 font-size: 12px; 4980 line-height: 16px; 4981 display: inline-block; 4982 padding: 4px 14px 6px; 4983 text-decoration: none; 4984 margin: 0 6px -1px 0; 4985 border-top-left-radius: 3px; 4986 border-top-right-radius: 3px; 4987 -moz-border-top-left-radius: 3px; 4988 -moz-border-top-right-radius: 3px; 4989 -webkit-border-top-left-radius: 3px; 4990 -webkit-border-top-right-radius: 3px; 5485 4991 } 5486 5487 .nav-tab-active { 5488 border-width: 1px; 5489 color: #464646; 4992 h2 .nav-tab { 4993 padding: 4px 10px 6px; 4994 font-weight: 200; 4995 font-size: 20px; 4996 line-height: 24px; 5490 4997 } 5491 5492 h2.nav-tab-wrapper, h3.nav-tab-wrapper { 5493 border-bottom-width: 1px; 5494 border-bottom-style: solid; 5495 padding-bottom: 0; 4998 .nav-tab-active { 4999 border-width: 1px; 5000 color: #464646; 5496 5001 } 5497 5498 h2 .nav-tab { 5499 padding: 4px 10px 6px; 5500 font-weight: 200; 5501 font-size: 20px; 5502 line-height: 24px; 5503 5002 h2.nav-tab-wrapper, 5003 h3.nav-tab-wrapper { 5004 border-bottom-width: 1px; 5005 border-bottom-style: solid; 5006 padding-bottom: 0; 5504 5007 } 5505 5506 5507 5008 /*------------------------------------------------------------------------------ 5508 5009 17.0 - Plugins 5509 5010 ------------------------------------------------------------------------------*/ 5510 5511 5011 #dashboard_right_now .versions .b, 5512 5012 #post-status-display, 5513 5013 #post-visibility-display, … … h2 .nav-tab { 5521 5021 #ed_reply_toolbar #ed_reply_strong, 5522 5022 .item-controls .item-order a, 5523 5023 .feature-filter .feature-name { 5524 5024 font-weight: bold; 5525 5025 } 5526 5527 5026 .plugins p { 5528 5529 5027 margin: 0 4px; 5028 padding: 0; 5530 5029 } 5531 5532 .plugins .desc p { 5533 margin: 0 0 8px; 5030 .desc .plugins p { 5031 margin: 0 0 8px; 5534 5032 } 5535 5536 5033 .plugins td.desc { 5537 5034 line-height: 1.5em; 5538 5035 } 5539 5540 5036 .plugins .desc ul, 5541 5037 .plugins .desc ol { 5542 5038 margin: 0 0 0 2em; 5543 5039 } 5544 5545 5040 .plugins .desc ul { 5546 5041 list-style-type: disc; 5547 5042 } 5548 5549 5043 .plugins .row-actions-visible { 5550 5044 padding: 0; 5551 5045 } 5552 5553 5046 .plugins tbody th.check-column { 5554 5047 padding: 7px 0; 5555 5048 } 5556 5557 5049 .plugins .inactive td, 5558 5050 .plugins .inactive th, 5559 5051 .plugins .active td, 5560 5052 .plugins .active th { 5561 5562 5563 5053 border-top-style: solid; 5054 border-top-width: 1px; 5055 padding: 5px 7px 0; 5564 5056 } 5565 5566 5057 .plugins .update th, 5567 5058 .plugins .update td { 5568 5059 border-bottom: 0; 5569 5060 } 5570 .plugin-update-tr td {5571 border-top: 0;5572 }5573 5574 5061 #wpbody-content .plugins .plugin-title, 5575 5062 #wpbody-content .plugins .theme-title { 5576 5577 white-space:nowrap;5063 padding-right: 12px; 5064 white-space: nowrap; 5578 5065 } 5579 5580 5066 .plugins .second, 5581 5067 .plugins .row-actions-visible { 5582 5068 padding: 0 0 5px; 5583 5069 } 5584 5585 5070 .plugins .update .second, 5586 5071 .plugins .update .row-actions-visible { 5587 padding-bottom: 0; 5072 padding-bottom: 0; 5073 } 5074 .plugin-update-tr td { 5075 border-top: 0; 5588 5076 } 5589 5590 5077 .plugins-php .widefat tfoot th, 5591 5078 .plugins-php .widefat tfoot td { 5592 5593 5079 border-top-style: solid; 5080 border-top-width: 1px; 5594 5081 } 5595 5596 5082 .plugin-update-tr .update-message { 5597 5598 5083 margin: 5px; 5084 padding: 3px 5px; 5599 5085 } 5600 5601 5086 .plugin-install-php h4 { 5602 5087 margin: 2.5em 0 8px; 5603 5088 } 5604 5605 5606 5089 /*------------------------------------------------------------------------------ 5607 5090 18.0 - Users 5608 5091 ------------------------------------------------------------------------------*/ 5609 5610 5092 #profile-page .form-table textarea { 5611 5612 5093 width: 500px; 5094 margin-bottom: 6px; 5613 5095 } 5614 5615 5096 #profile-page .form-table #rich_editing { 5616 margin-right: 5px 5097 margin-right: 5px; 5617 5098 } 5618 5619 5099 #your-profile legend { 5620 5100 font-size: 22px; 5621 5101 } 5622 5623 5102 #your-profile #rich_editing { 5624 5103 border: none; 5625 5104 } 5626 5627 5105 #display_name { 5628 5106 width: 15em; 5629 5107 } 5630 5631 5108 #createuser .form-field input { 5632 5109 width: 25em; 5633 5110 } 5634 5635 5111 /*------------------------------------------------------------------------------ 5636 19.0 - Tools5112 20.0 - Settings 5637 5113 ------------------------------------------------------------------------------*/ 5638 5639 .pressthis { 5640 margin: 20px 0; 5114 #utc-time, 5115 #local-time { 5116 padding-left: 25px; 5117 font-style: italic; 5118 font-family: sans-serif; 5641 5119 } 5642 5643 .pressthis a, 5644 .pressthis a:hover, 5645 .pressthis a:focus, 5646 .pressthis a:active { 5647 display: inline-block; 5648 position: relative; 5649 cursor: move; 5650 color: #333; 5651 background: #e6e6e6; 5652 background-image: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #e6e6e6), color-stop(77%, #d8d8d8)); 5653 background-image: -webkit-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%); 5654 background-image: -moz-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%); 5655 background-image: -o-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%); 5656 background-image: linear-gradient(to top, #e6e6e6 7%, #d8d8d8 77%); 5657 -webkit-border-radius: 5px; 5658 border-radius: 5px; 5659 border: 1px solid #b4b4b4; 5660 font-style: normal; 5661 line-height: 16px; 5662 font-size: 14px; 5663 text-decoration: none; 5664 text-shadow: 0 1px 0px #fff; 5120 .defaultavatarpicker .avatar { 5121 margin: 2px 0; 5122 vertical-align: middle; 5665 5123 } 5666 5667 .pressthis a:active {5668 outline: none;5669 }5670 5671 .pressthis a:hover:after {5672 -webkit-transform: skew(20deg) rotate(9deg);5673 -moz-transform: skew(20deg) rotate(9deg);5674 transform: skew(20deg) rotate(9deg);5675 -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);5676 box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);5677 }5678 5679 .pressthis a span {5680 background: url(../images/press-this.png?v=20120502) no-repeat 0px 5px;5681 background-size: 24px 20px;5682 padding: 8px 11px 8px 27px;5683 margin: 0 5px;5684 display: inline-block;5685 }5686 5687 .pressthis a:after {5688 content: '';5689 width: 70%;5690 height: 55%;5691 z-index: -1;5692 position: absolute;5693 right: 10px;5694 bottom: 9px;5695 background: transparent;5696 5697 -webkit-transform: skew(20deg) rotate(6deg);5698 -moz-transform: skew(20deg) rotate(6deg);5699 transform: skew(20deg) rotate(6deg);5700 -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);5701 box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);5702 }5703 5704 /*------------------------------------------------------------------------------5705 20.0 - Settings5706 ------------------------------------------------------------------------------*/5707 5708 #utc-time, #local-time {5709 padding-left: 25px;5710 font-style: italic;5711 font-family: sans-serif;5712 }5713 5714 .defaultavatarpicker .avatar {5715 margin: 2px 0;5716 vertical-align: middle;5717 }5718 5719 5124 .options-general-php .spinner { 5720 5721 5125 float: none; 5126 margin: -3px 3px; 5722 5127 } 5723 5724 5128 /*------------------------------------------------------------------------------ 5725 5129 21.0 - Admin Footer 5726 5130 ------------------------------------------------------------------------------*/ 5727 5728 5131 #wpfooter { 5729 5730 5731 5732 5733 5734 5735 5736 5132 position: absolute; 5133 bottom: 0; 5134 left: 0; 5135 right: 0; 5136 padding: 10px 0; 5137 margin-right: 20px; 5138 border-top-width: 1px; 5139 border-top-style: solid; 5737 5140 } 5738 5739 5141 #wpfooter p { 5740 5741 5142 margin: 0; 5143 line-height: 20px; 5742 5144 } 5743 5744 5145 #wpfooter a { 5745 5146 text-decoration: none; 5746 5147 } 5747 5748 5148 #wpfooter a:hover { 5749 5149 text-decoration: underline; 5750 5150 } 5751 5752 5151 /*------------------------------------------------------------------------------ 5753 5152 22.0 - About Pages 5754 5153 ------------------------------------------------------------------------------*/ 5755 5154 /* WordPress Version Badge */ 5155 .wp-badge { 5156 padding-top: 142px; 5157 height: 50px; 5158 width: 173px; 5159 font-size: 14px; 5160 font-weight: bold; 5161 line-height: normal; 5162 text-align: center; 5163 margin: 0 -5px; 5164 background: url('../images/wp-badge.png?ver=20111120') no-repeat; 5165 } 5756 5166 .about-wrap { 5757 position: relative; 5758 margin: 25px 40px 0 20px; 5759 max-width: 1050px; /* readability */ 5167 position: relative; 5168 margin: 25px 40px 0 20px; 5169 max-width: 1050px; 5170 /* readability */ 5760 5171 5761 5762 } 5172 font-size: 15px; 5173 /* Typography */ 5763 5174 5764 .about-wrap div.updated, 5765 .about-wrap div.error { 5766 display: none !important; 5767 } 5175 /* Point Releases */ 5768 5176 5769 /* Typography*/5177 /* Tabs */ 5770 5178 5771 .about-wrap p { 5772 line-height: 1.6em; 5773 } 5179 /* Changelog / Update screen */ 5774 5180 5775 .about-wrap h1 { 5776 margin: 0.2em 200px 0 0; 5777 line-height: 1.2em; 5778 font-size: 2.8em; 5779 font-weight: 200; 5780 } 5181 /* Return to Dashboard Home link */ 5781 5182 5782 .about-text, 5783 .about-description, 5784 .about-wrap li.wp-person a.web { 5785 font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif; 5786 font-weight: normal; 5787 line-height: 1.6em; 5788 font-size: 20px; 5789 } 5183 /* Credits */ 5790 5184 5791 .about-description { 5792 margin-top: 1.4em; 5793 } 5185 /* Freedoms */ 5794 5186 5795 .about-text {5796 margin: 1em 200px 1.4em 0;5797 min-height: 60px;5798 font-size: 24px;5799 5187 } 5800 5801 .about-wrap h3 { 5802 font-size: 24px; 5803 margin-bottom: 1em; 5804 padding-top: 20px; 5188 .about-wrap div.updated, 5189 .about-wrap div.error { 5190 display: none !important; 5805 5191 } 5806 5807 .about-wrap .feature-section { 5808 padding-bottom: 20px; 5192 .about-wrap p { 5193 line-height: 1.6em; 5809 5194 } 5810 5811 .about-wrap .feature-section h4 { 5812 margin-bottom: 0.6em; 5195 .about-wrap h1 { 5196 margin: 0.2em 200px 0 0; 5197 line-height: 1.2em; 5198 font-size: 2.8em; 5199 font-weight: 200; 5813 5200 } 5814 5815 .about-wrap .feature-section p { 5816 margin-top: 0.6em; 5201 .about-wrap h3 { 5202 font-size: 24px; 5203 margin-bottom: 1em; 5204 padding-top: 20px; 5817 5205 } 5818 5819 5206 .about-wrap code { 5820 font-size: 14px; 5207 font-size: 14px; 5208 } 5209 .about-wrap li.wp-person a.web { 5210 font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif; 5211 font-size: 20px; 5212 font-weight: normal; 5213 line-height: 1.6em; 5821 5214 } 5822 5823 /* Point Releases */5824 5825 5215 .about-wrap .point-releases { 5826 5216 margin-top: 5px; 5827 5217 } 5828 5829 5218 .about-wrap .changelog.point-releases h3 { 5830 5219 padding-top: 35px; 5831 5220 } 5832 5833 5221 .about-wrap .changelog.point-releases h3:first-child { 5834 padding-top: 7px; 5835 } 5836 5837 /* WordPress Version Badge */ 5838 5839 .wp-badge { 5840 padding-top: 142px; 5841 height: 50px; 5842 width: 173px; 5843 font-weight: bold; 5844 font-size: 14px; 5845 text-align: center; 5846 margin: 0 -5px; 5847 background: url('../images/wp-badge.png?ver=20111120') no-repeat; 5222 padding-top: 7px; 5848 5223 } 5849 5850 5224 .about-wrap .wp-badge { 5851 5852 5853 5225 position: absolute; 5226 top: 0; 5227 right: 0; 5854 5228 } 5855 5856 /* Tabs */5857 5858 5229 .about-wrap h2.nav-tab-wrapper { 5859 5230 padding-left: 6px; 5860 5231 } 5861 5862 5232 .about-wrap h2 .nav-tab { 5863 5864 5865 5866 5233 padding: 4px 10px 6px; 5234 margin: 0 3px -1px 0; 5235 font-size: 18px; 5236 vertical-align: top; 5867 5237 } 5868 5869 5238 .about-wrap h2 .nav-tab-active { 5870 font-weight: bold; 5871 padding-top: 3px; 5239 font-weight: bold; 5240 padding-top: 3px; 5241 } 5242 .about-wrap .feature-section { 5243 padding-bottom: 20px; 5244 } 5245 .about-wrap .feature-section h4 { 5246 margin-bottom: 0.6em; 5247 } 5248 .about-wrap .feature-section p { 5249 margin-top: 0.6em; 5872 5250 } 5873 5874 /* Changelog / Update screen */5875 5876 5251 .about-wrap .feature-section img, 5877 5252 .about-wrap .feature-section .video { 5878 border: none; 5879 margin: 0 1.94% 10px 0; 5880 -webkit-border-radius: 3px; 5881 border-radius: 3px; 5253 border: none; 5254 margin: 0 1.94% 10px 0; 5255 border-radius: 3px; 5256 -moz-border-radius: 3px; 5257 -webkit-border-radius: 3px; 5882 5258 } 5883 5884 5259 .about-wrap .feature-section .video video { 5885 5260 max-width: 100%; 5886 5261 } 5887 5888 5262 .about-wrap .feature-section.three-col img { 5889 margin: 0.5em 0 0.5em 5px; 5890 max-width: 100%; 5891 float: none; 5892 } 5893 5894 .ie8 .about-wrap .feature-section.three-col img { 5895 margin-left: 0; 5263 margin: 0.5em 0 0.5em 5px; 5264 max-width: 100%; 5265 float: none; 5896 5266 } 5897 5898 5267 .about-wrap .feature-section.images-stagger-right img, 5899 5268 .about-wrap .feature-section.images-stagger-right .video { 5900 5901 5269 float: right; 5270 margin: 0 5px 12px 2em; 5902 5271 } 5903 5904 5272 .about-wrap .feature-section.images-stagger-left img { 5905 5906 5273 float: left; 5274 margin: 0 2em 12px 5px; 5907 5275 } 5908 5909 5276 .about-wrap .feature-section .image-100 { 5910 5911 5277 margin: 0 0 2em 0; 5278 width: 100%; 5912 5279 } 5913 5914 5280 .about-wrap .feature-section .image-66 { 5915 5281 width: 65%; 5916 5282 } 5917 5918 5283 .about-wrap .feature-section .image-66.video { 5919 5284 max-width: 600px; 5920 5285 } 5921 5922 5286 .about-wrap .feature-section .image-50 { 5923 5287 max-width: 50%; 5924 5288 } 5925 5926 5289 .about-wrap .feature-section img.image-30 { 5927 5290 max-width: 31.2381%; 5928 5291 } 5929 5930 .ie8 .about-wrap .feature-section img {5931 border-width: 1px;5932 border-style: solid;5933 }5934 5935 .about-wrap .images-stagger-right img.image-30:nth-child(2) {5936 margin-left: 1em;5937 }5938 5939 5292 .about-wrap .feature-section.col { 5940 5293 margin-bottom: 0; 5941 5294 } 5942 5943 5295 .about-wrap .feature-section.col h4 { 5944 margin:0 0 0.6em 0;5296 margin: 0 0 0.6em 0; 5945 5297 } 5946 5947 5298 .about-wrap .feature-section.col .last-feature { 5948 margin-right: 0; 5299 margin-right: 0; 5300 } 5301 .about-wrap .feature-section.two-col div, 5302 .about-wrap .feature-section.three-col div { 5303 margin-right: 4.999999999%; 5304 float: left; 5949 5305 } 5950 5951 5306 .about-wrap .feature-section.two-col div { 5952 width: 47%; 5953 margin-right: 4.999999999%; 5954 float: left; 5307 width: 47%; 5955 5308 } 5956 5957 5309 .about-wrap .feature-section.three-col div { 5958 width: 30%; 5959 margin-right: 4.999999999%; 5960 float: left; 5310 width: 30%; 5311 } 5312 .ie8 .about-wrap .feature-section.three-col img { 5313 margin-left: 0; 5314 } 5315 .ie8 .about-wrap .feature-section img { 5316 border-width: 1px; 5317 border-style: solid; 5318 } 5319 .about-wrap .images-stagger-right img.image-30:nth-child(2) { 5320 margin-left: 1em; 5961 5321 } 5962 5963 5322 .about-wrap .three-col-images { 5964 5323 text-align: center; 5965 5324 } 5966 5967 5325 .about-wrap .three-col-images img { 5968 5326 margin: 0 0 10px; 5969 5327 } 5970 5971 5328 .about-wrap .three-col-images .last-feature { 5972 5329 float: right; 5973 5330 } 5974 5975 5331 .about-wrap .three-col-images .first-feature { 5976 5332 float: left; 5977 5333 } 5978 5979 5334 .about-wrap .changelog .feature-section { 5980 5335 overflow: hidden; 5981 5336 } 5982 5983 5337 .about-wrap .changelog li { 5984 list-style-type: disc; 5985 margin-left: 3em; 5986 } 5987 5988 @media only screen and (max-width: 900px) { 5989 .about-wrap .feature-section.images-stagger-left img, 5990 .about-wrap .feature-section.images-stagger-right img, 5991 .about-wrap .feature-section.images-stagger-right .video { 5992 clear: both; 5993 } 5994 5995 .about-wrap .feature-section .video.image-66 { 5996 float: none; 5997 width: 98%; 5998 max-width: 98%; 5999 } 6000 6001 .about-wrap .feature-section.images-stagger-right .video.image-66 { 6002 margin-left: 3px; 6003 } 6004 } 6005 6006 @media only screen and (max-width: 768px) { 6007 .about-wrap .feature-section .image-66 { 6008 float: none; 6009 width: 98%; 6010 max-width: 98%; 6011 } 6012 6013 .about-wrap .feature-section.images-stagger-right .image-66 { 6014 margin-left: 3px; 6015 } 6016 6017 .about-wrap .feature-section.images-stagger-left .image-66 { 6018 margin-right: 3px; 6019 } 5338 list-style-type: disc; 5339 margin-left: 3em; 6020 5340 } 6021 6022 /* Return to Dashboard Home link */6023 6024 5341 .about-wrap .return-to-dashboard { 6025 margin: 30px 0 0 -5px; 6026 font-size: 14px; 6027 font-weight: bold; 5342 margin: 30px 0 0 -5px; 5343 font-size: 14px; 5344 font-weight: bold; 5345 line-height: normal; 6028 5346 } 6029 6030 5347 .about-wrap .return-to-dashboard a { 6031 6032 5348 text-decoration: none; 5349 padding: 0 5px; 6033 5350 } 6034 6035 /* Credits */6036 6037 5351 .about-wrap h4.wp-people-group { 6038 6039 5352 margin-top: 2.6em; 5353 font-size: 16px; 6040 5354 } 6041 6042 5355 .about-wrap ul.wp-people-group { 6043 overflow: hidden; 6044 padding: 0 5px; 6045 margin: 0 -15px 0 -5px; 6046 } 6047 6048 .about-wrap ul.compact { 6049 margin-bottom: 0 5356 overflow: hidden; 5357 padding: 0 5px; 5358 margin: 0 -15px 0 -5px; 6050 5359 } 6051 6052 5360 .about-wrap li.wp-person { 6053 6054 5361 float: left; 5362 margin-right: 10px; 6055 5363 } 6056 6057 5364 .about-wrap li.wp-person img.gravatar { 6058 float: left; 6059 margin: 0 10px 10px 0; 6060 padding: 2px; 6061 width: 60px; 6062 height: 60px; 5365 float: left; 5366 margin: 0 10px 10px 0; 5367 padding: 2px; 5368 width: 60px; 5369 height: 60px; 5370 } 5371 .about-wrap ul.compact { 5372 margin-bottom: 0; 6063 5373 } 6064 6065 5374 .about-wrap ul.compact li.wp-person img.gravatar { 6066 6067 5375 width: 30px; 5376 height: 30px; 6068 5377 } 6069 6070 5378 .about-wrap li.wp-person { 6071 height: 70px; 6072 width: 280px; 6073 padding-bottom: 15px; 6074 } 6075 6076 .about-wrap ul.compact li.wp-person { 6077 height: auto; 6078 width: 180px; 6079 padding-bottom: 0; 6080 margin-bottom: 0; 5379 height: 70px; 5380 width: 280px; 5381 padding-bottom: 15px; 6081 5382 } 6082 6083 .about-wrap #wp-people-group-validators + p.wp-credits-list { 6084 margin-top: 0; 5383 ul.compact .about-wrap li.wp-person { 5384 height: auto; 5385 width: 180px; 5386 padding-bottom: 0; 5387 margin-bottom: 0; 6085 5388 } 6086 6087 5389 .about-wrap li.wp-person a.web { 6088 display: block; 6089 margin: 6px 0 2px; 6090 font-size: 16px; 6091 text-decoration: none; 5390 display: block; 5391 margin: 6px 0 2px; 5392 font-size: 16px; 5393 text-decoration: none; 5394 } 5395 .about-wrap #wp-people-group-validators + p.wp-credits-list { 5396 margin-top: 0; 6092 5397 } 6093 6094 5398 .about-wrap p.wp-credits-list a { 6095 5399 white-space: nowrap; 6096 5400 } 6097 6098 /* Freedoms */6099 6100 5401 .freedoms-php .about-wrap ol { 6101 5402 margin: 40px 60px; 6102 5403 } 6103 6104 5404 .freedoms-php .about-wrap ol li { 6105 6106 5405 list-style-type: decimal; 5406 font-weight: bold; 6107 5407 } 6108 6109 5408 .freedoms-php .about-wrap ol p { 6110 font-weight: normal; 6111 margin: 0.6em 0; 5409 font-weight: normal; 5410 margin: 0.6em 0; 5411 } 5412 .about-description { 5413 font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif; 5414 font-size: 20px; 5415 font-weight: normal; 5416 line-height: 1.6em; 5417 margin-top: 1.4em; 5418 } 5419 .about-text { 5420 font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif; 5421 font-size: 24px; 5422 font-weight: normal; 5423 line-height: 1.6em; 5424 margin: 1em 200px 1.4em 0; 5425 min-height: 60px; 5426 } 5427 @media only screen and (max-width: 900px) { 5428 .about-wrap .feature-section .images-stagger-left img, 5429 .about-wrap .feature-section .images-stagger-right img, 5430 .about-wrap .feature-section .images-stagger-right .video { 5431 clear: both; 5432 } 5433 .about-wrap .feature-section .video.image-66 { 5434 float: none; 5435 width: 98%; 5436 max-width: 98%; 5437 } 5438 .about-wrap .feature-section.images-stagger-right .video.image-66 { 5439 margin-left: 3px; 5440 } 5441 } 5442 @media only screen and (max-width: 768px) { 5443 .about-wrap .feature-section .image-66 { 5444 float: none; 5445 width: 98%; 5446 max-width: 98%; 5447 } 5448 .about-wrap .feature-section.images-stagger-right .image-66 { 5449 margin-left: 3px; 5450 } 5451 .about-wrap .feature-section.images-stagger-left .image-66 { 5452 margin-right: 3px; 5453 } 6112 5454 } 6113 6114 5455 /*------------------------------------------------------------------------------ 6115 5456 23.0 - Full Overlay w/ Sidebar 6116 5457 ------------------------------------------------------------------------------*/ 6117 6118 5458 body.full-overlay-active { 6119 5459 overflow: hidden; 6120 5460 } 6121 6122 5461 .wp-full-overlay { 6123 background: #fff; 6124 z-index: 500000; 6125 position: fixed; 6126 overflow: visible; 6127 top: 0; 6128 bottom: 0; 6129 left: 0; 6130 right: 0; 6131 height: 100%; 6132 min-width: 0; 6133 } 6134 6135 .wp-full-overlay-sidebar { 6136 -webkit-box-sizing: border-box; 6137 -moz-box-sizing: border-box; 6138 box-sizing: border-box; 5462 background: #fff; 5463 z-index: 500000; 5464 position: fixed; 5465 overflow: visible; 5466 top: 0; 5467 bottom: 0; 5468 left: 0; 5469 right: 0; 5470 height: 100%; 5471 min-width: 0; 5472 /* Close Link */ 6139 5473 6140 position: fixed; 6141 width: 300px; 6142 height: 100%; 6143 top: 0; 6144 bottom: 0; 6145 left: 0; 6146 padding: 0; 6147 margin: 0; 6148 z-index: 10; 6149 overflow: auto; 6150 background: #f5f5f5; 6151 border-right: 1px solid rgba( 0, 0, 0, 0.2 ); 6152 } 6153 6154 .wp-full-overlay.collapsed .wp-full-overlay-sidebar { 6155 overflow: visible; 6156 } 5474 /* Collapse Button */ 6157 5475 6158 .wp-full-overlay.collapsed,6159 .wp-full-overlay.expanded .wp-full-overlay-sidebar {6160 margin-left: 0 !important;6161 5476 } 6162 6163 5477 .wp-full-overlay.expanded { 6164 5478 margin-left: 300px; 6165 5479 } 6166 6167 .wp-full-overlay.collapsed .wp-full-overlay-sidebar { 6168 margin-left: -300px; 5480 .wp-full-overlay .close-full-overlay { 5481 text-decoration: none; 6169 5482 } 6170 6171 .wp-full-overlay-sidebar:after { 6172 content: ''; 6173 display: block; 6174 position: absolute; 6175 top: 0; 6176 bottom: 0; 6177 right: 0; 6178 width: 3px; 6179 box-shadow: -5px 0 4px -4px rgba(0, 0, 0, 0.1) inset; 6180 z-index: 1000; 5483 .wp-full-overlay a.collapse-sidebar { 5484 position: absolute; 5485 bottom: 12px; 5486 left: 0; 5487 z-index: 50; 5488 display: block; 5489 width: 19px; 5490 height: 19px; 5491 margin-left: 15px; 5492 padding: 0; 5493 border-radius: 50%; 5494 -moz-border-radius: 50%; 5495 -webkit-border-radius: 50%; 5496 text-decoration: none; 6181 5497 } 6182 6183 .wp-full-overlay-main { 6184 position: absolute;6185 left: 0;6186 right: 0;6187 top: 0;6188 bottom: 0;6189 height: 100%;5498 .wp-full-overlay .collapse-sidebar-arrow { 5499 position: absolute; 5500 margin-top: 2px; 5501 margin-left: 2px; 5502 display: block; 5503 width: 15px; 5504 height: 15px; 5505 background: transparent url('../images/arrows.png') no-repeat -1px -73px; 6190 5506 } 6191 6192 .wp-full-overlay-sidebar .wp-full-overlay-header { 6193 position: absolute; 6194 left: 0; 6195 right: 0; 6196 height: 45px; 6197 padding: 0 20px; 6198 line-height: 45px; 6199 z-index: 10; 6200 margin: 0; 5507 .wp-full-overlay .collapse-sidebar-label { 5508 position: absolute; 5509 left: 100%; 5510 color: #808080; 5511 line-height: 20px; 5512 margin-left: 10px; 6201 5513 } 6202 6203 .wp-full-overlay-sidebar .wp-full-overlay-header { 6204 border-top: 0; 6205 border-bottom: 1px solid #fff; 6206 box-shadow: inset 0 -1px 0 0px #dfdfdf; 5514 .wp-full-overlay.collapsed .collapse-sidebar { 5515 position: absolute; 5516 left: 100%; 6207 5517 } 6208 6209 .wp-full-overlay-sidebar .wp-full-overlay-footer { 6210 bottom: 0; 6211 border-bottom: 0; 6212 border-top: 1px solid #dfdfdf; 6213 box-shadow: inset 0 1px 0 0px #fff; 5518 .wp-full-overlay.collapsed .collapse-sidebar-arrow { 5519 background-position: -1px -109px; 6214 5520 } 6215 6216 .wp-full-overlay-sidebar .wp-full-overlay-sidebar-content { 6217 position: absolute; 6218 top: 45px; 6219 bottom: 45px; 6220 left: 0; 6221 right: 0; 6222 overflow: auto; 5521 .wp-full-overlay.collapsed .collapse-sidebar-label { 5522 display: none; 6223 5523 } 6224 6225 .wp-full-overlay-sidebar-content .accordion-section:first-child { 6226 border-top: 1px solid #fff; 5524 .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label { 5525 color: #666; 6227 5526 } 6228 6229 /* Close Link */ 6230 .wp-full-overlay .close-full-overlay { 6231 text-decoration: none; 5527 .wp-full-overlay-sidebar { 5528 -moz-box-sizing: border-box; 5529 -webkit-box-sizing: border-box; 5530 -ms-box-sizing: border-box; 5531 box-sizing: border-box; 5532 position: fixed; 5533 width: 300px; 5534 height: 100%; 5535 top: 0; 5536 bottom: 0; 5537 left: 0; 5538 padding: 0; 5539 margin: 0; 5540 z-index: 10; 5541 overflow: auto; 5542 background: #f5f5f5; 5543 border-right: 1px solid rgba(0, 0, 0, 0.2); 6232 5544 } 6233 6234 /* Collapse Button */ 6235 .wp-full-overlay a.collapse-sidebar { 6236 position: absolute; 6237 bottom: 12px; 6238 left: 0; 6239 z-index: 50; 6240 display: block; 6241 width: 19px; 6242 height: 19px; 6243 margin-left: 15px; 6244 padding: 0; 6245 border-radius: 50%; 6246 text-decoration: none; 5545 .wp-full-overlay.collapsed .wp-full-overlay-sidebar { 5546 overflow: visible; 5547 margin-left: -300px; 6247 5548 } 6248 6249 .wp-full-overlay.collapsed .collapse-sidebar { 6250 position: absolute; 6251 left: 100%; 5549 .wp-full-overlay-sidebar:after { 5550 content: ''; 5551 display: block; 5552 position: absolute; 5553 top: 0; 5554 bottom: 0; 5555 right: 0; 5556 width: 3px; 5557 box-shadow: -5px 0 4px -4px rgba(0, 0, 0, 0.1) inset; 5558 z-index: 1000; 6252 5559 } 6253 6254 .wp-full-overlay .collapse-sidebar-arrow { 6255 position: absolute; 6256 margin-top: 2px; 6257 margin-left: 2px; 6258 display: block; 6259 width: 15px; 6260 height: 15px; 6261 background: transparent url('../images/arrows.png') no-repeat -1px -73px; 5560 .wp-full-overlay-sidebar .wp-full-overlay-header { 5561 position: absolute; 5562 left: 0; 5563 right: 0; 5564 height: 45px; 5565 padding: 0 20px; 5566 line-height: 45px; 5567 z-index: 10; 5568 margin: 0; 5569 border-top: 0; 5570 border-bottom: 1px solid #fff; 5571 box-shadow: inset 0 -1px 0 0px #dfdfdf; 6262 5572 } 6263 6264 .wp-full-overlay.collapsed .collapse-sidebar-arrow { 6265 background-position: -1px -109px; 5573 .wp-full-overlay-sidebar .wp-full-overlay-footer { 5574 bottom: 0; 5575 border-bottom: 0; 5576 border-top: 1px solid #dfdfdf; 5577 box-shadow: inset 0 1px 0 0px #fff; 6266 5578 } 6267 6268 .wp-full-overlay .collapse-sidebar-label { 6269 position: absolute;6270 left: 100%;6271 color: #808080;6272 line-height: 20px;6273 margin-left: 10px;5579 .wp-full-overlay-sidebar .wp-full-overlay-sidebar-content { 5580 position: absolute; 5581 top: 45px; 5582 bottom: 45px; 5583 left: 0; 5584 right: 0; 5585 overflow: auto; 6274 5586 } 6275 6276 .wp-full-overlay.collapsed .collapse-sidebar-label { 6277 display: none; 5587 .wp-full-overlay-sidebar .wp-full-overlay-sidebar-content .accordion-section:first-child { 5588 border-top: 1px solid #fff; 6278 5589 } 6279 6280 .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label { 6281 color: #666; 5590 .wp-full-overlay.collapsed, 5591 .wp-full-overlay.expanded .wp-full-overlay-sidebar { 5592 margin-left: 0 !important; 5593 } 5594 .wp-full-overlay-main { 5595 position: absolute; 5596 left: 0; 5597 right: 0; 5598 top: 0; 5599 bottom: 0; 5600 height: 100%; 6282 5601 } 6283 6284 5602 /* Animations */ 6285 5603 .wp-full-overlay, 6286 5604 .wp-full-overlay-sidebar, 6287 5605 .wp-full-overlay .collapse-sidebar, 6288 5606 .wp-full-overlay-main { 6289 -webkit-transition-property: left, right, top, bottom, width, margin; 6290 -moz-transition-property: left, right, top, bottom, width, margin; 6291 -ms-transition-property: left, right, top, bottom, width, margin; 6292 -o-transition-property: left, right, top, bottom, width, margin; 6293 transition-property: left, right, top, bottom, width, margin; 6294 6295 -webkit-transition-duration: 0.2s; 6296 -moz-transition-duration: 0.2s; 6297 -ms-transition-duration: 0.2s; 6298 -o-transition-duration: 0.2s; 6299 transition-duration: 0.2s; 5607 -webkit-transition-property: left, right, top, bottom, width, margin; 5608 -moz-transition-property: left, right, top, bottom, width, margin; 5609 -ms-transition-property: left, right, top, bottom, width, margin; 5610 -o-transition-property: left, right, top, bottom, width, margin; 5611 transition-property: left, right, top, bottom, width, margin; 5612 -webkit-transition-duration: 0.2s; 5613 -moz-transition-duration: 0.2s; 5614 -ms-transition-duration: 0.2s; 5615 -o-transition-duration: 0.2s; 5616 transition-duration: 0.2s; 6300 5617 } 6301 6302 6303 5618 /*------------------------------------------------------------------------------ 6304 5619 24.0 - Customize Loader 6305 5620 ------------------------------------------------------------------------------*/ 6306 6307 .no-customize-support .hide-if-no-customize,6308 5621 .customize-support .hide-if-customize, 6309 .no-customize-support.wp-core-ui .hide-if-no-customize,6310 .no-customize-support .wp-core-ui .hide-if-no-customize,6311 5622 .customize-support.wp-core-ui .hide-if-customize, 6312 5623 .customize-support .wp-core-ui .hide-if-customize { 6313 display: none; 5624 display: none; 5625 } 5626 .no-customize-support .hide-if-no-customize, 5627 .no-customize-support.wp-core-ui .hide-if-no-customize, 5628 .no-customize-support .wp-core-ui .hide-if-no-customize { 5629 display: none; 6314 5630 } 6315 6316 5631 #customize-container { 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 5632 display: none; 5633 background: #fff; 5634 z-index: 500000; 5635 position: fixed; 5636 overflow: visible; 5637 top: 0; 5638 bottom: 0; 5639 left: 0; 5640 right: 0; 5641 height: 100%; 6327 5642 } 6328 6329 5643 .customize-active #customize-container { 6330 display: block; 5644 display: block; 5645 } 5646 .customize-loading #customize-container { 5647 background: #ffffff url("../images/wpspin_light.gif") no-repeat fixed center center; 5648 background-size: 16px 16px; 6331 5649 } 6332 6333 5650 .customize-loading #customize-container iframe { 6334 5651 opacity: 0; 6335 5652 } 6336 6337 .customize-loading #customize-container { 6338 background: #fff url("../images/wpspin_light.gif") no-repeat fixed center center; 6339 background-size: 16px 16px; 5653 #customize-container .collapse-sidebar { 5654 bottom: 16px; 6340 5655 } 6341 6342 5656 #customize-container iframe, 6343 5657 #theme-installer iframe { 6344 height: 100%; 6345 width: 100%; 6346 z-index: 20; 6347 6348 -webkit-transition: opacity 0.3s; 6349 -moz-transition: opacity 0.3s; 6350 -ms-transition: opacity 0.3s; 6351 -o-transition: opacity 0.3s; 6352 transition: opacity 0.3s; 5658 height: 100%; 5659 width: 100%; 5660 z-index: 20; 5661 -webkit-transition: opacity 0.3s; 5662 -moz-transition: opacity 0.3s; 5663 -ms-transition: opacity 0.3s; 5664 -o-transition: opacity 0.3s; 5665 transition: opacity 0.3s; 6353 5666 } 6354 6355 #customize-container .collapse-sidebar {6356 bottom: 16px;6357 }6358 6359 5667 #theme-installer { 6360 5668 display: none; 6361 5669 } 6362 6363 5670 #theme-installer.single-theme { 6364 5671 display: block; 6365 5672 } 6366 6367 5673 .install-theme-info { 6368 6369 5674 display: none; 5675 padding: 10px 20px 20px; 6370 5676 } 6371 6372 5677 .single-theme .install-theme-info { 6373 5678 padding-top: 15px; 6374 5679 } 6375 6376 5680 #theme-installer .install-theme-info { 6377 5681 display: block; 6378 5682 } 6379 6380 5683 .install-theme-info .theme-install { 6381 6382 5684 float: right; 5685 margin-top: 18px; 6383 5686 } 6384 6385 5687 .install-theme-info .theme-name { 6386 6387 6388 5688 font-size: 16px; 5689 line-height: 24px; 5690 margin-bottom: 0; 6389 5691 } 6390 6391 5692 .install-theme-info .theme-screenshot { 6392 6393 6394 5693 margin-top: 15px; 5694 width: 258px; 5695 border: 1px solid #ccc; 6395 5696 } 6396 6397 5697 .install-theme-info .theme-details { 6398 5698 overflow: hidden; 6399 5699 } 6400 6401 5700 .theme-details .theme-version { 6402 6403 5701 margin: 15px 0; 5702 float: left; 6404 5703 } 6405 6406 5704 .theme-details .star-holder { 6407 6408 5705 margin: 14px 0; 5706 float: right; 6409 5707 } 6410 6411 5708 .theme-details .theme-description { 6412 6413 6414 5709 float: left; 5710 color: #777; 5711 line-height: 20px; 6415 5712 } 6416 6417 5713 /*------------------------------------------------------------------------------ 6418 5714 25.0 - Misc 6419 5715 ------------------------------------------------------------------------------*/ 6420 6421 5716 #excerpt, 6422 5717 .attachmentlinks { 6423 6424 6425 5718 margin: 0; 5719 height: 4em; 5720 width: 98%; 6426 5721 } 6427 6428 5722 #template div { 6429 5723 margin-right: 190px; 6430 5724 } 6431 6432 5725 p.pagenav { 6433 6434 5726 margin: 0; 5727 display: inline; 6435 5728 } 6436 6437 5729 .pagenav span { 6438 6439 5730 font-weight: bold; 5731 margin: 0 6px; 6440 5732 } 6441 6442 5733 .row-title { 6443 6444 5734 font-size: 13px !important; 5735 font-weight: bold; 6445 5736 } 6446 6447 .column- author img, .column-username img {6448 6449 6450 5737 .column-author img, 5738 .column-username img { 5739 float: left; 5740 margin-right: 10px; 5741 margin-top: 1px; 6451 5742 } 6452 6453 5743 .row-actions { 6454 6455 5744 visibility: hidden; 5745 padding: 2px 0 0; 6456 5746 } 6457 6458 5747 .mobile .row-actions { 6459 5748 visibility: visible; 6460 5749 } 6461 6462 5750 tr:hover .row-actions, 6463 5751 div.comment-item:hover .row-actions { 6464 5752 visibility: visible; 6465 5753 } 6466 6467 5754 .row-actions-visible { 6468 5755 padding: 2px 0 0; 6469 5756 } 6470 6471 5757 .form-table .pre { 6472 6473 5758 padding: 8px; 5759 margin: 0; 6474 5760 } 6475 6476 5761 table.form-table td .updated { 6477 5762 font-size: 13px; 6478 5763 } 6479 6480 5764 .tagchecklist { 6481 6482 6483 5765 margin-left: 14px; 5766 font-size: 12px; 5767 overflow: auto; 6484 5768 } 6485 5769 .tagchecklist strong { 6486 6487 5770 margin-left: -8px; 5771 position: absolute; 6488 5772 } 6489 5773 .tagchecklist span { 6490 6491 6492 6493 6494 6495 6496 5774 margin-right: 25px; 5775 display: block; 5776 float: left; 5777 font-size: 11px; 5778 line-height: 1.8em; 5779 white-space: nowrap; 5780 cursor: default; 6497 5781 } 6498 5782 .tagchecklist span a { 6499 6500 6501 6502 6503 6504 6505 6506 6507 5783 margin: 6px 0pt 0pt -9px; 5784 cursor: pointer; 5785 width: 10px; 5786 height: 10px; 5787 display: block; 5788 float: left; 5789 text-indent: -9999px; 5790 overflow: hidden; 5791 position: absolute; 6508 5792 } 6509 6510 5793 #poststuff h2 { 6511 6512 6513 6514 6515 5794 margin-top: 20px; 5795 font-size: 1.5em; 5796 margin-bottom: 15px; 5797 padding: 0 0 3px; 5798 clear: left; 6516 5799 } 6517 6518 5800 #poststuff h3, 6519 5801 .metabox-holder h3 { 6520 font-size: 15px;6521 6522 padding: 7px 10px;6523 margin: 0;6524 line-height: 1;5802 font-size: 12px; 5803 font-weight: normal; 5804 line-height: 1; 5805 padding: 7px 10px; 5806 margin: 0; 6525 5807 } 6526 6527 5808 #poststuff .inside { 6528 5809 margin: 6px 0 8px; 6529 5810 } 6530 6531 5811 #poststuff .inside #parent_id, 6532 5812 #poststuff .inside #page_template { 6533 5813 max-width: 100%; 6534 5814 } 6535 6536 5815 .inline-edit-row #post_parent, 6537 5816 .inline-edit-row select[name="page_template"] { 6538 5817 max-width: 80%; 6539 5818 } 6540 6541 5819 .ie8 #poststuff .inside #parent_id, 6542 5820 .ie8 #poststuff .inside #page_template, 6543 5821 .ie8 .inline-edit-row #post_parent, 6544 5822 .ie8 .inline-edit-row select[name="page_template"] { 6545 5823 width: 250px; 6546 5824 } 6547 6548 5825 #post-visibility-select { 6549 6550 5826 line-height: 1.5em; 5827 margin-top: 3px; 6551 5828 } 6552 6553 5829 #poststuff #submitdiv .inside { 6554 6555 5830 margin: 0; 5831 padding: 0; 6556 5832 } 6557 6558 5833 .edit-form-section { 6559 5834 margin-bottom: 20px; 6560 5835 } 6561 6562 5836 #templateside ul li a { 6563 5837 text-decoration: none; 6564 5838 } 6565 6566 5839 .tool-box .title { 6567 6568 6569 6570 5840 margin: 8px 0; 5841 font-size: 18px; 5842 font-weight: normal; 5843 line-height: 24px; 6571 5844 } 6572 6573 5845 #sidemenu { 6574 6575 6576 6577 6578 6579 5846 margin: -30px 15px 0 315px; 5847 list-style: none; 5848 position: relative; 5849 float: right; 5850 padding-left: 10px; 5851 font-size: 12px; 6580 5852 } 6581 6582 5853 #sidemenu a { 6583 padding: 0 7px; 6584 display: block; 6585 float: left; 6586 line-height: 28px; 6587 border-top-width: 1px; 6588 border-top-style: solid; 6589 border-bottom-width: 1px; 6590 border-bottom-style: solid; 6591 } 6592 6593 #sidemenu li { 6594 display: inline; 6595 line-height: 200%; 6596 list-style: none; 6597 text-align: center; 6598 white-space: nowrap; 6599 margin: 0; 6600 padding: 0; 5854 padding: 0 7px; 5855 display: block; 5856 float: left; 5857 line-height: 28px; 5858 border-top-width: 1px; 5859 border-top-style: solid; 5860 border-bottom-width: 1px; 5861 border-bottom-style: solid; 6601 5862 } 6602 6603 5863 #sidemenu a.current { 6604 font-weight: normal; 6605 padding-left: 6px; 6606 padding-right: 6px; 6607 -webkit-border-top-left-radius: 3px; 6608 -webkit-border-top-right-radius: 3px; 6609 border-top-left-radius: 3px; 6610 border-top-right-radius: 3px; 6611 border-width: 1px; 6612 border-style: solid; 5864 font-weight: normal; 5865 padding-left: 6px; 5866 padding-right: 6px; 5867 border-top-left-radius: 3px; 5868 border-top-right-radius: 3px; 5869 -moz-border-top-left-radius: 3px; 5870 -moz-border-top-right-radius: 3px; 5871 -webkit-border-top-left-radius: 3px; 5872 -webkit-border-top-right-radius: 3px; 5873 border-width: 1px; 5874 border-style: solid; 5875 } 5876 #sidemenu li { 5877 display: inline; 5878 line-height: 200%; 5879 list-style: none; 5880 text-align: center; 5881 white-space: nowrap; 5882 margin: 0; 5883 padding: 0; 6613 5884 } 6614 6615 5885 #sidemenu li a .count-0 { 6616 5886 display: none; 6617 5887 } 6618 6619 5888 .plugin-install #description, 6620 5889 .plugin-install-network #description { 6621 5890 width: 60%; 6622 5891 } 6623 6624 5892 table .vers, 6625 5893 table .column-visible, 6626 5894 table .column-rating { 6627 5895 text-align: left; 6628 5896 } 6629 6630 5897 .error-message { 6631 6632 5898 color: red; 5899 font-weight: bold; 6633 5900 } 6634 6635 5901 /* Scrollbar fix for bulk upgrade iframe */ 6636 5902 body.iframe { 6637 5903 height: 98%; 6638 5904 } 6639 6640 6641 5905 /* - Only used once or twice in all of WP - deprecate for global style 6642 5906 ------------------------------------------------------------------------------*/ 6643 5907 td.media-icon { 6644 6645 6646 6647 5908 text-align: center; 5909 width: 80px; 5910 padding-top: 8px; 5911 padding-bottom: 8px; 6648 5912 } 6649 6650 5913 td.media-icon img { 6651 6652 5914 max-width: 80px; 5915 max-height: 60px; 6653 5916 } 6654 6655 5917 #howto { 6656 font-size: 11px; 6657 margin: 0 5px; 6658 display: block; 6659 } 6660 6661 .importers td { 6662 padding-right: 14px; 5918 font-size: 11px; 5919 margin: 0 5px; 5920 display: block; 6663 5921 } 6664 6665 5922 .importers { 6666 font-size: 16px; 6667 width: auto; 5923 font-size: 16px; 5924 width: auto; 5925 } 5926 .importers td { 5927 padding-right: 14px; 6668 5928 } 6669 6670 5929 #namediv table { 6671 5930 width: 100%; 6672 5931 } 6673 6674 5932 #namediv td.first { 6675 6676 5933 width: 10px; 5934 white-space: nowrap; 6677 5935 } 6678 6679 5936 #namediv input { 6680 5937 width: 98%; 6681 5938 } 6682 6683 5939 #namediv p { 6684 5940 margin: 10px 0; 6685 5941 } 6686 6687 5942 #submitdiv h3 { 6688 5943 margin-bottom: 0 !important; 6689 5944 } 6690 6691 5945 /* - Used - but could/should be deprecated with a CSS reset 6692 5946 ------------------------------------------------------------------------------*/ 6693 5947 .zerosize { 6694 6695 6696 6697 6698 6699 6700 5948 height: 0; 5949 width: 0; 5950 margin: 0; 5951 border: 0; 5952 padding: 0; 5953 overflow: hidden; 5954 position: absolute; 6701 5955 } 6702 6703 5956 br.clear { 6704 6705 5957 height: 2px; 5958 line-height: 2px; 6706 5959 } 6707 6708 5960 .checkbox { 6709 6710 6711 5961 border: none; 5962 margin: 0; 5963 padding: 0; 6712 5964 } 6713 6714 5965 fieldset { 6715 6716 6717 5966 border: 0; 5967 padding: 0; 5968 margin: 0; 6718 5969 } 6719 6720 5970 .post-categories { 6721 6722 6723 5971 display: inline; 5972 margin: 0; 5973 padding: 0; 6724 5974 } 6725 6726 5975 .post-categories li { 6727 5976 display: inline; 6728 5977 } 6729 6730 6731 5978 /*----------------------------------------------------------------------------- 6732 5979 MERGED 6733 5980 -------------------------------------------------------------------------------*/ 6734 6735 /* dashboard */ 6736 .edit-box { 6737 display: none; 5981 /* ms */ 5982 /* Dashboard: MS Specific Data */ 5983 #dashboard_right_now p.musub { 5984 margin-top: 12px; 5985 border-top: 1px solid #ececec; 5986 padding-left: 16px; 5987 position: static; 6738 5988 } 6739 6740 h3:hover .edit-box { 6741 display: inline;5989 .rtl #dashboard_right_now p.musub { 5990 padding-left: 0; 5991 padding-right: 16px; 6742 5992 } 6743 6744 #dashboard-widgets form .input-text-wrap input { 6745 width: 100%; 5993 #dashboard_right_now td.b a.musublink { 5994 font-size: 16px; 6746 5995 } 6747 6748 #dashboard-widgets form .textarea-wrap textarea { 6749 width: 100%; 5996 #dashboard_right_now div.musubtable { 5997 border-top: none; 6750 5998 } 6751 6752 #dashboard-widgets .postbox form .submit { 6753 float: none; 6754 margin: .5em 0 0; 6755 padding: 0; 6756 border: none; 5999 #dashboard_right_now div.musubtable .t { 6000 white-space: normal; 6757 6001 } 6758 6759 #dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish{6760 min-width: 0;6002 /* Background Color for Site Status */ 6003 .wp-list-table .site-deleted { 6004 background: #ff8573; 6761 6005 } 6762 6763 #dashboard-widgets a { 6764 text-decoration: none; 6006 .wp-list-table .site-spammed { 6007 background: #faafaa; 6765 6008 } 6766 6767 #dashboard-widgets h3 a { 6768 text-decoration: underline; 6009 .wp-list-table .site-archived { 6010 background: #ffebe8; 6769 6011 } 6770 6771 #dashboard-widgets h3 .postbox-title-action { 6772 position: absolute; 6773 right: 10px; 6774 padding: 0; 6775 top: 5px; 6012 .wp-list-table .site-mature { 6013 background: #fecac2; 6776 6014 } 6777 6778 .js #dashboard-widgets h3 .postbox-title-action { 6779 right: 30px; 6015 /* Star ratings */ 6016 div.star-holder { 6017 position: relative; 6018 height: 17px; 6019 width: 100px; 6020 background: url('../images/stars.png?ver=20121108') repeat-x bottom left; 6780 6021 } 6781 6782 #dashboard-widgets h4 { 6783 font-weight: normal; 6784 font-size: 13px; 6785 margin: 0 0 .2em; 6786 padding: 0; 6022 div.star-holder .star-rating { 6023 background: url('../images/stars.png?ver=20121108') repeat-x top left; 6024 height: 17px; 6025 float: left; 6787 6026 } 6788 6789 /* Right Now */ 6790 #dashboard_right_now p.sub, 6791 #dashboard_right_now .table, #dashboard_right_now .versions { 6792 margin: -12px; 6027 div.action-links { 6028 font-weight: normal; 6029 margin: 6px 0 0; 6793 6030 } 6794 6795 #dashboard_right_now .inside { 6796 font-size: 12px; 6797 padding-top: 20px; 6031 /* Header on thickbox */ 6032 #plugin-information-header { 6033 margin: 0; 6034 padding: 0 5px; 6035 font-weight: bold; 6036 position: relative; 6037 border-bottom-width: 1px; 6038 border-bottom-style: solid; 6039 height: 2.5em; 6798 6040 } 6041 #plugin-information { 6042 /* Install sidemenu */ 6799 6043 6800 #dashboard_right_now p.sub {6801 padding: 5px 0 15px;6802 color: #8f8f8f;6803 font-size: 14px;6804 position: absolute;6805 top: -17px;6806 left: 15px;6807 6044 } 6808 6809 #dashboard_right_now .table { 6810 margin: 0; 6811 padding: 0; 6812 position: relative; 6045 #plugin-information ul#sidemenu { 6046 font-weight: normal; 6047 margin: 0 5px; 6048 position: absolute; 6049 left: 0; 6050 bottom: -1px; 6813 6051 } 6814 6815 #dashboard_right_now .table_content { 6816 float: left; 6817 border-top-width: 1px; 6818 border-top-style: solid; 6819 width: 45%; 6052 #plugin-information p.action-button { 6053 width: 100%; 6054 padding-bottom: 0; 6055 margin-bottom: 0; 6056 margin-top: 10px; 6057 border-top-left-radius: 3px; 6058 border-bottom-left-radius: 3px; 6059 -moz-border-top-left-radius: 3px; 6060 -moz-border-bottom-left-radius: 3px; 6061 -webkit-border-top-left-radius: 3px; 6062 -webkit-border-bottom-left-radius: 3px; 6820 6063 } 6821 6822 #dashboard_right_now .table_discussion { 6823 float: right;6824 border-top-width: 1px;6825 border-top-style: solid;6826 width: 45%;6064 #plugin-information .action-button a { 6065 text-align: center; 6066 font-weight: bold; 6067 text-decoration: none; 6068 display: block; 6069 line-height: 2em; 6827 6070 } 6828 6829 #dashboard_right_now table td { 6830 padding: 3px 0; 6831 white-space: nowrap; 6071 #plugin-information h2 { 6072 clear: none !important; 6073 margin-right: 200px; 6832 6074 } 6833 6834 #dashboard_right_now table tr.first td { 6835 border-top: none;6075 #plugin-information .fyi { 6076 margin: 0 10px 50px; 6077 width: 210px; 6836 6078 } 6837 6838 #dashboard_right_now td.b { 6839 padding-right: 6px; 6840 text-align: right; 6841 font-size: 14px; 6842 width: 1%; 6079 #plugin-information .fyi h2 { 6080 font-size: 0.9em; 6081 margin-bottom: 0; 6082 margin-right: 0; 6843 6083 } 6844 6845 #dashboard_right_now td.b a { 6846 font-size: 18px; 6084 #plugin-information .fyi h2.mainheader { 6085 padding: 5px; 6086 -moz-border-top-left-radius: 3px; 6087 -webkit-border-top-left-radius: 3px; 6088 border-top-left-radius: 3px; 6847 6089 } 6848 6849 #dashboard_right_now td.b a:hover { 6850 color: #d54e21; 6090 #plugin-information .fyi ul { 6091 padding: 10px 5px 10px 7px; 6092 margin: 0; 6093 list-style: none; 6094 -moz-border-bottom-left-radius: 3px; 6095 -webkit-border-bottom-left-radius: 3px; 6096 border-bottom-left-radius: 3px; 6851 6097 } 6852 6853 #dashboard_right_now .t { 6854 font-size: 12px; 6855 padding-right: 12px; 6856 padding-top: 6px; 6857 color: #777; 6098 #plugin-information .fyi li { 6099 margin-right: 0; 6858 6100 } 6859 6860 #dashboard_right_now .t a { 6861 white-space: nowrap; 6101 #plugin-information #section-holder { 6102 padding: 10px; 6862 6103 } 6863 6864 #dashboard_right_now .spam { 6865 color: red; 6104 #plugin-information .section ul, 6105 #plugin-information .section ol { 6106 margin-left: 16px; 6107 list-style-type: square; 6108 list-style-image: none; 6866 6109 } 6867 6868 #dashboard_right_now .waiting { 6869 color: #e66f00;6110 #plugin-information #section-screenshots ol { 6111 list-style: none; 6112 margin: 0; 6870 6113 } 6871 6872 #dashboard_right_now .approved { 6873 color: green; 6114 #plugin-information #section-screenshots li img { 6115 vertical-align: text-top; 6116 max-width: 100%; 6117 width: auto; 6118 height: auto; 6874 6119 } 6875 6876 #dashboard_right_now .versions { 6877 padding: 6px 10px 12px;6878 clear: both;6120 #plugin-information #section-screenshots li p { 6121 font-style: italic; 6122 padding-left: 20px; 6123 padding-bottom: 2em; 6879 6124 } 6880 6881 #dashboard_right_now a.button { 6882 float: right; 6883 clear: right; 6884 position: relative; 6885 top: -5px; 6125 #plugin-information #section-screenshots ol, 6126 #plugin-information .updated, 6127 #plugin-information pre { 6128 margin-right: 215px; 6886 6129 } 6887 6888 /* Recent Comments */ 6889 #dashboard_recent_comments h3 { 6890 margin-bottom: 0; 6130 #plugin-information pre { 6131 padding: 7px; 6132 overflow: auto; 6891 6133 } 6892 6893 #dashboard_recent_comments .inside { 6894 margin-top: 0; 6134 #poststuff #editor-toolbar { 6135 height: 30px; 6895 6136 } 6896 6897 #dashboard_recent_comments .comment-meta .approve { 6898 font-style: italic; 6899 font-family: sans-serif; 6900 font-size: 10px; 6137 div.zerosize { 6138 border: 0 none; 6139 height: 0; 6140 margin: 0; 6141 overflow: hidden; 6142 padding: 0; 6143 width: 0; 6901 6144 } 6902 6903 #dashboard_recent_comments .subsubsub { 6904 float: none; 6905 white-space: normal; 6145 .posting { 6146 margin-right: 212px; 6147 position: relative; 6906 6148 } 6907 6908 #the-comment-list { 6909 position: relative; 6149 h3.tb { 6150 text-shadow: 0 1px 0 #fff; 6151 font-size: 12px; 6152 font-weight: bold; 6153 line-height: normal; 6154 margin-left: 5px; 6910 6155 } 6911 6912 #the-comment-list .comment-item { 6913 padding: 1em 10px; 6914 border-top: 1px solid; 6156 #TB_window { 6157 border: 1px solid #333; 6915 6158 } 6916 6917 #the-comment-list .pingback{6918 padding-left: 9px !important;6159 .js .postbox:hover .handlediv, 6160 .js .stuffbox:hover .handlediv { 6161 background: transparent url(../images/arrows.png) no-repeat 6px 7px; 6919 6162 } 6920 6921 #the-comment-list .comment-item, 6922 #the-comment-list #replyrow { 6923 margin: 0 -10px; 6163 .press-this #submitdiv:hover .handlediv { 6164 background: none; 6924 6165 } 6925 6926 #the-comment-list .comment-item:first-child { 6927 border-top: none; 6166 .tbtitle { 6167 font-size: 1.7em; 6168 outline: none; 6169 padding: 3px 4px; 6170 border-color: #dfdfdf; 6928 6171 } 6929 6930 #the-comment-list .comment-item .avatar { 6931 float: left; 6932 margin: 0 10px 5px 0; 6172 #extra-fields .button { 6173 margin-right: 5px; 6933 6174 } 6934 6935 #the-comment-list .comment-item h4 { 6936 line-height: 1.7em; 6937 margin-top: -0.4em; 6938 color: #777; 6175 /* Photo Styles */ 6176 #photo_saving { 6177 margin: 0 8px 8px; 6178 vertical-align: middle; 6939 6179 } 6940 6941 #the-comment-list .comment-item h4 cite { 6942 font-style: normal; 6943 font-weight: normal; 6180 #img_container_container { 6181 overflow: auto; 6944 6182 } 6945 6946 #the-comment-list .comment-item blockquote, 6947 #the-comment-list .comment-item blockquote p { 6948 margin: 0; 6949 padding: 0; 6950 display: inline; 6183 #extra-fields { 6184 margin-top: 10px; 6185 position: relative; 6951 6186 } 6952 6953 #dashboard_recent_comments #the-comment-list .trackback blockquote, 6954 #dashboard_recent_comments #the-comment-list .pingback blockquote { 6955 display: block; 6187 #extra-fields h2 { 6188 margin: 12px; 6956 6189 } 6957 6958 #the-comment-list .comment-item p.row-actions { 6959 margin: 3px 0 0; 6960 padding: 0; 6961 font-size: 12px; 6190 #waiting { 6191 margin-top: 10px; 6192 overflow: hidden; 6962 6193 } 6963 6964 /* QuickPress */ 6965 .no-js #dashboard_quick_press { 6966 display: none; 6194 #waiting span { 6195 float: right; 6196 margin: 0 0 0 5px; 6967 6197 } 6968 6969 #dashboard_quick_press .easy-blogging { 6970 padding: 0 8px; 6971 text-align: left; 6198 #waiting .spinner { 6199 display: block; 6972 6200 } 6973 6974 #dashboard_quick_press .input-text-wrap { 6975 position: relative; 6201 #extra-fields .postbox { 6202 margin-bottom: 5px; 6976 6203 } 6977 6978 #dashboard_quick_press .prompt { 6979 color: #bbb;6980 position: absolute;6204 #extra-fields .titlewrap { 6205 padding: 0; 6206 overflow: auto; 6207 height: 100px; 6981 6208 } 6982 6983 #dashboard_quick_press div.updated { 6984 padding: 0 5px; 6209 #img_container a { 6210 display: block; 6211 float: left; 6212 overflow: hidden; 6985 6213 } 6986 6987 # title-wrap label,6988 #tags-input-wrap label { 6989 cursor: text;6214 #img_container img, 6215 #img_container a { 6216 width: 68px; 6217 height: 68px; 6990 6218 } 6991 6992 #title-wrap #title { 6993 padding: 2px 6px; 6994 font-size: 1.3em; 6995 line-height: 100%; 6996 outline: none; 6219 #img_container img { 6220 border: none; 6221 background-color: #f4f4f4; 6222 cursor: pointer; 6997 6223 } 6998 6999 #tags-input-wrap #tags-input { 7000 outline: none; 6224 #img_container a, 6225 #img_container a:link, 6226 #img_container a:visited { 6227 border: 1px solid #ccc; 6228 display: block; 6229 position: relative; 7001 6230 } 7002 7003 #title-wrap #title-prompt-text { 7004 font-size: 1.3em; 7005 padding: 5px 8px; 6231 #img_container a:hover, 6232 #img_container a:active { 6233 border-color: black; 6234 z-index: 1000; 6235 border-width: 2px; 6236 margin: -1px; 7006 6237 } 7007 7008 # tags-input-wrap #tags-input-prompt-text{7009 font-size: 1em;7010 padding: 4px8px;6238 /* Video */ 6239 #embed-code { 6240 width: 100%; 6241 height: 98px; 7011 6242 } 7012 7013 #dashboard_quick_press .input-text-wrap, 7014 #dashboard_quick_press .textarea-wrap { 7015 margin: 0 0 1em 0; 6243 #TB_ajaxContent #options { 6244 position: absolute; 6245 top: 20px; 6246 right: 25px; 6247 padding: 5px; 7016 6248 } 7017 7018 #dashboard_quick_press .wp-media-buttons { 7019 margin: 0 0 .2em 1px; 7020 padding: 0; 7021 } 7022 7023 #dashboard_quick_press .wp-media-buttons a { 7024 color: #777; 7025 } 7026 7027 #dashboard-widgets #dashboard_quick_press form p.submit input { 7028 float: left; 7029 } 7030 7031 #dashboard-widgets #dashboard_quick_press form p.submit #save-post { 7032 margin: 0 0.7em 0 1px; 7033 } 7034 7035 #dashboard-widgets #dashboard_quick_press form p.submit #publish { 7036 float: right; 7037 } 7038 7039 #dashboard-widgets #dashboard_quick_press form p.submit .spinner { 7040 vertical-align: middle; 7041 margin: 4px 6px 0 0; 6249 #TB_ajaxContent h3 { 6250 margin-bottom: .25em; 7042 6251 } 7043 7044 /* Recent Drafts */ 7045 #dashboard_recent_drafts ul, 7046 #dashboard_recent_drafts p { 7047 margin: 0; 7048 padding: 0; 7049 word-wrap: break-word; 6252 .error a { 6253 text-decoration: underline; 7050 6254 } 7051 7052 #dashboard_recent_drafts ul { 7053 list-style: none;6255 .updated a { 6256 text-decoration: none; 6257 padding-bottom: 2px; 7054 6258 } 7055 7056 #dashboard_recent_drafts ul li { 7057 margin-bottom: 1em; 6259 /* tag hints */ 6260 .taghint { 6261 color: #aaa; 6262 margin: -17px 0 0 7px; 6263 visibility: hidden; 7058 6264 } 7059 7060 #dashboard_recent_drafts h4 { 7061 line-height: 1.7em; 7062 word-wrap: break-word; 6265 input.newtag ~ div.taghint { 6266 visibility: visible; 7063 6267 } 7064 7065 #dashboard_recent_drafts h4 abbr { 7066 font-weight: normal; 7067 font-family: sans-serif; 7068 font-size: 12px; 7069 color: #999; 7070 margin-left: 3px; 6268 input.newtag:focus ~ div.taghint { 6269 visibility: hidden; 7071 6270 } 7072 7073 /* Feeds */ 7074 .rss-widget ul { 7075 margin: 0; 7076 padding: 0; 7077 list-style: none; 6271 /* TinyMCE */ 6272 #mce_fullscreen_container { 6273 background: #fff; 7078 6274 } 7079 7080 a.rsswidget { 7081 font-size: 13px; 7082 line-height: 1.7em; 6275 #photo-add-url-div input[type="text"] { 6276 width: 300px; 7083 6277 } 7084 7085 .rss-widget ul li { 7086 line-height: 1.5em; 7087 margin-bottom: 12px; 6278 /* theme-editor */ 6279 .alignleft h3 { 6280 margin: 0; 7088 6281 } 7089 7090 .rss-widget span.rss-date { 7091 color: #999; 7092 font-size: 12px; 7093 margin-left: 3px; 6282 h3 span { 6283 font-weight: normal; 7094 6284 } 7095 7096 .rss-widget cite { 7097 display: block;7098 text-align: right;7099 margin: 0 0 1em;7100 padding: 0;6285 #template textarea { 6286 font-family: Consolas, Monaco, monospace; 6287 font-size: 12px; 6288 width: 97%; 6289 background: #f9f9f9; 6290 outline: none; 7101 6291 } 7102 7103 .rss-widget cite:before { 7104 content: '\2014'; 6292 #template p { 6293 width: 97%; 7105 6294 } 7106 7107 /* Plugins */ 7108 #dashboard_plugins h4 { 7109 line-height: 1.7em;6295 #templateside { 6296 float: right; 6297 width: 190px; 6298 word-wrap: break-word; 7110 6299 } 7111 7112 #dashboard_plugins h5 { 7113 font-weight: normal; 7114 font-size: 13px; 7115 margin: 0; 7116 display: inline; 7117 line-height: 1.4em; 6300 #templateside h3, 6301 #postcustomstuff p.submit { 6302 margin: 0; 7118 6303 } 7119 7120 #dashboard_plugins h5 a { 7121 line-height: 1.4em; 6304 #templateside h4 { 6305 margin: 1em 0 0; 7122 6306 } 7123 7124 # dashboard_plugins .inside span{7125 font-size: 12px;7126 padding-left: 5px;6307 #templateside ol, 6308 #templateside ul { 6309 margin: .5em; 6310 padding: 0; 7127 6311 } 7128 7129 #dashboard_plugins p { 7130 margin: 0.3em 0 1.4em; 7131 line-height: 1.4em; 6312 #templateside li { 6313 margin: 4px 0; 7132 6314 } 7133 7134 .dashboard-comment-wrap { 7135 overflow: hidden; 7136 word-wrap: break-word; 6315 #templateside ul li a span.highlight { 6316 display: block; 7137 6317 } 7138 7139 /* Browser Nag */ 7140 #dashboard_browser_nag a.update-browser-link { 7141 font-size: 1.2em; 7142 font-weight: bold; 6318 .nonessential { 6319 font-size: 11px; 6320 font-style: italic; 6321 padding-left: 12px; 7143 6322 } 7144 7145 #dashboard_browser_nag a { 7146 text-decoration: underline; 6323 .highlight { 6324 padding: 3px 3px 3px 12px; 6325 margin-left: -12px; 6326 font-weight: bold; 6327 border: 0 none; 7147 6328 } 7148 7149 #dashboard_browser_nag p.browser-update-nag.has-browser-icon { 7150 padding-right: 125px; 6329 #documentation { 6330 margin-top: 10px; 7151 6331 } 7152 7153 #dashboard_browser_nag .browser-icon { 7154 margin-top: -35px; 6332 #documentation label { 6333 line-height: 22px; 6334 vertical-align: top; 6335 font-weight: bold; 7155 6336 } 7156 7157 #dashboard_browser_nag.postbox.browser-insecure { 7158 background-color: #ac1b1b; 7159 border-color: #ac1b1b; 6337 .fileedit-sub { 6338 padding: 10px 0 8px; 6339 line-height: 180%; 7160 6340 } 7161 7162 #dashboard_browser_nag.postbox { 7163 background-color: #e29808; 7164 background-image: none; 7165 border-color: #edc048; 7166 color: #fff; 7167 -webkit-box-shadow: none; 7168 box-shadow: none; 6341 #filter-box { 6342 clear: both; 7169 6343 } 7170 7171 #dashboard_browser_nag.postbox.browser-insecure h3 { 7172 border-bottom-color: #cd5a5a; 7173 color: #fff; 6344 .feature-filter { 6345 padding: 8px 12px 0; 7174 6346 } 7175 7176 #dashboard_browser_nag.postbox h3 { 7177 border-bottom-color: #f6e2ac; 7178 text-shadow: none; 7179 background: transparent none; 7180 color: #fff; 7181 -webkit-box-shadow: none; 7182 box-shadow: none; 6347 .feature-filter .feature-group { 6348 float: left; 6349 margin: 5px 10px 10px; 7183 6350 } 7184 7185 #dashboard_browser_nag a { 7186 color: #fff; 6351 .feature-filter .feature-group li { 6352 display: inline-block; 6353 vertical-align: top; 6354 list-style-type: none; 6355 padding-right: 25px; 6356 width: 150px; 7187 6357 } 7188 7189 #dashboard_browser_nag.browser-insecure a.browse-happy-link, 7190 #dashboard_browser_nag.browser-insecure a.update-browser-link { 7191 text-shadow: #871b15 0 1px 0;6358 .feature-container { 6359 width: 100%; 6360 overflow: auto; 6361 margin-bottom: 10px; 7192 6362 } 7193 7194 #dashboard_browser_nag a.browse-happy-link,7195 #dashboard_browser_nag a.update-browser-link{7196 text-shadow: #d29a04 0 1px 0;6363 /* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */ 6364 .ui-sortable, 6365 .ui-draggable { 6366 -ms-touch-action: none; 7197 6367 } 7198 7199 7200 6368 /* login */ 7201 7202 6369 .login * { 7203 margin: 0; 7204 padding: 0; 6370 margin: 0; 6371 padding: 0; 6372 } 6373 .login h1 a { 6374 background-image: url('../images/wordpress-logo.png?ver=20120216'); 6375 background-size: 274px 63px; 6376 background-position: top center; 6377 background-repeat: no-repeat; 6378 width: 326px; 6379 height: 67px; 6380 text-indent: -9999px; 6381 outline: none; 6382 overflow: hidden; 6383 padding-bottom: 15px; 6384 display: block; 7205 6385 } 7206 7207 6386 .login form { 7208 7209 7210 7211 7212 7213 7214 6387 margin-left: 8px; 6388 padding: 26px 24px 46px; 6389 font-weight: normal; 6390 background: #fff; 6391 border: 1px solid #e5e5e5; 6392 -webkit-box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px; 6393 box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px; 7215 6394 } 7216 7217 6395 .login form .forgetmenot { 7218 font-weight: normal; 7219 float: left; 7220 margin-bottom: 0; 7221 } 7222 7223 .login .button-primary { 7224 float: right; 6396 float: left; 6397 margin-bottom: 0; 7225 6398 } 7226 7227 #login form p { 7228 margin-bottom: 0; 6399 .login form .forgetmenot label { 6400 font-size: 12px; 6401 font-weight: normal; 6402 line-height: 19px; 7229 6403 } 7230 7231 #login form p.submit { 7232 padding: 0; 6404 .login .button-primary { 6405 float: right; 7233 6406 } 7234 7235 6407 .login label { 7236 7237 6408 color: #777; 6409 font-size: 14px; 7238 6410 } 7239 7240 .login form .forgetmenot label { 7241 font-size: 12px; 7242 line-height: 19px; 6411 .login #nav, 6412 .login #backtoblog { 6413 text-shadow: #fff 0 1px 0; 6414 margin: 0 0 0 16px; 6415 padding: 16px 16px 0; 7243 6416 } 7244 7245 .login h1 a { 7246 background-image: url('../images/wordpress-logo.png?ver=20120216'); 7247 background-size: 274px 63px; 7248 background-position: top center; 7249 background-repeat: no-repeat; 7250 width: 326px; 7251 height: 67px; 7252 text-indent: -9999px; 7253 outline: none; 7254 overflow: hidden; 7255 padding-bottom: 15px; 7256 display: block; 6417 .login form .input, 6418 .login input[type="text"] { 6419 color: #555; 6420 font-weight: 200; 6421 font-size: 24px; 6422 line-height: 1; 6423 width: 100%; 6424 padding: 3px; 6425 margin-top: 2px; 6426 margin-right: 6px; 6427 margin-bottom: 16px; 6428 border: 1px solid #e5e5e5; 6429 background: #fbfbfb; 6430 outline: none; 6431 -webkit-box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2); 6432 box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2); 6433 } 6434 .login #pass-strength-result { 6435 width: 250px; 6436 font-weight: bold; 6437 border-style: solid; 6438 border-width: 1px; 6439 margin: 12px 0 6px; 6440 padding: 6px 5px; 6441 text-align: center; 7257 6442 } 7258 7259 6443 #login { 7260 width: 320px; 7261 padding: 114px 0 0; 7262 margin: auto; 6444 width: 320px; 6445 padding: 114px 0 0; 6446 margin: auto; 6447 } 6448 #login form p { 6449 margin-bottom: 0; 6450 } 6451 #login form p.submit { 6452 padding: 0; 7263 6453 } 7264 7265 6454 #login_error, 7266 6455 .login .message { 7267 margin: 0 0 16px 8px; 7268 padding: 12px; 7269 } 7270 7271 .login #nav, 7272 .login #backtoblog { 7273 text-shadow: #fff 0 1px 0; 7274 margin: 0 0 0 16px; 7275 padding: 16px 16px 0; 6456 margin: 0 0 16px 8px; 6457 padding: 12px; 7276 6458 } 7277 7278 6459 #backtoblog { 7279 padding: 12px 16px 0; 7280 } 7281 7282 .login form .input, 7283 .login input[type="text"] { 7284 color: #555; 7285 font-weight: 200; 7286 font-size: 24px; 7287 line-height: 1; 7288 width: 100%; 7289 padding: 3px; 7290 margin-top: 2px; 7291 margin-right: 6px; 7292 margin-bottom: 16px; 7293 border: 1px solid #e5e5e5; 7294 background: #fbfbfb; 7295 outline: none; 7296 -webkit-box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2); 7297 box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2); 7298 } 7299 7300 .login #pass-strength-result { 7301 width: 250px; 7302 font-weight: bold; 7303 border-style: solid; 7304 border-width: 1px; 7305 margin: 12px 0 6px; 7306 padding: 6px 5px; 7307 text-align: center; 6460 padding: 12px 16px 0; 7308 6461 } 7309 7310 6462 .mobile #login { 7311 padding: 20px 0; 7312 } 7313 7314 .mobile #login form, 7315 .mobile #login .message, 7316 .mobile #login_error { 7317 margin-left: 0; 6463 padding: 20px 0; 7318 6464 } 7319 7320 6465 .mobile #login #nav, 7321 6466 .mobile #login #backtoblog { 7322 6467 margin-left: 8px; 7323 6468 } 7324 7325 6469 .mobile #login h1 a { 7326 width: auto; 6470 width: auto; 6471 } 6472 .mobile #login form, 6473 .mobile #login .message, 6474 .mobile #login_error { 6475 margin-left: 0; 7327 6476 } 7328 7329 6477 body.interim-login { 7330 6478 height: auto; 7331 6479 } 7332 7333 6480 .interim-login #login { 7334 7335 6481 padding: 0; 6482 margin: 5px auto 20px; 7336 6483 } 7337 7338 6484 .interim-login.login h1 a { 7339 6485 width: auto; 7340 6486 } 7341 7342 6487 .interim-login #login_error, 7343 6488 .interim-login.login .message { 7344 6489 margin: 0 0 16px; 7345 6490 } 7346 7347 6491 .interim-login.login form { 7348 6492 margin: 0; 7349 6493 } 6494 .pressthis { 6495 margin: 20px 0; 6496 /* Header */ 7350 6497 7351 /* ms */ 7352 /* Dashboard: MS Specific Data */ 7353 #dashboard_right_now p.musub { 7354 margin-top: 12px; 7355 border-top: 1px solid #ececec; 7356 padding-left: 16px; 7357 position: static; 7358 } 6498 /* Editor/Main Column */ 7359 6499 7360 .rtl #dashboard_right_now p.musub { 7361 padding-left: 0; 7362 padding-right: 16px; 7363 } 6500 /* Categories */ 7364 6501 7365 #dashboard_right_now td.b a.musublink { 7366 font-size: 16px; 7367 } 6502 /* Tags */ 7368 6503 7369 #dashboard_right_now div.musubtable { 7370 border-top: none; 7371 } 6504 /* Submit */ 7372 6505 7373 #dashboard_right_now div.musubtable .t {7374 white-space: normal;7375 6506 } 7376 7377 /* Background Color for Site Status */ 7378 .wp-list-table .site-deleted { 7379 background: #ff8573; 6507 .pressthis a, 6508 .pressthis a:hover, 6509 .pressthis a:focus, 6510 .pressthis a:active { 6511 display: inline-block; 6512 position: relative; 6513 cursor: move; 6514 color: #333; 6515 background: #d8d8d8; 6516 background-image: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #e6e6e6), color-stop(77%, #d8d8d8)); 6517 background-image: -webkit-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%); 6518 background-image: -moz-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%); 6519 background-image: -o-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%); 6520 background-image: linear-gradient(to top, #e6e6e6 7%, #d8d8d8); 6521 border-radius: 5px; 6522 -moz-border-radius: 5px; 6523 -webkit-border-radius: 5px; 6524 border: 1px solid #b4b4b4; 6525 font-style: normal; 6526 line-height: 16px; 6527 font-size: 14px; 6528 text-decoration: none; 6529 text-shadow: 0 1px 0px #fff; 7380 6530 } 7381 . wp-list-table .site-spammed{7382 background: #faafaa;6531 .pressthis a:active { 6532 outline: none; 7383 6533 } 7384 .wp-list-table .site-archived { 7385 background: #ffebe8; 6534 .pressthis a:hover:after { 6535 -webkit-transform: skew(20deg) rotate(9deg); 6536 -moz-transform: skew(20deg) rotate(9deg); 6537 transform: skew(20deg) rotate(9deg); 6538 -moz-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); 6539 -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); 6540 box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); 7386 6541 } 7387 .wp-list-table .site-mature { 7388 background: #fecac2; 6542 .pressthis a span { 6543 background: url(../images/press-this.png?v=20120502) no-repeat 0px 5px; 6544 background-size: 24px 20px; 6545 padding: 8px 11px 8px 27px; 6546 margin: 0 5px; 6547 display: inline-block; 6548 } 6549 .pressthis a:after { 6550 content: ''; 6551 width: 70%; 6552 height: 55%; 6553 z-index: -1; 6554 position: absolute; 6555 right: 10px; 6556 bottom: 9px; 6557 background: transparent; 6558 -webkit-transform: skew(20deg) rotate(6deg); 6559 -moz-transform: skew(20deg) rotate(6deg); 6560 transform: skew(20deg) rotate(6deg); 6561 -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6); 6562 box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6); 6563 } 6564 .pressthis #wphead { 6565 height: 32px; 6566 margin-left: 0; 6567 margin-right: 0; 6568 margin-bottom: 5px; 6569 } 6570 .pressthis #wphead h1 { 6571 font-size: 16px; 6572 font-weight: normal; 6573 line-height: 32px; 6574 margin: 0; 6575 float: left; 6576 } 6577 .pressthis #wphead h1 a { 6578 text-decoration: none; 6579 } 6580 .pressthis #wphead h1 a:hover { 6581 text-decoration: underline; 6582 } 6583 .pressthis #header-logo { 6584 float: left; 6585 margin: 7px 7px 0; 6586 -webkit-user-select: none; 6587 -moz-user-select: none; 6588 user-select: none; 6589 } 6590 .pressthis #message { 6591 margin: 10px 0; 6592 } 6593 .pressthis #title { 6594 margin-left: 0; 6595 margin-right: 0; 6596 -moz-box-sizing: border-box; 6597 -webkit-box-sizing: border-box; 6598 -ms-box-sizing: border-box; 6599 box-sizing: border-box; 6600 } 6601 .pressthis .tagchecklist span a { 6602 background: transparent url(../images/xit.gif) no-repeat 0 0; 6603 } 6604 .pressthis #titlediv { 6605 margin: 0; 6606 } 6607 .pressthis .wp-media-buttons { 6608 cursor: default; 6609 padding: 8px 8px 0; 6610 } 6611 .pressthis .howto { 6612 margin-top: 2px; 6613 margin-bottom: 3px; 6614 font-size: 12px; 6615 font-style: italic; 6616 display: block; 6617 } 6618 .pressthis #poststuff { 6619 margin: 0 10px 10px; 6620 padding: 0; 6621 } 6622 .pressthis #photo-add-url-div input[type="text"] { 6623 width: 220px; 6624 } 6625 .pressthis .inner-sidebar { 6626 width: 200px; 6627 } 6628 .pressthis .inner-sidebar .sleeve { 6629 padding-top: 5px; 6630 } 6631 .pressthis #submitdiv p { 6632 margin: 0; 6633 padding: 6px; 6634 } 6635 .pressthis #submitdiv #publishing-actions { 6636 border-bottom: 1px solid #dfdfdf; 6637 } 6638 .pressthis #publish { 6639 float: right; 6640 } 6641 .pressthis #poststuff h2, 6642 .pressthis #poststuff h3 { 6643 font-size: 14px; 6644 line-height: 1; 6645 } 6646 .pressthis #tagsdiv-post_tag h3, 6647 .pressthis #categorydiv h3 { 6648 cursor: pointer; 6649 } 6650 .pressthis #submitdiv h3 { 6651 cursor: default; 6652 } 6653 .pressthis .postbox, 6654 .pressthis .stuffbox { 6655 margin-bottom: 10px; 6656 min-width: 0; 6657 } 6658 .pressthis .actions { 6659 float: right; 6660 margin: -19px 0 0; 6661 } 6662 #extra-fields .pressthis .actions { 6663 margin: -32px -7px 0 0; 6664 } 6665 .pressthis .actions li { 6666 float: left; 6667 list-style: none; 6668 margin-right: 10px; 6669 } 6670 .pressthis .categorydiv div.tabs-panel { 6671 height: 100px; 6672 } 6673 .pressthis .tagsdiv .newtag { 6674 width: 120px; 6675 } 6676 .pressthis #content { 6677 margin: 5px 0; 6678 padding: 0 5px; 6679 border: 0 none; 6680 height: 345px; 6681 font-family: Consolas, Monaco, monospace; 6682 font-size: 13px; 6683 line-height: 19px; 6684 background: transparent; 6685 } 6686 .pressthis #publishing-actions .spinner { 6687 display: inline; 6688 vertical-align: middle; 6689 } 6690 /* press-this */ 6691 body.press-this { 6692 color: #333; 6693 margin: 0; 6694 padding: 0; 6695 min-width: 675px; 6696 min-height: 400px; 6697 } 6698 .press-this-sidebar { 6699 float: right; 6700 width: 200px; 6701 padding-top: 10px; 7389 6702 } 7390 7391 6703 /* nav-menu */ 7392 7393 6704 .no-js #message { 7394 6705 display: block; 7395 6706 } 7396 7397 6707 #nav-menu-meta ul.outer-border { 7398 -webkit-border-radius: 3px; 7399 border-radius: 3px; 6708 border-radius: 3px; 6709 -moz-border-radius: 3px; 6710 -webkit-border-radius: 3px; 7400 6711 } 7401 7402 6712 .accordion-section ul.category-tabs, 7403 6713 .accordion-section ul.add-menu-item-tabs, 7404 6714 .accordion-section ul.wp-tab-bar { 7405 6715 margin: 0; 7406 6716 } 7407 7408 6717 .accordion-section .categorychecklist { 7409 6718 margin: 13px 0; 7410 6719 } 7411 7412 6720 #nav-menu-meta .accordion-section-content { 7413 6721 padding: 18px 13px; 7414 6722 } 7415 7416 6723 #nav-menu-meta .button-controls { 7417 6724 margin-bottom: 0; 7418 6725 } 7419 7420 6726 #nav-menus-frame { 7421 7422 6727 margin-left: 300px; 6728 margin-top: 23px; 7423 6729 } 7424 7425 6730 #wpbody-content #menu-settings-column { 7426 display:inline;7427 width:281px;7428 7429 7430 7431 6731 display: inline; 6732 width: 281px; 6733 margin-left: -300px; 6734 clear: both; 6735 float: left; 6736 padding-top: 0; 7432 6737 } 7433 7434 6738 #menu-settings-column .inside { 7435 7436 6739 clear: both; 6740 margin: 10px 0 0; 7437 6741 } 7438 7439 6742 .metabox-holder-disabled .postbox, 7440 .metabox-holder-disabled .accordion-section-content 7441 7442 6743 .metabox-holder-disabled .accordion-section-content { 6744 opacity: 0.5; 6745 filter: alpha(opacity=50); 7443 6746 } 7444 7445 6747 .metabox-holder-disabled .button-controls .select-all { 7446 6748 display: none; 7447 6749 } 7448 7449 6750 #wpbody { 7450 6751 position: relative; 7451 6752 } 7452 7453 6753 .blank-slate .menu-name { 7454 6754 height: 2em; 7455 6755 } 7456 7457 6756 .blank-slate .menu-settings { 7458 7459 7460 7461 6757 border: none; 6758 margin-top: 0; 6759 padding-top: 0; 6760 overflow: hidden; 7462 6761 } 7463 7464 6762 .is-submenu { 7465 7466 7467 6763 font-style: italic; 6764 font-weight: normal; 6765 margin-left: 4px; 7468 6766 } 7469 7470 6767 .manage-menus { 7471 margin-top: 23px; 7472 padding: 10px; 7473 overflow: hidden; 7474 -webkit-border-radius: 3px; 7475 border-radius: 3px; 6768 margin-top: 23px; 6769 padding: 10px; 6770 overflow: hidden; 6771 border-radius: 3px; 6772 -moz-border-radius: 3px; 6773 -webkit-border-radius: 3px; 7476 6774 } 7477 7478 6775 .manage-menus select { 7479 7480 6776 float: left; 6777 margin-right: 6px; 7481 6778 } 7482 7483 6779 .manage-menus .selected-menu { 7484 7485 6780 float: left; 6781 margin: 5px 6px 0 0; 7486 6782 } 7487 7488 6783 .manage-menus .submit-btn { 7489 7490 6784 float: left; 6785 margin-top: 1px; 7491 6786 } 7492 7493 6787 .menu-edit p { 7494 6788 margin: .3em 0 .6em; 7495 6789 } 7496 7497 6790 .menu-edit #post-body-content h3 { 7498 margin: 0 0 10px; 6791 margin: 0 0 10px; 6792 } 6793 .menu-edit .checkbox-input { 6794 margin-top: 4px; 7499 6795 } 7500 7501 6796 .menu-settings { 7502 7503 6797 margin-top: 2em; 6798 overflow: hidden; 7504 6799 } 7505 7506 6800 .menu-settings dl { 7507 7508 7509 6801 margin: 0 0 10px; 6802 overflow: hidden; 6803 position: relative; 7510 6804 } 7511 7512 6805 .menu-settings dd { 7513 float: left; 7514 margin: 0; 7515 width: 60%; 7516 } 7517 7518 .menu-edit .checkbox-input { 7519 margin-top: 4px; 6806 float: left; 6807 margin: 0; 6808 width: 60%; 7520 6809 } 7521 7522 6810 .theme-location-set { 7523 6811 font-size: 11px; 7524 6812 } 7525 7526 6813 /* Menu Container */ 7527 6814 #menu-management-liquid { 7528 7529 7530 6815 float: left; 6816 min-width: 100%; 6817 margin-top: 3px; 7531 6818 } 7532 7533 6819 #menu-management { 7534 7535 7536 7537 6820 position: relative; 6821 margin-right: 20px; 6822 margin-top: -3px; 6823 width: 100%; 7538 6824 } 7539 7540 6825 #menu-management .menu-edit { 7541 6826 margin-bottom: 20px; 7542 6827 } 7543 7544 6828 .nav-menus-php #post-body { 7545 7546 7547 6829 padding: 0 10px 10px; 6830 border-width: 1px 0; 6831 border-style: solid; 7548 6832 } 7549 7550 6833 #nav-menu-header, 7551 6834 #nav-menu-footer { 7552 6835 padding: 0 10px; 7553 6836 } 7554 7555 6837 #nav-menu-header { 7556 7557 6838 border-bottom: 1px solid; 6839 margin-bottom: 13px; 7558 6840 } 7559 7560 6841 #nav-menu-header .menu-name-label { 7561 6842 margin-top: 2px; 7562 6843 } 7563 7564 6844 #nav-menu-footer { 7565 6845 border-top: 1px solid; 7566 6846 } 7567 7568 6847 .nav-menus-php #post-body div.updated, 7569 6848 .nav-menus-php #post-body div.error { 7570 6849 margin: 0; 7571 6850 } 7572 7573 6851 .nav-menus-php #post-body-content { 7574 7575 6852 position: relative; 6853 float: none; 7576 6854 } 7577 7578 6855 #menu-management .menu-add-new abbr { 7579 font-weight:bold;6856 font-weight: bold; 7580 6857 } 7581 7582 6858 #select-nav-menu-container { 7583 7584 7585 6859 text-align: right; 6860 padding: 0 10px 3px 10px; 6861 margin-bottom: 5px; 7586 6862 } 7587 7588 6863 #select-nav-menu { 7589 7590 6864 width: 100px; 6865 display: inline; 7591 6866 } 7592 7593 6867 #menu-name-label { 7594 6868 margin-top: -2px; 7595 6869 } 7596 7597 6870 .widefat td.menu-location-menus { 7598 6871 padding-bottom: 5px; 7599 6872 } 7600 7601 6873 .menu-location-menus select { 7602 6874 float: left; 7603 6875 } 7604 7605 6876 #locations-nav-menu-wrapper { 7606 6877 padding: 5px 0; 7607 6878 } 7608 7609 6879 .locations-nav-menu-select select { 7610 float: left; 7611 width: 160px; 7612 margin-right: 5px; 7613 } 7614 7615 .locations-row-links { 7616 float: left; 7617 margin: 6px 0 0 6px; 7618 } 7619 7620 .locations-edit-menu-link, 7621 .locations-add-menu-link { 7622 margin: 0 3px; 7623 } 7624 7625 .locations-edit-menu-link { 7626 padding-right: 3px; 7627 border-right: 1px solid #ccc; 7628 } 7629 7630 #wpbody .open-label { 7631 display: block; 7632 float:left; 7633 } 7634 7635 #wpbody .open-label span { 7636 padding-right: 10px; 7637 } 7638 7639 .js .input-with-default-title { 7640 font-style: italic; 7641 } 7642 7643 #menu-management .inside { 7644 padding: 0 10px; 7645 } 7646 7647 /* Add Menu Item Boxes */ 7648 .postbox .howto input, 7649 .accordion-container .howto input { 7650 width: 180px; 7651 float: right; 7652 } 7653 7654 .accordion-container .outer-border { 7655 margin: 0; 7656 } 7657 7658 #nav-menu-meta .accordion-container .top { 7659 border-top: 1px solid #dfdfdf; 7660 } 7661 7662 #nav-menu-meta .accordion-container .accordion-section:first-child, 7663 #nav-menu-meta .accordion-container .accordion-section:first-child h3, 7664 #nav-menu-meta .accordion-container .top, 7665 #nav-menu-meta .accordion-container .top h3 { 7666 -webkit-border-top-right-radius: 3px; 7667 -webkit-border-top-left-radius: 3px; 7668 border-top-right-radius: 3px; 7669 border-top-left-radius: 3px; 7670 } 7671 7672 #nav-menu-meta .accordion-container .accordion-section:last-child, 7673 #nav-menu-meta .accordion-container .accordion-section:last-child .accordion-section-content, 7674 #nav-menu-meta .accordion-container .bottom, 7675 #nav-menu-meta .accordion-container .bottom:not(.open) h3 { 7676 -webkit-border-bottom-right-radius: 3px; 7677 -webkit-border-bottom-left-radius: 3px; 7678 border-bottom-right-radius: 3px; 7679 border-bottom-left-radius: 3px; 7680 } 7681 7682 .customlinkdiv .howto input { 7683 width: 180px; 7684 } 7685 7686 .customlinkdiv p { 7687 margin-top: 0 7688 } 7689 7690 #nav-menu-theme-locations .howto select { 7691 width: 100%; 7692 } 7693 7694 #nav-menu-theme-locations .button-controls { 7695 text-align: right; 7696 } 7697 7698 .add-menu-item-view-all { 7699 height: 400px; 7700 } 7701 7702 /* Button Primary Actions */ 7703 #menu-container .submit { 7704 margin: 0 0 10px; 7705 padding: 0; 7706 } 7707 7708 .nav-menus-php .add-new-menu-action { 7709 float: left; 7710 margin: 6px 0 0 6px; 7711 line-height: 15px; 7712 } 7713 7714 .nav-menus-php .meta-sep, 7715 .nav-menus-php .submitdelete, 7716 .nav-menus-php .submitcancel { 7717 display: block; 7718 float: left; 7719 margin: 4px 0; 7720 line-height: 15px; 7721 } 7722 7723 .meta-sep { 7724 padding: 0 2px; 7725 } 7726 7727 #cancel-save { 7728 text-decoration: underline; 7729 font-size: 12px; 7730 margin-left: 20px; 7731 margin-top: 5px; 7732 } 7733 7734 .button.right, .button-secondary.right, .button-primary.right { 7735 float: right; 7736 } 7737 7738 /* Button Secondary Actions */ 7739 .list-controls { 7740 float: left; 7741 margin-top: 5px; 7742 } 7743 7744 .add-to-menu { 7745 float: right; 7746 } 7747 7748 .postbox .spinner { 7749 display: none; 7750 vertical-align: middle; 7751 } 7752 7753 .button-controls { 7754 clear:both; 7755 margin: 10px 0; 7756 } 7757 7758 .show-all, 7759 .hide-all { 7760 cursor: pointer; 7761 } 7762 7763 .hide-all { 7764 display: none; 7765 } 7766 7767 /* Create Menu */ 7768 #menu-name { 7769 width: 270px; 7770 } 7771 7772 #manage-menu .inside { 7773 padding: 0px 0px; 7774 } 7775 7776 /* Custom Links */ 7777 #available-links dt { 7778 display: block; 7779 } 7780 7781 #add-custom-link .howto { 7782 font-size: 12px; 7783 } 7784 7785 #add-custom-link label span { 7786 display: block; 7787 float: left; 7788 margin-top: 5px; 7789 padding-right: 5px; 7790 } 7791 7792 .menu-item-textbox { 7793 width: 180px; 7794 } 7795 7796 .nav-menus-php .howto span { 7797 margin-top: 4px; 7798 display: block; 7799 float: left; 6880 float: left; 6881 width: 160px; 6882 margin-right: 5px; 7800 6883 } 7801 7802 /* Menu item types */ 7803 .quick-search { 7804 width: 190px; 7805 } 7806 7807 .nav-menus-php .list-wrap { 7808 display: none; 7809 clear: both; 7810 margin-bottom: 10px; 7811 } 7812 7813 .nav-menus-php .list-container { 7814 max-height: 200px; 7815 overflow-y: auto; 7816 padding: 10px 10px 5px; 7817 } 7818 7819 .nav-menus-php .postbox p.submit { 7820 margin-bottom: 0; 7821 } 7822 7823 /* Listings */ 7824 .nav-menus-php .list li { 7825 display: none; 7826 margin: 0; 7827 margin-bottom: 5px; 7828 } 7829 7830 .nav-menus-php .list li .menu-item-title { 7831 cursor: pointer; 7832 display: block; 7833 } 7834 7835 .nav-menus-php .list li .menu-item-title input { 7836 margin-right: 3px; 7837 margin-top: -3px; 7838 } 7839 7840 /* Nav Menu */ 7841 #menu-container .inside { 7842 padding-bottom: 10px; 7843 } 7844 7845 .menu { 7846 padding-top:1em; 7847 } 7848 7849 #menu-to-edit { 7850 margin: 0; 7851 padding: 0.1em 0; 7852 } 7853 7854 .menu ul { 7855 width: 100%; 7856 } 7857 7858 .menu li { 7859 margin-bottom: 0; 7860 position:relative; 7861 } 7862 7863 .menu-item-bar { 7864 clear:both; 7865 line-height:1.5em; 7866 position:relative; 7867 margin: 9px 0 0; 7868 } 7869 7870 .menu-item-handle { 7871 border: 1px solid #dfdfdf; 7872 position: relative; 7873 padding-left: 10px; 7874 height: auto; 7875 width: 400px; 7876 line-height: 35px; 7877 text-shadow: 0 1px 0 #FFFFFF; 7878 overflow: hidden; 7879 word-wrap: break-word; 7880 } 7881 7882 #menu-to-edit .menu-item-invalid .menu-item-handle { 7883 background: #f6c9cc; 7884 background-image: -webkit-gradient(linear, left bottom, left top, from(#f6c9cc), to(#fdf8ff)); 7885 background-image: -webkit-linear-gradient(bottom, #f6c9cc, #fdf8ff); 7886 background-image: -moz-linear-gradient(bottom, #f6c9cc, #fdf8ff); 7887 background-image: -o-linear-gradient(bottom, #f6c9cc, #fdf8ff); 7888 background-image: linear-gradient(to top, #f6c9cc, #fdf8ff); 7889 } 7890 7891 .menu-item-edit-active .menu-item-handle { 7892 -webkit-border-bottom-right-radius: 0; 7893 -webkit-border-bottom-left-radius: 0; 7894 border-bottom-right-radius: 0; 7895 border-bottom-left-radius: 0; 7896 } 7897 7898 .no-js .menu-item-edit-active .item-edit { 7899 display: none; 7900 } 7901 7902 .js .menu-item-handle { 7903 cursor: move; 7904 } 7905 7906 .menu li.deleting .menu-item-handle { 7907 background-image: none; 7908 text-shadow: 0 0 0; 7909 } 7910 7911 .menu-item-handle .item-title { 7912 font-size: 12px; 7913 font-weight: bold; 7914 padding: 7px 0; 7915 line-height: 20px; 7916 display:block; 7917 margin-right:13em; 7918 } 7919 7920 /* Sortables */ 7921 li.menu-item.ui-sortable-helper dl { 7922 margin-top: 0; 7923 } 7924 7925 li.menu-item.ui-sortable-helper .menu-item-transport dl { 7926 margin-top: 13px; 7927 } 7928 7929 .menu .sortable-placeholder { 7930 height: 35px; 7931 width: 410px; 7932 margin-top: 13px; 7933 } 7934 7935 /* WARNING: The factor of 30px is hardcoded into the nav-menus javascript. */ 7936 .menu-item-depth-0 { margin-left: 0px; } 7937 .menu-item-depth-1 { margin-left: 30px; } 7938 .menu-item-depth-2 { margin-left: 60px; } 7939 .menu-item-depth-3 { margin-left: 90px; } 7940 .menu-item-depth-4 { margin-left: 120px; } 7941 .menu-item-depth-5 { margin-left: 150px; } 7942 .menu-item-depth-6 { margin-left: 180px; } 7943 .menu-item-depth-7 { margin-left: 210px; } 7944 .menu-item-depth-8 { margin-left: 240px; } 7945 .menu-item-depth-9 { margin-left: 270px; } 7946 .menu-item-depth-10 { margin-left: 300px; } 7947 .menu-item-depth-11 { margin-left: 330px; } 7948 7949 .menu-item-depth-0 .menu-item-transport { margin-left: 0px; } 7950 .menu-item-depth-1 .menu-item-transport { margin-left: -30px; } 7951 .menu-item-depth-2 .menu-item-transport { margin-left: -60px; } 7952 .menu-item-depth-3 .menu-item-transport { margin-left: -90px; } 7953 .menu-item-depth-4 .menu-item-transport { margin-left: -120px; } 7954 .menu-item-depth-5 .menu-item-transport { margin-left: -150px; } 7955 .menu-item-depth-6 .menu-item-transport { margin-left: -180px; } 7956 .menu-item-depth-7 .menu-item-transport { margin-left: -210px; } 7957 .menu-item-depth-8 .menu-item-transport { margin-left: -240px; } 7958 .menu-item-depth-9 .menu-item-transport { margin-left: -270px; } 7959 .menu-item-depth-10 .menu-item-transport { margin-left: -300px; } 7960 .menu-item-depth-11 .menu-item-transport { margin-left: -330px; } 7961 7962 body.menu-max-depth-0 { min-width: 950px !important; } 7963 body.menu-max-depth-1 { min-width: 980px !important; } 7964 body.menu-max-depth-2 { min-width: 1010px !important; } 7965 body.menu-max-depth-3 { min-width: 1040px !important; } 7966 body.menu-max-depth-4 { min-width: 1070px !important; } 7967 body.menu-max-depth-5 { min-width: 1100px !important; } 7968 body.menu-max-depth-6 { min-width: 1130px !important; } 7969 body.menu-max-depth-7 { min-width: 1160px !important; } 7970 body.menu-max-depth-8 { min-width: 1190px !important; } 7971 body.menu-max-depth-9 { min-width: 1220px !important; } 7972 body.menu-max-depth-10 { min-width: 1250px !important; } 7973 body.menu-max-depth-11 { min-width: 1280px !important; } 7974 7975 /* Menu item controls */ 7976 .item-type { 7977 font-size: 12px; 7978 padding-right: 10px; 7979 } 7980 7981 .item-controls { 7982 font-size: 12px; 7983 position: absolute; 7984 right: 20px; 7985 top: -1px; 7986 } 7987 7988 .item-controls a { 7989 text-decoration: none; 7990 } 7991 7992 .item-controls a:hover { 7993 cursor: pointer; 7994 } 7995 7996 .item-controls .item-order { 7997 padding-right: 10px; 7998 } 7999 8000 .nav-menus-php .item-edit { 8001 position: absolute; 8002 right: -20px; 8003 top: 0; 8004 display: block; 8005 width: 30px; 8006 height: 36px; 8007 overflow: hidden; 8008 text-indent:-999em; 8009 border-bottom: 1px solid; 8010 -webkit-border-bottom-left-radius: 3px; 8011 border-bottom-left-radius: 3px; 8012 } 8013 8014 /* Menu editing */ 8015 .menu-instructions-inactive { 8016 display: none; 8017 } 8018 8019 .menu-item-settings { 8020 display: block; 8021 width: 400px; 8022 padding: 10px 0 10px 10px; 8023 border: solid; 8024 border-width: 0 1px 1px 1px; 8025 -webkit-border-bottom-right-radius: 3px; 8026 -webkit-border-bottom-left-radius: 3px; 8027 border-bottom-left-radius: 3px; 8028 border-bottom-right-radius: 3px; 8029 } 8030 8031 .menu-item-settings .field-move a { 8032 display: none; 8033 margin: 0 2px; 8034 } 8035 8036 .menu-item-edit-active .menu-item-settings { 8037 display: block; 8038 } 8039 8040 .menu-item-edit-inactive .menu-item-settings { 8041 display: none; 8042 } 8043 8044 .add-menu-item-pagelinks { 8045 margin: .5em auto; 8046 text-align: center; 8047 } 8048 8049 .link-to-original { 8050 display: block; 8051 margin: 0 0 10px; 8052 padding: 3px 5px 5px; 8053 font-size: 12px; 8054 font-style: italic; 8055 } 8056 8057 .link-to-original a { 8058 padding-left: 4px; 8059 font-style: normal; 8060 } 8061 8062 .hidden-field { 8063 display: none; 8064 } 8065 8066 .menu-item-settings .description-thin, 8067 .menu-item-settings .description-wide { 8068 margin-right: 10px; 8069 float: left; 6884 .locations-row-links { 6885 float: left; 6886 margin: 6px 0 0 6px; 8070 6887 } 8071 8072 .description-thin { 8073 width: 190px; 8074 height: 40px; 6888 .locations-edit-menu-link, 6889 .locations-add-menu-link { 6890 margin: 0 3px; 8075 6891 } 8076 8077 .description-wide { 8078 width: 390px;6892 .locations-edit-menu-link { 6893 padding-right: 3px; 6894 border-right: 1px solid #ccc; 8079 6895 } 8080 8081 .menu-item-actions { 8082 padding-top: 15px;6896 #wpbody .open-label { 6897 display: block; 6898 float: left; 8083 6899 } 8084 8085 #cancel-save { 8086 cursor: pointer; 6900 #wpbody .open-label span { 6901 padding-right: 10px; 8087 6902 } 8088 8089 /* Major/minor publishing actions (classes) */ 8090 .nav-menus-php .major-publishing-actions { 8091 clear: both; 8092 padding: 3px 0 5px; 6903 .js .input-with-default-title { 6904 font-style: italic; 8093 6905 } 8094 8095 .nav-menus-php .major-publishing-actions .publishing-action { 8096 text-align: right; 8097 float: right; 8098 line-height: 23px; 8099 margin: 2px 0 1px; 6906 #menu-management .inside { 6907 padding: 0 10px; 8100 6908 } 8101 8102 .nav-menus-php .blank-slate .menu-settings { 8103 display: none; 6909 /* Add Menu Item Boxes */ 6910 .postbox .howto input, 6911 .accordion-container .howto input { 6912 width: 180px; 6913 float: right; 8104 6914 } 8105 8106 .nav-menus-php .delete-action { 8107 float: left; 8108 margin-top: 2px; 6915 .accordion-container .outer-border { 6916 margin: 0; 8109 6917 } 8110 8111 .nav-menus-php .submitbox .submitcancel { 8112 border-bottom: 1px solid; 8113 padding: 1px 2px; 8114 text-decoration: none; 6918 #nav-menu-meta .accordion-container .top { 6919 border-top: 1px solid #dfdfdf; 8115 6920 } 8116 8117 .nav-menus-php .major-publishing-actions .form-invalid { 8118 padding-left: 4px; 8119 margin-left: -4px; 8120 border: 0 none; 6921 #nav-menu-meta .accordion-container .accordion-section:first-child, 6922 #nav-menu-meta .accordion-container .accordion-section:first-child h3, 6923 #nav-menu-meta .accordion-container .top, 6924 #nav-menu-meta .accordion-container .top h3 { 6925 border-top-left-radius: 3px; 6926 border-top-right-radius: 3px; 6927 -moz-border-top-left-radius: 3px; 6928 -moz-border-top-right-radius: 3px; 6929 -webkit-border-top-left-radius: 3px; 6930 -webkit-border-top-right-radius: 3px; 8121 6931 } 8122 8123 /* Clearfix */ 8124 #menu-item-name-wrap:after, 8125 #menu-item-url-wrap:after, 8126 #menu-name-label:after, 8127 #menu-settings-column .inside:after, 8128 #nav-menus-frame:after, 8129 .nav-menus-php #post-body-content:after, 8130 .nav-menus-php .button-controls:after, 8131 .nav-menus-php .major-publishing-actions:after, 8132 .nav-menus-php .menu-item-settings:after { 8133 clear: both; 8134 content: "."; 8135 display: block; 8136 height: 0; 8137 visibility: hidden; 6932 #nav-menu-meta .accordion-container .accordion-section:last-child, 6933 #nav-menu-meta .accordion-container .accordion-section:last-child .accordion-section-content, 6934 #nav-menu-meta .accordion-container .bottom, 6935 #nav-menu-meta .accordion-container .bottom:not(.open) h3 { 6936 border-bottom-left-radius: 3px; 6937 border-bottom-right-radius: 3px; 6938 -moz-border-bottom-left-radius: 3px; 6939 -moz-border-bottom-right-radius: 3px; 6940 -webkit-border-bottom-left-radius: 3px; 6941 -webkit-border-bottom-right-radius: 3px; 8138 6942 } 8139 8140 #nav-menus-frame, 8141 .button-controls, 8142 #menu-item-url-wrap, 8143 #menu-item-name-wrap { 8144 display: block; 6943 .customlinkdiv .howto input { 6944 width: 180px; 8145 6945 } 8146 8147 /* Star ratings */ 8148 div.star-holder { 8149 position: relative; 8150 height: 17px; 8151 width: 100px; 8152 background: url('../images/stars.png?ver=20121108') repeat-x bottom left; 6946 .customlinkdiv p { 6947 margin-top: 0; 8153 6948 } 8154 8155 div.star-holder .star-rating { 8156 background: url('../images/stars.png?ver=20121108') repeat-x top left; 8157 height: 17px; 8158 float: left; 6949 #nav-menu-theme-locations .howto select { 6950 width: 100%; 8159 6951 } 8160 8161 div.action-links { 8162 font-weight: normal; 8163 margin: 6px 0 0; 6952 #nav-menu-theme-locations .button-controls { 6953 text-align: right; 8164 6954 } 8165 8166 /* Header on thickbox */ 8167 #plugin-information-header { 8168 margin: 0; 8169 padding: 0 5px; 8170 font-weight: bold; 8171 position: relative; 8172 border-bottom-width: 1px; 8173 border-bottom-style: solid; 8174 height: 2.5em; 6955 .add-menu-item-view-all { 6956 height: 400px; 8175 6957 } 8176 #plugin-information ul#sidemenu { 8177 font-weight: normal; 8178 margin: 0 5px; 8179 position: absolute; 8180 left: 0; 8181 bottom: -1px; 6958 /* Button Primary Actions */ 6959 #menu-container .submit { 6960 margin: 0 0 10px; 6961 padding: 0; 8182 6962 } 8183 8184 /* Install sidemenu */ 8185 #plugin-information p.action-button { 8186 width: 100%; 8187 padding-bottom: 0; 8188 margin-bottom: 0; 8189 margin-top: 10px; 8190 -webkit-border-top-left-radius: 3px; 8191 -webkit-border-bottom-left-radius: 3px; 8192 border-top-left-radius: 3px; 8193 border-bottom-left-radius: 3px; 6963 .nav-menus-php .add-new-menu-action { 6964 float: left; 6965 margin: 6px 0 0 6px; 6966 line-height: 15px; 8194 6967 } 8195 8196 #plugin-information .action-button a { 8197 text-align: center; 8198 font-weight: bold;8199 text-decoration: none;8200 display: block;8201 line-height: 2em;6968 .nav-menus-php .meta-sep, 6969 .nav-menus-php .submitdelete, 6970 .nav-menus-php .submitcancel { 6971 display: block; 6972 float: left; 6973 margin: 4px 0; 6974 line-height: 15px; 8202 6975 } 8203 8204 #plugin-information h2 { 8205 clear: none !important; 8206 margin-right: 200px; 6976 .meta-sep { 6977 padding: 0 2px; 8207 6978 } 8208 8209 #plugin-information .fyi { 8210 margin: 0 10px 50px; 8211 width: 210px; 6979 #cancel-save { 6980 text-decoration: underline; 6981 font-size: 12px; 6982 margin-left: 20px; 6983 margin-top: 5px; 8212 6984 } 8213 8214 #plugin-information .fyi h2 { 8215 font-size: 0.9em; 8216 margin-bottom: 0; 8217 margin-right: 0; 6985 .button.right, 6986 .button-secondary.right, 6987 .button-primary.right { 6988 float: right; 8218 6989 } 8219 8220 #plugin-information .fyi h2.mainheader { 8221 padding: 5px; 8222 -webkit-border-top-left-radius: 3px; 8223 border-top-left-radius: 3px; 6990 /* Button Secondary Actions */ 6991 .list-controls { 6992 float: left; 6993 margin-top: 5px; 8224 6994 } 8225 8226 #plugin-information .fyi ul { 8227 padding: 10px 5px 10px 7px; 8228 margin: 0; 8229 list-style: none; 8230 -webkit-border-bottom-left-radius: 3px; 8231 border-bottom-left-radius: 3px; 6995 .add-to-menu { 6996 float: right; 8232 6997 } 8233 8234 # plugin-information .fyi li{8235 margin-right: 0;6998 /* Create Menu */ 6999 #menu-name { 7000 width: 270px; 8236 7001 } 8237 8238 #plugin-information #section-holder { 8239 padding: 10px; 7002 #manage-menu .inside { 7003 padding: 0px 0px; 8240 7004 } 8241 8242 #plugin-information .section ul, 8243 #plugin-information .section ol { 8244 margin-left: 16px; 8245 list-style-type: square; 8246 list-style-image: none; 7005 /* Custom Links */ 7006 #available-links dt { 7007 display: block; 8247 7008 } 8248 8249 #plugin-information #section-screenshots ol { 8250 list-style: none; 8251 margin: 0; 7009 #add-custom-link .howto { 7010 font-size: 12px; 8252 7011 } 8253 8254 #plugin-information #section-screenshots li img { 8255 vertical-align: text-top; 8256 max-width: 100%; 8257 width: auto; 8258 height: auto; 7012 #add-custom-link label span { 7013 display: block; 7014 float: left; 7015 margin-top: 5px; 7016 padding-right: 5px; 8259 7017 } 8260 8261 #plugin-information #section-screenshots li p { 8262 font-style: italic; 8263 padding-left: 20px; 8264 padding-bottom: 2em; 7018 .menu-item-textbox { 7019 width: 180px; 8265 7020 } 8266 8267 #plugin-information #section-screenshots ol, 8268 #plugin-information .updated, 8269 #plugin-information pre { 8270 margin-right: 215px; 7021 .nav-menus-php .howto span { 7022 margin-top: 4px; 7023 display: block; 7024 float: left; 8271 7025 } 8272 8273 #plugin-information pre { 8274 padding: 7px; 8275 overflow: auto; 7026 /* Menu item types */ 7027 .quick-search { 7028 width: 190px; 8276 7029 } 8277 8278 /* press-this */ 8279 body.press-this { 8280 color: #333; 8281 margin: 0; 8282 padding: 0; 8283 min-width: 675px; 8284 min-height: 400px; 7030 .nav-menus-php .list-wrap { 7031 display: none; 7032 clear: both; 7033 margin-bottom: 10px; 8285 7034 } 8286 8287 img { 8288 border: none; 7035 .nav-menus-php .list-container { 7036 max-height: 200px; 7037 overflow-y: auto; 7038 padding: 10px 10px 5px; 8289 7039 } 8290 8291 /* Header */ 8292 .press-this #wphead { 8293 height: 32px; 8294 margin-left: 0; 8295 margin-right: 0; 8296 margin-bottom: 5px; 7040 .nav-menus-php .postbox p.submit { 7041 margin-bottom: 0; 8297 7042 } 8298 8299 .press-this #header-logo { 8300 float: left; 8301 margin: 7px 7px 0; 8302 -webkit-user-select: none; 8303 -moz-user-select: none; 8304 user-select: none; 7043 /* Listings */ 7044 .nav-menus-php .list li { 7045 display: none; 7046 margin: 0; 7047 margin-bottom: 5px; 8305 7048 } 8306 8307 .press-this #wphead h1 { 8308 font-weight: normal; 8309 font-size: 16px; 8310 line-height: 32px; 8311 margin: 0; 8312 float: left; 7049 .nav-menus-php .list li .menu-item-title { 7050 cursor: pointer; 7051 display: block; 8313 7052 } 8314 8315 .press-this #wphead h1 a { 8316 text-decoration: none;7053 .nav-menus-php .list li .menu-item-title input { 7054 margin-right: 3px; 7055 margin-top: -3px; 8317 7056 } 8318 8319 .press-this #wphead h1 a:hover{8320 text-decoration: underline;7057 /* Nav Menu */ 7058 #menu-container .inside { 7059 padding-bottom: 10px; 8321 7060 } 8322 8323 .press-this #message { 8324 margin: 10px 0; 7061 .menu { 7062 padding-top: 1em; 8325 7063 } 8326 8327 .press-this-sidebar { 8328 float: right; 8329 width: 200px; 8330 padding-top: 10px; 7064 .menu ul { 7065 width: 100%; 8331 7066 } 8332 8333 .press-this #title { 8334 margin-left: 0; 8335 margin-right: 0; 8336 -moz-box-sizing: border-box; 8337 -webkit-box-sizing: border-box; 8338 -ms-box-sizing: border-box; 8339 box-sizing: border-box; 7067 .menu li { 7068 margin-bottom: 0; 7069 position: relative; 8340 7070 } 8341 8342 .press-this .tagchecklist span a { 8343 background: transparent url(../images/xit.gif) no-repeat 00;7071 #menu-to-edit { 7072 margin: 0; 7073 padding: 0.1em 0; 8344 7074 } 8345 8346 .press-this #titlediv { 8347 margin: 0; 7075 .menu-item-bar { 7076 clear: both; 7077 line-height: 1.5em; 7078 position: relative; 7079 margin: 9px 0 0; 8348 7080 } 8349 8350 .press-this .wp-media-buttons { 8351 cursor: default; 8352 padding: 8px 8px 0; 7081 .menu-item-handle { 7082 border: 1px solid #dfdfdf; 7083 position: relative; 7084 padding-left: 10px; 7085 height: auto; 7086 width: 400px; 7087 line-height: 35px; 7088 text-shadow: 0 1px 0 #FFFFFF; 7089 overflow: hidden; 7090 word-wrap: break-word; 8353 7091 } 8354 8355 .press-this .howto { 8356 margin-top: 2px;8357 margin-bottom: 3px;8358 font-size: 12px;8359 font-style: italic;8360 display: block;7092 #menu-to-edit .menu-item-invalid .menu-item-handle { 7093 background: #fdf8ff; 7094 background-image: -webkit-gradient(linear, left bottom, left top, from(#f6c9cc), to(#fdf8ff)); 7095 background-image: -webkit-linear-gradient(bottom, #f6c9cc, #fdf8ff); 7096 background-image: -moz-linear-gradient(bottom, #f6c9cc, #fdf8ff); 7097 background-image: -o-linear-gradient(bottom, #f6c9cc, #fdf8ff); 7098 background-image: linear-gradient(to top, #f6c9cc, #fdf8ff); 8361 7099 } 8362 8363 /* Editor/Main Column */ 8364 .press-this #poststuff { 8365 margin: 0 10px 10px; 8366 padding: 0; 7100 .menu-item-edit-active .menu-item-handle { 7101 border-bottom-left-radius: 0; 7102 border-bottom-right-radius: 0; 7103 -moz-border-bottom-left-radius: 0; 7104 -moz-border-bottom-right-radius: 0; 7105 -webkit-border-bottom-left-radius: 0; 7106 -webkit-border-bottom-right-radius: 0; 8367 7107 } 8368 8369 .press-this #photo-add-url-div input[type="text"] { 8370 width: 220px; 7108 .no-js .menu-item-edit-active .item-edit { 7109 display: none; 8371 7110 } 8372 8373 #poststuff #editor-toolbar { 8374 height: 30px; 7111 .js .menu-item-handle { 7112 cursor: move; 8375 7113 } 8376 8377 div.zerosize { 8378 border: 0 none; 8379 height: 0; 8380 margin: 0; 8381 overflow: hidden; 8382 padding: 0; 8383 width: 0; 7114 .menu li.deleting .menu-item-handle { 7115 background-image: none; 7116 text-shadow: 0 0 0; 8384 7117 } 8385 8386 .posting { 8387 margin-right: 212px; 8388 position: relative; 7118 .menu-item-handle .item-title { 7119 font-size: 12px; 7120 font-weight: bold; 7121 padding: 7px 0; 7122 line-height: 20px; 7123 display: block; 7124 margin-right: 13em; 8389 7125 } 8390 8391 .press-this .inner-sidebar{8392 width: 200px;7126 /* Sortables */ 7127 li.menu-item.ui-sortable-helper dl { 7128 margin-top: 0; 8393 7129 } 8394 8395 .press-this .inner-sidebar .sleeve { 8396 padding-top: 5px; 7130 li.menu-item.ui-sortable-helper .menu-item-transport dl { 7131 margin-top: 13px; 8397 7132 } 8398 8399 .press-this #submitdiv p { 8400 margin: 0;8401 padding: 6px;7133 .menu .sortable-placeholder { 7134 height: 35px; 7135 width: 410px; 7136 margin-top: 13px; 8402 7137 } 8403 8404 . press-this #submitdiv #publishing-actions{8405 border-bottom: 1px solid #dfdfdf;7138 /* WARNING: The factor of 30px is hardcoded into the nav-menus javascript. */ 7139 .menu-item-depth-0 { 7140 margin-left: 0px; 8406 7141 } 8407 8408 .press-this #publish { 8409 float: right; 7142 .menu-item-depth-1 { 7143 margin-left: 30px; 8410 7144 } 8411 8412 .press-this #poststuff h2, 8413 .press-this #poststuff h3 { 8414 font-size: 14px; 8415 line-height: 1; 7145 .menu-item-depth-2 { 7146 margin-left: 60px; 8416 7147 } 8417 8418 .press-this #tagsdiv-post_tag h3, 8419 .press-this #categorydiv h3 { 8420 cursor: pointer; 7148 .menu-item-depth-3 { 7149 margin-left: 90px; 8421 7150 } 8422 8423 .press-this #submitdiv h3 { 8424 cursor: default; 7151 .menu-item-depth-4 { 7152 margin-left: 120px; 8425 7153 } 8426 8427 h3.tb { 8428 text-shadow: 0 1px 0 #fff; 8429 font-weight: bold; 8430 font-size: 12px; 8431 margin-left: 5px; 7154 .menu-item-depth-5 { 7155 margin-left: 150px; 8432 7156 } 8433 8434 #TB_window { 8435 border: 1px solid #333; 7157 .menu-item-depth-6 { 7158 margin-left: 180px; 8436 7159 } 8437 8438 .press-this .postbox, 8439 .press-this .stuffbox { 8440 margin-bottom: 10px; 8441 min-width: 0; 7160 .menu-item-depth-7 { 7161 margin-left: 210px; 8442 7162 } 8443 8444 .js .postbox:hover .handlediv, 8445 .js .stuffbox:hover .handlediv { 8446 background: transparent url(../images/arrows.png) no-repeat 6px 7px; 7163 .menu-item-depth-8 { 7164 margin-left: 240px; 8447 7165 } 8448 8449 .press-this #submitdiv:hover .handlediv { 8450 background: none; 7166 .menu-item-depth-9 { 7167 margin-left: 270px; 8451 7168 } 8452 8453 .tbtitle { 8454 font-size: 1.7em; 8455 outline: none; 8456 padding: 3px 4px; 8457 border-color: #dfdfdf; 7169 .menu-item-depth-10 { 7170 margin-left: 300px; 8458 7171 } 8459 8460 .press-this .actions { 8461 float: right; 8462 margin: -19px 0 0; 7172 .menu-item-depth-11 { 7173 margin-left: 330px; 8463 7174 } 8464 8465 .press-this #extra-fields .actions { 8466 margin: -32px -7px 0 0; 7175 .menu-item-depth-0 .menu-item-transport { 7176 margin-left: 0px; 8467 7177 } 8468 8469 .press-this .actions li { 8470 float: left; 8471 list-style: none; 8472 margin-right: 10px; 7178 .menu-item-depth-1 .menu-item-transport { 7179 margin-left: -30px; 8473 7180 } 8474 8475 #extra-fields .button { 8476 margin-right: 5px; 7181 .menu-item-depth-2 .menu-item-transport { 7182 margin-left: -60px; 8477 7183 } 8478 8479 /* Photo Styles */ 8480 #photo_saving { 8481 margin: 0 8px 8px; 8482 vertical-align: middle; 7184 .menu-item-depth-3 .menu-item-transport { 7185 margin-left: -90px; 8483 7186 } 8484 8485 #img_container_container { 8486 overflow: auto; 7187 .menu-item-depth-4 .menu-item-transport { 7188 margin-left: -120px; 8487 7189 } 8488 8489 #extra-fields { 8490 margin-top: 10px; 8491 position: relative; 7190 .menu-item-depth-5 .menu-item-transport { 7191 margin-left: -150px; 8492 7192 } 8493 8494 #extra-fields h2 { 8495 margin: 12px; 7193 .menu-item-depth-6 .menu-item-transport { 7194 margin-left: -180px; 8496 7195 } 8497 8498 #waiting { 8499 margin-top: 10px; 8500 overflow: hidden; 7196 .menu-item-depth-7 .menu-item-transport { 7197 margin-left: -210px; 8501 7198 } 8502 8503 #waiting span { 8504 float: right; 8505 margin: 0 0 0 5px; 7199 .menu-item-depth-8 .menu-item-transport { 7200 margin-left: -240px; 8506 7201 } 8507 8508 #waiting .spinner { 8509 display: block; 7202 .menu-item-depth-9 .menu-item-transport { 7203 margin-left: -270px; 8510 7204 } 8511 8512 #extra-fields .postbox { 8513 margin-bottom: 5px; 7205 .menu-item-depth-10 .menu-item-transport { 7206 margin-left: -300px; 8514 7207 } 8515 8516 #extra-fields .titlewrap { 8517 padding: 0; 8518 overflow: auto; 8519 height: 100px; 7208 .menu-item-depth-11 .menu-item-transport { 7209 margin-left: -330px; 8520 7210 } 8521 8522 #img_container a { 8523 display: block; 8524 float: left; 8525 overflow: hidden; 7211 body.menu-max-depth-0 { 7212 min-width: 950px !important; 8526 7213 } 8527 8528 #img_container img, 8529 #img_container a { 8530 width: 68px; 8531 height: 68px; 7214 body.menu-max-depth-1 { 7215 min-width: 980px !important; 8532 7216 } 8533 8534 #img_container img { 8535 border: none; 8536 background-color: #f4f4f4; 8537 cursor: pointer; 7217 body.menu-max-depth-2 { 7218 min-width: 1010px !important; 8538 7219 } 8539 8540 #img_container a, 8541 #img_container a:link, 8542 #img_container a:visited { 8543 border: 1px solid #ccc; 8544 display: block; 8545 position: relative; 7220 body.menu-max-depth-3 { 7221 min-width: 1040px !important; 8546 7222 } 8547 8548 #img_container a:hover, 8549 #img_container a:active { 8550 border-color: #000; 8551 z-index: 1000; 8552 border-width: 2px; 8553 margin: -1px; 7223 body.menu-max-depth-4 { 7224 min-width: 1070px !important; 8554 7225 } 8555 8556 /* Video */ 8557 #embed-code { 8558 width: 100%; 8559 height: 98px; 7226 body.menu-max-depth-5 { 7227 min-width: 1100px !important; 8560 7228 } 8561 8562 /* Categories */ 8563 .press-this .categorydiv div.tabs-panel { 8564 height: 100px; 7229 body.menu-max-depth-6 { 7230 min-width: 1130px !important; 8565 7231 } 8566 8567 /* Tags */ 8568 .press-this .tagsdiv .newtag { 8569 width: 120px; 7232 body.menu-max-depth-7 { 7233 min-width: 1160px !important; 8570 7234 } 8571 8572 .press-this #content { 8573 margin: 5px 0; 8574 padding: 0 5px; 8575 border: 0 none; 8576 height: 345px; 8577 font-family: Consolas, Monaco, monospace; 8578 font-size: 13px; 8579 line-height: 19px; 8580 background: transparent; 7235 body.menu-max-depth-8 { 7236 min-width: 1190px !important; 8581 7237 } 8582 8583 /* Submit */ 8584 .press-this #publishing-actions .spinner { 8585 display: inline; 8586 vertical-align: middle; 7238 body.menu-max-depth-9 { 7239 min-width: 1220px !important; 8587 7240 } 8588 8589 #TB_ajaxContent #options { 8590 position: absolute; 8591 top: 20px; 8592 right: 25px; 8593 padding: 5px; 7241 body.menu-max-depth-10 { 7242 min-width: 1250px !important; 8594 7243 } 8595 8596 #TB_ajaxContent h3 { 8597 margin-bottom: .25em; 7244 body.menu-max-depth-11 { 7245 min-width: 1280px !important; 8598 7246 } 8599 8600 .error a { 8601 text-decoration: underline; 7247 /* Menu item controls */ 7248 .item-type { 7249 font-size: 12px; 7250 padding-right: 10px; 7251 } 7252 .item-controls { 7253 font-size: 12px; 7254 position: absolute; 7255 right: 20px; 7256 top: -1px; 8602 7257 } 8603 8604 .updated a { 8605 text-decoration: none; 8606 padding-bottom: 2px; 7258 .item-controls a { 7259 text-decoration: none; 8607 7260 } 8608 8609 /* tag hints */ 8610 .taghint { 8611 color: #aaa; 8612 margin: -17px 0 0 7px; 8613 visibility: hidden; 7261 .item-controls a:hover { 7262 cursor: pointer; 8614 7263 } 8615 8616 input.newtag ~ div.taghint { 8617 visibility: visible; 7264 .item-controls .item-order { 7265 padding-right: 10px; 8618 7266 } 8619 8620 input.newtag:focus ~ div.taghint { 8621 visibility: hidden; 7267 .nav-menus-php .item-edit { 7268 position: absolute; 7269 right: -20px; 7270 top: 0; 7271 display: block; 7272 width: 30px; 7273 height: 36px; 7274 overflow: hidden; 7275 text-indent: -999em; 7276 border-bottom: 1px solid; 7277 -moz-border-bottom-left-radius: 3px; 7278 -webkit-border-bottom-left-radius: 3px; 7279 border-bottom-left-radius: 3px; 8622 7280 } 8623 8624 /* TinyMCE */ 8625 #mce_fullscreen_container { 8626 background: #fff; 7281 /* Menu editing */ 7282 .menu-instructions-inactive { 7283 display: none; 8627 7284 } 8628 8629 #photo-add-url-div input[type="text"] { 8630 width: 300px; 7285 .menu-item-settings { 7286 display: block; 7287 width: 400px; 7288 padding: 10px 0 10px 10px; 7289 border: solid; 7290 border-width: 0 1px 1px 1px; 7291 border-bottom-left-radius: 3px; 7292 border-bottom-right-radius: 3px; 7293 -moz-border-bottom-left-radius: 3px; 7294 -moz-border-bottom-right-radius: 3px; 7295 -webkit-border-bottom-left-radius: 3px; 7296 -webkit-border-bottom-right-radius: 3px; 8631 7297 } 8632 8633 /* theme-editor */ 8634 .alignleft h3 { 8635 margin: 0; 7298 .menu-item-settings .field-move a { 7299 display: none; 7300 margin: 0 2px; 8636 7301 } 8637 8638 h3 span { 8639 font-weight: normal; 7302 .menu-item-edit-active .menu-item-settings { 7303 display: block; 8640 7304 } 8641 8642 #template textarea { 8643 font-family: Consolas, Monaco, monospace; 8644 font-size: 12px; 8645 width: 97%; 8646 background: #f9f9f9; 8647 outline: none; 7305 .menu-item-edit-inactive .menu-item-settings { 7306 display: none; 8648 7307 } 8649 8650 #template p { 8651 width: 97%; 7308 .menu-item-settings .description-thin, 7309 .menu-item-settings .description-wide { 7310 margin-right: 10px; 7311 float: left; 8652 7312 } 8653 8654 #templateside { 8655 float: right; 8656 width: 190px; 8657 word-wrap: break-word; 7313 .add-menu-item-pagelinks { 7314 margin: .5em auto; 7315 text-align: center; 8658 7316 } 8659 8660 #templateside h3, 8661 #postcustomstuff p.submit { 8662 margin: 0; 7317 .link-to-original { 7318 display: block; 7319 margin: 0 0 10px; 7320 padding: 3px 5px 5px; 7321 font-size: 12px; 7322 font-style: italic; 8663 7323 } 8664 8665 #templateside h4 { 8666 margin: 1em 0 0;7324 .link-to-original a { 7325 padding-left: 4px; 7326 font-style: normal; 8667 7327 } 8668 8669 #templateside ol, 8670 #templateside ul { 8671 margin: .5em; 8672 padding: 0; 7328 .hidden-field { 7329 display: none; 8673 7330 } 8674 8675 #templateside li { 8676 margin: 4px 0;7331 .description-thin { 7332 width: 190px; 7333 height: 40px; 8677 7334 } 8678 8679 #templateside ul li a span.highlight { 8680 display:block; 7335 .description-wide { 7336 width: 390px; 8681 7337 } 8682 8683 .nonessential { 8684 font-size: 11px; 8685 font-style: italic; 8686 padding-left: 12px; 7338 .menu-item-actions { 7339 padding-top: 15px; 8687 7340 } 8688 8689 .highlight { 8690 padding: 3px 3px 3px 12px; 8691 margin-left: -12px; 8692 font-weight: bold; 8693 border: 0 none; 7341 #cancel-save { 7342 cursor: pointer; 8694 7343 } 8695 8696 #documentation { 8697 margin-top: 10px; 7344 /* Major/minor publishing actions (classes) */ 7345 .nav-menus-php .major-publishing-actions { 7346 clear: both; 7347 padding: 3px 0 5px; 8698 7348 } 8699 #documentation label { 8700 line-height: 22px; 8701 vertical-align: top; 8702 font-weight: bold; 7349 .nav-menus-php .major-publishing-actions .publishing-action { 7350 text-align: right; 7351 float: right; 7352 line-height: 23px; 7353 margin: 2px 0 1px; 8703 7354 } 8704 8705 .fileedit-sub { 8706 padding: 10px 0 8px;8707 line-height: 180%;7355 .nav-menus-php .major-publishing-actions .form-invalid { 7356 padding-left: 4px; 7357 margin-left: -4px; 7358 border: 0 none; 8708 7359 } 8709 8710 #filter-box { 8711 clear: both; 7360 .nav-menus-php .blank-slate .menu-settings { 7361 display: none; 8712 7362 } 8713 8714 .feature-filter { 8715 padding: 8px 12px 0;7363 .nav-menus-php .delete-action { 7364 float: left; 7365 margin-top: 2px; 8716 7366 } 8717 8718 .feature-filter .feature-group { 8719 float: left;8720 margin: 5px 10px 10px;7367 .nav-menus-php .submitbox .submitcancel { 7368 border-bottom: 1px solid; 7369 padding: 1px 2px; 7370 text-decoration: none; 8721 7371 } 8722 8723 .feature-filter .feature-group li { 8724 display: inline-block; 8725 vertical-align: top; 8726 list-style-type: none; 8727 padding-right: 25px; 8728 width: 150px; 7372 /* Clearfix */ 7373 #menu-item-name-wrap:after, 7374 #menu-item-url-wrap:after, 7375 #menu-name-label:after, 7376 #menu-settings-column .inside:after, 7377 #nav-menus-frame:after, 7378 .nav-menus-php #post-body-content:after, 7379 .nav-menus-php .button-controls:after, 7380 .nav-menus-php .major-publishing-actions:after, 7381 .nav-menus-php .menu-item-settings:after { 7382 clear: both; 7383 content: "."; 7384 display: block; 7385 height: 0; 7386 visibility: hidden; 8729 7387 } 8730 8731 . feature-container {8732 width: 100%; 8733 overflow: auto; 8734 margin-bottom: 10px;7388 #nav-menus-frame, 7389 .button-controls, 7390 #menu-item-url-wrap, 7391 #menu-item-name-wrap { 7392 display: block; 8735 7393 } 8736 8737 7394 /* widgets */ 8738 8739 7395 /* 2 column liquid layout */ 8740 7396 div.widget-liquid-left { 8741 8742 8743 8744 7397 float: left; 7398 clear: left; 7399 width: 100%; 7400 margin-right: -325px; 8745 7401 } 8746 8747 7402 div#widgets-left { 8748 8749 7403 margin-left: 5px; 7404 margin-right: 325px; 8750 7405 } 8751 8752 7406 div#widgets-right { 8753 8754 7407 width: 285px; 7408 margin: 0 auto; 8755 7409 } 8756 8757 7410 div.widget-liquid-right { 8758 8759 8760 7411 float: right; 7412 clear: right; 7413 width: 300px; 8761 7414 } 8762 8763 7415 .widget-liquid-right .widget, 8764 7416 .inactive-sidebar .widget, 8765 7417 .widget-liquid-right .sidebar-description { 8766 8767 8768 7418 width: 250px; 7419 margin: 0 auto 20px; 7420 overflow: hidden; 8769 7421 } 8770 8771 7422 .widget-liquid-right .sidebar-description { 8772 7423 margin-bottom: 10px; 8773 7424 } 8774 8775 7425 .inactive-sidebar .widget { 8776 margin: 0 10px 20px; 8777 display: inline-block; 8778 } 8779 8780 div.sidebar-name h3 { 8781 font-weight: normal; 8782 font-size: 15px; 8783 margin: 0; 8784 padding: 8px 10px; 8785 overflow: hidden; 8786 white-space: nowrap; 7426 margin: 0 10px 20px; 7427 display: inline-block; 8787 7428 } 8788 8789 7429 div.sidebar-name { 8790 font-size: 13px; 8791 border-width: 1px; 8792 border-style: solid; 8793 -webkit-border-top-right-radius: 3px; 8794 -webkit-border-top-left-radius: 3px; 8795 border-top-right-radius: 3px; 8796 border-top-left-radius: 3px; 7430 font-size: 13px; 7431 border-width: 1px; 7432 border-style: solid; 7433 border-top-left-radius: 3px; 7434 border-top-right-radius: 3px; 7435 -moz-border-top-left-radius: 3px; 7436 -moz-border-top-right-radius: 3px; 7437 -webkit-border-top-left-radius: 3px; 7438 -webkit-border-top-right-radius: 3px; 7439 } 7440 div.sidebar-name h3 { 7441 font-weight: normal; 7442 font-size: 15px; 7443 margin: 0; 7444 padding: 8px 10px; 7445 overflow: hidden; 7446 white-space: nowrap; 8797 7447 } 8798 8799 7448 .js .sidebar-name { 8800 7449 cursor: pointer; 8801 7450 } 8802 8803 7451 .js .closed .sidebar-name { 8804 -webkit-border-bottom-right-radius: 3px; 8805 -webkit-border-bottom-left-radius: 3px; 8806 border-bottom-right-radius: 3px; 8807 border-bottom-left-radius: 3px; 7452 border-bottom-left-radius: 3px; 7453 border-bottom-right-radius: 3px; 7454 -moz-border-bottom-left-radius: 3px; 7455 -moz-border-bottom-right-radius: 3px; 7456 -webkit-border-bottom-left-radius: 3px; 7457 -webkit-border-bottom-right-radius: 3px; 8808 7458 } 8809 8810 7459 .widget-liquid-right .widgets-sortables, 8811 7460 #widgets-left .widget-holder { 8812 border-width: 0 1px 1px; 8813 border-style: none solid solid; 8814 -webkit-border-bottom-right-radius: 3px; 8815 -webkit-border-bottom-left-radius: 3px; 8816 border-bottom-right-radius: 3px; 8817 border-bottom-left-radius: 3px; 7461 border-width: 0 1px 1px; 7462 border-style: none solid solid; 7463 border-bottom-left-radius: 3px; 7464 border-bottom-right-radius: 3px; 7465 -moz-border-bottom-left-radius: 3px; 7466 -moz-border-bottom-right-radius: 3px; 7467 -webkit-border-bottom-left-radius: 3px; 7468 -webkit-border-bottom-right-radius: 3px; 8818 7469 } 8819 8820 7470 .js .closed .widgets-sortables, 8821 7471 .js .closed .widget-holder { 8822 7472 display: none; 8823 7473 } 8824 8825 7474 .widget-liquid-right .widgets-sortables { 8826 7475 padding: 15px 0 0; 8827 7476 } 8828 8829 7477 #available-widgets .widget-holder { 8830 7478 padding: 7px 5px 0; 8831 7479 } 8832 8833 7480 #available-widgets .widget { 8834 -webkit-box-shadow: none; 8835 box-shadow: none; 7481 -moz-box-shadow: none; 7482 -webkit-box-shadow: none; 7483 box-shadow: none; 8836 7484 } 8837 8838 7485 .inactive-sidebar { 8839 7486 padding: 5px 5px 0; 8840 7487 } 8841 8842 7488 #widget-list .widget { 8843 8844 8845 8846 8847 8848 7489 width: 250px; 7490 margin: 0 10px 15px; 7491 border: 0 none; 7492 background: transparent; 7493 display: inline-block; 7494 vertical-align: top; 8849 7495 } 8850 8851 7496 #widget-list .widget-description { 8852 7497 padding: 5px 8px; 8853 7498 } 8854 8855 7499 .widget-placeholder { 8856 8857 8858 8859 8860 7500 border-width: 1px; 7501 border-style: dashed; 7502 margin: 0 auto 20px; 7503 height: 27px; 7504 width: 250px; 8861 7505 } 8862 8863 7506 .inactive-sidebar .widget-placeholder { 8864 8865 7507 margin: 0 10px 20px; 7508 float: left; 8866 7509 } 8867 8868 7510 div.widgets-holder-wrap { 8869 8870 7511 padding: 0; 7512 margin: 10px 0 20px; 8871 7513 } 8872 8873 7514 #widgets-left #available-widgets { 8874 8875 7515 background-color: transparent; 7516 border: 0 none; 8876 7517 } 8877 8878 7518 ul#widget-list { 8879 8880 8881 8882 7519 list-style: none; 7520 margin: 0; 7521 padding: 0; 7522 min-height: 100px; 8883 7523 } 8884 8885 7524 .widget .widget-top { 8886 margin-bottom: -1px; 8887 font-size: 12px; 8888 font-weight: bold; 8889 height: 26px; 8890 overflow: hidden; 8891 } 8892 8893 .widget-top .widget-title { 8894 padding: 7px 9px; 8895 } 8896 8897 .widget-top .widget-title-action { 8898 float: right; 7525 margin-bottom: -1px; 7526 font-size: 12px; 7527 font-weight: bold; 7528 line-height: 26px; 7529 overflow: hidden; 8899 7530 } 8900 8901 7531 a.widget-action { 8902 8903 8904 7532 display: block; 7533 width: 24px; 7534 height: 26px; 8905 7535 } 8906 8907 7536 #available-widgets a.widget-action { 8908 display: none; 7537 display: none; 7538 } 7539 .widget-top .widget-title { 7540 padding: 7px 9px; 7541 } 7542 .widget-top .widget-title-action { 7543 float: right; 8909 7544 } 8910 8911 7545 .widget-top a.widget-action { 8912 7546 background: transparent url(../images/arrows.png) no-repeat 4px 6px; 8913 7547 } 8914 8915 7548 .widget-top a.widget-action:hover { 8916 7549 background: transparent url(../images/arrows-dark.png) no-repeat 4px 6px; 8917 7550 } 8918 8919 7551 .widget .widget-inside, 8920 7552 .widget .widget-description { 8921 8922 8923 7553 padding: 12px 12px 10px; 7554 font-size: 12px; 7555 line-height: 16px; 8924 7556 } 8925 8926 7557 .widget-inside, 8927 7558 .widget-description { 8928 7559 display: none; 8929 7560 } 8930 8931 7561 #available-widgets .widget-description { 8932 7562 display: block; 8933 7563 } 8934 8935 7564 .widget .widget-inside p { 8936 8937 7565 margin: 0 0 1em; 7566 padding: 0; 8938 7567 } 8939 8940 7568 .widget-title h4 { 8941 8942 8943 8944 8945 7569 margin: 0; 7570 padding-bottom: 0.2em; 7571 line-height: 1; 7572 overflow: hidden; 7573 white-space: nowrap; 8946 7574 } 8947 8948 7575 .widgets-sortables { 8949 7576 min-height: 90px; 8950 7577 } 8951 8952 7578 .widget-control-actions { 8953 7579 margin-top: 8px; 8954 7580 } 8955 8956 7581 .widget-control-actions a { 8957 7582 text-decoration: none; 8958 7583 } 8959 8960 7584 .widget-control-actions a:hover { 8961 7585 text-decoration: underline; 8962 7586 } 8963 8964 7587 .widget-control-actions div.alignleft { 8965 7588 margin-top: 6px; 8966 7589 } 8967 8968 7590 div#sidebar-info { 8969 8970 8971 7591 padding: 0 1em; 7592 margin-bottom: 1em; 7593 font-size: 12px; 8972 7594 } 8973 8974 7595 .widget-title a, 8975 7596 .widget-title a:hover { 8976 8977 7597 text-decoration: none; 7598 border-bottom: none; 8978 7599 } 8979 8980 7600 .widget-control-edit { 8981 display: block; 8982 font-size: 12px; 8983 font-weight: normal; 8984 line-height: 26px; 8985 padding: 0 8px 0 0; 8986 } 8987 8988 a.widget-control-edit { 8989 text-decoration: none; 7601 display: block; 7602 font-size: 12px; 7603 font-weight: normal; 7604 line-height: 26px; 7605 padding: 0 8px 0 0; 8990 7606 } 8991 8992 7607 .widget-control-edit .add, 8993 7608 .widget-control-edit .edit { 8994 display: none; 7609 display: none; 7610 } 7611 a.widget-control-edit { 7612 text-decoration: none; 8995 7613 } 8996 8997 7614 #available-widgets .widget-control-edit .add, 8998 7615 #widgets-right .widget-control-edit .edit, 8999 7616 .inactive-sidebar .widget-control-edit .edit { 9000 7617 display: inline; 9001 7618 } 9002 9003 7619 .editwidget { 9004 7620 margin: 0 auto 15px; 9005 7621 } 9006 9007 7622 .editwidget .widget-inside { 9008 9009 7623 display: block; 7624 padding: 10px; 9010 7625 } 9011 9012 7626 .inactive p.description { 9013 7627 margin: 5px 15px 10px; 9014 7628 } 9015 9016 7629 #available-widgets p.description { 9017 7630 margin: 0 12px 12px; 9018 7631 } 9019 9020 7632 .widget-position { 9021 7633 margin-top: 8px; 9022 7634 } 9023 9024 7635 .inactive { 9025 7636 padding-top: 2px; 9026 7637 } 9027 9028 7638 .sidebar-name .spinner { 9029 9030 7639 float: none; 7640 margin: 0 3px -3px; 9031 7641 } 9032 9033 7642 .sidebar-name-arrow { 9034 9035 9036 7643 float: right; 7644 height: 29px; 7645 width: 26px; 9037 7646 } 9038 9039 7647 .widget-title .in-widget-title { 9040 9041 7648 font-size: 12px; 7649 white-space: nowrap; 9042 7650 } 9043 9044 7651 #removing-widget { 9045 9046 font-weight: normal;9047 padding-left: 15px;9048 font-size: 12px;9049 7652 display: none; 7653 padding-left: 15px; 7654 font-size: 12px; 7655 font-weight: normal; 7656 line-height: 1; 9050 7657 } 9051 9052 7658 .widget-control-noform, 9053 7659 #access-off, 9054 7660 .widgets_access .widget-action, 9055 7661 .widgets_access .sidebar-name-arrow, 9056 7662 .widgets_access #access-on, 9057 7663 .widgets_access .widget-holder .description { 9058 7664 display: none; 9059 7665 } 9060 9061 7666 .widgets_access .widget-holder, 9062 7667 .widgets_access #widget-list { 9063 7668 padding-top: 10px; 9064 7669 } 9065 9066 7670 .widgets_access #access-off { 9067 7671 display: inline; 9068 7672 } 9069 9070 7673 .widgets_access #wpbody-content .widget-title-action, 9071 7674 .widgets_access #wpbody-content .widget-control-edit, 9072 7675 .widgets_access .closed .widgets-sortables, 9073 7676 .widgets_access .closed .widget-holder { 9074 7677 display: block; 9075 7678 } 9076 9077 7679 .widgets_access .closed .sidebar-name { 9078 -webkit-border-bottom-right-radius: 0; 9079 -webkit-border-bottom-left-radius: 0; 9080 border-bottom-right-radius: 0; 9081 border-bottom-left-radius: 0; 7680 border-bottom-left-radius: 0; 7681 border-bottom-right-radius: 0; 7682 -moz-border-bottom-left-radius: 0; 7683 -moz-border-bottom-right-radius: 0; 7684 -webkit-border-bottom-left-radius: 0; 7685 -webkit-border-bottom-right-radius: 0; 9082 7686 } 9083 9084 7687 .widgets_access .sidebar-name, 9085 7688 .widgets_access .widget .widget-top { 9086 cursor: default; 9087 } 9088 9089 /* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */ 9090 .ui-sortable, 9091 .ui-draggable { 9092 -ms-touch-action: none; 7689 cursor: default; 9093 7690 } 9094 9095 7691 /* Accordion */ 9096 9097 7692 .accordion-section { 9098 9099 9100 7693 border-top: 1px solid #fff; 7694 border-bottom: 1px solid #dfdfdf; 7695 margin: 0; 9101 7696 } 9102 9103 7697 .accordion-section:first-child { 9104 7698 border-top: 1px solid #dfdfdf; 9105 7699 } 9106 9107 7700 .accordion-section:last-child { 9108 7701 box-shadow: 0 1px 0 0px #fff; 9109 7702 } 9110 9111 7703 .accordion-section.open .accordion-section-content, 9112 7704 .no-js .accordion-section .accordion-section-content { 9113 7705 display: block; 9114 7706 } 9115 9116 7707 .accordion-section.open:hover { 9117 7708 border-bottom-color: #dfdfdf; 9118 7709 } 9119 9120 7710 .accordion-section-content { 9121 9122 9123 9124 9125 9126 7711 display: none; 7712 padding: 10px 20px 15px; 7713 overflow: hidden; 7714 background: #fdfdfd; 7715 border-left: 1px solid #dfdfdf; 7716 border-right: 1px solid #dfdfdf; 9127 7717 } 9128 9129 7718 .accordion-section-title { 9130 margin: 0; 9131 padding: 15px 20px; 9132 position: relative; 9133 border-left: 1px solid #dfdfdf; 9134 border-right: 1px solid #dfdfdf; 9135 9136 -webkit-user-select: none; 9137 -moz-user-select: none; 9138 user-select: none; 7719 margin: 0; 7720 padding: 15px 20px; 7721 position: relative; 7722 border-left: 1px solid #dfdfdf; 7723 border-right: 1px solid #dfdfdf; 7724 -webkit-user-select: none; 7725 -moz-user-select: none; 7726 user-select: none; 9139 7727 } 9140 9141 7728 .js .accordion-section-title { 9142 7729 cursor: pointer; 9143 7730 } 9144 9145 7731 .js .accordion-section-title:after { 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 7732 content: ''; 7733 width: 0; 7734 height: 0; 7735 border-color: #ccc transparent; 7736 border-style: solid; 7737 border-width: 6px 6px 0; 7738 position: absolute; 7739 top: 25px; 7740 right: 20px; 7741 z-index: 1; 9156 7742 } 9157 9158 7743 .accordion-section-title:focus { 9159 7744 outline: none; 9160 7745 } 9161 9162 7746 .accordion-section-title:hover:after, 9163 7747 .accordion-section-title:focus:after { 9164 7748 border-color: #aaa transparent; 9165 7749 } 9166 9167 7750 .cannot-expand .accordion-section-title { 9168 7751 cursor: auto; 9169 7752 } 9170 9171 7753 .cannot-expand .accordion-section-title:after { 9172 7754 display: none; 9173 7755 } 9174 9175 7756 .control-section .accordion-section-title { 9176 padding: 10px 20px; 9177 color: #464646; 9178 font-size: 15px; 9179 font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; 9180 font-weight: normal; 9181 text-shadow: 0 1px 0 #fff; 9182 background: #f5f5f5; 9183 background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#f5f5f5)); 9184 background-image: -webkit-linear-gradient(bottom, #eee, #f5f5f5); 9185 background-image: -moz-linear-gradient(bottom, #eee, #f5f5f5); 9186 background-image: -o-linear-gradient(bottom, #eee, #f5f5f5); 9187 background-image: linear-gradient(to top, #eee, #f5f5f5); 7757 padding: 10px 20px; 7758 color: #464646; 7759 font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; 7760 font-size: 15px; 7761 font-weight: normal; 7762 line-height: 1; 7763 text-shadow: 0 1px 0 #fff; 7764 background: #f5f5f5; 7765 background-image: -webkit-gradient(linear, left bottom, left top, from(#eeeeee), to(#f5f5f5)); 7766 background-image: -webkit-linear-gradient(bottom, #eeeeee, #f5f5f5); 7767 background-image: -moz-linear-gradient(bottom, #eeeeee, #f5f5f5); 7768 background-image: -o-linear-gradient(bottom, #eeeeee, #f5f5f5); 7769 background-image: linear-gradient(to top, #eeeeee, #f5f5f5); 9188 7770 } 9189 9190 7771 .control-section .accordion-section-title:after { 9191 7772 top: 15px; 9192 7773 } 9193 9194 7774 .js .control-section:hover .accordion-section-title, 9195 7775 .js .control-section .accordion-section-title:hover, 9196 7776 .js .control-section.open .accordion-section-title, 9197 7777 .js .control-section .accordion-section-title:focus { 9198 color: #000;9199 9200 9201 9202 background-image:-moz-linear-gradient(bottom, #ececec, #f9f9f9);9203 background-image:-o-linear-gradient(bottom, #ececec, #f9f9f9);9204 7778 color: black; 7779 background: #f9f9f9; 7780 background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9)); 7781 background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9); 7782 background-image: -moz-linear-gradient(bottom, #ececec, #f9f9f9); 7783 background-image: -o-linear-gradient(bottom, #ececec, #f9f9f9); 7784 background-image: linear-gradient(to top, #ececec, #f9f9f9); 9205 7785 } 9206 9207 7786 .control-section.open .accordion-section-title { 9208 7787 border-bottom: 1px solid #dfdfdf; 9209 7788 } 9210 9211 7789 /* =Media Queries 9212 7790 -------------------------------------------------------------- */ 9213 9214 7791 @media only screen and (max-width: 768px) { 9215 /* categories */ 9216 #col-left { 9217 width: 100%; 9218 } 9219 9220 #col-right { 9221 width: 100%; 9222 } 7792 /* categories */ 7793 #col-left { 7794 width: 100%; 7795 } 7796 #col-right { 7797 width: 100%; 7798 } 9223 7799 } 9224 9225 7800 @media only screen and (min-width: 769px) { 9226 /* categories */ 9227 #col-left { 9228 width: 35%; 9229 } 9230 9231 #col-right { 9232 width: 65%; 9233 } 7801 /* categories */ 7802 #col-left { 7803 width: 35%; 7804 } 7805 #col-right { 7806 width: 65%; 7807 } 9234 7808 } 9235 9236 7809 @media only screen and (max-width: 860px) { 9237 9238 /* categories */ 9239 #col-left { 9240 width: 35%; 9241 } 9242 9243 #col-right { 9244 width: 65%; 9245 } 7810 /* categories */ 7811 #col-left { 7812 width: 35%; 7813 } 7814 #col-right { 7815 width: 65%; 7816 } 9246 7817 } 9247 9248 7818 @media only screen and (min-width: 980px) { 9249 9250 /* categories */ 9251 #col-left { 9252 width: 35%; 9253 } 9254 9255 #col-right { 9256 width: 65%; 9257 } 7819 /* categories */ 7820 #col-left { 7821 width: 35%; 7822 } 7823 #col-right { 7824 width: 65%; 7825 } 9258 7826 } 9259 9260 7827 @media only screen and (max-width: 768px) { 9261 /* categories */ 9262 #col-left { 9263 width: 100%; 9264 } 9265 9266 #col-right { 9267 width: 100%; 9268 } 9269 9270 .form-field input, 9271 .form-field textarea { 9272 width: 99%; 9273 } 9274 9275 .form-wrap .form-field { 9276 padding:0; 9277 } 9278 9279 /* users */ 9280 #profile-page .form-table textarea { 9281 max-width: 400px; 9282 width: auto; 9283 } 7828 /* categories */ 7829 #col-left { 7830 width: 100%; 7831 } 7832 #col-right { 7833 width: 100%; 7834 } 7835 .form-field input, 7836 .form-field textarea { 7837 width: 99%; 7838 } 7839 .form-wrap .form-field { 7840 padding: 0; 7841 } 7842 /* users */ 7843 #profile-page .form-table textarea { 7844 max-width: 400px; 7845 width: auto; 7846 } 9284 7847 } 9285 9286 7848 /** 9287 7849 * HiDPI Displays 9288 7850 */ 9289 @media print, 9290 (-o-min-device-pixel-ratio: 5/4), 9291 (-webkit-min-device-pixel-ratio: 1.25), 9292 (min-resolution: 120dpi) { 9293 9294 .press-this .tagchecklist span a { 9295 background-image: url('../images/xit-2x.gif'); 9296 background-size: 20px auto; 9297 } 9298 9299 .js .postbox:hover .handlediv, 9300 .js .stuffbox:hover .handlediv, 9301 .widget-top a.widget-action { 9302 background-image: url('../images/arrows-2x.png'); 9303 background-size: 15px 123px; 9304 } 9305 9306 .widget-top a.widget-action:hover { 9307 background-image: url('../images/arrows-dark-2x.png'); 9308 background-size: 15px 123px; 9309 } 9310 9311 .post-com-count { 9312 background-image: url('../images/bubble_bg-2x.gif'); 9313 background-size: 18px 100px; 9314 } 9315 9316 tr.wp-locked .locked-indicator { 9317 background-image: url('../images/lock-2x.png'); 9318 background-size: 16px 16px; 9319 } 9320 9321 th .comment-grey-bubble { 9322 background-image: url('../images/comment-grey-bubble-2x.png'); 9323 background-size: 12px 12px; 9324 } 9325 9326 .sorting-indicator { 9327 background-image: url('../images/sort-2x.gif?ver=20130102'); 9328 background-size: 14px 4px; 9329 } 9330 9331 #content-resize-handle, 9332 #post-body .wp_themeSkin .mceStatusbar a.mceResize { 9333 background: transparent url('../images/resize-2x.gif') no-repeat scroll right bottom; 9334 background-size: 11px 11px; 9335 } 9336 9337 div.star-holder { 9338 background: url('../images/stars-2x.png?ver=20121108') repeat-x bottom left; 9339 background-size: 21px 37px; 9340 } 9341 9342 div.star-holder .star-rating { 9343 background: url('../images/stars-2x.png?ver=20121108') repeat-x top left; 9344 background-size: 21px 37px; 9345 } 9346 9347 .welcome-panel .welcome-panel-close:before { 9348 background-image: url('../images/xit-2x.gif'); 9349 background-size: 20px auto; 9350 } 9351 9352 .welcome-panel .welcome-icon { 9353 background-image: url('../images/welcome-icons-2x.png'); 9354 } 9355 9356 .login h1 a { 9357 background-image: url('../images/wordpress-logo-2x.png?ver=20120412'); 9358 background-size: 274px 63px; 9359 } 9360 9361 .wp-badge { 9362 background-image: url('../images/wp-badge-2x.png?ver=20120516'); 9363 background-size: 173px 194px; 9364 } 9365 9366 .wp-full-overlay .collapse-sidebar-arrow { 9367 background-image: url('../images/arrows-2x.png'); 9368 background-size: 15px 123px; 9369 } 9370 9371 .pressthis a span { 9372 background-image: url(../images/press-this-2x.png?v=20121105); 9373 } 9374 9375 .imgedit-crop, 9376 .imgedit-rleft, 9377 .imgedit-rright, 9378 .imgedit-flipv, 9379 .imgedit-fliph, 9380 .imgedit-undo, 9381 .imgedit-redo { 9382 background-image: url('../images/imgedit-icons-2x.png'); 9383 background-size: 260px 64px; 9384 } 9385 9386 .spinner, 9387 .imgedit-wait, 9388 .customize-loading #customize-container { 9389 background-image: url(../images/wpspin_light-2x.gif); 9390 } 9391 9392 .wp-slider .ui-slider-handle:before { 9393 background-image: url(../images/arrows-pr-2x.png); 9394 background-size: 16px 102px; 9395 } 9396 7851 @media print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) { 7852 .press-this .tagchecklist span a { 7853 background-image: url('../images/xit-2x.gif'); 7854 background-size: 20px auto; 7855 } 7856 .js .postbox:hover .handlediv, 7857 .js .stuffbox:hover .handlediv, 7858 .widget-top a.widget-action { 7859 background-image: url('../images/arrows-2x.png'); 7860 background-size: 15px 123px; 7861 } 7862 .widget-top a.widget-action:hover { 7863 background-image: url('../images/arrows-dark-2x.png'); 7864 background-size: 15px 123px; 7865 } 7866 .post-com-count { 7867 background-image: url('../images/bubble_bg-2x.gif'); 7868 background-size: 18px 100px; 7869 } 7870 tr.wp-locked .locked-indicator { 7871 background-image: url('../images/lock-2x.png'); 7872 background-size: 16px 16px; 7873 } 7874 th .comment-grey-bubble { 7875 background-image: url('../images/comment-grey-bubble-2x.png'); 7876 background-size: 12px 12px; 7877 } 7878 .sorting-indicator { 7879 background-image: url('../images/sort-2x.gif?ver=20130102'); 7880 background-size: 14px 4px; 7881 } 7882 #content-resize-handle, 7883 #post-body .wp_themeSkin .mceStatusbar a.mceResize { 7884 background: transparent url('../images/resize-2x.gif') no-repeat scroll right bottom; 7885 background-size: 11px 11px; 7886 } 7887 div.star-holder { 7888 background: url('../images/stars-2x.png?ver=20121108') repeat-x bottom left; 7889 background-size: 21px 37px; 7890 } 7891 div.star-holder .star-rating { 7892 background: url('../images/stars-2x.png?ver=20121108') repeat-x top left; 7893 background-size: 21px 37px; 7894 } 7895 .welcome-panel .welcome-panel-close:before { 7896 background-image: url('../images/xit-2x.gif'); 7897 background-size: 20px auto; 7898 } 7899 .welcome-panel .welcome-icon { 7900 background-image: url('../images/welcome-icons-2x.png'); 7901 } 7902 .login h1 a { 7903 background-image: url('../images/wordpress-logo-2x.png?ver=20120412'); 7904 background-size: 274px 63px; 7905 } 7906 .wp-badge { 7907 background-image: url('../images/wp-badge-2x.png?ver=20120516'); 7908 background-size: 173px 194px; 7909 } 7910 .wp-full-overlay .collapse-sidebar-arrow { 7911 background-image: url('../images/arrows-2x.png'); 7912 background-size: 15px 123px; 7913 } 7914 .pressthis a span { 7915 background-image: url(../images/press-this-2x.png?v=20121105); 7916 } 7917 .imgedit-crop, 7918 .imgedit-rleft, 7919 .imgedit-rright, 7920 .imgedit-flipv, 7921 .imgedit-fliph, 7922 .imgedit-undo, 7923 .imgedit-redo { 7924 background-image: url('../images/imgedit-icons-2x.png'); 7925 background-size: 260px 64px; 7926 } 7927 .spinner, 7928 .imgedit-wait, 7929 .customize-loading #customize-container { 7930 background-image: url(../images/wpspin_light-2x.gif); 7931 } 7932 .wp-slider .ui-slider-handle:before { 7933 background-image: url(../images/arrows-pr-2x.png); 7934 background-size: 16px 102px; 7935 } 9397 7936 } 9398 9399 7937 /* =Localized CSS 9400 7938 -------------------------------------------------------------- */ 9401 9402 7939 /* zh_CN: Remove italic properties. */ 9403 7940 .locale-zh-cn .howto, 9404 7941 .locale-zh-cn .tablenav .displaying-num, … … a.widget-control-edit { 9413 7950 .locale-zh-cn p.description, 9414 7951 .locale-zh-cn span.description, 9415 7952 .locale-zh-cn .form-wrap p { 9416 7953 font-style: normal; 9417 7954 } 9418 9419 7955 /* zh_CN: Enlarge dashboard widget 'Configure' link */ 9420 .locale-zh-cn .hdnle a { font-size: 12px; } 9421 7956 .locale-zh-cn .hdnle a { 7957 font-size: 12px; 7958 } 9422 7959 /* zn_CH: Enlarge font size, set font-size: normal */ 9423 .locale-zh-cn form.upgrade .hint { font-style: normal; font-size: 100%; } 9424 7960 .locale-zh-cn form.upgrade .hint { 7961 font-style: normal; 7962 font-size: 100%; 7963 } 9425 7964 /* Zn_CH: Distraction free writing. 9426 7965 * More beautiful font for "Just write." 9427 7966 * Larger text for HTML/Visual mode. 9428 7967 */ 9429 .locale-zh-cn #wp-fullscreen-tagline { font-family: KaiTi, "楷体", sans-serif; } 9430 .locale-zh-cn #wp-fullscreen-modes a { font-size: 12px; } 9431 7968 .locale-zh-cn #wp-fullscreen-tagline { 7969 font-family: KaiTi, "楷体", sans-serif; 7970 } 7971 .locale-zh-cn #wp-fullscreen-modes a { 7972 font-size: 12px; 7973 } 9432 7974 /* zh_CN: Enlarge font-size. */ 9433 .locale-zh-cn #sort-buttons { font-size: 1em !important; } 9434 7975 .locale-zh-cn #sort-buttons { 7976 font-size: 1em !important; 7977 } 9435 7978 /* ru_RU: Text needs more room to breathe. */ 9436 7979 .locale-ru-ru .inline-edit-row fieldset label span.title { 9437 width: auto; /* default 5em */ 9438 min-width: 5em; 7980 width: auto; 7981 /* default 5em */ 7982 7983 min-width: 5em; 9439 7984 } 9440 7985 .locale-ru-ru.press-this .posting { 9441 margin-right: 257px; /* default 212px + 45px */ 7986 margin-right: 257px; 7987 /* default 212px + 45px */ 7988 9442 7989 } 9443 .locale-ru-ru.press-this #photo-add-url-div input[type="text"] { 9444 width: 255px; /* default 300px - 45px */ 7990 .locale-ru-ru.press-this #photo-add-url-div input[type="text"] { 7991 width: 255px; 7992 /* default 300px - 45px */ 7993 9445 7994 } 9446 7995 .locale-ru-ru.press-this #side-sortables { 9447 width: 245px; /* default 200px + 45px */ 7996 width: 245px; 7997 /* default 200px + 45px */ 7998 9448 7999 } 9449 8000 .locale-ru-ru #customize-header-actions .button { 9450 padding: 0 8px 1px; /* default 0 10px 1px; */ 9451 } 8001 padding: 0 8px 1px; 8002 /* default 0 10px 1px; */ 9452 8003 8004 } 9453 8005 /* lt_LT: QuickEdit */ 9454 8006 .locale-lt-lt .inline-edit-row fieldset label span.title { 9455 8007 width: 8em; 9456 8008 } 9457 8009 .locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap { 9458 8010 margin-left: 8em; 9459 8011 } -
wp-admin/css/wp-admin.min.css
diff --git a/wp-admin/css/wp-admin.min.css b/wp-admin/css/wp-admin.min.css index 81dcd97..da41cc2 100644
a b 1 #wpwrap{height:auto;min-height:100%;width:100%;position:relative}#wpcontent{height:100%}#wpcontent,#wpfooter{margin-left:165px}.folded #wpcontent,.folded #wpfooter{margin-left:52px}#wpbody-content{padding-bottom:65px;float:left;width:100%}#adminmenuback,#adminmenuwrap,#adminmenu,#adminmenu .wp-submenu{width:145px}#adminmenuback{position:absolute;top:0;bottom:0;z-index:-1}#adminmenu{clear:left;margin:0;padding:0;list-style:none}.folded #adminmenuback,.folded #adminmenuwrap,.folded #adminmenu,.folded #adminmenu li.menu-top{width:32px}.inner-sidebar{float:right;clear:right;display:none;width:281px;position:relative}.columns-2 .inner-sidebar{margin-right:auto;width:286px;display:block}.inner-sidebar #side-sortables,.columns-2 .inner-sidebar #side-sortables{min-height:300px;width:280px;padding:0}.has-right-sidebar .inner-sidebar{display:block}.has-right-sidebar #post-body{float:left;clear:left;width:100%;margin-right:-2000px}.has-right-sidebar #post-body-content{margin-right:300px;float:none;width:auto}#col-container,#col-left,#col-right{overflow:hidden;padding:0;margin:0}#col-left{width:35%}#col-right{float:right;clear:right;width:65%}.col-wrap{padding:0 7px}.alignleft{float:left}.alignright{float:right}.textleft{text-align:left}.textright{text-align:right}.clear{clear:both}.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{position:absolute;left:-1000em;top:-1000em;height:1px;width:1px;overflow:hidden}.screen-reader-shortcut{position:absolute;top:-1000em}.screen-reader-shortcut:focus{left:6px;top:-21px;height:auto;width:auto;display:block;font-size:14px;font-weight:bold; padding:15px 23px 14px;background:#f1f1f1;color:#21759b;border-radius:3px;z-index:100000;line-height:normal;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,.6);box-shadow:0 0 2px 2px rgba(0,0,0,.6);text-decoration:none}.hidden,.js .closed .inside,.js .hide-if-js,.no-js .hide-if-no-js,.js.wp-core-ui .hide-if-js,.js .wp-core-ui .hide-if-js,.no-js.wp-core-ui .hide-if-no-js,.no-js .wp-core-ui .hide-if-no-js{display:none}input[type="text"],input[type="password"],input[type="number"],input[type="search"],input[type="email"],input[type="url"],textarea{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}input[type="checkbox"],input[type="radio"]{vertical-align:text-top;padding:0;margin:1px 0 0}input[type="search"]{-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration{display:none}html,body{height:100%;margin:0;padding:0}body{font-family:sans-serif;font-size:12px;line-height:1.4em;min-width:600px}body.iframe{min-width:0;padding-top:1px}body.login{background:#fbfbfb;min-width:0}iframe,img{border:0}td,textarea,input,select,button{font-family:inherit;font-size:inherit;font-weight:inherit}td,textarea{line-height:inherit}input,select{line-height:15px}a,input[type="text"],input[type="password"],input[type="number"],input[type="search"],input[type="email"],input[type="url"],select,textarea,div{outline:0}a:focus,a:active{outline:thin dotted}#adminmenu a:focus,#adminmenu a:active,.screen-reader-text:focus{outline:0}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}p{margin:1em 0}blockquote{margin:1em}label{cursor:pointer}li,dd{margin-bottom:6px}textarea,input,select{margin:1px;padding:3px}h1,h2,h3,h4,h5,h6{display:block;font-weight:bold}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}ul,ol{padding:0}ul{list-style:none}ol{list-style-type:decimal;margin-left:2em}ul.ul-disc{list-style:disc outside}ul.ul-square{list-style:square outside}ol.ol-decimal{list-style:decimal outside}ul.ul-disc,ul.ul-square,ol.ol-decimal{margin-left:1.8em}ul.ul-disc>li,ul.ul-square>li,ol.ol-decimal>li{margin:0 0 .5em}.code,code{font-family:Consolas,Monaco,monospace}kbd,code{padding:1px 3px;margin:0 1px;font-size:11px}.subsubsub{list-style:none;margin:8px 0 5px;padding:0;font-size:12px;float:left}.subsubsub a{line-height:2;padding:.2em;text-decoration:none}.subsubsub a .count,.subsubsub a.current .count{color:#999;font-weight:normal}.subsubsub a.current{font-weight:bold;border:0}.subsubsub li{display:inline-block;margin:0;padding:0;white-space:nowrap}.widefat,div.updated,div.error,.wrap .add-new-h2,textarea,input[type="text"],input[type="password"],input[type="file"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select,.tablenav .tablenav-pages a,.tablenav-pages span.current,#titlediv #title,.postbox,#postcustomstuff table,#postcustomstuff input,#postcustomstuff textarea,.imgedit-menu div,.plugin-update-tr .update-message,#poststuff .inside .the-tagcloud,.login form,#login_error,.login .message,#menu-management .menu-edit,.nav-menus-php .list-container,.menu-item-handle,.link-to-original,.nav-menus-php .major-publishing-actions .form-invalid,.press-this #message,#TB_window,.tbtitle,.highlight,.feature-filter,#widget-list .widget-top,.editwidget .widget-inside{-webkit-border-radius:3px;border-radius:3px;border-width:1px;border-style:solid}.widefat{border-spacing:0;width:100%;clear:both;margin:0}.widefat *{word-wrap:break-word}.widefat a{text-decoration:none}.widefat thead th:first-of-type{-webkit-border-top-left-radius:3px;border-top-left-radius:3px}.widefat thead th:last-of-type{-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.widefat tfoot th:first-of-type{-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.widefat tfoot th:last-of-type{-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.widefat td,.widefat th{border-width:1px 0;border-style:solid}.widefat tfoot th{border-bottom:0}.widefat .no-items td{border-bottom-width:0}.widefat td{font-size:12px;padding:4px 7px 2px;vertical-align:top}.widefat td p,.widefat td ol,.widefat td ul{font-size:12px}.widefat th{padding:7px 7px 8px;text-align:left;line-height:1.3em;font-size:14px}.widefat th input{margin:0 0 0 8px;padding:0;vertical-align:text-top}.widefat .check-column{width:2.2em;padding:6px 0 25px;vertical-align:top}.widefat tbody th.check-column{padding:9px 0 22px}.widefat.media .check-column{padding-top:8px}.widefat thead .check-column,.widefat tfoot .check-column{padding:10px 0 0}.no-js .widefat thead .check-column input,.no-js .widefat tfoot .check-column input{display:none}.widefat .num,.column-comments,.column-links,.column-posts{text-align:center}.widefat th#comments{vertical-align:middle}.wrap{margin:4px 15px 0 0}div.updated,div.error{padding:0 .6em;margin:5px 15px 2px}div.updated p,div.error p{margin:.5em 0;padding:2px}.wrap div.updated,.wrap div.error,.media-upload-form div.error{margin:5px 0 15px}.wrap h2,.subtitle{font-weight:normal;margin:0;text-shadow:#fff 0 1px 0}.wrap h2{font-size:23px;padding:9px 15px 4px 0;line-height:29px}.subtitle{font-size:14px;padding-left:25px}.wrap .add-new-h2{font-family:sans-serif;margin-left:4px;padding:3px 8px;position:relative;top:-3px;text-decoration:none;font-size:12px;border:0 none}.wrap h2.long-header{padding-right:0}html,.wp-dialog{background-color:#fff}textarea,input[type="text"],input[type="password"],input[type="file"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select{background-color:#fff;color:#333}select{color:#000}select[disabled]{color:#7f7f7f}select:focus{border-color:#aaa}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="file"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="url"]:focus,select:focus{-webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.1);box-shadow:1px 1px 2px rgba(0,0,0,0.1)}input[readonly]{background-color:#eee}:-moz-placeholder,.wp-core-ui :-moz-placeholder{color:#a9a9a9}div.sidebar-name h3,#menu-management .nav-tab,#dashboard_plugins h5,a.rsswidget,#dashboard_right_now td.b,#dashboard-widgets h4,.tool-box .title,#poststuff h3,.metabox-holder h3,.pressthis a,#your-profile legend,.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title,.tablenav .displaying-num,.widefat th,.quicktags,.search{font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif}h2 .nav-tab,.wrap h2,.subtitle,.login form .input{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif}.quicktags,.search{font-size:12px}.icon32{float:left;height:34px;margin:7px 8px 0 0;width:36px}.icon16{height:18px;width:18px;padding:6px 6px;margin:-6px 0 0 -8px;float:left}.key-labels label{line-height:24px}.pre{white-space:pre-wrap;word-wrap:break-word}.howto{font-style:italic;display:block;font-family:sans-serif}p.install-help{margin:8px 0;font-style:italic}.no-break{white-space:nowrap}.wp-admin select{padding:2px;height:2em}.wp-admin select[multiple]{height:auto}.submit{padding:1.5em 0;margin:5px 0;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}form p.submit a.cancel:hover{text-decoration:none}#minor-publishing-actions input,#major-publishing-actions input,#minor-publishing-actions .preview{text-align:center}textarea.all-options,input.all-options{width:250px}input.large-text,textarea.large-text{width:99%}input.regular-text,#adduser .form-field input{width:25em}input.small-text{width:50px}input[type="number"].small-text{width:60px}#doaction,#doaction2,#post-query-submit{margin:1px 8px 0 0}.tablenav #changeit,.tablenav #delete_all,.tablenav #clear-recent-list{margin-top:1px}.tablenav .actions select{float:left;margin-right:6px;max-width:200px}.ie8 .tablenav .actions select{width:155px}.ie8 .tablenav .actions select#cat{width:200px}#timezone_string option{margin-left:1em}label,#your-profile label+a{vertical-align:middle}#misc-publishing-actions label{vertical-align:baseline}#pass-strength-result{border-style:solid;border-width:1px;float:left;margin:13px 5px 5px 1px;padding:3px 5px;text-align:center;width:200px;display:none}.indicator-hint{padding-top:8px}p.search-box{float:right;margin:0}.search-box input[name="s"],#search-plugins input[name="s"],.tagsdiv .newtag{float:left;height:2em;margin:0 4px 0 0}input[type="text"].ui-autocomplete-loading{background:transparent url('../images/loading.gif') no-repeat right center;visibility:visible}ul#add-to-blog-users{margin:0 0 0 14px}.ui-autocomplete-input.open{border-bottom-right-radius:0;border-bottom-left-radius:0}.ui-autocomplete{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-width:1px;border-style:solid}.ui-autocomplete li{margin-bottom:0;white-space:nowrap;text-align:left}.ui-autocomplete li a{display:block;height:100%;padding:4px 10px}.ui-autocomplete li a.ui-state-focus{cursor:pointer}#major-publishing-actions{padding:10px 10px 8px;clear:both;border-top:1px solid #f5f5f5;margin-top:-2px}#delete-action{line-height:25px;vertical-align:middle;text-align:left;float:left}#publishing-action{text-align:right;float:right;line-height:23px}#publishing-action .spinner{float:left}#misc-publishing-actions{padding:6px 0 0}.misc-pub-section{padding:6px 10px 8px;border-width:1px 0;border-style:solid}.misc-pub-section:first-child{border-top-width:0}.misc-pub-section-last{border-bottom-width:0}#minor-publishing-actions{padding:10px 10px 2px 8px;text-align:right}#minor-publishing{border-bottom-width:1px;border-bottom-style:solid;-webkit-box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff}#save-post{float:left}.preview{float:right}#sticky-span{margin-left:18px}.side-info{margin:0;padding:4px;font-size:11px}.side-info h5{padding-bottom:7px;font-size:14px;margin:12px 2px 5px;border-bottom-width:1px;border-bottom-style:solid}.side-info ul{margin:0;padding-left:18px;list-style:square}.approve,.unapproved .unapprove{display:none}.unapproved .approve,.spam .approve,.trash .approve{display:inline}td.action-links,th.action-links{text-align:right}#update-nag,.update-nag{line-height:19px;padding:5px 0;font-size:12px;text-align:center;margin:-1px 15px 0 5px;border-width:1px;border-style:solid;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.plugins .plugin-update{padding:0}.plugin-update .update-message{margin:0 10px 8px 31px;font-weight:bold}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0}.update-php .spinner{float:none;margin:-4px 0}#ajax-loading,.ajax-loading,.ajax-feedback,.imgedit-wait-spin,.list-ajax-loading{visibility:hidden}#ajax-response.alignleft{margin-left:2em}#adminmenu a,#sidemenu a,#taglist a,#catlist a{text-decoration:none}#screen-options-wrap,#contextual-help-wrap{margin:0;padding:8px 20px 12px;position:relative}#contextual-help-wrap{overflow:auto}#screen-meta .screen-reader-text{visibility:hidden}#screen-meta-links{margin:0 24px 0 0}#screen-meta-links a:focus{-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.4);box-shadow:1px 1px 1px rgba(0,0,0,0.4);outline:0}#screen-meta{display:none;position:relative;margin:0 15px 0 5px;border-width:0 1px 1px;border-style:none solid solid}#screen-options-link-wrap,#contextual-help-link-wrap{float:right;height:23px;padding:0;margin:0 0 0 6px;font-family:sans-serif}#screen-options-link-wrap,#contextual-help-link-wrap,#screen-meta{-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}#screen-meta-links .screen-meta-toggle{position:relative;top:-1px}#screen-meta-links a.show-settings{text-decoration:none;z-index:1;padding:1px 16px 0 6px;height:22px;line-height:22px;font-size:12px;display:block;text-shadow:rgba(255,255,255,0.7) 0 1px 0}#screen-meta-links a.show-settings:hover{text-decoration:none}.toggle-arrow{background-repeat:no-repeat;background-position:top left;background-color:transparent;height:22px;line-height:22px;display:block}.toggle-arrow-active{background-position:bottom left}#screen-options-wrap h5,#contextual-help-wrap h5{margin:8px 0;font-size:13px}.metabox-prefs label{display:inline-block;padding-right:15px;white-space:nowrap;line-height:30px}.metabox-prefs label input{margin:0 5px 0 2px}.metabox-prefs .columns-prefs label input{margin:0 2px}.metabox-prefs label a{display:none}#contextual-help-wrap{padding:0;margin-left:-4px}#contextual-help-columns{position:relative}#contextual-help-back{position:absolute;top:0;bottom:0;left:150px;right:170px;border-width:0 1px;border-style:solid}#contextual-help-wrap.no-sidebar #contextual-help-back{right:0;border-right-width:0;-webkit-border-bottom-right-radius:2px;border-bottom-right-radius:2px}.contextual-help-tabs{float:left;width:150px;margin:0}.contextual-help-tabs ul{margin:1em 0}.contextual-help-tabs li{margin-bottom:0;list-style-type:none;border-style:solid;border-width:1px 0;border-color:transparent}.contextual-help-tabs a{display:block;padding:5px 5px 5px 12px;line-height:18px;text-decoration:none}.contextual-help-tabs .active{padding:0;margin:0 -1px 0 0;border-width:1px 0 1px 1px;border-style:solid}.contextual-help-tabs-wrap{padding:0 20px;overflow:auto}.help-tab-content{display:none;margin:0 22px 12px 0;line-height:1.6em}.help-tab-content.active{display:block}.help-tab-content ul li{list-style-type:disc;margin-left:18px}.contextual-help-sidebar{width:150px;float:right;padding:0 8px 0 12px;overflow:auto}#adminmenuback,#adminmenuwrap{border-width:0 1px 0 0;border-style:solid}#adminmenuwrap{position:relative;float:left}#adminmenushadow{position:absolute;top:0;right:0;bottom:0;width:6px;z-index:20}#adminmenu *{-webkit-user-select:none;-moz-user-select:none;user-select:none}#adminmenu li{margin:0;padding:0;cursor:pointer}#adminmenu a{display:block;line-height:18px;padding:2px 5px}#adminmenu li.menu-top{min-height:28px;position:relative}#adminmenu .wp-submenu{list-style:none;padding:4px 0;margin:0;position:absolute;top:-1000em;left:146px;z-index:1000;overflow:visible;border-width:1px;border-style:solid;-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}.js #adminmenu .sub-open,.js #adminmenu .opensub .wp-submenu,#adminmenu a.menu-top:focus+.wp-submenu,.no-js li.wp-has-submenu:hover .wp-submenu{top:-1px}#adminmenu .wp-has-current-submenu .wp-submenu,.no-js li.wp-has-current-submenu:hover .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,#adminmenu .wp-has-current-submenu.opensub .wp-submenu{position:relative;z-index:3;top:auto;left:auto;right:auto;bottom:auto;border:0 none;-webkit-box-shadow:none;box-shadow:none}.folded #adminmenu .wp-submenu.sub-open,.folded #adminmenu .opensub .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.folded #adminmenu a.menu-top:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu{top:-1px;left:32px}.folded #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{border-width:1px;border-style:solid;position:absolute;top:-1000em}#adminmenu .wp-submenu a{font-size:12px;line-height:18px;margin:0;padding-left:12px}#adminmenu .wp-not-current-submenu li>a{padding-left:16px}#adminmenu .wp-has-current-submenu ul>li>a,.folded #adminmenu li.menu-top .wp-submenu>li>a{padding-left:12px}#adminmenu a.menu-top,#adminmenu .wp-submenu-head{font-size:13px;font-weight:bold;line-height:18px;padding:0}#adminmenu .wp-submenu-head,.folded #adminmenu .wp-menu-name{display:none}.folded #adminmenu .wp-submenu-head{display:block}#adminmenu .wp-submenu li{padding:0;margin:0;overflow:hidden}#adminmenu a.menu-top{border-width:1px 0;border-style:solid none}#adminmenu .wp-menu-image img{padding:7px 0 0 7px;opacity:.6;filter:alpha(opacity=60)}#adminmenu div.wp-menu-name{padding:5px}#adminmenu div.wp-menu-image{float:left;width:28px;height:28px}.folded #adminmenu div.wp-menu-image{width:32px;position:absolute;z-index:25}.folded #adminmenu a.menu-top{height:28px}.wp-menu-arrow{z-index:25;position:absolute;right:100%;margin:0;height:30px;width:6px;-moz-transform:translate(146px);-webkit-transform:translate(146px);-o-transform:translate(146px);-ms-transform:translate(146px);transform:translate(146px)}#adminmenu .wp-menu-arrow div{display:none;position:absolute;top:7px;left:-1px;width:14px;height:15px;-moz-transform:matrix(-0.6,1,0.6,1,0,0);-webkit-transform:matrix(-0.6,1,0.6,1,0,0);-o-transform:matrix(-0.6,1,0.6,1,0,0);-ms-transform:matrix(-0.6,1,0.6,1,0,0);transform:matrix(-0.6,1,0.6,1,0,0)}#adminmenu li.wp-not-current-submenu .wp-menu-arrow{-moz-transform:translate(145px);-webkit-transform:translate(145px);-o-transform:translate(145px);-ms-transform:translate(145px);transform:translate(145px);height:28px;border-width:1px 0;border-style:solid;top:0}.folded #adminmenu li .wp-menu-arrow{-moz-transform:translate(32px);-webkit-transform:translate(32px);-o-transform:translate(32px);-ms-transform:translate(32px);transform:translate(32px)}#adminmenu li.current .wp-menu-arrow,#adminmenu li.wp-has-current-submenu .wp-menu-arrow,#adminmenu li.wp-has-current-submenu .wp-menu-arrow div,#adminmenu li.wp-has-submenu .wp-menu-arrow div,#adminmenu li.current .wp-menu-arrow div,.no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow,#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,#adminmenu a.wp-has-submenu:focus .wp-menu-arrow,#adminmenu a:hover .wp-menu-arrow{display:block}#adminmenu li.current .wp-menu-arrow,#adminmenu li.wp-menu-open .wp-menu-arrow{top:0}.no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow,#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,#adminmenu a.wp-has-submenu:focus .wp-menu-arrow{z-index:1001}.ie8 #adminmenu li.menu-top:hover .wp-menu-arrow{display:none}#adminmenu .wp-not-current-submenu .wp-menu-arrow div{width:15px;top:6px;border-width:0 0 1px 1px;border-style:solid}.wp-menu-arrow,.folded #adminmenu li .wp-menu-arrow div,.no-js #adminmenu li.wp-not-current-submenu:hover .wp-menu-arrow{display:none}.folded #adminmenu li.current .wp-menu-arrow,.folded #adminmenu li.current .wp-menu-arrow div,.folded #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,.folded #adminmenu li.wp-menu-open .wp-menu-arrow,.folded #adminmenu li a:focus .wp-menu-arrow{display:block}#adminmenu li.menu-top:hover .wp-menu-image img,#adminmenu li.wp-has-current-submenu .wp-menu-image img{opacity:1;filter:alpha(opacity=100)}#adminmenu li.wp-menu-separator{height:3px;padding:0;margin:0;border-width:1px 0;border-style:solid;cursor:inherit}#adminmenu div.separator{height:1px;padding:0;border-width:1px 0 0 0;border-style:solid}#adminmenu .wp-submenu .wp-submenu-head{padding:5px 4px 5px 10px;margin:-4px -1px 4px;border-width:1px 0;border-style:solid;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}#adminmenu li.wp-menu-open{border-width:0 0 1px;border-style:solid}#adminmenu li.current,.folded #adminmenu li.wp-menu-open{border:0 none}.folded #adminmenu li.wp-has-current-submenu{margin-bottom:1px}.folded #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}#adminmenu .awaiting-mod,#adminmenu span.update-plugins,#sidemenu li a span.update-plugins{position:absolute;font-family:sans-serif;font-size:9px;line-height:17px;font-weight:bold;margin-top:1px;margin-left:7px;-webkit-border-radius:10px;border-radius:10px;z-index:26}#adminmenu li .awaiting-mod span,#adminmenu li span.update-plugins span,#sidemenu li a span.update-plugins span{display:block;padding:0 6px}#adminmenu li span.count-0,#sidemenu li a .count-0{display:none}#collapse-menu{font-size:12px;line-height:34px;border-width:1px 0 0;border-style:solid}.folded #collapse-menu span{display:none}#collapse-button,#collapse-button div{width:15px;height:15px}#collapse-button{float:left;margin:8px 6px;border-width:1px;border-style:solid;-webkit-border-radius:10px;border-radius:10px}@media only screen and (max-width:900px){.auto-fold #wpcontent,.auto-fold #wpfooter{margin-left:52px}.auto-fold #adminmenuback,.auto-fold #adminmenuwrap,.auto-fold #adminmenu,.auto-fold #adminmenu li.menu-top{width:32px}.auto-fold #adminmenu .wp-submenu.sub-open,.auto-fold #adminmenu .opensub .wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.auto-fold #adminmenu a.menu-top:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu{top:-1px;left:32px}.auto-fold #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu{border-width:1px;border-style:solid;position:absolute;top:-1000em}.auto-fold #adminmenu li.menu-top .wp-submenu>li>a{padding-left:12px}.auto-fold #adminmenu .wp-menu-name{display:none}.auto-fold #adminmenu .wp-submenu-head{display:block}.auto-fold #adminmenu div.wp-menu-image{width:32px;position:absolute;z-index:25}.auto-fold #adminmenu a.menu-top{height:28px}.auto-fold #adminmenu li .wp-menu-arrow{-moz-transform:translate(32px);-webkit-transform:translate(32px);-o-transform:translate(32px);-ms-transform:translate(32px);transform:translate(32px)}.auto-fold #adminmenu li .wp-menu-arrow div{display:none}.auto-fold #adminmenu li.current .wp-menu-arrow,.auto-fold #adminmenu li.current .wp-menu-arrow div,.auto-fold #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,.auto-fold #adminmenu li.wp-menu-open .wp-menu-arrow,.auto-fold #adminmenu li a:focus .wp-menu-arrow{display:block}.auto-fold #adminmenu li.wp-menu-open{border:0 none}.auto-fold #adminmenu li.wp-has-current-submenu{margin-bottom:1px}.auto-fold #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}.auto-fold #collapse-menu span{display:none}}.post-com-count-wrapper{min-width:22px;font-family:sans-serif}.post-com-count{background-image:url('../images/bubble_bg.gif');height:1.3em;line-height:1.1em;display:block;text-decoration:none;padding:0 0 6px;cursor:pointer;background-position:center -80px;background-repeat:no-repeat}.post-com-count span{font-size:11px;font-weight:bold;height:1.4em;line-height:1.4em;min-width:.7em;padding:0 6px;display:inline-block;-webkit-border-radius:5px;border-radius:5px}strong .post-com-count{background-position:center -55px}.post-com-count:hover{background-position:center -3px}.column-response .post-com-count{float:left;margin-right:5px;text-align:center}.response-links{float:left}#the-comment-list .attachment-80x60{padding:4px 8px}th .comment-grey-bubble{background-image:url('../images/comment-grey-bubble.png');background-repeat:no-repeat;height:12px;width:12px}html.wp-toolbar{padding-top:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.narrow{width:70%;margin-bottom:40px}.narrow p{line-height:150%}.widefat th,.widefat td{overflow:hidden}.widefat th{font-weight:normal}.widefat td p{margin:2px 0 .8em}.widefat .column-comment p{margin:.6em 0}.postbox-container{float:left}#dashboard-widgets.columns-1 .postbox-container{width:100%}#dashboard-widgets.columns-2 .postbox-container{width:49.5%}#dashboard-widgets.columns-2 #postbox-container-2,#dashboard-widgets.columns-2 #postbox-container-3,#dashboard-widgets.columns-2 #postbox-container-4{float:right;width:50.5%}#dashboard-widgets.columns-3 .postbox-container{width:33.5%}#dashboard-widgets.columns-3 #postbox-container-1{width:33%}#dashboard-widgets.columns-3 #postbox-container-3,#dashboard-widgets.columns-3 #postbox-container-4{float:right}#dashboard-widgets.columns-4 .postbox-container{width:25%}.postbox-container .meta-box-sortables{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.metabox-holder .postbox-container .empty-container{border:3px dashed #ccc;height:250px}.metabox-holder.columns-1 .postbox-container .empty-container,.columns-2 #postbox-container-3 .empty-container,.columns-2 #postbox-container-4 .empty-container,.columns-3 #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#poststuff{padding-top:10px}#poststuff #post-body{padding:0}#post-body-content{width:100%;float:left}#poststuff .postbox-container{width:100%}#poststuff #post-body.columns-2{margin-right:300px}#post-body.columns-2 #postbox-container-1{float:right;margin-right:-300px;width:280px}#post-body.columns-2 #side-sortables{min-height:250px}@media only screen and (max-width:799px){#wpbody-content #dashboard-widgets .postbox-container{width:100%}#wpbody-content .metabox-holder .postbox-container .empty-container{border:0 none;height:0;min-height:0}}@media only screen and (min-width:800px) and (max-width:1200px){#wpbody-content #dashboard-widgets .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets #postbox-container-2,#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:right;width:50.5%}#dashboard-widgets #postbox-container-3 .empty-container,#dashboard-widgets #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container{border:0 none;height:0;min-height:0}.index-php .screen-layout,.index-php .columns-prefs{display:block}.columns-prefs .columns-prefs-3,.columns-prefs .columns-prefs-4{display:none}}@media only screen and (max-width:850px){#wpbody-content #poststuff #post-body{margin:0}#wpbody-content #post-body.columns-2 #postbox-container-1{margin-right:0;width:100%}#poststuff #postbox-container-1 .empty-container,#poststuff #postbox-container-1 #side-sortables:empty{border:0 none;height:0;min-height:0}#poststuff #post-body.columns-2 #side-sortables{min-height:0}.screen-layout,.columns-prefs{display:none}}.postbox .hndle{-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.js .postbox .hndle{cursor:move}.postbox.closed .hndle{-webkit-border-radius:3px;border-radius:3px}.hndle a{font-size:11px;font-weight:normal}.postbox .handlediv{float:right;width:27px;height:30px}.js .postbox .handlediv{cursor:pointer}.sortable-placeholder{border-width:1px;border-style:dashed;margin-bottom:20px}.widget,.postbox,.stuffbox{margin-bottom:20px;padding:0;border-width:1px;border-style:solid;line-height:1}.widget .widget-top,.postbox h3,.stuffbox h3{margin-top:1px;border-bottom-width:1px;border-bottom-style:solid;-webkit-user-select:none;-moz-user-select:none;user-select:none}.js .widget .widget-top,.js .postbox h3{cursor:move}.postbox .inside,.stuffbox .inside{padding:0 12px 0 10px;line-height:1.4em}.postbox .inside{margin:10px 0;position:relative}.postbox.closed h3{border:0;-webkit-box-shadow:none;box-shadow:none}.postbox table.form-table{margin-bottom:0}.temp-border{border:1px dotted #ccc}.columns-prefs label{padding:0 5px}#dashboard-widgets-wrap{margin:0 -8px}#wpbody-content .metabox-holder{padding-top:10px}#dashboard-widgets .meta-box-sortables{margin:0 8px}#dashboard_recent_comments div.undo{border-top-style:solid;border-top-width:1px;margin:0 -10px;padding:3px 8px;font-size:11px}#the-comment-list td.comment p.comment-author{margin-top:0;margin-left:0}#the-comment-list p.comment-author img{float:left;margin-right:8px}#the-comment-list p.comment-author strong a{border:0}#the-comment-list td{vertical-align:top}#the-comment-list td.comment{word-wrap:break-word}.welcome-panel{position:relative;overflow:auto;margin:20px 0;padding:23px 10px 12px;border-width:1px;border-style:solid;border-radius:3px;font-size:13px;line-height:2.1em}.welcome-panel h3{margin:0;font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:21px;font-weight:normal;line-height:1.2}.welcome-panel h4{margin:1.33em 0 0;font-size:13px}.welcome-panel .about-description{font-size:16px;margin:0}.welcome-panel .welcome-panel-close{position:absolute;top:5px;right:10px;padding:8px 3px;font-size:13px;text-decoration:none;line-height:1}.welcome-panel .welcome-panel-close:before{content:' ';position:absolute;left:-12px;width:10px;height:100%;background:url('../images/xit.gif') 0 17% no-repeat}.welcome-panel .welcome-panel-close:hover:before{background-position:100% 17%}.wp-core-ui .welcome-panel .button.button-hero{margin:15px 0 3px}.welcome-panel-content{margin-left:13px;max-width:1500px}.welcome-panel .welcome-panel-column-container{clear:both;overflow:hidden;position:relative}.welcome-panel .welcome-panel-column{width:32%;min-width:200px;float:left}.ie8 .welcome-panel .welcome-panel-column{min-width:230px}.welcome-panel .welcome-panel-column:first-child{width:36%}.welcome-panel-column p{margin-top:7px}.welcome-panel .welcome-icon{display:block;padding:2px 0 8px 32px;background-image:url('../images/welcome-icons.png');background-repeat:no-repeat;background-size:16px}.welcome-panel .welcome-add-page{background-position:0 2px}.welcome-panel .welcome-edit-page{background-position:0 -90px}.welcome-panel .welcome-learn-more{background-position:0 -136px}.welcome-panel .welcome-comments{background-position:0 -182px}.welcome-panel .welcome-view-site{background-position:0 -274px}.welcome-panel .welcome-widgets-menus{background-position:1px -229px;line-height:14px}.welcome-panel .welcome-write-blog{background-position:0 -44px}.welcome-panel .welcome-panel-column ul{margin:.8em 1em 1em 0}.welcome-panel .welcome-panel-column li{line-height:16px;list-style-type:none}@media screen and (max-width:870px){.welcome-panel .welcome-panel-column,.welcome-panel .welcome-panel-column:first-child{display:block;float:none;width:100%}.welcome-panel .welcome-panel-column li{display:inline-block;margin-right:13px}.welcome-panel .welcome-panel-column ul{margin:.4em 0 0}.welcome-panel .welcome-icon{padding-left:25px}}table.fixed{table-layout:fixed}.fixed .column-rating,.fixed .column-visible{width:8%}.fixed .column-posts,.fixed .column-date,.fixed .column-parent,.fixed .column-links,.fixed .column-author,.fixed .column-format{width:10%}.fixed .column-response,.fixed .column-categories,.fixed .column-tags,.fixed .column-rel,.fixed .column-role{width:15%}.fixed .column-slug{width:25%}.fixed .column-locations{width:35%}.fixed .column-comments{width:4em;padding:8px 0;text-align:left}.fixed .column-comments .vers{padding-left:3px}.fixed .column-comments a{float:left}.fixed .column-icon{width:80px}#comments-form .fixed .column-author{width:20%}#commentsdiv.postbox .inside{margin:0;padding:0}#commentsdiv .inside .row-actions{line-height:18px}#commentsdiv .inside .column-author{width:25%}#commentsdiv .column-comment p{margin:.6em 0;padding:0}#commentsdiv #replyrow td{padding:0}#commentsdiv p{padding:8px 10px;margin:0}#commentsdiv #add-new-comment{border-width:0 0 1px;border-style:none none solid}#commentsdiv .comments-box{border:0 none}#commentsdiv .comments-box thead th{background:transparent;padding:0 7px 4px;font-style:italic}#commentsdiv .comments-box tr:last-child td{border-bottom:0 none}#commentsdiv .spinner{padding-left:5px}.sorting-indicator{display:none;width:7px;height:4px;margin-top:8px;margin-left:7px;background-image:url('../images/sort.gif');background-repeat:no-repeat}tr.wp-locked .locked-indicator{background:url('../images/lock.png') no-repeat;margin:-2px 0 0 6px;height:20px;width:16px}tr.wp-locked .check-column label,tr.wp-locked .check-column input[type="checkbox"],tr.wp-locked .row-actions .inline,tr.wp-locked .row-actions .trash{display:none}tr .locked-info{height:0;opacity:0}tr.wp-locked .locked-info{height:auto;opacity:1}tr.locked-info,tr.wp-locked .locked-info{-webkit-transition:height 1s,opacity 500ms;-moz-transition:height 1s,opacity 500ms;-ms-transition:height 1s,opacity 500ms;-o-transition:height 1s,opacity 500ms;transition:height 1s,opacity 500ms}.fixed .column-comments .sorting-indicator{margin-top:3px}#menu-locations-wrap .widefat{width:60%}.widefat th.sortable,.widefat th.sorted{padding:0}th.sortable a,th.sorted a{display:block;overflow:hidden;padding:7px 7px 8px}.fixed .column-comments.sortable a,.fixed .column-comments.sorted a{padding:8px 0}th.sortable a span,th.sorted a span{float:left;cursor:pointer}th.sorted.asc .sorting-indicator,th.desc:hover span.sorting-indicator{display:block;background-position:0 0}th.sorted.desc .sorting-indicator,th.asc:hover span.sorting-indicator{display:block;background-position:-7px 0}.tablenav-pages a{border-bottom-style:solid;border-bottom-width:2px;font-weight:bold;margin-right:1px;padding:0 2px}.tablenav-pages .current-page{text-align:center}.tablenav-pages .next-page{margin-left:2px}.tablenav a.button-secondary{display:block;margin:3px 8px 0 0}.tablenav{clear:both;height:30px;margin:6px 0 4px;vertical-align:middle}.tablenav.themes{max-width:98%}.tablenav .tablenav-pages{float:right;display:block;cursor:default;height:30px;line-height:30px;font-size:12px}.tablenav .no-pages,.tablenav .one-page .pagination-links{display:none}.tablenav .tablenav-pages a,.tablenav-pages span.current{text-decoration:none;padding:3px 6px}.tablenav .tablenav-pages a.disabled:hover,.tablenav .tablenav-pages a.disabled:active{cursor:default}.tablenav .displaying-num{margin-right:10px;font-size:12px;font-style:italic}.tablenav .actions{overflow:hidden;padding:2px 8px 0 0}.tablenav .delete{margin-right:20px}.view-switch{float:right;margin:6px 8px 0}.view-switch a{text-decoration:none}.filter{float:left;margin:-5px 0 0 10px}.filter .subsubsub{margin-left:-10px;margin-top:13px}.screen-per-page{width:4em}#posts-filter fieldset{float:left;margin:0 1.5ex 1em 0;padding:0}#posts-filter fieldset legend{padding:0 0 .2em 1px}#wpbody-content .inline-edit-row fieldset{font-size:12px;float:left;margin:0;padding:0;width:100%}tr.inline-edit-row td,#wpbody-content .inline-edit-row fieldset .inline-edit-col{padding:0 .5em}#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col{border-width:0 0 0 1px;border-style:none none none solid}#wpbody-content .quick-edit-row-post .inline-edit-col-left{width:40%}#wpbody-content .quick-edit-row-post .inline-edit-col-right{width:39%}#wpbody-content .inline-edit-row-post .inline-edit-col-center{width:20%}#wpbody-content .quick-edit-row-page .inline-edit-col-left{width:50%}#wpbody-content .quick-edit-row-page .inline-edit-col-right,#wpbody-content .bulk-edit-row-post .inline-edit-col-right{width:49%}#wpbody-content .bulk-edit-row .inline-edit-col-left{width:30%}#wpbody-content .bulk-edit-row-page .inline-edit-col-right{width:69%}#wpbody-content .bulk-edit-row .inline-edit-col-bottom{float:right;width:69%}#wpbody-content .inline-edit-row-page .inline-edit-col-right{margin-top:27px}.inline-edit-row fieldset .inline-edit-group{clear:both}.inline-edit-row fieldset .inline-edit-group:after{content:".";display:block;height:0;clear:both;visibility:hidden}.inline-edit-row p.submit{clear:both;padding:.5em;margin:.5em 0 0}.inline-edit-row span.error{line-height:22px;margin:0 15px;padding:3px 5px}.inline-edit-row h4{margin:.2em 0;padding:0;line-height:23px}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{margin:0;padding:0;line-height:27px}.inline-edit-row fieldset label,.inline-edit-row fieldset span.inline-edit-categories-label{display:block;margin:.2em 0}.inline-edit-row fieldset label.inline-edit-tags{margin-top:0}.inline-edit-row fieldset label.inline-edit-tags span.title{margin:.2em 0;width:auto}.inline-edit-row fieldset label span.title{display:block;float:left;width:5em}.inline-edit-row fieldset label span.input-text-wrap{display:block;margin-left:5em}.quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto;padding-right:.5em}.inline-edit-row .input-text-wrap input[type=text]{width:100%}.inline-edit-row fieldset label input[type=checkbox]{vertical-align:text-bottom}.inline-edit-row fieldset label textarea{width:100%;height:4em}#wpbody-content .bulk-edit-row fieldset .inline-edit-group label{max-width:50%}#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child{margin-right:.5em}.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input{width:6em}.inline-edit-save .spinner{padding:4px 10px 0;vertical-align:top;float:right}.inline-edit-row h4{text-transform:uppercase}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{font-style:italic;line-height:1.8em}.inline-edit-row fieldset input[type="text"],.inline-edit-row fieldset textarea{border-style:solid;border-width:1px}.inline-edit-row fieldset .inline-edit-date{float:left}.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=mn]{font-size:12px;width:2.1em}.inline-edit-row fieldset input[name=aa]{font-size:12px;width:3.5em}.inline-edit-row fieldset label input.inline-edit-password-input{width:8em}ul.cat-checklist{height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0}#bulk-titles{display:block;height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0 0 5px}.inline-edit-row fieldset ul.cat-checklist li,.inline-edit-row fieldset ul.cat-checklist input{margin:0}.inline-edit-row fieldset ul.cat-checklist label,.inline-edit-row #bulk-titles div{font-family:sans-serif;font-style:normal;font-size:11px}.inline-edit-row fieldset label input.inline-edit-menu-order-input{width:3em}.inline-edit-row fieldset label input.inline-edit-slug-input{width:75%}.quick-edit-row-post fieldset label.inline-edit-status{float:left}#bulk-titles{line-height:140%}#bulk-titles div{margin:.2em .3em}#bulk-titles div a{cursor:pointer;display:block;float:left;height:10px;margin:3px 3px 0 -2px;overflow:hidden;position:relative;text-indent:-9999px;width:10px}#show-comments{overflow:hidden}#save-action .spinner,#show-comments a,#show-comments .spinner{float:left}#lost-connection-notice .spinner{display:block;float:left;margin:0 5px 0 0}.rtl #lost-connection-notice .spinner{float:right;margin:0 0 0 5px}#titlediv{position:relative;margin-bottom:5px}#titlediv label{cursor:text}#titlediv div.inside{margin:0}#poststuff #titlewrap{border:0;padding:0}#titlediv #title{padding:3px 8px;font-size:1.7em;line-height:100%;height:1.7em;width:100%;outline:0;margin:1px 0}#titlediv #title-prompt-text,#wp-fullscreen-title-prompt-text{color:#bbb;position:absolute;font-size:1.7em;padding:11px 10px}#wp-fullscreen-save .fs-saved{color:#999;float:right;margin-top:4px}#wp-fullscreen-title-prompt-text{padding:11px}#poststuff .inside-submitbox,#side-sortables .inside-submitbox{margin:0 3px;font-size:11px}input#link_description,input#link_url{width:98%}#pending{background:0 none;border:0 none;padding:0;font-size:11px;margin-top:-1px}#edit-slug-box{line-height:24px;min-height:25px;margin-top:5px;padding-right:6px}#edit-slug-box .cancel{margin-right:10px;font-size:11px}#editable-post-name-full{display:none}#editable-post-name input{width:16em}.postarea h3 label{float:left}.submitbox .submit{text-align:left;padding:12px 10px 10px;font-size:11px}.submitbox .submitdelete{text-decoration:none;padding:1px 2px}.submitbox .submitdelete,.submitbox .submit a:hover{border-bottom-width:1px;border-bottom-style:solid}.submitbox .submit input{margin-bottom:8px;margin-right:4px;padding:6px}.inside-submitbox #post_status{margin:2px 0 2px -2px}#post-status-select{line-height:2.5em;margin-top:3px}#post-body #normal-sortables{min-height:50px}.postbox{position:relative;min-width:255px}#trackback_url{width:99%}#normal-sortables .postbox .submit{background:transparent none;border:0 none;float:right;padding:0 12px;margin:0}.category-add input[type="text"],.category-add select{width:100%;max-width:260px}.press-this #side-sortables .category-tabs li,ul.category-tabs li,#side-sortables .add-menu-item-tabs li,.wp-tab-bar li{display:inline;line-height:1.35em}.no-js .category-tabs li.hide-if-no-js{display:none}.category-tabs a,#side-sortables .add-menu-item-tabs a,.wp-tab-bar a{text-decoration:none}.category-tabs{margin:8px 0 3px}#category-adder h4{margin:10px 0}#side-sortables .add-menu-item-tabs,.wp-tab-bar{margin-bottom:3px}#normal-sortables .postbox #replyrow .submit{float:none;margin:0;padding:0 7px 5px}#side-sortables .submitbox .submit input,#side-sortables .submitbox .submit .preview,#side-sortables .submitbox .submit a.preview:hover{border:0 none}#side-sortables .inside-submitbox .insidebox,.stuffbox .insidebox{margin:11px 0}ul.category-tabs,ul.add-menu-item-tabs,ul.wp-tab-bar{margin-top:12px}ul.category-tabs li{border-style:solid;border-width:1px;position:relative}ul.add-menu-item-tabs li.tabs,.wp-tab-active{border-style:solid solid none;border-width:1px 1px 0}#post-body .add-menu-item-tabs li.tabs{border-style:solid none solid solid;border-width:1px 0 1px 1px;margin-right:-1px}ul.category-tabs li,ul.add-menu-item-tabs li,ul.wp-tab-bar li{padding:3px 5px 5px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}form#tags-filter{position:relative}td.post-title strong,td.plugin-title strong{display:block;margin-bottom:.2em}td.post-title p,td.plugin-title p{margin:6px 0}.wp-hidden-children .wp-hidden-child,.ui-tabs-hide{display:none}.commentlist .avatar{vertical-align:text-top}#post-body .tagsdiv #newtag{margin-right:5px;width:16em}#side-sortables input#post_password{width:94%}#side-sortables .tagsdiv #newtag{width:68%}#post-status-info{border-width:0 1px 1px;border-style:none solid solid;width:100%;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}#post-status-info td{font-size:12px}.autosave-info{padding:2px 15px;text-align:right}#editorcontent #post-status-info{border:0}#post-body .wp_themeSkin .mceStatusbar a.mceResize{display:block;background:transparent url('../images/resize.gif') no-repeat scroll right bottom;width:12px;cursor:se-resize;margin:0 1px;position:relative;top:-2px}#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize{top:20px}#content-resize-handle{background:transparent url('../images/resize.gif') no-repeat scroll right bottom;width:12px;cursor:se-resize;position:absolute;right:2px;height:19px}.press-this #content-resize-handle{bottom:2px}.tmce-active #content-resize-handle{display:none}#wp-word-count{display:block;padding:2px 10px}#timestampdiv select{height:20px;line-height:14px;padding:0;vertical-align:top}#aa,#jj,#hh,#mn{padding:1px;font-size:12px}#jj,#hh,#mn{width:2em}#aa{width:3.4em}.curtime #timestamp{background-repeat:no-repeat;background-position:left center;padding:2px 0 1px 20px}#timestampdiv{padding-top:5px;line-height:23px}#timestampdiv p{margin:8px 0 6px}#timestampdiv input{border-width:1px;border-style:solid}.notification-dialog{position:fixed;top:30%;left:50%;width:450px;margin-left:-225px;background:#fff;line-height:1.5;z-index:1000005}.notification-dialog-background{position:fixed;top:0;left:0;right:0;bottom:0;background:#000;opacity:.5;filter:alpha(opacity=50);z-index:1000000}#post-lock-dialog .post-locked-message,#post-lock-dialog .post-taken-over{margin:25px}#post-lock-dialog .post-locked-message a.button{margin-right:10px}#post-lock-dialog .post-locked-avatar{float:left;margin:0 20px 20px 0}#post-lock-dialog .wp-tab-first{outline:0}#post-lock-dialog .locked-saving img{float:left;margin-right:3px}#post-lock-dialog.saving .locked-saving,#post-lock-dialog.saved .locked-saved{display:inline}#postcustomstuff thead th{padding:5px 8px 8px}#postcustom #postcustomstuff .submit{border:0 none;float:none;padding:0 8px 8px}#side-sortables #postcustom #postcustomstuff .submit{margin:0;padding:0}#side-sortables #postcustom #postcustomstuff #the-list textarea{height:85px}#side-sortables #postcustom #postcustomstuff td.left input,#side-sortables #postcustom #postcustomstuff td.left select,#side-sortables #postcustomstuff #newmetaleft a{margin:3px 3px 0}#postcustomstuff table{margin:0;width:100%;border-width:1px;border-style:solid;border-spacing:0}#postcustomstuff tr{vertical-align:top}#postcustomstuff table input,#postcustomstuff table select,#postcustomstuff table textarea{width:96%;margin:8px}#side-sortables #postcustomstuff table input,#side-sortables #postcustomstuff table select,#side-sortables #postcustomstuff table textarea{margin:3px}#postcustomstuff th.left,#postcustomstuff td.left{width:38%}#postcustomstuff .submit input{margin:0;width:auto}#postcustomstuff #newmetaleft a{display:inline-block;margin:0 8px 8px;text-decoration:none}.no-js #postcustomstuff #enternew{display:none}#post-body-content .compat-attachment-fields{margin-bottom:20px}.compat-attachment-fields th{padding-top:5px;padding-right:10px}.revisions-control-frame,.revisions-diff-frame{position:relative}.revisions-controls{padding-top:40px;height:100px;z-index:1}.revisions-controls input[type="checkbox"]{position:relative;top:-1px;vertical-align:text-bottom}.revisions.pinned .revisions-controls{position:fixed;top:0;padding-bottom:10px}.revisions-tickmarks{position:relative;margin:0 auto;height:.8em;top:7px;max-width:70%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.revisions-tickmarks>div{position:absolute;height:100%;border-style:solid;border-width:0 1px 0 0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.revisions-tickmarks>div:first-child{border-width:0}.comparing-two-revisions .revisions-controls{height:140px}.revisions .diff-error{position:absolute;text-align:center;margin:0 auto;width:100%;display:none}.revisions.diff-error .diff-error{display:block}.revisions .loading-indicator{position:fixed;vertical-align:middle;opacity:0;width:100%;top:50%;margin-left:-90px;-webkit-transition:opacity .5s;-moz-transition:opacity .5s;-ms-transition:opacity .5s;-o-transition:opacity .5s;transition:opacity .5s;filter:alpha(opacity=0)}body.folded .revisions .loading-indicator{margin-left:-32px}.revisions .loading-indicator span.spinner{display:block;margin:0 auto;float:none}.revisions.loading .loading-indicator{opacity:1;filter:alpha(opacity=100)}.revisions .diff{-webkit-transition:opacity .5s;-moz-transition:opacity .5s;-ms-transition:opacity .5s;-o-transition:opacity .5s;transition:opacity .5s}.revisions.loading .diff{opacity:.5;filter:alpha(opacity=50)}.revisions.diff-error .diff{visibility:hidden}.revisions-meta{margin-top:15px}.revision-toggle-compare-mode{position:absolute;top:0;right:0}.comparing-two-revisions .revisions-previous,.comparing-two-revisions .revisions-next,.revisions-meta .diff-meta-to strong{display:none}.revisions-controls .author-card .date{color:#777}.revisions-controls .author-card.autosave{color:#d54e21}.revisions-controls .author-card .author-name{font-weight:bold}.comparing-two-revisions .diff-meta-to strong{display:block}.revisions-previous,.revisions-next{position:relative;z-index:1}.revisions-previous{float:left}.revisions-next{float:right}.revisions-controls .wp-slider{max-width:70%;margin:0 auto;top:-3px}.post-revisions li img,#revisions-meta-restored img{vertical-align:middle}table.diff{table-layout:fixed;width:100%;white-space:pre-wrap;word-wrap:break-word}table.diff col.content{width:auto}table.diff col.content.diffsplit{width:48%}table.diff col.diffsplit.middle{width:auto}table.diff col.ltype{width:30px}table.diff tr{background-color:transparent}table.diff td,table.diff th{padding:.5em;font-family:Consolas,Monaco,monospace}table.diff .diff-deletedline del,table.diff .diff-addedline ins{text-decoration:none}.diff-meta{-webkit-border-radius:3px;border-radius:3px;padding:5px;clear:both;min-height:32px}.diff-title strong{line-height:32px;min-width:60px;text-align:right;float:left;margin-right:5px}.revisions-controls .author-card .avatar,.revisions-controls .author-card .author-info{float:left;margin-left:6px;margin-right:6px}.revisions-controls .author-card .byline{display:block;font-size:12px}.revisions-controls .author-card .avatar{vertical-align:middle}.diff-meta input.restore-revision{float:right;margin-left:6px;margin-right:6px;margin-top:4px}.diff-meta-from{display:none}.comparing-two-revisions .diff-meta-from{display:block}.revisions-tooltip{position:absolute;bottom:105px;margin-right:0;margin-left:-69px;z-index:0;max-width:350px;min-width:130px;padding:8px 4px;display:none;opacity:0}.revisions-tooltip.flipped{margin-left:0;margin-right:-70px}.revisions.pinned .revisions-tooltip{display:none!important}.comparing-two-revisions .revisions-tooltip{bottom:145px}.revisions-tooltip-arrow{width:70px;height:15px;overflow:hidden;position:absolute;left:0;margin-left:35px;bottom:-15px}.revisions-tooltip.flipped .revisions-tooltip-arrow{margin-left:0;margin-right:35px;left:auto;right:0}.revisions-tooltip-arrow>span{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);tranform:rotate(45deg)}.revisions-tooltip.flipped .revisions-tooltip-arrow>span{left:auto;right:20px}.ie8 .revisions-tooltip-arrow>span{left:15px;top:-25px;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)"}.ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow>span{right:25px}.revisions-tooltip,.revisions-tooltip-arrow>span{border-width:1px;border-style:solid}div.revisions-controls>.wp-slider>.ui-slider-handle{margin-left:-10px}.wp-slider.ui-slider{position:relative;border-width:1px;border-style:solid;border-radius:3px;text-align:left;cursor:pointer}.wp-slider .ui-slider-handle{position:absolute;z-index:2;margin-top:-3px;width:19px;height:19px;border-width:1px;border-style:solid;border-radius:50%}.wp-slider .ui-slider-handle:before{content:"";position:absolute;top:6px;left:3px;height:8px;width:13px;background:url(../images/arrows-pr.png) no-repeat -2px -47px}.wp-slider .ui-slider-handle.from-handle:before,.wp-slider .ui-slider-handle.to-handle:before{height:8px;width:7px}.wp-slider .ui-slider-handle.from-handle:before{background-position:-5px -84px;left:7px}.wp-slider .ui-slider-handle.to-handle:before{background-position:-4px -65px;left:5px}.wp-slider .ui-slider-range{position:absolute;font-size:.7em;display:block;border:0;background-color:transparent;background-image:none}.wp-slider.ui-slider-horizontal{height:.8em}.wp-slider.ui-slider-horizontal .ui-slider-handle{top:-.25em;margin-left:-.6em}.wp-slider.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.wp-slider.ui-slider-horizontal .ui-slider-range-min{left:0}.wp-slider.ui-slider-horizontal .ui-slider-range-max{right:0}#select-featured-image{padding:4px 0;overflow:hidden}#select-featured-image img{max-width:100%;height:auto;margin-bottom:10px}#select-featured-image a{float:left;clear:both}#select-featured-image .remove{display:none;margin-top:10px}.js #select-featured-image.has-featured-image .remove{display:inline-block}.no-js #select-featured-image .choose{display:none}a.post-state-format{overflow:hidden;display:inline-block;vertical-align:middle;height:16px;width:16px;margin-right:5px;background-repeat:no-repeat;text-indent:-999em}#post-formats-select{line-height:2em}label.post-format-icon{margin-left:5px;padding:2px 0 2px 21px}.post-format-icon.post-format-standard{background-position:0 0}.post-format-icon.post-format-image{background-position:0 -32px}.post-format-icon.post-format-gallery{background-position:0 -64px}.post-format-icon.post-format-audio{background-position:0 -96px}.post-format-icon.post-format-video{background-position:0 -128px}.post-format-icon.post-format-chat{background-position:0 -160px}.post-format-icon.post-format-status{background-position:0 -192px}.post-format-icon.post-format-aside{background-position:0 -224px}.post-format-icon.post-format-quote{background-position:0 -256px}.post-format-icon.post-format-link{background-position:0 -288px}.category-adder{margin-left:120px;padding:4px 0}.category-adder h4{margin:0 0 8px}#side-sortables .category-adder{margin:0}#post-body ul.add-menu-item-tabs{float:left;width:120px;text-align:right;margin:0 -120px 0 5px;padding:0}#post-body ul.add-menu-item-tabs li{padding:8px}#post-body ul.add-menu-item-tabs li.tabs{-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:3px}.wp-tab-panel,.categorydiv div.tabs-panel,.customlinkdiv div.tabs-panel,.posttypediv div.tabs-panel,.taxonomydiv div.tabs-panel{min-height:42px;max-height:200px;overflow:auto;padding:0 .9em;border-style:solid;border-width:1px}div.tabs-panel-active{display:block}div.tabs-panel-inactive{display:none}#front-page-warning,#front-static-pages ul,ul.export-filters,.inline-editor ul.cat-checklist ul,.categorydiv ul.categorychecklist ul,.customlinkdiv ul.categorychecklist ul,.posttypediv ul.categorychecklist ul,.taxonomydiv ul.categorychecklist ul{margin-left:18px}ul.categorychecklist li{margin:0;padding:0;line-height:19px;word-wrap:break-word}.categorydiv .tabs-panel,.customlinkdiv .tabs-panel,.posttypediv .tabs-panel,.taxonomydiv .tabs-panel{border-width:3px;border-style:solid}.form-wrap p,.form-wrap label{font-size:11px}.form-wrap label{display:block;padding:2px;font-size:12px}.form-field input,.form-field textarea{border-style:solid;border-width:1px;width:95%}p.description,.form-wrap p{margin:2px 0 5px}p.help,p.description,span.description,.form-wrap p{font-size:12px;font-style:italic;font-family:sans-serif}.form-wrap .form-field{margin:0 0 10px;padding:8px 0}.form-wrap .form-field #parent{max-width:100%}.col-wrap h3{margin:12px 0;font-size:1.1em}.col-wrap p.submit{margin-top:-10px}#poststuff .taghint{color:#aaa;margin:15px 0 -24px 12px}#poststuff .tagsdiv .howto{margin:0 0 6px 8px}.ajaxtag .newtag{position:relative}.tagsdiv .newtag{width:180px}.tagsdiv .the-tags{display:block;height:60px;margin:0 auto;overflow:auto;width:260px}#post-body-content .tagsdiv .the-tags{margin:0 5px}p.popular-tags{-webkit-border-radius:8px;border-radius:8px;border-width:1px;border-style:solid;line-height:2em;max-width:1000px;padding:8px 12px 12px;text-align:justify}p.popular-tags a{padding:0 3px}.tagcloud{width:97%;margin:0 0 40px;text-align:justify}.tagcloud h3{margin:2px 0 12px}.ac_results{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;display:none;border-width:1px;border-style:solid}.ac_results li{padding:2px 5px;white-space:nowrap;text-align:left}.ac_over{cursor:pointer}.ac_match{text-decoration:underline}table.links-table{width:100%}.links-table th{font-weight:normal;text-align:left;vertical-align:top;min-width:80px;width:20%;word-wrap:break-word}.links-table th,.links-table td{padding:5px 0}.links-table td label{margin-right:8px}.links-table td input[type="text"],.links-table td textarea{width:100%}.links-table #link_rel{max-width:280px}.media-item .describe{border-collapse:collapse;width:100%;border-top-style:solid;border-top-width:1px;clear:both;cursor:default}.media-item.media-blank .describe{border:0}.media-item .describe th{vertical-align:top;text-align:left;padding:5px 10px 10px;width:140px}.media-item .describe .align th{padding-top:0}.media-item .media-item-info tr{background-color:transparent}.media-item .describe td{padding:0 8px 8px 0;vertical-align:top}.media-item thead.media-item-info td{padding:4px 10px 0}.media-item .media-item-info .A1B1{padding:0 0 0 10px}.media-item td.savesend{padding-bottom:15px}.media-item .thumbnail{max-height:128px;max-width:128px}#wpbody-content #async-upload-wrap a{display:none}.media-upload-form{margin-top:20px}.media-upload-form td label{margin-right:6px;margin-left:2px}.media-upload-form .align .field label{display:inline;padding:0 0 0 23px;margin:0 1em 0 3px;font-weight:bold}.media-upload-form tr.image-size label{margin:0 0 0 5px;font-weight:bold}.media-upload-form th.label label{font-weight:bold;margin:.5em;font-size:13px}.media-upload-form th.label label span{padding:0 5px}abbr.required{border:medium none;text-decoration:none}.media-item .describe input[type="text"],.media-item .describe textarea{width:460px}.media-item .describe p.help{margin:0;padding:0 0 0 5px}.media-item .edit-attachment,.describe-toggle-on,.describe-toggle-off{display:block;line-height:36px;float:right;margin-right:15px}.media-item .describe-toggle-off,.media-item.open .describe-toggle-on{display:none}.media-item.open .describe-toggle-off{display:block}#media-items .media-item{border-style:solid;border-width:1px;min-height:36px;position:relative;margin-top:-1px;width:100%}#media-items{width:623px}.media-new-php #media-items{margin:1em 0}#media-items:empty{border:0 none}.media-item .filename{line-height:36px;overflow:hidden;padding:0 10px}.media-item .error-div{padding-left:10px}.media-item .pinkynail{float:left;margin:2px 2px 0;max-width:40px;max-height:32px}.media-item .startopen,.media-item .startclosed{display:none}.media-item .original{position:relative;height:34px}.media-item .progress{float:right;height:22px;margin:6px 10px 0 0;width:200px;line-height:2em;padding:0;overflow:hidden;margin-bottom:2px;border:1px solid #d1d1d1;background:#f7f7f7;background-image:-webkit-gradient(linear,left bottom,left top,from(#fff),to(#f7f7f7));background-image:-webkit-linear-gradient(bottom,#fff,#f7f7f7);background-image:-moz-linear-gradient(bottom,#fff,#f7f7f7);background-image:-o-linear-gradient(bottom,#fff,#f7f7f7);background-image:linear-gradient(to top,#fff,#f7f7f7);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 0 3px rgba(0,0,0,0.1);box-shadow:inset 0 0 3px rgba(0,0,0,0.1)}.media-item .bar{z-index:9;width:0;height:100%;margin-top:-24px;background-color:#8cc1e9;background-image:-webkit-gradient(linear,left bottom,left top,from(#72a7cf),to(#8cc1e9));background-image:-webkit-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:-moz-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:-o-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:linear-gradient(to top,#72a7cf,#8cc1e9);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.3);box-shadow:0 0 3px rgba(0,0,0,0.3)}.media-item .progress .percent{z-index:10;position:relative;width:200px;padding:0 8px;text-shadow:0 1px 0 rgba(255,255,255,0.4);color:rgba(0,0,0,0.6)}.upload-php .fixed .column-parent{width:15%}.js .html-uploader #plupload-upload-ui{display:none}.js .html-uploader #html-upload-ui{display:block}.media-upload-form .media-item.error{margin:0;padding:0}.media-upload-form .media-item.error p,.media-item .error-div{line-height:16px;margin:5px 10px;padding:0}.media-item .error-div a.dismiss{display:block;float:right;margin:5px 4px 0 15px}.find-box{width:600px;height:300px;overflow:hidden;padding:33px 0 51px;position:absolute;z-index:1000}.find-box-head{cursor:move;font-weight:bold;height:2em;line-height:2em;padding:1px 12px;position:absolute;top:5px;width:100%}.find-box-inside{overflow:auto;padding:6px;height:100%}.find-box-search{overflow:hidden;padding:9px;position:relative}.find-box-search .spinner{float:none;left:125px;position:absolute;top:9px}#find-posts-input{float:left;width:140px;height:24px}#find-posts-search{float:left;margin:1px 4px 0 3px}#find-posts-response{margin:8px 0;padding:0 1px 6px}#find-posts-response table{width:100%}#find-posts-response .found-radio{padding:3px 0 0 8px;width:15px}.find-box-buttons{padding:8px;overflow:hidden}.find-box #resize-se{position:absolute;right:1px;bottom:1px}.ui-find-overlay{position:absolute;top:0;left:0;background-color:#000;opacity:.6;filter:alpha(opacity=60)}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0}#poststuff .inside .the-tagcloud{margin:5px 0 10px;padding:8px;border-width:1px;border-style:solid;line-height:1.8em;word-spacing:3px;-webkit-border-radius:6px;border-radius:6px}.drag-drop #drag-drop-area{border:4px dashed #ddd;height:200px}.drag-drop .drag-drop-inside{margin:70px auto 0;width:250px}.drag-drop-inside p{color:#aaa;font-size:14px;margin:5px 0;display:none}.drag-drop .drag-drop-inside p{text-align:center}.drag-drop-inside p.drag-drop-info{font-size:20px}.drag-drop .drag-drop-inside p,.drag-drop-inside p.drag-drop-buttons{display:block}.drag-drop.drag-over #drag-drop-area{border-color:#83b4d8}#plupload-upload-ui{position:relative}.describe .image-editor{vertical-align:top}.imgedit-wrap{position:relative}.imgedit-settings p{margin:8px 0}.post-php .imgedit-wrap table{width:100%}.describe .imgedit-wrap table td,.wp_attachment_holder .imgedit-wrap table td{vertical-align:top;padding-top:0}.describe .imgedit-wrap table td.imgedit-settings{padding:0 5px}.wp_attachment_holder .imgedit-wrap table td.imgedit-settings{width:250px}td.imgedit-settings input{margin-top:0;vertical-align:middle}.imgedit-wait{position:absolute;top:0;background:#fff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px;background-size:16px 16px;opacity:.7;filter:alpha(opacity=70);width:100%;height:500px;display:none}.spinner{background:url(../images/wpspin_light.gif) no-repeat;background-size:16px 16px;display:none;float:right;opacity:.7;filter:alpha(opacity=70);width:16px;height:16px;margin:5px 5px 0}.no-float{float:none}.media-disabled,.imgedit-settings .disabled{color:grey}.wp_attachment_image,.A1B1{overflow:hidden}.wp_attachment_image .button,.A1B1 .button{float:left}.no-js .wp_attachment_image .button{display:none}.wp_attachment_image .spinner,.A1B1 .spinner{float:left;padding:0 4px 4px;vertical-align:bottom}.imgedit-menu{margin:0 0 12px;min-width:300px}.imgedit-menu div{float:left;width:32px;height:32px}.imgedit-crop-wrap{position:relative}.imgedit-crop{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -9px -31px;margin:0 8px 0 0}.imgedit-crop.disabled:hover{background-position:-9px -31px}.imgedit-crop:hover{background-position:-9px -1px}.imgedit-rleft{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -46px -31px;margin:0 3px}.imgedit-rleft.disabled:hover{background-position:-46px -31px}.imgedit-rleft:hover{background-position:-46px -1px}.imgedit-rright{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -77px -31px;margin:0 8px 0 3px}.imgedit-rright.disabled:hover{background-position:-77px -31px}.imgedit-rright:hover{background-position:-77px -1px}.imgedit-flipv{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -115px -31px;margin:0 3px}.imgedit-flipv.disabled:hover{background-position:-115px -31px}.imgedit-flipv:hover{background-position:-115px -1px}.imgedit-fliph{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -147px -31px;margin:0 8px 0 3px}.imgedit-fliph.disabled:hover{background-position:-147px -31px}.imgedit-fliph:hover{background-position:-147px -1px}.imgedit-undo{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -184px -31px;margin:0 3px}.imgedit-undo.disabled:hover{background-position:-184px -31px}.imgedit-undo:hover{background-position:-184px -1px}.imgedit-redo{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -215px -31px;margin:0 8px 0 3px}.imgedit-redo.disabled:hover{background-position:-215px -31px}.imgedit-redo:hover{background-position:-215px -1px}.imgedit-applyto img{margin:0 8px 0 0}.imgedit-group-top{margin:5px 0}.imgedit-applyto .imgedit-label{padding:2px 0 0;display:block}.imgedit-help{display:none;font-style:italic;margin-bottom:8px}a.imgedit-help-toggle{text-decoration:none}.form-table td.imgedit-response{padding:0}.imgedit-submit{margin:8px 0}.imgedit-submit-btn{margin-left:20px}.imgedit-wrap .nowrap{white-space:nowrap}span.imgedit-scale-warn{color:red;font-size:20px;font-style:normal;visibility:hidden;vertical-align:middle}.imgedit-group{border-width:1px;border-style:solid;-webkit-border-radius:3px;border-radius:3px;margin-bottom:8px;padding:2px 10px}.form-table{border-collapse:collapse;margin-top:.5em;width:100%;margin-bottom:-8px;clear:both}.form-table td{margin-bottom:9px;padding:8px 10px;line-height:20px;font-size:12px}.form-table th,.form-wrap label{font-weight:normal;text-shadow:#fff 0 1px 0}.form-table th{vertical-align:top;text-align:left;padding:10px;width:200px}.form-table th.th-full{width:auto}.form-table div.color-option{display:block;clear:both;margin-top:12px}.form-table input.tog{margin-top:2px;margin-right:2px;float:left}.form-table td p{margin-top:4px}.form-table table.color-palette{vertical-align:bottom;float:left;margin:-12px 3px 11px}.form-table .color-palette td{border-width:1px 1px 0;border-style:solid solid none;height:10px;line-height:20px;width:10px}.commentlist li{padding:1em 1em .2em;margin:0;border-bottom-width:1px;border-bottom-style:solid}.commentlist li li{border-bottom:0;padding:0}.commentlist p{padding:0;margin:0 0 .8em}#replyrow input{border-width:1px;border-style:solid}#replyrow td{padding:2px}#replysubmit{margin:0;padding:0 5px 3px;text-align:center}#replysubmit .spinner{padding:2px 0 0;vertical-align:top;float:right}#replysubmit .button{margin-right:5px}#replysubmit .error{color:red;line-height:21px;text-align:center}#replyrow h5{margin:.2em 0 0;padding:0 5px;line-height:1.4em;font-size:1em}#edithead .inside{float:left;padding:3px 0 2px 5px;margin:0;text-align:center}#edithead .inside input{width:180px}#edithead label{padding:2px 0}#replycontainer{padding:5px}#replycontent{height:120px;-webkit-box-shadow:none;box-shadow:none}.comment-php .wp-editor-area{height:200px}.comment-ays{margin-bottom:0;border-style:solid;border-width:1px}.comment-ays th{border-right-style:solid;border-right-width:1px}.trash-undo-inside,.spam-undo-inside{margin:1px 8px 1px 0;line-height:16px}.spam-undo-inside .avatar,.trash-undo-inside .avatar{height:20px;width:20px;margin-right:8px;vertical-align:middle}.stuffbox .editcomment{clear:none}#comment-status-radio p{margin:3px 0 5px}#comment-status-radio input{margin:2px 3px 5px 0;vertical-align:middle}#comment-status-radio label{padding:5px 0}.commentlist .avatar{vertical-align:text-top}.theme-install-php .tablenav{height:auto}.theme-install-php .spinner{margin-top:9px}h3.available-themes{margin:.3em 0 1em;float:left}.available-theme{display:inline-block;margin-right:10px;overflow:hidden;padding:20px 20px 20px 0;vertical-align:top;width:300px}.available-theme .screenshot{width:300px;height:225px;display:block;border-width:1px;border-style:solid;margin-bottom:10px;overflow:hidden}.available-theme img{width:300px}.available-theme h3{margin:15px 0 0}.available-theme .theme-author{line-height:18px}.available-theme .action-links{margin-top:10px;overflow:hidden}.available-theme a.screenshot:focus{border-color:#777}#current-theme .theme-info li,.theme-options li,.available-theme .action-links li{float:left;padding-right:10px;margin-right:10px;border-right:1px solid #dfdfdf}.available-theme .action-links li{padding-right:8px;margin-right:8px}.ie8 .available-theme .action-links li{padding-right:7px;margin-right:7px}#current-theme .theme-info li:last-child,.theme-options li:last-child,.available-theme .action-links li:last-child{padding-right:0;margin-right:0;border-right:0}.available-theme .action-links .delete-theme{float:right;margin-left:8px;margin-right:0}.available-theme .action-links .delete-theme a{color:red;padding:2px}.available-theme .action-links .delete-theme a:hover{background:red;color:#fff;text-decoration:none}.available-theme .action-links p{float:left}#current-theme{margin:20px 0 10px;padding:0 0 20px;border-bottom-width:1px;border-bottom-style:solid;overflow:hidden}#current-theme.has-screenshot{padding-left:330px}#current-theme h3{margin:0;font-size:12px;font-weight:normal;color:#999}#current-theme h4{margin:3px 0 16px;font-size:20px}#current-theme h4 span{margin-left:20px;font-size:12px;font-weight:normal}#current-theme a{border-bottom:0}#current-theme .theme-info{margin:1em 0;overflow:hidden}#current-theme .theme-description{margin-top:5px;max-width:600px;line-height:1.6em}#current-theme img{float:left;width:300px;margin-left:-330px;border-width:1px;border-style:solid}.theme-options{overflow:hidden;font-size:14px;padding-bottom:10px}.theme-options .load-customize{margin-right:30px;float:left}.theme-options span{float:left;margin-right:10px;text-transform:uppercase;font-size:11px;line-height:18px;color:#999}.theme-options ul{float:left;margin:0}@media only screen and (max-width:1200px){.folded .available-theme,.folded .available-theme .screenshot{width:300px}.folded .available-theme .screenshot{height:225px}.folded #current-theme img{width:300px}.folded #current-theme.has-screenshot{padding-left:330px}.folded #current-theme img{margin-left:-330px}}@media only screen and (max-width:1079px){.folded .available-theme,.folded .available-theme .screenshot{width:270px}.folded .available-theme .screenshot{height:203px}.folded #current-theme img{width:270px}.folded #current-theme.has-screenshot{padding-left:300px}.folded #current-theme img{margin-left:-300px}}@media only screen and (max-width:1200px){.available-theme,.available-theme .screenshot,#current-theme img{width:240px}.available-theme .screenshot{height:180px}.available-theme img{width:100%}#current-theme.has-screenshot{padding-left:270px}#current-theme img{margin-left:-270px}}#post-body ul.add-menu-item-tabs li.tabs a,#TB_window #TB_title a.tb-theme-preview-link,#TB_window #TB_title a.tb-theme-preview-link:visited{font-weight:bold;text-decoration:none}#TB_window #TB_title{background-color:#222;color:#cfcfcf}#broken-themes{text-align:left;width:50%;border-spacing:3px;padding:3px}.theme-install-php h4{margin:2.5em 0 8px}.appearance_page_custom-header #headimg{border:1px solid #dfdfdf;overflow:hidden;width:100%}.appearance_page_custom-header #upload-form p label{font-size:12px}.appearance_page_custom-header .available-headers .default-header{float:left;margin:0 20px 20px 0}.appearance_page_custom-header .random-header{clear:both;margin:0 20px 20px 0;vertical-align:middle}.appearance_page_custom-header .available-headers label input,.appearance_page_custom-header .random-header label input{margin-right:10px}.appearance_page_custom-header .available-headers label img{vertical-align:middle}div#custom-background-image{min-height:100px;border:1px solid #dfdfdf}div#custom-background-image img{max-width:400px;max-height:300px}.nav-tab{border-style:solid;border-width:1px 1px 0;color:#aaa;text-shadow:#fff 0 1px 0;font-size:12px;line-height:16px;display:inline-block;padding:4px 14px 6px;text-decoration:none;margin:0 6px -1px 0;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.nav-tab-active{border-width:1px;color:#464646}h2.nav-tab-wrapper,h3.nav-tab-wrapper{border-bottom-width:1px;border-bottom-style:solid;padding-bottom:0}h2 .nav-tab{padding:4px 10px 6px;font-weight:200;font-size:20px;line-height:24px}#dashboard_right_now .versions .b,#post-status-display,#post-visibility-display,#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover,.media-item .percent,.plugins .name,#pass-strength-result.strong,#pass-strength-result.short,#ed_reply_toolbar #ed_reply_strong,.item-controls .item-order a,.feature-filter .feature-name{font-weight:bold}.plugins p{margin:0 4px;padding:0}.plugins .desc p{margin:0 0 8px}.plugins td.desc{line-height:1.5em}.plugins .desc ul,.plugins .desc ol{margin:0 0 0 2em}.plugins .desc ul{list-style-type:disc}.plugins .row-actions-visible{padding:0}.plugins tbody th.check-column{padding:7px 0}.plugins .inactive td,.plugins .inactive th,.plugins .active td,.plugins .active th{border-top-style:solid;border-top-width:1px;padding:5px 7px 0}.plugins .update th,.plugins .update td{border-bottom:0}.plugin-update-tr td{border-top:0}#wpbody-content .plugins .plugin-title,#wpbody-content .plugins .theme-title{padding-right:12px;white-space:nowrap}.plugins .second,.plugins .row-actions-visible{padding:0 0 5px}.plugins .update .second,.plugins .update .row-actions-visible{padding-bottom:0}.plugins-php .widefat tfoot th,.plugins-php .widefat tfoot td{border-top-style:solid;border-top-width:1px}.plugin-update-tr .update-message{margin:5px;padding:3px 5px}.plugin-install-php h4{margin:2.5em 0 8px}#profile-page .form-table textarea{width:500px;margin-bottom:6px}#profile-page .form-table #rich_editing{margin-right:5px}#your-profile legend{font-size:22px}#your-profile #rich_editing{border:0}#display_name{width:15em}#createuser .form-field input{width:25em}.pressthis{margin:20px 0}.pressthis a,.pressthis a:hover,.pressthis a:focus,.pressthis a:active{display:inline-block;position:relative;cursor:move;color:#333;background:#e6e6e6;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(7%,#e6e6e6),color-stop(77%,#d8d8d8));background-image:-webkit-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-moz-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-o-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:linear-gradient(to top,#e6e6e6 7%,#d8d8d8 77%);-webkit-border-radius:5px;border-radius:5px;border:1px solid #b4b4b4;font-style:normal;line-height:16px;font-size:14px;text-decoration:none;text-shadow:0 1px 0 #fff}.pressthis a:active{outline:0}.pressthis a:hover:after{-webkit-transform:skew(20deg) rotate(9deg);-moz-transform:skew(20deg) rotate(9deg);transform:skew(20deg) rotate(9deg);-webkit-box-shadow:0 10px 8px rgba(0,0,0,0.7);box-shadow:0 10px 8px rgba(0,0,0,0.7)}.pressthis a span{background:url(../images/press-this.png?v=20120502) no-repeat 0 5px;background-size:24px 20px;padding:8px 11px 8px 27px;margin:0 5px;display:inline-block}.pressthis a:after{content:'';width:70%;height:55%;z-index:-1;position:absolute;right:10px;bottom:9px;background:transparent;-webkit-transform:skew(20deg) rotate(6deg);-moz-transform:skew(20deg) rotate(6deg);transform:skew(20deg) rotate(6deg);-webkit-box-shadow:0 10px 8px rgba(0,0,0,0.6);box-shadow:0 10px 8px rgba(0,0,0,0.6)}#utc-time,#local-time{padding-left:25px;font-style:italic;font-family:sans-serif}.defaultavatarpicker .avatar{margin:2px 0;vertical-align:middle}.options-general-php .spinner{float:none;margin:-3px 3px}#wpfooter{position:absolute;bottom:0;left:0;right:0;padding:10px 0;margin-right:20px;border-top-width:1px;border-top-style:solid}#wpfooter p{margin:0;line-height:20px}#wpfooter a{text-decoration:none}#wpfooter a:hover{text-decoration:underline}.about-wrap{position:relative;margin:25px 40px 0 20px;max-width:1050px;font-size:15px}.about-wrap div.updated,.about-wrap div.error{display:none!important}.about-wrap p{line-height:1.6em}.about-wrap h1{margin:.2em 200px 0 0;line-height:1.2em;font-size:2.8em;font-weight:200}.about-text,.about-description,.about-wrap li.wp-person a.web{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-weight:normal;line-height:1.6em;font-size:20px}.about-description{margin-top:1.4em}.about-text{margin:1em 200px 1.4em 0;min-height:60px;font-size:24px}.about-wrap h3{font-size:24px;margin-bottom:1em;padding-top:20px}.about-wrap .feature-section{padding-bottom:20px}.about-wrap .feature-section h4{margin-bottom:.6em}.about-wrap .feature-section p{margin-top:.6em}.about-wrap code{font-size:14px}.about-wrap .point-releases{margin-top:5px}.about-wrap .changelog.point-releases h3{padding-top:35px}.about-wrap .changelog.point-releases h3:first-child{padding-top:7px}.wp-badge{padding-top:142px;height:50px;width:173px;font-weight:bold;font-size:14px;text-align:center;margin:0 -5px;background:url('../images/wp-badge.png?ver=20111120') no-repeat}.about-wrap .wp-badge{position:absolute;top:0;right:0}.about-wrap h2.nav-tab-wrapper{padding-left:6px}.about-wrap h2 .nav-tab{padding:4px 10px 6px;margin:0 3px -1px 0;font-size:18px;vertical-align:top}.about-wrap h2 .nav-tab-active{font-weight:bold;padding-top:3px}.about-wrap .feature-section img,.about-wrap .feature-section .video{border:0;margin:0 1.94% 10px 0;-webkit-border-radius:3px;border-radius:3px}.about-wrap .feature-section .video video{max-width:100%}.about-wrap .feature-section.three-col img{margin:.5em 0 .5em 5px;max-width:100%;float:none}.ie8 .about-wrap .feature-section.three-col img{margin-left:0}.about-wrap .feature-section.images-stagger-right img,.about-wrap .feature-section.images-stagger-right .video{float:right;margin:0 5px 12px 2em}.about-wrap .feature-section.images-stagger-left img{float:left;margin:0 2em 12px 5px}.about-wrap .feature-section .image-100{margin:0 0 2em 0;width:100%}.about-wrap .feature-section .image-66{width:65%}.about-wrap .feature-section .image-66.video{max-width:600px}.about-wrap .feature-section .image-50{max-width:50%}.about-wrap .feature-section img.image-30{max-width:31.2381%}.ie8 .about-wrap .feature-section img{border-width:1px;border-style:solid}.about-wrap .images-stagger-right img.image-30:nth-child(2){margin-left:1em}.about-wrap .feature-section.col{margin-bottom:0}.about-wrap .feature-section.col h4{margin:0 0 .6em 0}.about-wrap .feature-section.col .last-feature{margin-right:0}.about-wrap .feature-section.two-col div{width:47%;margin-right:4.999999999%;float:left}.about-wrap .feature-section.three-col div{width:30%;margin-right:4.999999999%;float:left}.about-wrap .three-col-images{text-align:center}.about-wrap .three-col-images img{margin:0 0 10px}.about-wrap .three-col-images .last-feature{float:right}.about-wrap .three-col-images .first-feature{float:left}.about-wrap .changelog .feature-section{overflow:hidden}.about-wrap .changelog li{list-style-type:disc;margin-left:3em}@media only screen and (max-width:900px){.about-wrap .feature-section.images-stagger-left img,.about-wrap .feature-section.images-stagger-right img,.about-wrap .feature-section.images-stagger-right .video{clear:both}.about-wrap .feature-section .video.image-66{float:none;width:98%;max-width:98%}.about-wrap .feature-section.images-stagger-right .video.image-66{margin-left:3px}}@media only screen and (max-width:768px){.about-wrap .feature-section .image-66{float:none;width:98%;max-width:98%}.about-wrap .feature-section.images-stagger-right .image-66{margin-left:3px}.about-wrap .feature-section.images-stagger-left .image-66{margin-right:3px}}.about-wrap .return-to-dashboard{margin:30px 0 0 -5px;font-size:14px;font-weight:bold}.about-wrap .return-to-dashboard a{text-decoration:none;padding:0 5px}.about-wrap h4.wp-people-group{margin-top:2.6em;font-size:16px}.about-wrap ul.wp-people-group{overflow:hidden;padding:0 5px;margin:0 -15px 0 -5px}.about-wrap ul.compact{margin-bottom:0}.about-wrap li.wp-person{float:left;margin-right:10px}.about-wrap li.wp-person img.gravatar{float:left;margin:0 10px 10px 0;padding:2px;width:60px;height:60px}.about-wrap ul.compact li.wp-person img.gravatar{width:30px;height:30px}.about-wrap li.wp-person{height:70px;width:280px;padding-bottom:15px}.about-wrap ul.compact li.wp-person{height:auto;width:180px;padding-bottom:0;margin-bottom:0}.about-wrap #wp-people-group-validators+p.wp-credits-list{margin-top:0}.about-wrap li.wp-person a.web{display:block;margin:6px 0 2px;font-size:16px;text-decoration:none}.about-wrap p.wp-credits-list a{white-space:nowrap}.freedoms-php .about-wrap ol{margin:40px 60px}.freedoms-php .about-wrap ol li{list-style-type:decimal;font-weight:bold}.freedoms-php .about-wrap ol p{font-weight:normal;margin:.6em 0}body.full-overlay-active{overflow:hidden}.wp-full-overlay{background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%;min-width:0}.wp-full-overlay-sidebar{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:fixed;width:300px;height:100%;top:0;bottom:0;left:0;padding:0;margin:0;z-index:10;overflow:auto;background:#f5f5f5;border-right:1px solid rgba(0,0,0,0.2)}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{overflow:visible}.wp-full-overlay.collapsed,.wp-full-overlay.expanded .wp-full-overlay-sidebar{margin-left:0!important}.wp-full-overlay.expanded{margin-left:300px}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{margin-left:-300px}.wp-full-overlay-sidebar:after{content:'';display:block;position:absolute;top:0;bottom:0;right:0;width:3px;box-shadow:-5px 0 4px -4px rgba(0,0,0,0.1) inset;z-index:1000}.wp-full-overlay-main{position:absolute;left:0;right:0;top:0;bottom:0;height:100%}.wp-full-overlay-sidebar .wp-full-overlay-header{position:absolute;left:0;right:0;height:45px;padding:0 20px;line-height:45px;z-index:10;margin:0}.wp-full-overlay-sidebar .wp-full-overlay-header{border-top:0;border-bottom:1px solid #fff;box-shadow:inset 0 -1px 0 0 #dfdfdf}.wp-full-overlay-sidebar .wp-full-overlay-footer{bottom:0;border-bottom:0;border-top:1px solid #dfdfdf;box-shadow:inset 0 1px 0 0 #fff}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content{position:absolute;top:45px;bottom:45px;left:0;right:0;overflow:auto}.wp-full-overlay-sidebar-content .accordion-section:first-child{border-top:1px solid #fff}.wp-full-overlay .close-full-overlay{text-decoration:none}.wp-full-overlay a.collapse-sidebar{position:absolute;bottom:12px;left:0;z-index:50;display:block;width:19px;height:19px;margin-left:15px;padding:0;border-radius:50%;text-decoration:none}.wp-full-overlay.collapsed .collapse-sidebar{position:absolute;left:100%}.wp-full-overlay .collapse-sidebar-arrow{position:absolute;margin-top:2px;margin-left:2px;display:block;width:15px;height:15px;background:transparent url('../images/arrows.png') no-repeat -1px -73px}.wp-full-overlay.collapsed .collapse-sidebar-arrow{background-position:-1px -109px}.wp-full-overlay .collapse-sidebar-label{position:absolute;left:100%;color:#808080;line-height:20px;margin-left:10px}.wp-full-overlay.collapsed .collapse-sidebar-label{display:none}.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label{color:#666}.wp-full-overlay,.wp-full-overlay-sidebar,.wp-full-overlay .collapse-sidebar,.wp-full-overlay-main{-webkit-transition-property:left,right,top,bottom,width,margin;-moz-transition-property:left,right,top,bottom,width,margin;-ms-transition-property:left,right,top,bottom,width,margin;-o-transition-property:left,right,top,bottom,width,margin;transition-property:left,right,top,bottom,width,margin;-webkit-transition-duration:.2s;-moz-transition-duration:.2s;-ms-transition-duration:.2s;-o-transition-duration:.2s;transition-duration:.2s}.no-customize-support .hide-if-no-customize,.customize-support .hide-if-customize,.no-customize-support.wp-core-ui .hide-if-no-customize,.no-customize-support .wp-core-ui .hide-if-no-customize,.customize-support.wp-core-ui .hide-if-customize,.customize-support .wp-core-ui .hide-if-customize{display:none}#customize-container{display:none;background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%}.customize-active #customize-container{display:block}.customize-loading #customize-container iframe{opacity:0}.customize-loading #customize-container{background:#fff url("../images/wpspin_light.gif") no-repeat fixed center center;background-size:16px 16px}#customize-container iframe,#theme-installer iframe{height:100%;width:100%;z-index:20;-webkit-transition:opacity .3s;-moz-transition:opacity .3s;-ms-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s}#customize-container .collapse-sidebar{bottom:16px}#theme-installer{display:none}#theme-installer.single-theme{display:block}.install-theme-info{display:none;padding:10px 20px 20px}.single-theme .install-theme-info{padding-top:15px}#theme-installer .install-theme-info{display:block}.install-theme-info .theme-install{float:right;margin-top:18px}.install-theme-info .theme-name{font-size:16px;line-height:24px;margin-bottom:0}.install-theme-info .theme-screenshot{margin-top:15px;width:258px;border:1px solid #ccc}.install-theme-info .theme-details{overflow:hidden}.theme-details .theme-version{margin:15px 0;float:left}.theme-details .star-holder{margin:14px 0;float:right}.theme-details .theme-description{float:left;color:#777;line-height:20px}#excerpt,.attachmentlinks{margin:0;height:4em;width:98%}#template div{margin-right:190px}p.pagenav{margin:0;display:inline}.pagenav span{font-weight:bold;margin:0 6px}.row-title{font-size:13px!important;font-weight:bold}.column-author img,.column-username img{float:left;margin-right:10px;margin-top:1px}.row-actions{visibility:hidden;padding:2px 0 0}.mobile .row-actions{visibility:visible}tr:hover .row-actions,div.comment-item:hover .row-actions{visibility:visible}.row-actions-visible{padding:2px 0 0}.form-table .pre{padding:8px;margin:0}table.form-table td .updated{font-size:13px}.tagchecklist{margin-left:14px;font-size:12px;overflow:auto}.tagchecklist strong{margin-left:-8px;position:absolute}.tagchecklist span{margin-right:25px;display:block;float:left;font-size:11px;line-height:1.8em;white-space:nowrap;cursor:default}.tagchecklist span a{margin:6px 0 0 -9px;cursor:pointer;width:10px;height:10px;display:block;float:left;text-indent:-9999px;overflow:hidden;position:absolute}#poststuff h2{margin-top:20px;font-size:1.5em;margin-bottom:15px;padding:0 0 3px;clear:left}#poststuff h3,.metabox-holder h3{font-size:15px;font-weight:normal;padding:7px 10px;margin:0;line-height:1}#poststuff .inside{margin:6px 0 8px}#poststuff .inside #parent_id,#poststuff .inside #page_template{max-width:100%}.inline-edit-row #post_parent,.inline-edit-row select[name="page_template"]{max-width:80%}.ie8 #poststuff .inside #parent_id,.ie8 #poststuff .inside #page_template,.ie8 .inline-edit-row #post_parent,.ie8 .inline-edit-row select[name="page_template"]{width:250px}#post-visibility-select{line-height:1.5em;margin-top:3px}#poststuff #submitdiv .inside{margin:0;padding:0}.edit-form-section{margin-bottom:20px}#templateside ul li a{text-decoration:none}.tool-box .title{margin:8px 0;font-size:18px;font-weight:normal;line-height:24px}#sidemenu{margin:-30px 15px 0 315px;list-style:none;position:relative;float:right;padding-left:10px;font-size:12px}#sidemenu a{padding:0 7px;display:block;float:left;line-height:28px;border-top-width:1px;border-top-style:solid;border-bottom-width:1px;border-bottom-style:solid}#sidemenu li{display:inline;line-height:200%;list-style:none;text-align:center;white-space:nowrap;margin:0;padding:0}#sidemenu a.current{font-weight:normal;padding-left:6px;padding-right:6px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px;border-width:1px;border-style:solid}#sidemenu li a .count-0{display:none}.plugin-install #description,.plugin-install-network #description{width:60%}table .vers,table .column-visible,table .column-rating{text-align:left}.error-message{color:red;font-weight:bold}body.iframe{height:98%}td.media-icon{text-align:center;width:80px;padding-top:8px;padding-bottom:8px}td.media-icon img{max-width:80px;max-height:60px}#howto{font-size:11px;margin:0 5px;display:block}.importers td{padding-right:14px}.importers{font-size:16px;width:auto}#namediv table{width:100%}#namediv td.first{width:10px;white-space:nowrap}#namediv input{width:98%}#namediv p{margin:10px 0}#submitdiv h3{margin-bottom:0!important}.zerosize{height:0;width:0;margin:0;border:0;padding:0;overflow:hidden;position:absolute}br.clear{height:2px;line-height:2px}.checkbox{border:0;margin:0;padding:0}fieldset{border:0;padding:0;margin:0}.post-categories{display:inline;margin:0;padding:0}.post-categories li{display:inline}.edit-box{display:none}h3:hover .edit-box{display:inline}#dashboard-widgets form .input-text-wrap input{width:100%}#dashboard-widgets form .textarea-wrap textarea{width:100%}#dashboard-widgets .postbox form .submit{float:none;margin:.5em 0 0;padding:0;border:0}#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish{min-width:0}#dashboard-widgets a{text-decoration:none}#dashboard-widgets h3 a{text-decoration:underline}#dashboard-widgets h3 .postbox-title-action{position:absolute;right:10px;padding:0;top:5px}.js #dashboard-widgets h3 .postbox-title-action{right:30px}#dashboard-widgets h4{font-weight:normal;font-size:13px;margin:0 0 .2em;padding:0}#dashboard_right_now p.sub,#dashboard_right_now .table,#dashboard_right_now .versions{margin:-12px}#dashboard_right_now .inside{font-size:12px;padding-top:20px}#dashboard_right_now p.sub{padding:5px 0 15px;color:#8f8f8f;font-size:14px;position:absolute;top:-17px;left:15px}#dashboard_right_now .table{margin:0;padding:0;position:relative}#dashboard_right_now .table_content{float:left;border-top-width:1px;border-top-style:solid;width:45%}#dashboard_right_now .table_discussion{float:right;border-top-width:1px;border-top-style:solid;width:45%}#dashboard_right_now table td{padding:3px 0;white-space:nowrap}#dashboard_right_now table tr.first td{border-top:0}#dashboard_right_now td.b{padding-right:6px;text-align:right;font-size:14px;width:1%}#dashboard_right_now td.b a{font-size:18px}#dashboard_right_now td.b a:hover{color:#d54e21}#dashboard_right_now .t{font-size:12px;padding-right:12px;padding-top:6px;color:#777}#dashboard_right_now .t a{white-space:nowrap}#dashboard_right_now .spam{color:red}#dashboard_right_now .waiting{color:#e66f00}#dashboard_right_now .approved{color:green}#dashboard_right_now .versions{padding:6px 10px 12px;clear:both}#dashboard_right_now a.button{float:right;clear:right;position:relative;top:-5px}#dashboard_recent_comments h3{margin-bottom:0}#dashboard_recent_comments .inside{margin-top:0}#dashboard_recent_comments .comment-meta .approve{font-style:italic;font-family:sans-serif;font-size:10px}#dashboard_recent_comments .subsubsub{float:none;white-space:normal}#the-comment-list{position:relative}#the-comment-list .comment-item{padding:1em 10px;border-top:1px solid}#the-comment-list .pingback{padding-left:9px!important}#the-comment-list .comment-item,#the-comment-list #replyrow{margin:0 -10px}#the-comment-list .comment-item:first-child{border-top:0}#the-comment-list .comment-item .avatar{float:left;margin:0 10px 5px 0}#the-comment-list .comment-item h4{line-height:1.7em;margin-top:-0.4em;color:#777}#the-comment-list .comment-item h4 cite{font-style:normal;font-weight:normal}#the-comment-list .comment-item blockquote,#the-comment-list .comment-item blockquote p{margin:0;padding:0;display:inline}#dashboard_recent_comments #the-comment-list .trackback blockquote,#dashboard_recent_comments #the-comment-list .pingback blockquote{display:block}#the-comment-list .comment-item p.row-actions{margin:3px 0 0;padding:0;font-size:12px}.no-js #dashboard_quick_press{display:none}#dashboard_quick_press .easy-blogging{padding:0 8px;text-align:left}#dashboard_quick_press .input-text-wrap{position:relative}#dashboard_quick_press .prompt{color:#bbb;position:absolute}#dashboard_quick_press div.updated{padding:0 5px}#title-wrap label,#tags-input-wrap label{cursor:text}#title-wrap #title{padding:2px 6px;font-size:1.3em;line-height:100%;outline:0}#tags-input-wrap #tags-input{outline:0}#title-wrap #title-prompt-text{font-size:1.3em;padding:5px 8px}#tags-input-wrap #tags-input-prompt-text{font-size:1em;padding:4px 8px}#dashboard_quick_press .input-text-wrap,#dashboard_quick_press .textarea-wrap{margin:0 0 1em 0}#dashboard_quick_press .wp-media-buttons{margin:0 0 .2em 1px;padding:0}#dashboard_quick_press .wp-media-buttons a{color:#777}#dashboard-widgets #dashboard_quick_press form p.submit input{float:left}#dashboard-widgets #dashboard_quick_press form p.submit #save-post{margin:0 .7em 0 1px}#dashboard-widgets #dashboard_quick_press form p.submit #publish{float:right}#dashboard-widgets #dashboard_quick_press form p.submit .spinner{vertical-align:middle;margin:4px 6px 0 0}#dashboard_recent_drafts ul,#dashboard_recent_drafts p{margin:0;padding:0;word-wrap:break-word}#dashboard_recent_drafts ul{list-style:none}#dashboard_recent_drafts ul li{margin-bottom:1em}#dashboard_recent_drafts h4{line-height:1.7em;word-wrap:break-word}#dashboard_recent_drafts h4 abbr{font-weight:normal;font-family:sans-serif;font-size:12px;color:#999;margin-left:3px}.rss-widget ul{margin:0;padding:0;list-style:none}a.rsswidget{font-size:13px;line-height:1.7em}.rss-widget ul li{line-height:1.5em;margin-bottom:12px}.rss-widget span.rss-date{color:#999;font-size:12px;margin-left:3px}.rss-widget cite{display:block;text-align:right;margin:0 0 1em;padding:0}.rss-widget cite:before{content:'\2014'}#dashboard_plugins h4{line-height:1.7em}#dashboard_plugins h5{font-weight:normal;font-size:13px;margin:0;display:inline;line-height:1.4em}#dashboard_plugins h5 a{line-height:1.4em}#dashboard_plugins .inside span{font-size:12px;padding-left:5px}#dashboard_plugins p{margin:.3em 0 1.4em;line-height:1.4em}.dashboard-comment-wrap{overflow:hidden;word-wrap:break-word}#dashboard_browser_nag a.update-browser-link{font-size:1.2em;font-weight:bold}#dashboard_browser_nag a{text-decoration:underline}#dashboard_browser_nag p.browser-update-nag.has-browser-icon{padding-right:125px}#dashboard_browser_nag .browser-icon{margin-top:-35px}#dashboard_browser_nag.postbox.browser-insecure{background-color:#ac1b1b;border-color:#ac1b1b}#dashboard_browser_nag.postbox{background-color:#e29808;background-image:none;border-color:#edc048;color:#fff;-webkit-box-shadow:none;box-shadow:none}#dashboard_browser_nag.postbox.browser-insecure h3{border-bottom-color:#cd5a5a;color:#fff}#dashboard_browser_nag.postbox h3{border-bottom-color:#f6e2ac;text-shadow:none;background:transparent none;color:#fff;-webkit-box-shadow:none;box-shadow:none}#dashboard_browser_nag a{color:#fff}#dashboard_browser_nag.browser-insecure a.browse-happy-link,#dashboard_browser_nag.browser-insecure a.update-browser-link{text-shadow:#871b15 0 1px 0}#dashboard_browser_nag a.browse-happy-link,#dashboard_browser_nag a.update-browser-link{text-shadow:#d29a04 0 1px 0}.login *{margin:0;padding:0}.login form{margin-left:8px;padding:26px 24px 46px;font-weight:normal;background:#fff;border:1px solid #e5e5e5;-webkit-box-shadow:rgba(200,200,200,0.7) 0 4px 10px -1px;box-shadow:rgba(200,200,200,0.7) 0 4px 10px -1px}.login form .forgetmenot{font-weight:normal;float:left;margin-bottom:0}.login .button-primary{float:right}#login form p{margin-bottom:0}#login form p.submit{padding:0}.login label{color:#777;font-size:14px}.login form .forgetmenot label{font-size:12px;line-height:19px}.login h1 a{background-image:url('../images/wordpress-logo.png?ver=20120216');background-size:274px 63px;background-position:top center;background-repeat:no-repeat;width:326px;height:67px;text-indent:-9999px;outline:0;overflow:hidden;padding-bottom:15px;display:block}#login{width:320px;padding:114px 0 0;margin:auto}#login_error,.login .message{margin:0 0 16px 8px;padding:12px}.login #nav,.login #backtoblog{text-shadow:#fff 0 1px 0;margin:0 0 0 16px;padding:16px 16px 0}#backtoblog{padding:12px 16px 0}.login form .input,.login input[type="text"]{color:#555;font-weight:200;font-size:24px;line-height:1;width:100%;padding:3px;margin-top:2px;margin-right:6px;margin-bottom:16px;border:1px solid #e5e5e5;background:#fbfbfb;outline:0;-webkit-box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2);box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2)}.login #pass-strength-result{width:250px;font-weight:bold;border-style:solid;border-width:1px;margin:12px 0 6px;padding:6px 5px;text-align:center}.mobile #login{padding:20px 0}.mobile #login form,.mobile #login .message,.mobile #login_error{margin-left:0}.mobile #login #nav,.mobile #login #backtoblog{margin-left:8px}.mobile #login h1 a{width:auto}body.interim-login{height:auto}.interim-login #login{padding:0;margin:5px auto 20px}.interim-login.login h1 a{width:auto}.interim-login #login_error,.interim-login.login .message{margin:0 0 16px}.interim-login.login form{margin:0}#dashboard_right_now p.musub{margin-top:12px;border-top:1px solid #ececec;padding-left:16px;position:static}.rtl #dashboard_right_now p.musub{padding-left:0;padding-right:16px}#dashboard_right_now td.b a.musublink{font-size:16px}#dashboard_right_now div.musubtable{border-top:0}#dashboard_right_now div.musubtable .t{white-space:normal}.wp-list-table .site-deleted{background:#ff8573}.wp-list-table .site-spammed{background:#faafaa}.wp-list-table .site-archived{background:#ffebe8}.wp-list-table .site-mature{background:#fecac2}.no-js #message{display:block}#nav-menu-meta ul.outer-border{-webkit-border-radius:3px;border-radius:3px}.accordion-section ul.category-tabs,.accordion-section ul.add-menu-item-tabs,.accordion-section ul.wp-tab-bar{margin:0}.accordion-section .categorychecklist{margin:13px 0}#nav-menu-meta .accordion-section-content{padding:18px 13px}#nav-menu-meta .button-controls{margin-bottom:0}#nav-menus-frame{margin-left:300px;margin-top:23px}#wpbody-content #menu-settings-column{display:inline;width:281px;margin-left:-300px;clear:both;float:left;padding-top:0}#menu-settings-column .inside{clear:both;margin:10px 0 0}.metabox-holder-disabled .postbox,.metabox-holder-disabled .accordion-section-content{opacity:.5;filter:alpha(opacity=50)}.metabox-holder-disabled .button-controls .select-all{display:none}#wpbody{position:relative}.blank-slate .menu-name{height:2em}.blank-slate .menu-settings{border:0;margin-top:0;padding-top:0;overflow:hidden}.is-submenu{font-style:italic;font-weight:normal;margin-left:4px}.manage-menus{margin-top:23px;padding:10px;overflow:hidden;-webkit-border-radius:3px;border-radius:3px}.manage-menus select{float:left;margin-right:6px}.manage-menus .selected-menu{float:left;margin:5px 6px 0 0}.manage-menus .submit-btn{float:left;margin-top:1px}.menu-edit p{margin:.3em 0 .6em}.menu-edit #post-body-content h3{margin:0 0 10px}.menu-settings{margin-top:2em;overflow:hidden}.menu-settings dl{margin:0 0 10px;overflow:hidden;position:relative}.menu-settings dd{float:left;margin:0;width:60%}.menu-edit .checkbox-input{margin-top:4px}.theme-location-set{font-size:11px}#menu-management-liquid{float:left;min-width:100%;margin-top:3px}#menu-management{position:relative;margin-right:20px;margin-top:-3px;width:100%}#menu-management .menu-edit{margin-bottom:20px}.nav-menus-php #post-body{padding:0 10px 10px;border-width:1px 0;border-style:solid}#nav-menu-header,#nav-menu-footer{padding:0 10px}#nav-menu-header{border-bottom:1px solid;margin-bottom:13px}#nav-menu-header .menu-name-label{margin-top:2px}#nav-menu-footer{border-top:1px solid}.nav-menus-php #post-body div.updated,.nav-menus-php #post-body div.error{margin:0}.nav-menus-php #post-body-content{position:relative;float:none}#menu-management .menu-add-new abbr{font-weight:bold}#select-nav-menu-container{text-align:right;padding:0 10px 3px 10px;margin-bottom:5px}#select-nav-menu{width:100px;display:inline}#menu-name-label{margin-top:-2px}.widefat td.menu-location-menus{padding-bottom:5px}.menu-location-menus select{float:left}#locations-nav-menu-wrapper{padding:5px 0}.locations-nav-menu-select select{float:left;width:160px;margin-right:5px}.locations-row-links{float:left;margin:6px 0 0 6px}.locations-edit-menu-link,.locations-add-menu-link{margin:0 3px}.locations-edit-menu-link{padding-right:3px;border-right:1px solid #ccc}#wpbody .open-label{display:block;float:left}#wpbody .open-label span{padding-right:10px}.js .input-with-default-title{font-style:italic}#menu-management .inside{padding:0 10px}.postbox .howto input,.accordion-container .howto input{width:180px;float:right}.accordion-container .outer-border{margin:0}#nav-menu-meta .accordion-container .top{border-top:1px solid #dfdfdf}#nav-menu-meta .accordion-container .accordion-section:first-child,#nav-menu-meta .accordion-container .accordion-section:first-child h3,#nav-menu-meta .accordion-container .top,#nav-menu-meta .accordion-container .top h3{-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px}#nav-menu-meta .accordion-container .accordion-section:last-child,#nav-menu-meta .accordion-container .accordion-section:last-child .accordion-section-content,#nav-menu-meta .accordion-container .bottom,#nav-menu-meta .accordion-container .bottom:not(.open) h3{-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.customlinkdiv .howto input{width:180px}.customlinkdiv p{margin-top:0}#nav-menu-theme-locations .howto select{width:100%}#nav-menu-theme-locations .button-controls{text-align:right}.add-menu-item-view-all{height:400px}#menu-container .submit{margin:0 0 10px;padding:0}.nav-menus-php .add-new-menu-action{float:left;margin:6px 0 0 6px;line-height:15px}.nav-menus-php .meta-sep,.nav-menus-php .submitdelete,.nav-menus-php .submitcancel{display:block;float:left;margin:4px 0;line-height:15px}.meta-sep{padding:0 2px}#cancel-save{text-decoration:underline;font-size:12px;margin-left:20px;margin-top:5px}.button.right,.button-secondary.right,.button-primary.right{float:right}.list-controls{float:left;margin-top:5px}.add-to-menu{float:right}.postbox .spinner{display:none;vertical-align:middle}.button-controls{clear:both;margin:10px 0}.show-all,.hide-all{cursor:pointer}.hide-all{display:none}#menu-name{width:270px}#manage-menu .inside{padding:0}#available-links dt{display:block}#add-custom-link .howto{font-size:12px}#add-custom-link label span{display:block;float:left;margin-top:5px;padding-right:5px}.menu-item-textbox{width:180px}.nav-menus-php .howto span{margin-top:4px;display:block;float:left}.quick-search{width:190px}.nav-menus-php .list-wrap{display:none;clear:both;margin-bottom:10px}.nav-menus-php .list-container{max-height:200px;overflow-y:auto;padding:10px 10px 5px}.nav-menus-php .postbox p.submit{margin-bottom:0}.nav-menus-php .list li{display:none;margin:0;margin-bottom:5px}.nav-menus-php .list li .menu-item-title{cursor:pointer;display:block}.nav-menus-php .list li .menu-item-title input{margin-right:3px;margin-top:-3px}#menu-container .inside{padding-bottom:10px}.menu{padding-top:1em}#menu-to-edit{margin:0;padding:.1em 0}.menu ul{width:100%}.menu li{margin-bottom:0;position:relative}.menu-item-bar{clear:both;line-height:1.5em;position:relative;margin:9px 0 0}.menu-item-handle{border:1px solid #dfdfdf;position:relative;padding-left:10px;height:auto;width:400px;line-height:35px;text-shadow:0 1px 0 #fff;overflow:hidden;word-wrap:break-word}#menu-to-edit .menu-item-invalid .menu-item-handle{background:#f6c9cc;background-image:-webkit-gradient(linear,left bottom,left top,from(#f6c9cc),to(#fdf8ff));background-image:-webkit-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-moz-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-o-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:linear-gradient(to top,#f6c9cc,#fdf8ff)}.menu-item-edit-active .menu-item-handle{-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.no-js .menu-item-edit-active .item-edit{display:none}.js .menu-item-handle{cursor:move}.menu li.deleting .menu-item-handle{background-image:none;text-shadow:0}.menu-item-handle .item-title{font-size:12px;font-weight:bold;padding:7px 0;line-height:20px;display:block;margin-right:13em}li.menu-item.ui-sortable-helper dl{margin-top:0}li.menu-item.ui-sortable-helper .menu-item-transport dl{margin-top:13px}.menu .sortable-placeholder{height:35px;width:410px;margin-top:13px}.menu-item-depth-0{margin-left:0}.menu-item-depth-1{margin-left:30px}.menu-item-depth-2{margin-left:60px}.menu-item-depth-3{margin-left:90px}.menu-item-depth-4{margin-left:120px}.menu-item-depth-5{margin-left:150px}.menu-item-depth-6{margin-left:180px}.menu-item-depth-7{margin-left:210px}.menu-item-depth-8{margin-left:240px}.menu-item-depth-9{margin-left:270px}.menu-item-depth-10{margin-left:300px}.menu-item-depth-11{margin-left:330px}.menu-item-depth-0 .menu-item-transport{margin-left:0}.menu-item-depth-1 .menu-item-transport{margin-left:-30px}.menu-item-depth-2 .menu-item-transport{margin-left:-60px}.menu-item-depth-3 .menu-item-transport{margin-left:-90px}.menu-item-depth-4 .menu-item-transport{margin-left:-120px}.menu-item-depth-5 .menu-item-transport{margin-left:-150px}.menu-item-depth-6 .menu-item-transport{margin-left:-180px}.menu-item-depth-7 .menu-item-transport{margin-left:-210px}.menu-item-depth-8 .menu-item-transport{margin-left:-240px}.menu-item-depth-9 .menu-item-transport{margin-left:-270px}.menu-item-depth-10 .menu-item-transport{margin-left:-300px}.menu-item-depth-11 .menu-item-transport{margin-left:-330px}body.menu-max-depth-0{min-width:950px!important}body.menu-max-depth-1{min-width:980px!important}body.menu-max-depth-2{min-width:1010px!important}body.menu-max-depth-3{min-width:1040px!important}body.menu-max-depth-4{min-width:1070px!important}body.menu-max-depth-5{min-width:1100px!important}body.menu-max-depth-6{min-width:1130px!important}body.menu-max-depth-7{min-width:1160px!important}body.menu-max-depth-8{min-width:1190px!important}body.menu-max-depth-9{min-width:1220px!important}body.menu-max-depth-10{min-width:1250px!important}body.menu-max-depth-11{min-width:1280px!important}.item-type{font-size:12px;padding-right:10px}.item-controls{font-size:12px;position:absolute;right:20px;top:-1px}.item-controls a{text-decoration:none}.item-controls a:hover{cursor:pointer}.item-controls .item-order{padding-right:10px}.nav-menus-php .item-edit{position:absolute;right:-20px;top:0;display:block;width:30px;height:36px;overflow:hidden;text-indent:-999em;border-bottom:1px solid;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.menu-instructions-inactive{display:none}.menu-item-settings{display:block;width:400px;padding:10px 0 10px 10px;border:solid;border-width:0 1px 1px 1px;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.menu-item-settings .field-move a{display:none;margin:0 2px}.menu-item-edit-active .menu-item-settings{display:block}.menu-item-edit-inactive .menu-item-settings{display:none}.add-menu-item-pagelinks{margin:.5em auto;text-align:center}.link-to-original{display:block;margin:0 0 10px;padding:3px 5px 5px;font-size:12px;font-style:italic}.link-to-original a{padding-left:4px;font-style:normal}.hidden-field{display:none}.menu-item-settings .description-thin,.menu-item-settings .description-wide{margin-right:10px;float:left}.description-thin{width:190px;height:40px}.description-wide{width:390px}.menu-item-actions{padding-top:15px}#cancel-save{cursor:pointer}.nav-menus-php .major-publishing-actions{clear:both;padding:3px 0 5px}.nav-menus-php .major-publishing-actions .publishing-action{text-align:right;float:right;line-height:23px;margin:2px 0 1px}.nav-menus-php .blank-slate .menu-settings{display:none}.nav-menus-php .delete-action{float:left;margin-top:2px}.nav-menus-php .submitbox .submitcancel{border-bottom:1px solid;padding:1px 2px;text-decoration:none}.nav-menus-php .major-publishing-actions .form-invalid{padding-left:4px;margin-left:-4px;border:0 none}#menu-item-name-wrap:after,#menu-item-url-wrap:after,#menu-name-label:after,#menu-settings-column .inside:after,#nav-menus-frame:after,.nav-menus-php #post-body-content:after,.nav-menus-php .button-controls:after,.nav-menus-php .major-publishing-actions:after,.nav-menus-php .menu-item-settings:after{clear:both;content:".";display:block;height:0;visibility:hidden}#nav-menus-frame,.button-controls,#menu-item-url-wrap,#menu-item-name-wrap{display:block}div.star-holder{position:relative;height:17px;width:100px;background:url('../images/stars.png?ver=20121108') repeat-x bottom left}div.star-holder .star-rating{background:url('../images/stars.png?ver=20121108') repeat-x top left;height:17px;float:left}div.action-links{font-weight:normal;margin:6px 0 0}#plugin-information-header{margin:0;padding:0 5px;font-weight:bold;position:relative;border-bottom-width:1px;border-bottom-style:solid;height:2.5em}#plugin-information ul#sidemenu{font-weight:normal;margin:0 5px;position:absolute;left:0;bottom:-1px}#plugin-information p.action-button{width:100%;padding-bottom:0;margin-bottom:0;margin-top:10px;-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:3px}#plugin-information .action-button a{text-align:center;font-weight:bold;text-decoration:none;display:block;line-height:2em}#plugin-information h2{clear:none!important;margin-right:200px}#plugin-information .fyi{margin:0 10px 50px;width:210px}#plugin-information .fyi h2{font-size:.9em;margin-bottom:0;margin-right:0}#plugin-information .fyi h2.mainheader{padding:5px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px}#plugin-information .fyi ul{padding:10px 5px 10px 7px;margin:0;list-style:none;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}#plugin-information .fyi li{margin-right:0}#plugin-information #section-holder{padding:10px}#plugin-information .section ul,#plugin-information .section ol{margin-left:16px;list-style-type:square;list-style-image:none}#plugin-information #section-screenshots ol{list-style:none;margin:0}#plugin-information #section-screenshots li img{vertical-align:text-top;max-width:100%;width:auto;height:auto}#plugin-information #section-screenshots li p{font-style:italic;padding-left:20px;padding-bottom:2em}#plugin-information #section-screenshots ol,#plugin-information .updated,#plugin-information pre{margin-right:215px}#plugin-information pre{padding:7px;overflow:auto}body.press-this{color:#333;margin:0;padding:0;min-width:675px;min-height:400px}img{border:0}.press-this #wphead{height:32px;margin-left:0;margin-right:0;margin-bottom:5px}.press-this #header-logo{float:left;margin:7px 7px 0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.press-this #wphead h1{font-weight:normal;font-size:16px;line-height:32px;margin:0;float:left}.press-this #wphead h1 a{text-decoration:none}.press-this #wphead h1 a:hover{text-decoration:underline}.press-this #message{margin:10px 0}.press-this-sidebar{float:right;width:200px;padding-top:10px}.press-this #title{margin-left:0;margin-right:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.press-this .tagchecklist span a{background:transparent url(../images/xit.gif) no-repeat 0 0}.press-this #titlediv{margin:0}.press-this .wp-media-buttons{cursor:default;padding:8px 8px 0}.press-this .howto{margin-top:2px;margin-bottom:3px;font-size:12px;font-style:italic;display:block}.press-this #poststuff{margin:0 10px 10px;padding:0}.press-this #photo-add-url-div input[type="text"]{width:220px}#poststuff #editor-toolbar{height:30px}div.zerosize{border:0 none;height:0;margin:0;overflow:hidden;padding:0;width:0}.posting{margin-right:212px;position:relative}.press-this .inner-sidebar{width:200px}.press-this .inner-sidebar .sleeve{padding-top:5px}.press-this #submitdiv p{margin:0;padding:6px}.press-this #submitdiv #publishing-actions{border-bottom:1px solid #dfdfdf}.press-this #publish{float:right}.press-this #poststuff h2,.press-this #poststuff h3{font-size:14px;line-height:1}.press-this #tagsdiv-post_tag h3,.press-this #categorydiv h3{cursor:pointer}.press-this #submitdiv h3{cursor:default}h3.tb{text-shadow:0 1px 0 #fff;font-weight:bold;font-size:12px;margin-left:5px}#TB_window{border:1px solid #333}.press-this .postbox,.press-this .stuffbox{margin-bottom:10px;min-width:0}.js .postbox:hover .handlediv,.js .stuffbox:hover .handlediv{background:transparent url(../images/arrows.png) no-repeat 6px 7px}.press-this #submitdiv:hover .handlediv{background:0}.tbtitle{font-size:1.7em;outline:0;padding:3px 4px;border-color:#dfdfdf}.press-this .actions{float:right;margin:-19px 0 0}.press-this #extra-fields .actions{margin:-32px -7px 0 0}.press-this .actions li{float:left;list-style:none;margin-right:10px}#extra-fields .button{margin-right:5px}#photo_saving{margin:0 8px 8px;vertical-align:middle}#img_container_container{overflow:auto}#extra-fields{margin-top:10px;position:relative}#extra-fields h2{margin:12px}#waiting{margin-top:10px;overflow:hidden}#waiting span{float:right;margin:0 0 0 5px}#waiting .spinner{display:block}#extra-fields .postbox{margin-bottom:5px}#extra-fields .titlewrap{padding:0;overflow:auto;height:100px}#img_container a{display:block;float:left;overflow:hidden}#img_container img,#img_container a{width:68px;height:68px}#img_container img{border:0;background-color:#f4f4f4;cursor:pointer}#img_container a,#img_container a:link,#img_container a:visited{border:1px solid #ccc;display:block;position:relative}#img_container a:hover,#img_container a:active{border-color:#000;z-index:1000;border-width:2px;margin:-1px}#embed-code{width:100%;height:98px}.press-this .categorydiv div.tabs-panel{height:100px}.press-this .tagsdiv .newtag{width:120px}.press-this #content{margin:5px 0;padding:0 5px;border:0 none;height:345px;font-family:Consolas,Monaco,monospace;font-size:13px;line-height:19px;background:transparent}.press-this #publishing-actions .spinner{display:inline;vertical-align:middle}#TB_ajaxContent #options{position:absolute;top:20px;right:25px;padding:5px}#TB_ajaxContent h3{margin-bottom:.25em}.error a{text-decoration:underline}.updated a{text-decoration:none;padding-bottom:2px}.taghint{color:#aaa;margin:-17px 0 0 7px;visibility:hidden}input.newtag ~ div.taghint{visibility:visible}input.newtag:focus ~ div.taghint{visibility:hidden}#mce_fullscreen_container{background:#fff}#photo-add-url-div input[type="text"]{width:300px}.alignleft h3{margin:0}h3 span{font-weight:normal}#template textarea{font-family:Consolas,Monaco,monospace;font-size:12px;width:97%;background:#f9f9f9;outline:0}#template p{width:97%}#templateside{float:right;width:190px;word-wrap:break-word}#templateside h3,#postcustomstuff p.submit{margin:0}#templateside h4{margin:1em 0 0}#templateside ol,#templateside ul{margin:.5em;padding:0}#templateside li{margin:4px 0}#templateside ul li a span.highlight{display:block}.nonessential{font-size:11px;font-style:italic;padding-left:12px}.highlight{padding:3px 3px 3px 12px;margin-left:-12px;font-weight:bold;border:0 none}#documentation{margin-top:10px}#documentation label{line-height:22px;vertical-align:top;font-weight:bold}.fileedit-sub{padding:10px 0 8px;line-height:180%}#filter-box{clear:both}.feature-filter{padding:8px 12px 0}.feature-filter .feature-group{float:left;margin:5px 10px 10px}.feature-filter .feature-group li{display:inline-block;vertical-align:top;list-style-type:none;padding-right:25px;width:150px}.feature-container{width:100%;overflow:auto;margin-bottom:10px}div.widget-liquid-left{float:left;clear:left;width:100%;margin-right:-325px}div#widgets-left{margin-left:5px;margin-right:325px}div#widgets-right{width:285px;margin:0 auto}div.widget-liquid-right{float:right;clear:right;width:300px}.widget-liquid-right .widget,.inactive-sidebar .widget,.widget-liquid-right .sidebar-description{width:250px;margin:0 auto 20px;overflow:hidden}.widget-liquid-right .sidebar-description{margin-bottom:10px}.inactive-sidebar .widget{margin:0 10px 20px;display:inline-block}div.sidebar-name h3{font-weight:normal;font-size:15px;margin:0;padding:8px 10px;overflow:hidden;white-space:nowrap}div.sidebar-name{font-size:13px;border-width:1px;border-style:solid;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px}.js .sidebar-name{cursor:pointer}.js .closed .sidebar-name{-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.widget-liquid-right .widgets-sortables,#widgets-left .widget-holder{border-width:0 1px 1px;border-style:none solid solid;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.js .closed .widgets-sortables,.js .closed .widget-holder{display:none}.widget-liquid-right .widgets-sortables{padding:15px 0 0}#available-widgets .widget-holder{padding:7px 5px 0}#available-widgets .widget{-webkit-box-shadow:none;box-shadow:none}.inactive-sidebar{padding:5px 5px 0}#widget-list .widget{width:250px;margin:0 10px 15px;border:0 none;background:transparent;display:inline-block;vertical-align:top}#widget-list .widget-description{padding:5px 8px}.widget-placeholder{border-width:1px;border-style:dashed;margin:0 auto 20px;height:27px;width:250px}.inactive-sidebar .widget-placeholder{margin:0 10px 20px;float:left}div.widgets-holder-wrap{padding:0;margin:10px 0 20px}#widgets-left #available-widgets{background-color:transparent;border:0 none}ul#widget-list{list-style:none;margin:0;padding:0;min-height:100px}.widget .widget-top{margin-bottom:-1px;font-size:12px;font-weight:bold;height:26px;overflow:hidden}.widget-top .widget-title{padding:7px 9px}.widget-top .widget-title-action{float:right}a.widget-action{display:block;width:24px;height:26px}#available-widgets a.widget-action{display:none}.widget-top a.widget-action{background:transparent url(../images/arrows.png) no-repeat 4px 6px}.widget-top a.widget-action:hover{background:transparent url(../images/arrows-dark.png) no-repeat 4px 6px}.widget .widget-inside,.widget .widget-description{padding:12px 12px 10px;font-size:12px;line-height:16px}.widget-inside,.widget-description{display:none}#available-widgets .widget-description{display:block}.widget .widget-inside p{margin:0 0 1em;padding:0}.widget-title h4{margin:0;padding-bottom:.2em;line-height:1;overflow:hidden;white-space:nowrap}.widgets-sortables{min-height:90px}.widget-control-actions{margin-top:8px}.widget-control-actions a{text-decoration:none}.widget-control-actions a:hover{text-decoration:underline}.widget-control-actions div.alignleft{margin-top:6px}div#sidebar-info{padding:0 1em;margin-bottom:1em;font-size:12px}.widget-title a,.widget-title a:hover{text-decoration:none;border-bottom:0}.widget-control-edit{display:block;font-size:12px;font-weight:normal;line-height:26px;padding:0 8px 0 0}a.widget-control-edit{text-decoration:none}.widget-control-edit .add,.widget-control-edit .edit{display:none}#available-widgets .widget-control-edit .add,#widgets-right .widget-control-edit .edit,.inactive-sidebar .widget-control-edit .edit{display:inline}.editwidget{margin:0 auto 15px}.editwidget .widget-inside{display:block;padding:10px}.inactive p.description{margin:5px 15px 10px}#available-widgets p.description{margin:0 12px 12px}.widget-position{margin-top:8px}.inactive{padding-top:2px}.sidebar-name .spinner{float:none;margin:0 3px -3px}.sidebar-name-arrow{float:right;height:29px;width:26px}.widget-title .in-widget-title{font-size:12px;white-space:nowrap}#removing-widget{display:none;font-weight:normal;padding-left:15px;font-size:12px;line-height:1}.widget-control-noform,#access-off,.widgets_access .widget-action,.widgets_access .sidebar-name-arrow,.widgets_access #access-on,.widgets_access .widget-holder .description{display:none}.widgets_access .widget-holder,.widgets_access #widget-list{padding-top:10px}.widgets_access #access-off{display:inline}.widgets_access #wpbody-content .widget-title-action,.widgets_access #wpbody-content .widget-control-edit,.widgets_access .closed .widgets-sortables,.widgets_access .closed .widget-holder{display:block}.widgets_access .closed .sidebar-name{-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.widgets_access .sidebar-name,.widgets_access .widget .widget-top{cursor:default}.ui-sortable,.ui-draggable{-ms-touch-action:none}.accordion-section{border-top:1px solid #fff;border-bottom:1px solid #dfdfdf;margin:0}.accordion-section:first-child{border-top:1px solid #dfdfdf}.accordion-section:last-child{box-shadow:0 1px 0 0 #fff}.accordion-section.open .accordion-section-content,.no-js .accordion-section .accordion-section-content{display:block}.accordion-section.open:hover{border-bottom-color:#dfdfdf}.accordion-section-content{display:none;padding:10px 20px 15px;overflow:hidden;background:#fdfdfd;border-left:1px solid #dfdfdf;border-right:1px solid #dfdfdf}.accordion-section-title{margin:0;padding:15px 20px;position:relative;border-left:1px solid #dfdfdf;border-right:1px solid #dfdfdf;-webkit-user-select:none;-moz-user-select:none;user-select:none}.js .accordion-section-title{cursor:pointer}.js .accordion-section-title:after{content:'';width:0;height:0;border-color:#ccc transparent;border-style:solid;border-width:6px 6px 0;position:absolute;top:25px;right:20px;z-index:1}.accordion-section-title:focus{outline:0}.accordion-section-title:hover:after,.accordion-section-title:focus:after{border-color:#aaa transparent}.cannot-expand .accordion-section-title{cursor:auto}.cannot-expand .accordion-section-title:after{display:none}.control-section .accordion-section-title{padding:10px 20px;color:#464646;font-size:15px;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-weight:normal;text-shadow:0 1px 0 #fff;background:#f5f5f5;background-image:-webkit-gradient(linear,left bottom,left top,from(#eee),to(#f5f5f5));background-image:-webkit-linear-gradient(bottom,#eee,#f5f5f5);background-image:-moz-linear-gradient(bottom,#eee,#f5f5f5);background-image:-o-linear-gradient(bottom,#eee,#f5f5f5);background-image:linear-gradient(to top,#eee,#f5f5f5)}.control-section .accordion-section-title:after{top:15px}.js .control-section:hover .accordion-section-title,.js .control-section .accordion-section-title:hover,.js .control-section.open .accordion-section-title,.js .control-section .accordion-section-title:focus{color:#000;background:#f9f9f9;background-image:-webkit-gradient(linear,left bottom,left top,from(#ececec),to(#f9f9f9));background-image:-webkit-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-moz-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-o-linear-gradient(bottom,#ececec,#f9f9f9);background-image:linear-gradient(to top,#ececec,#f9f9f9)}.control-section.open .accordion-section-title{border-bottom:1px solid #dfdfdf}@media only screen and (max-width:768px){#col-left{width:100%}#col-right{width:100%}}@media only screen and (min-width:769px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:860px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (min-width:980px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:768px){#col-left{width:100%}#col-right{width:100%}.form-field input,.form-field textarea{width:99%}.form-wrap .form-field{padding:0}#profile-page .form-table textarea{max-width:400px;width:auto}}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.press-this .tagchecklist span a{background-image:url('../images/xit-2x.gif');background-size:20px auto}.js .postbox:hover .handlediv,.js .stuffbox:hover .handlediv,.widget-top a.widget-action{background-image:url('../images/arrows-2x.png');background-size:15px 123px}.widget-top a.widget-action:hover{background-image:url('../images/arrows-dark-2x.png');background-size:15px 123px}.post-com-count{background-image:url('../images/bubble_bg-2x.gif');background-size:18px 100px}tr.wp-locked .locked-indicator{background-image:url('../images/lock-2x.png');background-size:16px 16px}th .comment-grey-bubble{background-image:url('../images/comment-grey-bubble-2x.png');background-size:12px 12px}.sorting-indicator{background-image:url('../images/sort-2x.gif?ver=20130102');background-size:14px 4px}#content-resize-handle,#post-body .wp_themeSkin .mceStatusbar a.mceResize{background:transparent url('../images/resize-2x.gif') no-repeat scroll right bottom;background-size:11px 11px}div.star-holder{background:url('../images/stars-2x.png?ver=20121108') repeat-x bottom left;background-size:21px 37px}div.star-holder .star-rating{background:url('../images/stars-2x.png?ver=20121108') repeat-x top left;background-size:21px 37px}.welcome-panel .welcome-panel-close:before{background-image:url('../images/xit-2x.gif');background-size:20px auto}.welcome-panel .welcome-icon{background-image:url('../images/welcome-icons-2x.png')}.login h1 a{background-image:url('../images/wordpress-logo-2x.png?ver=20120412');background-size:274px 63px}.wp-badge{background-image:url('../images/wp-badge-2x.png?ver=20120516');background-size:173px 194px}.wp-full-overlay .collapse-sidebar-arrow{background-image:url('../images/arrows-2x.png');background-size:15px 123px}.pressthis a span{background-image:url(../images/press-this-2x.png?v=20121105)}.imgedit-crop,.imgedit-rleft,.imgedit-rright,.imgedit-flipv,.imgedit-fliph,.imgedit-undo,.imgedit-redo{background-image:url('../images/imgedit-icons-2x.png');background-size:260px 64px}.spinner,.imgedit-wait,.customize-loading #customize-container{background-image:url(../images/wpspin_light-2x.gif)}.wp-slider .ui-slider-handle:before{background-image:url(../images/arrows-pr-2x.png);background-size:16px 102px}}.locale-zh-cn .howto,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn #utc-time,.locale-zh-cn #local-time,.locale-zh-cn p.install-help,.locale-zh-cn p.help,.locale-zh-cn p.description,.locale-zh-cn span.description,.locale-zh-cn .form-wrap p{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #wp-fullscreen-tagline{font-family:KaiTi,"楷体",sans-serif}.locale-zh-cn #wp-fullscreen-modes a{font-size:12px}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-ru-ru .inline-edit-row fieldset label span.title{width:auto;min-width:5em}.locale-ru-ru.press-this .posting{margin-right:257px}.locale-ru-ru.press-this #photo-add-url-div input[type="text"]{width:255px}.locale-ru-ru.press-this #side-sortables{width:245px}.locale-ru-ru #customize-header-actions .button{padding:0 8px 1px}.locale-lt-lt .inline-edit-row fieldset label span.title{width:8em}.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}2 No newline at end of file 1 #wpwrap{height:auto;min-height:100%;width:100%;position:relative}#wpcontent{height:100%}#wpcontent,#wpfooter{margin-left:165px}.folded #wpcontent,.folded #wpfooter{margin-left:52px}#wpbody-content{padding-bottom:65px;float:left;width:100%}#adminmenuback,#adminmenuwrap,#adminmenu,#adminmenu .wp-submenu{width:145px}#adminmenuback{position:absolute;top:0;bottom:0;z-index:-1}#adminmenu{clear:left;margin:0;padding:0;list-style:none}.folded #adminmenuback,.folded #adminmenuwrap,.folded #adminmenu,.folded #adminmenu li.menu-top{width:32px}.inner-sidebar{float:right;clear:right;display:none;width:281px;position:relative}.columns-2 .inner-sidebar{margin-right:auto;width:286px;display:block}.inner-sidebar #side-sortables,.columns-2 .inner-sidebar #side-sortables{min-height:300px;width:280px;padding:0}.has-right-sidebar .inner-sidebar{display:block}.has-right-sidebar #post-body{float:left;clear:left;width:100%;margin-right:-2000px}.has-right-sidebar #post-body-content{margin-right:300px;float:none;width:auto}#col-container,#col-left,#col-right{overflow:hidden;padding:0;margin:0}#col-left{width:35%}#col-right{float:right;clear:right;width:65%}.col-wrap{padding:0 7px}.alignleft{float:left}.alignright{float:right}.textleft{text-align:left}.textright{text-align:right}.clear{clear:both}.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{position:absolute;left:-1000em;top:-1000em;height:1px;width:1px;overflow:hidden}.screen-reader-shortcut{position:absolute;top:-1000em}.screen-reader-shortcut:focus{left:6px;top:-21px;height:auto;width:auto;display:block;font-size:14px;font-weight:bold;line-height:normal;padding:15px 23px 14px;background:#f1f1f1;color:#21759b;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;z-index:100000;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,0.6);box-shadow:0 0 2px 2px rgba(0,0,0,0.6);text-decoration:none}.hidden,.js .closed .inside,.js .hide-if-js,.no-js .hide-if-no-js,.js.wp-core-ui .hide-if-js,.js .wp-core-ui .hide-if-js,.no-js.wp-core-ui .hide-if-no-js,.no-js .wp-core-ui .hide-if-no-js{display:none}input[type="text"],input[type="password"],input[type="number"],input[type="search"],input[type="email"],input[type="url"],textarea{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}input[type="checkbox"],input[type="radio"]{vertical-align:text-top;padding:0;margin:1px 0 0}input[type="search"]{-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration{display:none}html,body{height:100%;margin:0;padding:0}body{font-family:sans-serif;font-size:12px;line-height:1.4em;min-width:600px}body.iframe{min-width:0;padding-top:1px}body.login{background:#fbfbfb;min-width:0}iframe,img{border:0}td,textarea,input,select,button{font-family:inherit;font-size:inherit;font-weight:inherit}td,textarea{line-height:inherit}input,select{line-height:15px}a,input[type="text"],input[type="password"],input[type="number"],input[type="search"],input[type="email"],input[type="url"],select,textarea,div{outline:0}a:focus,a:active{outline:thin dotted}#adminmenu a:focus,#adminmenu a:active,.screen-reader-text:focus{outline:0}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}p{margin:1em 0}blockquote{margin:1em}label{cursor:pointer}li,dd{margin-bottom:6px}textarea,input,select{margin:1px;padding:3px}h1,h2,h3,h4,h5,h6{display:block;font-weight:bold}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}ul,ol{padding:0}ul{list-style:none}ol{list-style-type:decimal;margin-left:2em}ul.ul-disc{list-style:disc outside}ul.ul-square{list-style:square outside}ol.ol-decimal{list-style:decimal outside}ul.ul-disc,ul.ul-square,ol.ol-decimal{margin-left:1.8em}ul.ul-disc>li,ul.ul-square>li,ol.ol-decimal>li{margin:0 0 .5em}.code,code{font-family:Consolas,Monaco,monospace}kbd,code{padding:1px 3px;margin:0 1px;font-size:11px}.subsubsub{list-style:none;margin:8px 0 5px;padding:0;font-size:12px;float:left}.subsubsub a{line-height:2;padding:.2em;text-decoration:none}.subsubsub a .count,.subsubsub a.current .count{color:#999;font-weight:normal}.subsubsub a.current{font-weight:bold;border:0}.subsubsub li{display:inline-block;margin:0;padding:0;white-space:nowrap}.widefat,div.updated,div.error,.wrap .add-new-h2,textarea,input[type="text"],input[type="password"],input[type="file"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select,.tablenav .tablenav-pages a,.tablenav-pages span.current,#titlediv #title,.postbox,#postcustomstuff table,#postcustomstuff input,#postcustomstuff textarea,.imgedit-menu div,.plugin-update-tr .update-message,#poststuff .inside .the-tagcloud,.login form,#login_error,.login .message,#menu-management .menu-edit,.nav-menus-php .list-container,.menu-item-handle,.link-to-original,.nav-menus-php .major-publishing-actions .form-invalid,.press-this #message,#TB_window,.tbtitle,.highlight,.feature-filter,#widget-list .widget-top,.editwidget .widget-inside{border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;border-width:1px;border-style:solid}.widefat{border-spacing:0;width:100%;clear:both;margin:0}.widefat *{word-wrap:break-word}.widefat a{text-decoration:none}.widefat thead th:first-of-type{-moz-border-top-left-radius:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px}.widefat thead th:last-of-type{-moz-border-top-right-radius:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.widefat tfoot th:first-of-type{-moz-border-bottom-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.widefat tfoot th:last-of-type{-moz-border-bottom-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.widefat td,.widefat th{border-width:1px 0;border-style:solid}.widefat tfoot th{border-bottom:0}.widefat .no-items td{border-bottom-width:0}.widefat td{font-size:12px;padding:4px 7px 2px;vertical-align:top}.widefat td p,.widefat td ol,.widefat td ul{font-size:12px}.widefat th{padding:7px 7px 8px;text-align:left;line-height:1.3em;font-size:14px}.widefat th input{margin:0 0 0 8px;padding:0;vertical-align:text-top}.widefat .check-column{width:2.2em;padding:6px 0 25px;vertical-align:top}.widefat tbody th.check-column{padding:9px 0 22px}.widefat.media .check-column{padding-top:8px}.widefat thead .check-column,.widefat tfoot .check-column{padding:10px 0 0}.no-js .widefat thead .check-column input,.no-js .widefat tfoot .check-column input{display:none}.widefat .num,.column-comments,.column-links,.column-posts{text-align:center}.widefat th#comments{vertical-align:middle}.wrap{margin:4px 15px 0 0}div.updated,div.error{padding:0 .6em;margin:5px 15px 2px}div.updated p,div.error p{margin:.5em 0;padding:2px}.wrap div.updated,.wrap div.error,.media-upload-form div.error{margin:5px 0 15px}.wrap h2,.subtitle{font-weight:normal;margin:0;text-shadow:#fff 0 1px 0}.wrap h2{font-size:23px;padding:9px 15px 4px 0;line-height:29px}.subtitle{font-size:14px;padding-left:25px}.wrap .add-new-h2{font-family:sans-serif;margin-left:4px;padding:3px 8px;position:relative;top:-3px;text-decoration:none;font-size:12px;border:0 none}.wrap h2.long-header{padding-right:0}html,.wp-dialog{background-color:white}textarea,input[type="text"],input[type="password"],input[type="file"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select{background-color:white;color:#333}select{color:black}select[disabled]{color:#7f7f7f}select:focus{border-color:#aaa}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="file"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="url"]:focus,select:focus{-webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.1);box-shadow:1px 1px 2px rgba(0,0,0,0.1)}input[readonly]{background-color:#eee}:-moz-placeholder,.wp-core-ui :-moz-placeholder{color:#a9a9a9}.postbox .spinner{display:none;vertical-align:middle}.button-controls{clear:both;margin:10px 0}.show-all,.hide-all{cursor:pointer}.hide-all{display:none}img{border:0}div.sidebar-name h3,#menu-management .nav-tab,#dashboard_plugins h5,a.rsswidget,#dashboard_right_now td.b,#dashboard-widgets h4,.tool-box .title,#poststuff h3,.metabox-holder h3,.pressthis a,#your-profile legend,.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title,.tablenav .displaying-num,.widefat th,.quicktags,.search{font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif}h2 .nav-tab,.wrap h2,.subtitle,.login form .input{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif}.quicktags,.search{font-size:12px}.icon32{float:left;height:34px;margin:7px 8px 0 0;width:36px}.icon16{height:18px;width:18px;padding:6px 6px;margin:-6px 0 0 -8px;float:left}.key-labels label{line-height:24px}.pre{white-space:pre-wrap;word-wrap:break-word}.howto{font-style:italic;display:block;font-family:sans-serif}p.install-help{margin:8px 0;font-style:italic}.no-break{white-space:nowrap}.wp-admin select{padding:2px;height:2em}.wp-admin select[multiple]{height:auto}.submit{padding:1.5em 0;margin:5px 0;border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}form p.submit a.cancel:hover{text-decoration:none}#minor-publishing-actions input,#major-publishing-actions input,#minor-publishing-actions .preview{text-align:center}textarea.all-options,input.all-options{width:250px}input.large-text,textarea.large-text{width:99%}input.regular-text,#adduser .form-field input{width:25em}input.small-text{width:50px}input.small-text[type="number"]{width:60px}#doaction,#doaction2,#post-query-submit{margin:1px 8px 0 0}.tablenav #changeit,.tablenav #delete_all,.tablenav #clear-recent-list{margin-top:1px}.tablenav .actions select{float:left;margin-right:6px;max-width:200px}.ie8 .tablenav .actions select{width:155px}.ie8 .tablenav .actions select#cat{width:200px}#timezone_string option{margin-left:1em}label,#your-profile label+a{vertical-align:middle}#misc-publishing-actions label{vertical-align:baseline}#pass-strength-result{border-style:solid;border-width:1px;float:left;margin:13px 5px 5px 1px;padding:3px 5px;text-align:center;width:200px;display:none}.indicator-hint{padding-top:8px}p.search-box{float:right;margin:0}.search-box input[name="s"],#search-plugins input[name="s"],.tagsdiv .newtag{float:left;height:2em;margin:0 4px 0 0}input[type="text"].ui-autocomplete-loading{background:transparent url('../images/loading.gif') no-repeat right center;visibility:visible}ul#add-to-blog-users{margin:0 0 0 14px}.ui-autocomplete-input.open{border-bottom-right-radius:0;border-bottom-left-radius:0}.ui-autocomplete{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-width:1px;border-style:solid}.ui-autocomplete li{margin-bottom:0;white-space:nowrap;text-align:left}.ui-autocomplete li a{display:block;height:100%;padding:4px 10px}.ui-autocomplete li a.ui-state-focus{cursor:pointer}#major-publishing-actions{padding:10px 10px 8px;clear:both;border-top:1px solid #f5f5f5;margin-top:-2px}#delete-action{line-height:25px;vertical-align:middle;text-align:left;float:left}#publishing-action{text-align:right;float:right;line-height:23px}#publishing-action .spinner{float:left}#misc-publishing-actions{padding:6px 0 0}.misc-pub-section{padding:6px 10px 8px;border-width:1px 0;border-style:solid}.misc-pub-section:first-child{border-top-width:0}.misc-pub-section-last{border-bottom-width:0}#minor-publishing-actions{padding:10px 10px 2px 8px;text-align:right}#minor-publishing{border-bottom-width:1px;border-bottom-style:solid;-webkit-box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff}#save-post{float:left}.preview{float:right}#sticky-span{margin-left:18px}.side-info{margin:0;padding:4px;font-size:11px}.side-info h5{padding-bottom:7px;font-size:14px;margin:12px 2px 5px;border-bottom-width:1px;border-bottom-style:solid}.side-info ul{margin:0;padding-left:18px;list-style:square}.approve,.unapproved .unapprove{display:none}.unapproved .approve,.spam .approve,.trash .approve{display:inline}td.action-links,th.action-links{text-align:right}#update-nag,.update-nag{line-height:19px;padding:5px 0;font-size:12px;text-align:center;margin:-1px 15px 0 5px;border-width:1px;border-style:solid;border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}.plugins .plugin-update{padding:0}.plugin-update .update-message{margin:0 10px 8px 31px;font-weight:bold}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0}.update-php .spinner{float:none;margin:-4px 0}#ajax-loading,.ajax-loading,.ajax-feedback,.imgedit-wait-spin,.list-ajax-loading{visibility:hidden}#ajax-response.alignleft{margin-left:2em}#adminmenu a,#sidemenu a,#taglist a,#catlist a{text-decoration:none}#screen-options-wrap,#contextual-help-wrap{margin:0;padding:8px 20px 12px;position:relative}#contextual-help-wrap{overflow:auto}#screen-meta-links{margin:0 24px 0 0}#screen-meta-links a:focus{-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.4);box-shadow:1px 1px 1px rgba(0,0,0,0.4);outline:0}#screen-meta-links .screen-meta-toggle{position:relative;top:-1px}#screen-meta-links a.show-settings{text-decoration:none;z-index:1;padding:1px 16px 0 6px;height:22px;line-height:22px;font-size:12px;display:block;text-shadow:rgba(255,255,255,0.7) 0 1px 0}#screen-meta-links a.show-settings:hover{text-decoration:none}#screen-meta{display:none;position:relative;margin:0 15px 0 5px;border-width:0 1px 1px;border-style:none solid solid}#screen-meta .screen-reader-text{visibility:hidden}#screen-options-link-wrap,#contextual-help-link-wrap{float:right;height:23px;padding:0;margin:0 0 0 6px;font-family:sans-serif}#screen-options-link-wrap,#contextual-help-link-wrap,#screen-meta{border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}.toggle-arrow{background-repeat:no-repeat;background-position:top left;background-color:transparent;height:22px;line-height:22px;display:block}.toggle-arrow-active{background-position:bottom left}#screen-options-wrap h5,#contextual-help-wrap h5{margin:8px 0;font-size:13px}.metabox-prefs label{display:inline-block;padding-right:15px;white-space:nowrap;line-height:30px}.metabox-prefs label input{margin:0 5px 0 2px}.metabox-prefs label a{display:none}.metabox-prefs .columns-prefs label input{margin:0 2px}#contextual-help-wrap{padding:0;margin-left:-4px}#contextual-help-columns{position:relative}#contextual-help-back{position:absolute;top:0;bottom:0;left:150px;right:170px;border-width:0 1px;border-style:solid}#contextual-help-wrap.no-sidebar #contextual-help-back{right:0;border-right-width:0;-moz-border-bottom-right-radius:2px;-webkit-border-bottom-right-radius:2px;border-bottom-right-radius:2px}.contextual-help-tabs{float:left;width:150px;margin:0}.contextual-help-tabs ul{margin:1em 0}.contextual-help-tabs li{margin-bottom:0;list-style-type:none;border-style:solid;border-width:1px 0;border-color:transparent}.contextual-help-tabs a{display:block;padding:5px 5px 5px 12px;line-height:18px;text-decoration:none}.contextual-help-tabs .active{padding:0;margin:0 -1px 0 0;border-width:1px 0 1px 1px;border-style:solid}.contextual-help-tabs-wrap{padding:0 20px;overflow:auto}.help-tab-content{display:none;margin:0 22px 12px 0;line-height:1.6em}.help-tab-content.active{display:block}.help-tab-content ul li{list-style-type:disc;margin-left:18px}.contextual-help-sidebar{width:150px;float:right;padding:0 8px 0 12px;overflow:auto}#adminmenuback,#adminmenuwrap{border-width:0 1px 0 0;border-style:solid}#adminmenuwrap{position:relative;float:left}#adminmenushadow{position:absolute;top:0;right:0;bottom:0;width:6px;z-index:20}#adminmenu *{-webkit-user-select:none;-moz-user-select:none;user-select:none}#adminmenu li{margin:0;padding:0;cursor:pointer}#adminmenu a{display:block;line-height:18px;padding:2px 5px}#adminmenu li.menu-top{min-height:28px;position:relative}#adminmenu .wp-submenu{list-style:none;padding:4px 0;margin:0;position:absolute;top:-1000em;left:146px;z-index:1000;overflow:visible;border-width:1px;border-style:solid;border-top-right-radius:3px;border-bottom-right-radius:3px;-moz-border-top-right-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px}.js #adminmenu .sub-open,.js #adminmenu .opensub .wp-submenu,#adminmenu a.menu-top:focus+.wp-submenu,.no-js #adminmenu li.wp-has-submenu:hover .wp-submenu{top:-1px}#adminmenu .wp-has-current-submenu .wp-submenu,.no-js #adminmenu li.wp-has-current-submenu:hover .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,#adminmenu .wp-has-current-submenu.opensub .wp-submenu{position:relative;z-index:3;top:auto;left:auto;right:auto;bottom:auto;border:0 none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.folded #adminmenu .wp-submenu.sub-open,.folded #adminmenu .opensub .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.folded #adminmenu a.menu-top:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu{top:-1px;left:32px}.folded #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{border-width:1px;border-style:solid;position:absolute;top:-1000em}#adminmenu .wp-submenu a{font-size:12px;line-height:18px;margin:0;padding-left:12px}#adminmenu .wp-not-current-submenu li>a{padding-left:16px}#adminmenu .wp-has-current-submenu ul>li>a,.folded #adminmenu li.menu-top .wp-submenu>li>a{padding-left:12px}#adminmenu a.menu-top,#adminmenu .wp-submenu-head{font-size:13px;font-weight:bold;line-height:18px;padding:0}#adminmenu .wp-submenu-head,.folded #adminmenu .wp-menu-name{display:none}.folded #adminmenu .wp-submenu-head{display:block}#adminmenu .wp-submenu li{padding:0;margin:0;overflow:hidden}#adminmenu a.menu-top{border-width:1px 0;border-style:solid none}#adminmenu .wp-menu-image img{padding:7px 0 0 7px;opacity:.6;filter:alpha(opacity=60)}#adminmenu div.wp-menu-name{padding:5px}#adminmenu div.wp-menu-image{float:left;width:28px;height:28px}.folded #adminmenu div.wp-menu-image{width:32px;position:absolute;z-index:25}.folded #adminmenu a.menu-top{height:28px}#adminmenu .wp-menu-arrow div{display:none;position:absolute;top:7px;left:-1px;width:14px;height:15px;-moz-transform:matrix(-0.6,1,0.6,1,0,0);-webkit-transform:matrix(-0.6,1,0.6,1,0,0);-o-transform:matrix(-0.6,1,0.6,1,0,0);-ms-transform:matrix(-0.6,1,0.6,1,0,0);transform:matrix(-0.6,1,0.6,1,0,0)}#adminmenu li.wp-not-current-submenu .wp-menu-arrow{-moz-transform:translate(145px);-webkit-transform:translate(145px);-o-transform:translate(145px);-ms-transform:translate(145px);transform:translate(145px);height:28px;border-width:1px 0;border-style:solid;top:0}.folded #adminmenu li .wp-menu-arrow{-moz-transform:translate(32px);-webkit-transform:translate(32px);-o-transform:translate(32px);-ms-transform:translate(32px);transform:translate(32px)}#adminmenu li.current .wp-menu-arrow,#adminmenu li.wp-has-current-submenu .wp-menu-arrow,#adminmenu li.wp-has-current-submenu .wp-menu-arrow div,#adminmenu li.wp-has-submenu .wp-menu-arrow div,#adminmenu li.current .wp-menu-arrow div,.no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow,#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,#adminmenu a.wp-has-submenu:focus .wp-menu-arrow,#adminmenu a:hover .wp-menu-arrow{display:block}#adminmenu li.current .wp-menu-arrow,#adminmenu li.wp-menu-open .wp-menu-arrow{top:0}.no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow,#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,#adminmenu a.wp-has-submenu:focus .wp-menu-arrow{z-index:1001}.ie8 #adminmenu li.menu-top:hover .wp-menu-arrow{display:none}#adminmenu .wp-not-current-submenu .wp-menu-arrow div{width:15px;top:6px;border-width:0 0 1px 1px;border-style:solid}#adminmenu .wp-menu-arrow,.folded #adminmenu li .wp-menu-arrow div,.no-js #adminmenu li.wp-not-current-submenu:hover .wp-menu-arrow{display:none}.folded #adminmenu li.current .wp-menu-arrow,.folded #adminmenu li.current .wp-menu-arrow div,.folded #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,.folded #adminmenu li.wp-menu-open .wp-menu-arrow,.folded #adminmenu li a:focus .wp-menu-arrow{display:block}#adminmenu li.menu-top:hover .wp-menu-image img,#adminmenu li.wp-has-current-submenu .wp-menu-image img{opacity:1;filter:alpha(opacity=100)}#adminmenu li.wp-menu-separator{height:3px;padding:0;margin:0;border-width:1px 0;border-style:solid;cursor:inherit}#adminmenu div.separator{height:1px;padding:0;border-width:1px 0 0 0;border-style:solid}#adminmenu .wp-submenu .wp-submenu-head{padding:5px 4px 5px 10px;margin:-4px -1px 4px;border-width:1px 0;border-style:solid;-moz-border-top-right-radius:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}#adminmenu li.wp-menu-open{border-width:0 0 1px;border-style:solid}#adminmenu li.current,.folded #adminmenu li.wp-menu-open{border:0 none}.folded #adminmenu li.wp-has-current-submenu{margin-bottom:1px}.folded #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}.wp-menu-arrow{z-index:25;position:absolute;right:100%;margin:0;height:30px;width:6px;-moz-transform:translate(146px);-webkit-transform:translate(146px);-o-transform:translate(146px);-ms-transform:translate(146px);transform:translate(146px)}#adminmenu .awaiting-mod,#adminmenu span.update-plugins,#sidemenu li a span.update-plugins{position:absolute;font-family:sans-serif;font-size:9px;font-weight:bold;line-height:17px;margin-top:1px;margin-left:7px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;z-index:26}#adminmenu li .awaiting-mod span,#adminmenu li span.update-plugins span,#sidemenu li a span.update-plugins span{display:block;padding:0 6px}#adminmenu li span.count-0,#sidemenu li a .count-0{display:none}#collapse-menu{font-size:12px;line-height:34px;border-width:1px 0 0;border-style:solid}.folded #collapse-menu span{display:none}#collapse-button,#collapse-button div{width:15px;height:15px}#collapse-button{float:left;margin:8px 6px;border-width:1px;border-style:solid;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px}@media only screen and (max-width:900px){.auto-fold #wpcontent,.auto-fold #wpfooter{margin-left:52px}.auto-fold #adminmenuback,.auto-fold #adminmenuwrap,.auto-fold #adminmenu,.auto-fold #adminmenu li.menu-top{width:32px}.auto-fold #adminmenu .wp-submenu.sub-open,.auto-fold #adminmenu .opensub .wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.auto-fold #adminmenu a.menu-top:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu{top:-1px;left:32px}.auto-fold #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu{border-width:1px;border-style:solid;position:absolute;top:-1000em}.auto-fold #adminmenu li.menu-top .wp-submenu>li>a{padding-left:12px}.auto-fold #adminmenu .wp-menu-name{display:none}.auto-fold #adminmenu .wp-submenu-head{display:block}.auto-fold #adminmenu div.wp-menu-image{width:32px;position:absolute;z-index:25}.auto-fold #adminmenu a.menu-top{height:28px}.auto-fold #adminmenu li .wp-menu-arrow{-moz-transform:translate(32px);-webkit-transform:translate(32px);-o-transform:translate(32px);-ms-transform:translate(32px);transform:translate(32px)}.auto-fold #adminmenu li .wp-menu-arrow div{display:none}.auto-fold #adminmenu li.current .wp-menu-arrow,.auto-fold #adminmenu li.current .wp-menu-arrow div,.auto-fold #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,.auto-fold #adminmenu li.wp-menu-open .wp-menu-arrow,.auto-fold #adminmenu li a:focus .wp-menu-arrow{display:block}.auto-fold #adminmenu li.wp-menu-open{border:0 none}.auto-fold #adminmenu li.wp-has-current-submenu{margin-bottom:1px}.auto-fold #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}.auto-fold #collapse-menu span{display:none}}.post-com-count-wrapper{min-width:22px;font-family:sans-serif}.post-com-count{background-image:url('../images/bubble_bg.gif');height:1.3em;line-height:1.1em;display:block;text-decoration:none;padding:0 0 6px;cursor:pointer;background-position:center -80px;background-repeat:no-repeat}.post-com-count span{font-size:11px;font-weight:bold;line-height:1.4em;height:1.4em;min-width:.7em;padding:0 6px;display:inline-block;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px}strong .post-com-count{background-position:center -55px}.post-com-count:hover{background-position:center -3px}.column-response .post-com-count{float:left;margin-right:5px;text-align:center}.response-links{float:left}#the-comment-list .attachment-80x60{padding:4px 8px}th .comment-grey-bubble{background-image:url('../images/comment-grey-bubble.png');background-repeat:no-repeat;height:12px;width:12px}html.wp-toolbar{padding-top:28px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.narrow{width:70%;margin-bottom:40px}.narrow p{line-height:150%}.widefat th,.widefat td{overflow:hidden}.widefat th{font-weight:normal}.widefat td p{margin:2px 0 .8em}.widefat .column-comment p{margin:.6em 0}.postbox-container{float:left}#dashboard-widgets.columns-1 .postbox-container{width:100%}#dashboard-widgets.columns-2 .postbox-container{width:49.5%}#dashboard-widgets.columns-2 #postbox-container-2,#dashboard-widgets.columns-2 #postbox-container-3,#dashboard-widgets.columns-2 #postbox-container-4{float:right;width:50.5%}#dashboard-widgets.columns-3 .postbox-container{width:33.5%}#dashboard-widgets.columns-3 #postbox-container-1{width:33%}#dashboard-widgets.columns-3 #postbox-container-3,#dashboard-widgets.columns-3 #postbox-container-4{float:right}#dashboard-widgets.columns-4 .postbox-container{width:25%}.postbox-container .meta-box-sortables{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.metabox-holder .postbox-container .empty-container{border:3px dashed #ccc;height:250px}.metabox-holder.columns-1 .postbox-container .empty-container,.columns-2 #postbox-container-3 .empty-container,.columns-2 #postbox-container-4 .empty-container,.columns-3 #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#poststuff{padding-top:10px}#poststuff #post-body{padding:0}#poststuff .postbox-container{width:100%}#poststuff #post-body.columns-2{margin-right:300px}#post-body-content{width:100%;float:left}#post-body.columns-2 #postbox-container-1{float:right;margin-right:-300px;width:280px}#post-body.columns-2 #side-sortables{min-height:250px}@media only screen and (max-width:799px){#wpbody-content #dashboard-widgets .postbox-container{width:100%}#wpbody-content .metabox-holder .postbox-container .empty-container{border:0 none;height:0;min-height:0}}@media only screen and (min-width:800px) and (max-width:1200px){#wpbody-content #dashboard-widgets .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets #postbox-container-2,#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:right;width:50.5%}#dashboard-widgets #postbox-container-3 .empty-container,#dashboard-widgets #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container{border:0 none;height:0;min-height:0}.index-php .screen-layout,.index-php .columns-prefs{display:block}.columns-prefs .columns-prefs-3,.columns-prefs .columns-prefs-4{display:none}}@media only screen and (max-width:850px){#wpbody-content #poststuff #post-body{margin:0}#wpbody-content #post-body.columns-2 #postbox-container-1{margin-right:0;width:100%}#poststuff #postbox-container-1 .empty-container,#poststuff #postbox-container-1 #side-sortables:empty{border:0 none;height:0;min-height:0}#poststuff #post-body.columns-2 #side-sortables{min-height:0}.screen-layout,.columns-prefs{display:none}}.postbox .hndle{border-top-left-radius:3px;border-top-right-radius:3px;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px}.js .postbox .hndle{cursor:move}.postbox.closed .hndle{border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.hndle a{font-size:11px;font-weight:normal}.postbox .handlediv{float:right;width:27px;height:30px}.js .postbox .handlediv{cursor:pointer}.sortable-placeholder{border-width:1px;border-style:dashed;margin-bottom:20px}.widget,.postbox,.stuffbox{margin-bottom:20px;padding:0;border-width:1px;border-style:solid;line-height:1}.widget .widget-top,.postbox h3,.stuffbox h3{margin-top:1px;border-bottom-width:1px;border-bottom-style:solid;-webkit-user-select:none;-moz-user-select:none;user-select:none}.js .widget .widget-top,.js .postbox h3{cursor:move}.postbox .inside,.stuffbox .inside{padding:0 12px 0 10px;line-height:1.4em}.postbox .inside{margin:10px 0;position:relative}.postbox.closed h3{border:0;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.postbox table.form-table{margin-bottom:0}.temp-border{border:1px dotted #ccc}.columns-prefs label{padding:0 5px}#dashboard-widgets-wrap{margin:0 -8px}#wpbody-content .metabox-holder{padding-top:10px}#dashboard-widgets .meta-box-sortables{margin:0 8px}#dashboard_recent_comments div.undo{border-top-style:solid;border-top-width:1px;margin:0 -10px;padding:3px 8px;font-size:11px}.welcome-panel{position:relative;overflow:auto;margin:20px 0;padding:23px 10px 12px;border-width:1px;border-style:solid;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;font-size:13px;line-height:2.1em}.welcome-panel h3{margin:0;font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:21px;font-weight:normal;line-height:1.2}.welcome-panel h4{margin:1.33em 0 0;font-size:13px}.welcome-panel .about-description{font-size:16px;margin:0}.welcome-panel .welcome-panel-close{position:absolute;top:5px;right:10px;padding:8px 3px;font-size:13px;text-decoration:none;line-height:1}.welcome-panel .welcome-panel-close:before{content:' ';position:absolute;left:-12px;width:10px;height:100%;background:url('../images/xit.gif') 0 17% no-repeat}.welcome-panel .welcome-panel-close:hover:before{background-position:100% 17%}.wp-core-ui .welcome-panel .button.button-hero{margin:15px 0 3px}.welcome-panel .welcome-panel-column-container{clear:both;overflow:hidden;position:relative}.welcome-panel .welcome-panel-column{width:32%;min-width:200px;float:left}.welcome-panel .welcome-panel-column:first-child{width:36%}.welcome-panel .welcome-panel-column ul{margin:.8em 1em 1em 0}.welcome-panel .welcome-panel-column li{line-height:16px;list-style-type:none}.ie8 .welcome-panel .welcome-panel-column{min-width:230px}.welcome-panel .welcome-icon{display:block;padding:2px 0 8px 32px;background-image:url('../images/welcome-icons.png');background-repeat:no-repeat;background-size:16px}.welcome-panel .welcome-add-page{background-position:0 2px}.welcome-panel .welcome-edit-page{background-position:0 -90px}.welcome-panel .welcome-learn-more{background-position:0 -136px}.welcome-panel .welcome-comments{background-position:0 -182px}.welcome-panel .welcome-view-site{background-position:0 -274px}.welcome-panel .welcome-widgets-menus{background-position:1px -229px;line-height:14px}.welcome-panel .welcome-write-blog{background-position:0 -44px}.welcome-panel-content{margin-left:13px;max-width:1500px}.welcome-panel-content p{margin-top:7px}@media screen and (max-width:870px){.welcome-panel .welcome-panel-column,.welcome-panel .welcome-panel-column:first-child{display:block;float:none;width:100%}.welcome-panel .welcome-panel-column li{display:inline-block;margin-right:13px}.welcome-panel .welcome-panel-column ul{margin:.4em 0 0}.welcome-panel .welcome-icon{padding-left:25px}}.edit-box{display:none}h3:hover .edit-box{display:inline}#dashboard-widgets form .input-text-wrap input{width:100%}#dashboard-widgets form .textarea-wrap textarea{width:100%}#dashboard-widgets .postbox form .submit{float:none;margin:.5em 0 0;padding:0;border:0}#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish{min-width:0}#dashboard-widgets a{text-decoration:none}#dashboard-widgets h3 a{text-decoration:underline}#dashboard-widgets h3 .postbox-title-action{position:absolute;right:10px;padding:0;top:5px}.js #dashboard-widgets h3 .postbox-title-action{right:30px}#dashboard-widgets h4{font-size:13px;font-weight:normal;line-height:1;margin:0 0 .2em;padding:0}#dashboard_right_now p.sub,#dashboard_right_now .table,#dashboard_right_now .versions{margin:-12px}#dashboard_right_now .inside{font-size:12px;padding-top:20px}#dashboard_right_now p.sub{padding:5px 0 15px;color:#8f8f8f;font-size:14px;position:absolute;top:-17px;left:15px}#dashboard_right_now .table{margin:0;padding:0;position:relative}#dashboard_right_now .table_content{float:left;border-top-width:1px;border-top-style:solid;width:45%}#dashboard_right_now .table_discussion{float:right;border-top-width:1px;border-top-style:solid;width:45%}#dashboard_right_now table td{padding:3px 0;white-space:nowrap}#dashboard_right_now table tr.first td{border-top:0}#dashboard_right_now td.b{padding-right:6px;text-align:right;font-size:14px;width:1%}#dashboard_right_now td.b a{font-size:18px}#dashboard_right_now td.b a:hover{color:#d54e21}#dashboard_right_now .t{font-size:12px;padding-right:12px;padding-top:6px;color:#777}#dashboard_right_now .t a{white-space:nowrap}#dashboard_right_now .spam{color:red}#dashboard_right_now .waiting{color:#e66f00}#dashboard_right_now .approved{color:green}#dashboard_right_now .versions{padding:6px 10px 12px;clear:both}#dashboard_right_now a.button{float:right;clear:right;position:relative;top:-5px}#dashboard_recent_comments h3{margin-bottom:0}#dashboard_recent_comments .inside{margin-top:0}#dashboard_recent_comments .comment-meta .approve{font-style:italic;font-family:sans-serif;font-size:10px}#dashboard_recent_comments .subsubsub{float:none;white-space:normal}#the-comment-list{position:relative}#the-comment-list p.comment-author img{float:left;margin-right:8px}#the-comment-list p.comment-author strong a{border:0}#the-comment-list td{vertical-align:top}#the-comment-list td.comment{word-wrap:break-word}#the-comment-list td.comment p.comment-author{margin-top:0;margin-left:0}#the-comment-list .comment-item{padding:1em 10px;border-top:1px solid}#the-comment-list .comment-item .avatar{float:left;margin:0 10px 5px 0}#the-comment-list .comment-item h4{line-height:1.7em;margin-top:-0.4em;color:#777}#the-comment-list .comment-item h4 cite{font-style:normal;font-weight:normal}#the-comment-list .comment-item:first-child{border-top:0}#the-comment-list .comment-item blockquote,#the-comment-list .comment-item blockquote p{margin:0;padding:0;display:inline}#the-comment-list .comment-item p.row-actions{margin:3px 0 0;padding:0;font-size:12px}#the-comment-list .pingback{padding-left:9px!important}#the-comment-list .comment-item,#the-comment-list #replyrow{margin:0 -10px}#dashboard_recent_comments #the-comment-list .trackback blockquote,#dashboard_recent_comments #the-comment-list .pingback blockquote{display:block}#title-wrap label,#tags-input-wrap label{cursor:text}#title-wrap #title{padding:2px 6px;font-size:1.3em;line-height:100%;outline:0}#title-wrap #title-prompt-text{font-size:1.3em;padding:5px 8px}#tags-input-wrap #tags-input{outline:0}#tags-input-wrap #tags-input-prompt-text{font-size:1em;padding:4px 8px}.no-js #dashboard_quick_press{display:none}#dashboard_quick_press .easy-blogging{padding:0 8px;text-align:left}#dashboard_quick_press .input-text-wrap{position:relative}#dashboard_quick_press .prompt{color:#bbb;position:absolute}#dashboard_quick_press div.updated{padding:0 5px}#dashboard_quick_press .input-text-wrap,#dashboard_quick_press .textarea-wrap{margin:0 0 1em 0}#dashboard_quick_press .wp-media-buttons{margin:0 0 .2em 1px;padding:0}#dashboard_quick_press .wp-media-buttons a{color:#777}#dashboard-widgets #dashboard_quick_press form p.submit input{float:left}#dashboard-widgets #dashboard_quick_press form p.submit #save-post{margin:0 .7em 0 1px}#dashboard-widgets #dashboard_quick_press form p.submit #publish{float:right}#dashboard-widgets #dashboard_quick_press form p.submit .spinner{vertical-align:middle;margin:4px 6px 0 0}#dashboard_recent_drafts ul,#dashboard_recent_drafts p{margin:0;padding:0;word-wrap:break-word}#dashboard_recent_drafts ul{list-style:none}#dashboard_recent_drafts ul li{margin-bottom:1em}#dashboard_recent_drafts h4{line-height:1.7em;word-wrap:break-word}#dashboard_recent_drafts h4 abbr{font-weight:normal;font-family:sans-serif;font-size:12px;color:#999;margin-left:3px}.rss-widget ul{margin:0;padding:0;list-style:none}.rss-widget ul li{line-height:1.5em;margin-bottom:12px}.rss-widget span.rss-date{color:#999;font-size:12px;margin-left:3px}.rss-widget cite{display:block;text-align:right;margin:0 0 1em;padding:0}.rss-widget cite:before{content:'\2014'}a.rsswidget{font-size:13px;line-height:1.7em}#dashboard_plugins h4{line-height:1.7em}#dashboard_plugins h5{font-size:13px;font-weight:normal;line-height:1.4em;margin:0;display:inline}#dashboard_plugins h5 a{line-height:1.4em}#dashboard_plugins .inside span{font-size:12px;padding-left:5px}#dashboard_plugins p{margin:.3em 0 1.4em;line-height:1.4em}.dashboard-comment-wrap{overflow:hidden;word-wrap:break-word}#dashboard_browser_nag a{color:white;text-decoration:underline}#dashboard_browser_nag a.update-browser-link{font-size:1.2em;font-weight:bold;line-height:normal}#dashboard_browser_nag a.browse-happy-link,#dashboard_browser_nag a.update-browser-link{text-shadow:#d29a04 0 1px 0}#dashboard_browser_nag p.browser-update-nag.has-browser-icon{padding-right:125px}#dashboard_browser_nag .browser-icon{margin-top:-35px}#dashboard_browser_nag.postbox{background-color:#e29808;background-image:none;border-color:#edc048;color:white;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}#dashboard_browser_nag.postbox h3{border-bottom-color:#f6e2ac;text-shadow:none;background:transparent none;color:white;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}#dashboard_browser_nag.postbox.browser-insecure{background-color:#ac1b1b;border-color:#ac1b1b}#dashboard_browser_nag.postbox.browser-insecure h3{border-bottom-color:#cd5a5a;color:white}#dashboard_browser_nag.browser-insecure a.browse-happy-link,#dashboard_browser_nag.browser-insecure a.update-browser-link{text-shadow:#871b15 0 1px 0}table.fixed{table-layout:fixed}.fixed .column-rating,.fixed .column-visible{width:8%}.fixed .column-posts,.fixed .column-date,.fixed .column-parent,.fixed .column-links,.fixed .column-author,.fixed .column-format{width:10%}.fixed .column-response,.fixed .column-categories,.fixed .column-tags,.fixed .column-rel,.fixed .column-role{width:15%}.fixed .column-slug{width:25%}.fixed .column-locations{width:35%}.fixed .column-comments{width:4em;padding:8px 0;text-align:left}.fixed .column-comments .vers{padding-left:3px}.fixed .column-comments a{float:left}.fixed .column-icon{width:80px}#comments-form .fixed .column-author{width:20%}#commentsdiv.postbox .inside{margin:0;padding:0}#commentsdiv .inside .row-actions{line-height:18px}#commentsdiv .inside .column-author{width:25%}#commentsdiv .column-comment p{margin:.6em 0;padding:0}#commentsdiv #replyrow td{padding:0}#commentsdiv p{padding:8px 10px;margin:0}#commentsdiv #add-new-comment{border-width:0 0 1px;border-style:none none solid}#commentsdiv .comments-box{border:0 none}#commentsdiv .comments-box thead th{background:transparent;padding:0 7px 4px;font-style:italic}#commentsdiv .comments-box tr:last-child td{border-bottom:0 none}#commentsdiv .spinner{padding-left:5px}.sorting-indicator{display:none;width:7px;height:4px;margin-top:8px;margin-left:7px;background-image:url('../images/sort.gif');background-repeat:no-repeat}tr.wp-locked .locked-indicator{background:url('../images/lock.png') no-repeat;margin:-2px 0 0 6px;height:20px;width:16px}tr.wp-locked .check-column label,tr.wp-locked .check-column input[type="checkbox"],tr.wp-locked .row-actions .inline,tr.wp-locked .row-actions .trash{display:none}tr .locked-info{height:0;opacity:0}tr.wp-locked .locked-info{height:auto;opacity:1}tr.locked-info,tr.wp-locked .locked-info{-webkit-transition:height 1s,opacity 500ms;-moz-transition:height 1s,opacity 500ms;-ms-transition:height 1s,opacity 500ms;-o-transition:height 1s,opacity 500ms;transition:height 1s,opacity 500ms}.fixed .column-comments .sorting-indicator{margin-top:3px}#menu-locations-wrap .widefat{width:60%}.widefat th.sortable,.widefat th.sorted{padding:0}th.sortable a,th.sorted a{display:block;overflow:hidden;padding:7px 7px 8px}.fixed .column-comments.sortable a,.fixed .column-comments.sorted a{padding:8px 0}th.sortable a span,th.sorted a span{float:left;cursor:pointer}th.sorted.asc .sorting-indicator,th.desc:hover span.sorting-indicator{display:block;background-position:0 0}th.sorted.desc .sorting-indicator,th.asc:hover span.sorting-indicator{display:block;background-position:-7px 0}.tablenav-pages a{border-bottom-style:solid;border-bottom-width:2px;font-weight:bold;margin-right:1px;padding:0 2px}.tablenav-pages .current-page{text-align:center}.tablenav-pages .next-page{margin-left:2px}.tablenav{clear:both;height:30px;margin:6px 0 4px;vertical-align:middle}.tablenav.themes{max-width:98%}.tablenav a.button-secondary{display:block;margin:3px 8px 0 0}.tablenav .tablenav-pages{float:right;display:block;cursor:default;height:30px;line-height:30px;font-size:12px}.tablenav .tablenav-pages a.disabled:hover,.tablenav .tablenav-pages a.disabled:active{cursor:default}.tablenav .no-pages,.tablenav .one-page .pagination-links{display:none}.tablenav .displaying-num{margin-right:10px;font-size:12px;font-style:italic}.tablenav .actions{overflow:hidden;padding:2px 8px 0 0}.tablenav .delete{margin-right:20px}.tablenav .tablenav-pages a,.tablenav-pages span.current{text-decoration:none;padding:3px 6px}.view-switch{float:right;margin:6px 8px 0}.view-switch a{text-decoration:none}.filter{float:left;margin:-5px 0 0 10px}.filter .subsubsub{margin-left:-10px;margin-top:13px}.screen-per-page{width:4em}#posts-filter fieldset{float:left;margin:0 1.5ex 1em 0;padding:0}#posts-filter fieldset legend{padding:0 0 .2em 1px}#wpbody-content .inline-edit-row fieldset{font-size:12px;float:left;margin:0;padding:0;width:100%}#wpbody-content .quick-edit-row-post .inline-edit-col-left{width:40%}#wpbody-content .quick-edit-row-post .inline-edit-col-right{width:39%}#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col{border-width:0 0 0 1px;border-style:none none none solid}#wpbody-content .quick-edit-row-page .inline-edit-col-left{width:50%}#wpbody-content .inline-edit-row-post .inline-edit-col-center{width:20%}#wpbody-content .quick-edit-row-page .inline-edit-col-right,#wpbody-content .bulk-edit-row-post .inline-edit-col-right{width:49%}#wpbody-content .bulk-edit-row .inline-edit-col-left{width:30%}#wpbody-content .bulk-edit-row-page .inline-edit-col-right{width:69%}#wpbody-content .bulk-edit-row .inline-edit-col-bottom{float:right;width:69%}#wpbody-content .inline-edit-row-page .inline-edit-col-right{margin-top:27px}tr.inline-edit-row td,#wpbody-content .inline-edit-row fieldset .inline-edit-col{padding:0 .5em}.inline-edit-row fieldset .inline-edit-group{clear:both}.inline-edit-row fieldset .inline-edit-group:after{content:".";display:block;height:0;clear:both;visibility:hidden}.inline-edit-row p.submit{clear:both;padding:.5em;margin:.5em 0 0}.inline-edit-row span.error{line-height:22px;margin:0 15px;padding:3px 5px}.inline-edit-row h4{margin:.2em 0;padding:0;line-height:23px;text-transform:uppercase}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{margin:0;padding:0;line-height:27px;font-style:italic;line-height:1.8em}.inline-edit-row fieldset label,.inline-edit-row fieldset span.inline-edit-categories-label{display:block;margin:.2em 0}.inline-edit-row fieldset label.inline-edit-tags{margin-top:0}.inline-edit-row fieldset label.inline-edit-tags span.title{margin:.2em 0;width:auto}.inline-edit-row fieldset label span.title{display:block;float:left;width:5em}.inline-edit-row fieldset label span.input-text-wrap{display:block;margin-left:5em}.inline-edit-row fieldset label input[type=checkbox]{vertical-align:text-bottom}.inline-edit-row fieldset label textarea{width:100%;height:4em}.inline-edit-row fieldset input[type="text"],.inline-edit-row fieldset textarea{border-style:solid;border-width:1px}.inline-edit-row fieldset .inline-edit-date{float:left}.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=mn]{font-size:12px;width:2.1em}.inline-edit-row fieldset input[name=aa]{font-size:12px;width:3.5em}.inline-edit-row fieldset label input.inline-edit-password-input{width:8em}.inline-edit-row fieldset ul.cat-checklist li,.inline-edit-row fieldset ul.cat-checklist input{margin:0}.inline-edit-row fieldset label input.inline-edit-menu-order-input{width:3em}.inline-edit-row fieldset label input.inline-edit-slug-input{width:75%}.inline-edit-row .input-text-wrap input[type=text]{width:100%}.inline-edit-row fieldset ul.cat-checklist label,.inline-edit-row #bulk-titles div{font-family:sans-serif;font-style:normal;font-size:11px}.quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto;padding-right:.5em}#wpbody-content .bulk-edit-row fieldset .inline-edit-group label{max-width:50%}#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child{margin-right:.5em}.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input{width:6em}.inline-edit-save .spinner{padding:4px 10px 0;vertical-align:top;float:right}ul.cat-checklist{height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0}#bulk-titles{display:block;height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0 0 5px}.quick-edit-row-post fieldset label.inline-edit-status{float:left}#bulk-titles{line-height:140%}#bulk-titles div{margin:.2em .3em}#bulk-titles div a{cursor:pointer;display:block;float:left;height:10px;margin:3px 3px 0 -2px;overflow:hidden;position:relative;text-indent:-9999px;width:10px}#show-comments{overflow:hidden}#save-action .spinner,#show-comments a,#show-comments .spinner{float:left}#lost-connection-notice .spinner{display:block;float:left;margin:0 5px 0 0}.rtl #lost-connection-notice .spinner{float:right;margin:0 0 0 5px}#titlediv{position:relative;margin-bottom:5px}#titlediv label{cursor:text}#titlediv div.inside{margin:0}#titlediv #title{padding:3px 8px;font-size:1.7em;line-height:100%;height:1.7em;width:100%;outline:0;margin:1px 0}#poststuff #titlewrap{border:0;padding:0}#titlediv #title-prompt-text,#wp-fullscreen-title-prompt-text{color:#bbb;position:absolute;font-size:1.7em;padding:11px 10px}#wp-fullscreen-save .fs-saved{color:#999;float:right;margin-top:4px}#wp-fullscreen-title-prompt-text{padding:11px}#poststuff .inside-submitbox,#side-sortables .inside-submitbox{margin:0 3px;font-size:11px}input#link_description,input#link_url{width:98%}#pending{background:0 none;border:0 none;padding:0;font-size:11px;margin-top:-1px}#edit-slug-box{line-height:24px;min-height:25px;margin-top:5px;padding-right:6px}#edit-slug-box .cancel{margin-right:10px;font-size:11px}#editable-post-name-full{display:none}#editable-post-name input{width:16em}.postarea h3 label{float:left}.submitbox .submit{text-align:left;padding:12px 10px 10px;font-size:11px}.submitbox .submitdelete{text-decoration:none;padding:1px 2px}.submitbox .submitdelete,.submitbox .submit a:hover{border-bottom-width:1px;border-bottom-style:solid}.submitbox .submit input{margin-bottom:8px;margin-right:4px;padding:6px}.inside-submitbox #post_status{margin:2px 0 2px -2px}#post-status-select{line-height:2.5em;margin-top:3px}#post-body #normal-sortables{min-height:50px}.postbox{position:relative;min-width:255px}#trackback_url{width:99%}#normal-sortables .postbox .submit{background:transparent none;border:0 none;float:right;padding:0 12px;margin:0}.category-add input[type="text"],.category-add select{width:100%;max-width:260px}.press-this #side-sortables .category-tabs li,ul.category-tabs li,#side-sortables .add-menu-item-tabs li,.wp-tab-bar li{display:inline;line-height:1.35em}.no-js .category-tabs li.hide-if-no-js{display:none}.category-tabs a,#side-sortables .add-menu-item-tabs a,.wp-tab-bar a{text-decoration:none}.category-tabs{margin:8px 0 3px}#category-adder h4{margin:10px 0}#side-sortables .add-menu-item-tabs,.wp-tab-bar{margin-bottom:3px}#normal-sortables .postbox #replyrow .submit{float:none;margin:0;padding:0 7px 5px}#side-sortables .submitbox .submit input,#side-sortables .submitbox .submit .preview,#side-sortables .submitbox .submit a.preview:hover{border:0 none}#side-sortables .inside-submitbox .insidebox,.stuffbox .insidebox{margin:11px 0}ul.category-tabs,ul.add-menu-item-tabs,ul.wp-tab-bar{margin-top:12px}ul.category-tabs li{border-style:solid;border-width:1px;position:relative}ul.add-menu-item-tabs li.tabs,.wp-tab-active{border-style:solid solid none;border-width:1px 1px 0}#post-body .add-menu-item-tabs li.tabs{border-style:solid none solid solid;border-width:1px 0 1px 1px;margin-right:-1px}ul.category-tabs li,ul.add-menu-item-tabs li,ul.wp-tab-bar li{padding:3px 5px 5px;border-top-left-radius:3px;border-top-right-radius:3px;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px}form#tags-filter{position:relative}td.post-title strong,td.plugin-title strong{display:block;margin-bottom:.2em}td.post-title p,td.plugin-title p{margin:6px 0}.wp-hidden-children .wp-hidden-child,.ui-tabs-hide{display:none}.commentlist .avatar{vertical-align:text-top}#post-body .tagsdiv #newtag{margin-right:5px;width:16em}#side-sortables input#post_password{width:94%}#side-sortables .tagsdiv #newtag{width:68%}#post-status-info{border-width:0 1px 1px;border-style:none solid solid;width:100%;border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}#post-status-info td{font-size:12px}.autosave-info{padding:2px 15px;text-align:right}#editorcontent #post-status-info{border:0}#post-body .wp_themeSkin .mceStatusbar a.mceResize{display:block;background:transparent url('../images/resize.gif') no-repeat scroll right bottom;width:12px;cursor:se-resize;margin:0 1px;position:relative;top:-2px}#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize{top:20px}#content-resize-handle{background:transparent url('../images/resize.gif') no-repeat scroll right bottom;width:12px;cursor:se-resize;position:absolute;right:2px;height:19px}.press-this #content-resize-handle{bottom:2px}.tmce-active #content-resize-handle{display:none}#wp-word-count{display:block;padding:2px 10px}#timestampdiv select{height:20px;line-height:14px;padding:0;vertical-align:top}#aa,#jj,#hh,#mn{padding:1px;font-size:12px}#jj,#hh,#mn{width:2em}#aa{width:3.4em}.curtime #timestamp{background-repeat:no-repeat;background-position:left center;padding:2px 0 1px 20px}#timestampdiv{padding-top:5px;line-height:23px}#timestampdiv p{margin:8px 0 6px}#timestampdiv input{border-width:1px;border-style:solid}.notification-dialog{position:fixed;top:30%;left:50%;width:450px;margin-left:-225px;background:#fff;line-height:1.5;z-index:1000005}.notification-dialog-background{position:fixed;top:0;left:0;right:0;bottom:0;background:#000;opacity:.5;filter:alpha(opacity=50);z-index:1000000}#post-lock-dialog .post-locked-message,#post-lock-dialog .post-taken-over{margin:25px}#post-lock-dialog .post-locked-message a.button{margin-right:10px}#post-lock-dialog .post-locked-avatar{float:left;margin:0 20px 20px 0}#post-lock-dialog .wp-tab-first{outline:0}#post-lock-dialog .locked-saving img{float:left;margin-right:3px}#post-lock-dialog.saving .locked-saving,#post-lock-dialog.saved .locked-saved{display:inline}#postcustomstuff thead th{padding:5px 8px 8px}#postcustom #postcustomstuff .submit{border:0 none;float:none;padding:0 8px 8px}#side-sortables #postcustom #postcustomstuff .submit{margin:0;padding:0}#side-sortables #postcustom #postcustomstuff #the-list textarea{height:85px}#side-sortables #postcustom #postcustomstuff td.left input,#side-sortables #postcustom #postcustomstuff td.left select{margin:3px 3px 0}#side-sortables #postcustomstuff #newmetaleft a{margin:3px 3px 0}#postcustomstuff table{margin:0;width:100%;border-width:1px;border-style:solid;border-spacing:0}#postcustomstuff tr{vertical-align:top}#postcustomstuff table input,#postcustomstuff table select,#postcustomstuff table textarea{width:96%;margin:8px}#side-sortables #postcustomstuff table input,#side-sortables #postcustomstuff table select,#side-sortables #postcustomstuff table textarea{margin:3px}#postcustomstuff th.left,#postcustomstuff td.left{width:38%}#postcustomstuff .submit input{margin:0;width:auto}#postcustomstuff #newmetaleft a{display:inline-block;margin:0 8px 8px;text-decoration:none}.no-js #postcustomstuff #enternew{display:none}#post-body-content .compat-attachment-fields{margin-bottom:20px}.compat-attachment-fields th{padding-top:5px;padding-right:10px}.revisions-control-frame,.revisions-diff-frame{position:relative}.revisions-controls{padding-top:40px;height:100px;z-index:1}.revisions-controls input[type="checkbox"]{position:relative;top:-1px;vertical-align:text-bottom}.revisions.pinned .revisions-controls{position:fixed;top:0;padding-bottom:10px}.revisions-controls .author-card .date{color:#777}.revisions-controls .author-card .avatar,.revisions-controls .author-card .author-info{float:left;margin-left:6px;margin-right:6px}.revisions-controls .author-card.autosave{color:#d54e21}.revisions-controls .author-card .author-name{font-weight:bold}.revisions-controls .author-card .byline{display:block;font-size:12px}.revisions-controls .author-card .avatar{vertical-align:middle}.revisions-controls .wp-slider{max-width:70%;margin:0 auto;top:-3px}.revisions-tickmarks{position:relative;margin:0 auto;height:.8em;top:7px;max-width:70%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.revisions-tickmarks>div{position:absolute;height:100%;border-style:solid;border-width:0 1px 0 0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.revisions-tickmarks>div:first-child{border-width:0}.comparing-two-revisions .revisions-controls{height:140px}.revisions .diff-error{position:absolute;text-align:center;margin:0 auto;width:100%;display:none}.revisions.diff-error .diff-error{display:block}.revisions .loading-indicator{position:fixed;vertical-align:middle;opacity:0;width:100%;top:50%;margin-left:-90px;-webkit-transition:opacity .5s;-moz-transition:opacity .5s;-ms-transition:opacity .5s;-o-transition:opacity .5s;transition:opacity .5s;filter:alpha(opacity=0)}body.folded .revisions .loading-indicator{margin-left:-32px}.revisions .loading-indicator span.spinner{display:block;margin:0 auto;float:none}.revisions.loading .loading-indicator{opacity:1;filter:alpha(opacity=100)}.revisions .diff{-webkit-transition:opacity .5s;-moz-transition:opacity .5s;-ms-transition:opacity .5s;-o-transition:opacity .5s;transition:opacity .5s}.revisions.loading .diff{opacity:.5;filter:alpha(opacity=50)}.revisions.diff-error .diff{visibility:hidden}.revisions-meta{margin-top:15px}.revision-toggle-compare-mode{position:absolute;top:0;right:0}.comparing-two-revisions .revisions-previous,.comparing-two-revisions .revisions-next,.revisions-meta .diff-meta-to strong{display:none}.comparing-two-revisions .diff-meta-to strong{display:block}.revisions-previous,.revisions-next{position:relative;z-index:1}.revisions-previous{float:left}.revisions-next{float:right}.post-revisions li img,#revisions-meta-restored img{vertical-align:middle}table.diff{table-layout:fixed;width:100%;white-space:pre-wrap;word-wrap:break-word}table.diff col.content{width:auto}table.diff col.content.diffsplit{width:48%}table.diff col.content.middle{width:auto}table.diff col.ltype{width:30px}table.diff tr{background-color:transparent}table.diff td,table.diff th{padding:.5em;font-family:Consolas,Monaco,monospace}table.diff .diff-deletedline del,table.diff .diff-addedline ins{text-decoration:none}.diff-meta{border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;padding:5px;clear:both;min-height:32px}.diff-meta input.restore-revision{float:right;margin-left:6px;margin-right:6px;margin-top:4px}.diff-title strong{line-height:32px;min-width:60px;text-align:right;float:left;margin-right:5px}.diff-meta-from{display:none}.comparing-two-revisions .diff-meta-from{display:block}.revisions-tooltip{position:absolute;bottom:105px;margin-right:0;margin-left:-69px;z-index:0;max-width:350px;min-width:130px;padding:8px 4px;display:none;opacity:0}.revisions-tooltip.flipped{margin-left:0;margin-right:-70px}.revisions-tooltip.flipped .revisions-tooltip-arrow{margin-left:0;margin-right:35px;left:auto;right:0}.ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow>span{right:25px}.revisions.pinned .revisions-tooltip{display:none!important}.comparing-two-revisions .revisions-tooltip{bottom:145px}.revisions-tooltip-arrow{width:70px;height:15px;overflow:hidden;position:absolute;left:0;margin-left:35px;bottom:-15px}.revisions-tooltip-arrow>span{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);tranform:rotate(45deg)}.revisions-tooltip.flipped .revisions-tooltip-arrow>span{left:auto;right:20px}.ie8 .revisions-tooltip-arrow>span{left:15px;top:-25px;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)"}.revisions-tooltip,.revisions-tooltip-arrow>span{border-width:1px;border-style:solid}div.revisions-controls>.wp-slider>.ui-slider-handle{margin-left:-10px}.wp-slider.ui-slider{position:relative;border-width:1px;border-style:solid;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;text-align:left;cursor:pointer}.wp-slider .ui-slider-handle{position:absolute;z-index:2;margin-top:-3px;width:19px;height:19px;border-width:1px;border-style:solid;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%}.wp-slider .ui-slider-handle:before{content:"";position:absolute;top:6px;left:3px;height:8px;width:13px;background:url(../images/arrows-pr.png) no-repeat -2px -47px}.wp-slider .ui-slider-handle.from-handle:before,.wp-slider .ui-slider-handle.to-handle:before{height:8px;width:7px}.wp-slider .ui-slider-handle.from-handle:before{background-position:-5px -84px;left:7px}.wp-slider .ui-slider-handle.to-handle:before{background-position:-4px -65px;left:5px}.wp-slider .ui-slider-range{position:absolute;font-size:.7em;display:block;border:0;background-color:transparent;background-image:none}.wp-slider.ui-slider-horizontal{height:.8em}.wp-slider.ui-slider-horizontal .ui-slider-handle{top:-0.25em;margin-left:-0.6em}.wp-slider.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.wp-slider.ui-slider-horizontal .ui-slider-range-min{left:0}.wp-slider.ui-slider-horizontal .ui-slider-range-max{right:0}#select-featured-image{padding:4px 0;overflow:hidden}#select-featured-image img{max-width:100%;height:auto;margin-bottom:10px}#select-featured-image a{float:left;clear:both}#select-featured-image .remove{display:none;margin-top:10px}.js #select-featured-image.has-featured-image .remove{display:inline-block}.no-js #select-featured-image .choose{display:none}a.post-state-format{overflow:hidden;display:inline-block;vertical-align:middle;height:16px;width:16px;margin-right:5px;background-repeat:no-repeat;text-indent:-999em}#post-formats-select{line-height:2em}.post-format-icon{margin-left:5px;padding:2px 0 2px 21px;line-height:2em}.post-format-icon.post-format-standard{background-position:0 0}.post-format-icon.post-format-image{background-position:0 -32px}.post-format-icon.post-format-gallery{background-position:0 -64px}.post-format-icon.post-format-audio{background-position:0 -96px}.post-format-icon.post-format-video{background-position:0 -128px}.post-format-icon.post-format-chat{background-position:0 -160px}.post-format-icon.post-format-status{background-position:0 -192px}.post-format-icon.post-format-aside{background-position:0 -224px}.post-format-icon.post-format-quote{background-position:0 -256px}.post-format-icon.post-format-link{background-position:0 -288px}.category-adder{margin-left:120px;padding:4px 0}.category-adder h4{margin:0 0 8px}#side-sortables .category-adder{margin:0}#post-body ul.add-menu-item-tabs{float:left;width:120px;text-align:right;margin:0 -120px 0 5px;padding:0}#post-body ul.add-menu-item-tabs li{padding:8px}#post-body ul.add-menu-item-tabs li.tabs{border-top-left-radius:3px;border-bottom-left-radius:3px;-moz-border-top-left-radius:3px;-moz-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px}.wp-tab-panel,.categorydiv div.tabs-panel,.customlinkdiv div.tabs-panel,.posttypediv div.tabs-panel,.taxonomydiv div.tabs-panel{min-height:42px;max-height:200px;overflow:auto;padding:0 .9em;border-style:solid;border-width:1px}div.tabs-panel-active{display:block}div.tabs-panel-inactive{display:none}#front-page-warning,#front-static-pages ul,ul.export-filters,.inline-editor ul.cat-checklist ul,.categorydiv ul.categorychecklist ul,.customlinkdiv ul.categorychecklist ul,.posttypediv ul.categorychecklist ul,.taxonomydiv ul.categorychecklist ul{margin-left:18px}ul.categorychecklist li{margin:0;padding:0;line-height:19px;word-wrap:break-word}.categorydiv .tabs-panel,.customlinkdiv .tabs-panel,.posttypediv .tabs-panel,.taxonomydiv .tabs-panel{border-width:3px;border-style:solid}.form-wrap p,.form-wrap label{font-size:11px}.form-wrap label{display:block;padding:2px;font-size:12px}.form-wrap .form-field{margin:0 0 10px;padding:8px 0}.form-wrap .form-field #parent{max-width:100%}.form-field input,.form-field textarea{border-style:solid;border-width:1px;width:95%}p.description,.form-wrap p{margin:2px 0 5px}p.help,p.description,span.description,.form-wrap p{font-size:12px;font-style:italic;font-family:sans-serif}.col-wrap h3{margin:12px 0;font-size:1.1em}.col-wrap p.submit{margin-top:-10px}#poststuff .taghint{color:#aaa;margin:15px 0 -24px 12px}.ajaxtag .newtag{position:relative}.tagsdiv .newtag{width:180px}.tagsdiv .the-tags{display:block;height:60px;margin:0 auto;overflow:auto;width:260px}#post-body-content .tagsdiv .the-tags{margin:0 5px}#poststuff .tagsdiv .howto{margin:0 0 6px 8px}p.popular-tags{border-radius:8px;-moz-border-radius:8px;-webkit-border-radius:8px;border-width:1px;border-style:solid;line-height:2em;max-width:1000px;padding:8px 12px 12px;text-align:justify}p.popular-tags a{padding:0 3px}.tagcloud{width:97%;margin:0 0 40px;text-align:justify}.tagcloud h3{margin:2px 0 12px}.ac_results{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;display:none;border-width:1px;border-style:solid}.ac_results li{padding:2px 5px;white-space:nowrap;text-align:left}.ac_over{cursor:pointer}.ac_match{text-decoration:underline}table.links-table{width:100%}.links-table th{font-weight:normal;text-align:left;vertical-align:top;min-width:80px;width:20%;word-wrap:break-word}.links-table th,.links-table td{padding:5px 0}.links-table td label{margin-right:8px}.links-table td input[type="text"],.links-table td textarea{width:100%}.links-table #link_rel{max-width:280px}.media-item .describe{border-collapse:collapse;width:100%;border-top-style:solid;border-top-width:1px;clear:both;cursor:default}.media-item .describe td{padding:0 8px 8px 0;vertical-align:top}.media-item .describe th{vertical-align:top;text-align:left;padding:5px 10px 10px;width:140px}.align .media-item .describe th{padding-top:0}.media-item .describe input[type="text"],.media-item .describe textarea{width:460px}.media-item .describe p.help{margin:0;padding:0 0 0 5px}.media-item.media-blank .describe{border:0}.media-item .media-item-info tr{background-color:transparent}.media-item thead.media-item-info td{padding:4px 10px 0}.media-item .media-item-info .A1B1{padding:0 0 0 10px}.media-item td.savesend{padding-bottom:15px}.media-item .thumbnail{max-height:128px;max-width:128px}.media-item .filename{line-height:36px;overflow:hidden;padding:0 10px}.media-item .error-div{padding-left:10px}.media-item .pinkynail{float:left;margin:2px 2px 0;max-width:40px;max-height:32px}.media-item .startopen,.media-item .startclosed{display:none}.media-item .original{position:relative;height:34px}.media-item .progress{float:right;height:22px;margin:6px 10px 0 0;width:200px;line-height:2em;padding:0;overflow:hidden;margin-bottom:2px;border:1px solid #d1d1d1;background:#f7f7f7;background-image:-webkit-gradient(linear,left bottom,left top,from(#fff),to(#f7f7f7));background-image:-webkit-linear-gradient(bottom,#fff,#f7f7f7);background-image:-moz-linear-gradient(bottom,#fff,#f7f7f7);background-image:-o-linear-gradient(bottom,#fff,#f7f7f7);background-image:linear-gradient(to top,#fff,#f7f7f7);border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;-moz-box-shadow:inset 0 0 3px rgba(0,0,0,0.1);-webkit-box-shadow:inset 0 0 3px rgba(0,0,0,0.1);box-shadow:inset 0 0 3px rgba(0,0,0,0.1)}.media-item .bar{z-index:9;width:0;height:100%;margin-top:-24px;background:#8cc1e9;background-image:-webkit-gradient(linear,left bottom,left top,from(#72a7cf),to(#8cc1e9));background-image:-webkit-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:-moz-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:-o-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:linear-gradient(to top,#72a7cf,#8cc1e9);border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,0.3);-webkit-box-shadow:0 0 3px rgba(0,0,0,0.3);box-shadow:0 0 3px rgba(0,0,0,0.3)}.media-item .progress .percent{z-index:10;position:relative;width:200px;padding:0 8px;text-shadow:0 1px 0 rgba(255,255,255,0.4);color:rgba(0,0,0,0.6)}#wpbody-content #async-upload-wrap a{display:none}.media-upload-form{margin-top:20px}.media-upload-form td label{margin-right:6px;margin-left:2px}.media-upload-form .align .field label{display:inline;padding:0 0 0 23px;margin:0 1em 0 3px;font-weight:bold}.media-upload-form tr.image-size label{margin:0 0 0 5px;font-weight:bold}.media-upload-form th.label label{font-size:13px;font-weight:bold;line-height:normal;margin:.5em}.media-upload-form th.label label span{padding:0 5px}abbr.required{border:medium none;text-decoration:none}.media-item .edit-attachment,.describe-toggle-on,.describe-toggle-off{display:block;line-height:36px;float:right;margin-right:15px}.media-item .describe-toggle-off,.media-item.open .describe-toggle-on{display:none}.media-item.open .describe-toggle-off{display:block}#media-items .media-item{border-style:solid;border-width:1px;min-height:36px;position:relative;margin-top:-1px;width:100%}#media-items{width:623px}.media-new-php #media-items{margin:1em 0}#media-items:empty{border:0 none}.upload-php .fixed .column-parent{width:15%}.js .html-uploader #plupload-upload-ui{display:none}.js .html-uploader #html-upload-ui{display:block}.media-upload-form .media-item.error{margin:0;padding:0}.media-upload-form .media-item.error p,.media-item .error-div{line-height:16px;margin:5px 10px;padding:0}.media-item .error-div a.dismiss{display:block;float:right;margin:5px 4px 0 15px}.find-box{width:600px;height:300px;overflow:hidden;padding:33px 0 51px;position:absolute;z-index:1000}.find-box-head{cursor:move;font-weight:bold;height:2em;line-height:2em;padding:1px 12px;position:absolute;top:5px;width:100%}.find-box-inside{overflow:auto;padding:6px;height:100%}.find-box-search{overflow:hidden;padding:9px;position:relative}.find-box-search .spinner{float:none;left:125px;position:absolute;top:9px}#find-posts-input{float:left;width:140px;height:24px}#find-posts-search{float:left;margin:1px 4px 0 3px}#find-posts-response{margin:8px 0;padding:0 1px 6px}#find-posts-response table{width:100%}#find-posts-response .found-radio{padding:3px 0 0 8px;width:15px}.find-box-buttons{padding:8px;overflow:hidden}.find-box #resize-se{position:absolute;right:1px;bottom:1px}.ui-find-overlay{position:absolute;top:0;left:0;background-color:black;opacity:.6;filter:alpha(opacity=60)}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0}#poststuff .inside .the-tagcloud{margin:5px 0 10px;padding:8px;border-width:1px;border-style:solid;line-height:1.8em;word-spacing:3px;border-radius:6px;-moz-border-radius:6px;-webkit-border-radius:6px}.drag-drop #drag-drop-area{border:4px dashed #ddd;height:200px}.drag-drop .drag-drop-inside{margin:70px auto 0;width:250px}.drag-drop-inside p{color:#aaa;font-size:14px;margin:5px 0;display:none}.drag-drop .drag-drop-inside p{text-align:center}.drag-drop-inside p.drag-drop-info{font-size:20px}.drag-drop .drag-drop-inside p,.drag-drop-inside p.drag-drop-buttons{display:block}.drag-drop.drag-over #drag-drop-area{border-color:#83b4d8}#plupload-upload-ui{position:relative}.describe .image-editor{vertical-align:top}.imgedit-wrap{position:relative}.imgedit-settings p{margin:8px 0}.post-php .imgedit-wrap table{width:100%}.describe .imgedit-wrap table td,.wp_attachment_holder .imgedit-wrap table td{vertical-align:top;padding-top:0}.describe .imgedit-wrap table td.imgedit-settings{padding:0 5px}.wp_attachment_holder .imgedit-wrap table td.imgedit-settings{width:250px}td.imgedit-settings input{margin-top:0;vertical-align:middle}.imgedit-wait{position:absolute;top:0;background:#fff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px;background-size:16px 16px;opacity:.7;filter:alpha(opacity=70);width:100%;height:500px;display:none}.spinner{background:url(../images/wpspin_light.gif) no-repeat;background-size:16px 16px;display:none;float:right;opacity:.7;filter:alpha(opacity=70);width:16px;height:16px;margin:5px 5px 0}.no-float{float:none}.media-disabled,.imgedit-settings .disabled{color:grey}.wp_attachment_image,.A1B1{overflow:hidden}.wp_attachment_image .button,.A1B1 .button{float:left}.no-js .wp_attachment_image .button{display:none}.wp_attachment_image .spinner,.A1B1 .spinner{float:left;padding:0 4px 4px;vertical-align:bottom}.imgedit-menu{margin:0 0 12px;min-width:300px}.imgedit-menu div{float:left;width:32px;height:32px}.imgedit-crop-wrap{position:relative}.imgedit-crop{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -9px -31px;margin:0 8px 0 0}.imgedit-crop.disabled:hover{background-position:-9px -31px}.imgedit-crop:hover{background-position:-9px -1px}.imgedit-rleft{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -46px -31px;margin:0 3px}.imgedit-rleft.disabled:hover{background-position:-46px -31px}.imgedit-rleft:hover{background-position:-46px -1px}.imgedit-rright{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -77px -31px;margin:0 8px 0 3px}.imgedit-rright.disabled:hover{background-position:-77px -31px}.imgedit-rright:hover{background-position:-77px -1px}.imgedit-flipv{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -115px -31px;margin:0 3px}.imgedit-flipv.disabled:hover{background-position:-115px -31px}.imgedit-flipv:hover{background-position:-115px -1px}.imgedit-fliph{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -147px -31px;margin:0 8px 0 3px}.imgedit-fliph.disabled:hover{background-position:-147px -31px}.imgedit-fliph:hover{background-position:-147px -1px}.imgedit-undo{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -184px -31px;margin:0 3px}.imgedit-undo.disabled:hover{background-position:-184px -31px}.imgedit-undo:hover{background-position:-184px -1px}.imgedit-redo{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -215px -31px;margin:0 8px 0 3px}.imgedit-redo.disabled:hover{background-position:-215px -31px}.imgedit-redo:hover{background-position:-215px -1px}.imgedit-applyto img{margin:0 8px 0 0}.imgedit-group-top{margin:5px 0}.imgedit-applyto .imgedit-label{padding:2px 0 0;display:block}.imgedit-help{display:none;font-style:italic;margin-bottom:8px}a.imgedit-help-toggle{text-decoration:none}.form-table td.imgedit-response{padding:0}.imgedit-submit{margin:8px 0}.imgedit-submit-btn{margin-left:20px}.imgedit-wrap .nowrap{white-space:nowrap}span.imgedit-scale-warn{color:red;font-size:20px;font-style:normal;visibility:hidden;vertical-align:middle}.imgedit-group{border-width:1px;border-style:solid;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;margin-bottom:8px;padding:2px 10px}.form-table{border-collapse:collapse;margin-top:.5em;width:100%;margin-bottom:-8px;clear:both}.form-table td{margin-bottom:9px;padding:8px 10px;line-height:20px;font-size:12px}.form-table td p{margin-top:4px}.color-palette .form-table td{border-width:1px 1px 0;border-style:solid solid none;height:10px;line-height:20px;width:10px}.form-table th{vertical-align:top;text-align:left;padding:10px;width:200px}.form-table th.th-full{width:auto}.form-table div.color-option{display:block;clear:both;margin-top:12px}.form-table input.tog{margin-top:2px;margin-right:2px;float:left}.form-table table.color-palette{vertical-align:bottom;float:left;margin:-12px 3px 11px}.form-table th,.form-wrap label{font-weight:normal;text-shadow:#fff 0 1px 0}.commentlist li{padding:1em 1em .2em;margin:0;border-bottom-width:1px;border-bottom-style:solid}.commentlist li li{border-bottom:0;padding:0}.commentlist p{padding:0;margin:0 0 .8em}.commentlist .avatar{vertical-align:text-top}#replyrow input{border-width:1px;border-style:solid}#replyrow td{padding:2px}#replyrow h5{margin:.2em 0 0;padding:0 5px;line-height:1.4em;font-size:1em}#replysubmit{margin:0;padding:0 5px 3px;text-align:center}#replysubmit .spinner{padding:2px 0 0;vertical-align:top;float:right}#replysubmit .button{margin-right:5px}#replysubmit .error{color:red;line-height:21px;text-align:center}#edithead .inside{float:left;padding:3px 0 2px 5px;margin:0;text-align:center}#edithead .inside input{width:180px}#edithead label{padding:2px 0}#replycontainer{padding:5px}#replycontent{height:120px;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.comment-php .wp-editor-area{height:200px}.comment-ays{margin-bottom:0;border-style:solid;border-width:1px}.comment-ays th{border-right-style:solid;border-right-width:1px}.trash-undo-inside,.spam-undo-inside{margin:1px 8px 1px 0;line-height:16px}.trash-undo-inside .avatar,.spam-undo-inside .avatar{height:20px;width:20px;margin-right:8px;vertical-align:middle}.stuffbox .editcomment{clear:none}#comment-status-radio p{margin:3px 0 5px}#comment-status-radio input{margin:2px 3px 5px 0;vertical-align:middle}#comment-status-radio label{padding:5px 0}.theme-install-php .tablenav{height:auto}.theme-install-php .spinner{margin-top:9px}h3.available-themes{margin:.3em 0 1em;float:left}.available-theme{display:inline-block;margin-right:10px;overflow:hidden;padding:20px 20px 20px 0;vertical-align:top;width:300px}.available-theme .screenshot{width:300px;height:225px;display:block;border-width:1px;border-style:solid;margin-bottom:10px;overflow:hidden}.available-theme img{width:300px}.available-theme h3{margin:15px 0 0}.available-theme .theme-author{line-height:18px}.available-theme .action-links{margin-top:10px;overflow:hidden}.available-theme a.screenshot:focus{border-color:#777}#current-theme .theme-info li,.theme-options li,.available-theme .action-links li{float:left;padding-right:10px;margin-right:10px;border-right:1px solid #dfdfdf}#current-theme .theme-info li:last-child,.theme-options li:last-child,.available-theme .action-links li:last-child{padding-right:0;margin-right:0;border-right:0}.available-theme .action-links li{padding-right:8px;margin-right:8px}.ie8 .available-theme .action-links li{padding-right:7px;margin-right:7px}.available-theme .action-links .delete-theme{float:right;margin-left:8px;margin-right:0}.available-theme .action-links .delete-theme a{color:red;padding:2px}.available-theme .action-links .delete-theme a:hover{background:red;color:white;text-decoration:none}.available-theme .action-links p{float:left}#current-theme{margin:20px 0 10px;padding:0 0 20px;border-bottom-width:1px;border-bottom-style:solid;overflow:hidden}#current-theme.has-screenshot{padding-left:330px}#current-theme h3{margin:0;font-size:12px;font-weight:normal;color:#999}#current-theme h4{margin:3px 0 16px;font-size:20px}#current-theme h4 span{margin-left:20px;font-size:12px;font-weight:normal}#current-theme a{border-bottom:0}#current-theme .theme-info{margin:1em 0;overflow:hidden}#current-theme .theme-description{margin-top:5px;max-width:600px;line-height:1.6em}#current-theme img{float:left;width:300px;margin-left:-330px;border-width:1px;border-style:solid}.theme-options{overflow:hidden;font-size:14px;padding-bottom:10px}.theme-options .load-customize{margin-right:30px;float:left}.theme-options span{float:left;margin-right:10px;text-transform:uppercase;font-size:11px;line-height:18px;color:#999}.theme-options ul{float:left;margin:0}@media only screen and (max-width:1200px){.folded .available-theme,.folded .available-theme .screenshot{width:300px}.folded .available-theme .screenshot{height:225px}.folded #current-theme img{width:300px;margin-left:-330px}.folded #current-theme.has-screenshot{padding-left:330px}}@media only screen and (max-width:1079px){.folded .available-theme,.folded .available-theme .screenshot{width:270px}.folded .available-theme .screenshot{height:203px}.folded #current-theme img{width:270px;margin-left:-300px}.folded #current-theme.has-screenshot{padding-left:300px}}@media only screen and (max-width:1200px){.available-theme,.available-theme .screenshot,#current-theme img{width:240px}.available-theme .screenshot{height:180px}.available-theme img{width:100%}#current-theme.has-screenshot{padding-left:270px}#current-theme img{margin-left:-270px}}#post-body ul.add-menu-item-tabs li.tabs a,#TB_window #TB_title a.tb-theme-preview-link,#TB_window #TB_title a.tb-theme-preview-link:visited{font-weight:bold;text-decoration:none}#TB_window #TB_title{background-color:#222;color:#cfcfcf}#broken-themes{text-align:left;width:50%;border-spacing:3px;padding:3px}.theme-install-php h4{margin:2.5em 0 8px}.appearance_page_custom-header #headimg{border:1px solid #dfdfdf;overflow:hidden;width:100%}.appearance_page_custom-header #upload-form p label{font-size:12px}.appearance_page_custom-header .available-headers .default-header{float:left;margin:0 20px 20px 0}.appearance_page_custom-header .random-header{clear:both;margin:0 20px 20px 0;vertical-align:middle}.appearance_page_custom-header .available-headers label input,.appearance_page_custom-header .random-header label input{margin-right:10px}.appearance_page_custom-header .available-headers label img{vertical-align:middle}div#custom-background-image{min-height:100px;border:1px solid #dfdfdf}div#custom-background-image img{max-width:400px;max-height:300px}.nav-tab{border-style:solid;border-width:1px 1px 0;color:#aaa;text-shadow:#fff 0 1px 0;font-size:12px;line-height:16px;display:inline-block;padding:4px 14px 6px;text-decoration:none;margin:0 6px -1px 0;border-top-left-radius:3px;border-top-right-radius:3px;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px}h2 .nav-tab{padding:4px 10px 6px;font-weight:200;font-size:20px;line-height:24px}.nav-tab-active{border-width:1px;color:#464646}h2.nav-tab-wrapper,h3.nav-tab-wrapper{border-bottom-width:1px;border-bottom-style:solid;padding-bottom:0}#dashboard_right_now .versions .b,#post-status-display,#post-visibility-display,#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover,.media-item .percent,.plugins .name,#pass-strength-result.strong,#pass-strength-result.short,#ed_reply_toolbar #ed_reply_strong,.item-controls .item-order a,.feature-filter .feature-name{font-weight:bold}.plugins p{margin:0 4px;padding:0}.desc .plugins p{margin:0 0 8px}.plugins td.desc{line-height:1.5em}.plugins .desc ul,.plugins .desc ol{margin:0 0 0 2em}.plugins .desc ul{list-style-type:disc}.plugins .row-actions-visible{padding:0}.plugins tbody th.check-column{padding:7px 0}.plugins .inactive td,.plugins .inactive th,.plugins .active td,.plugins .active th{border-top-style:solid;border-top-width:1px;padding:5px 7px 0}.plugins .update th,.plugins .update td{border-bottom:0}#wpbody-content .plugins .plugin-title,#wpbody-content .plugins .theme-title{padding-right:12px;white-space:nowrap}.plugins .second,.plugins .row-actions-visible{padding:0 0 5px}.plugins .update .second,.plugins .update .row-actions-visible{padding-bottom:0}.plugin-update-tr td{border-top:0}.plugins-php .widefat tfoot th,.plugins-php .widefat tfoot td{border-top-style:solid;border-top-width:1px}.plugin-update-tr .update-message{margin:5px;padding:3px 5px}.plugin-install-php h4{margin:2.5em 0 8px}#profile-page .form-table textarea{width:500px;margin-bottom:6px}#profile-page .form-table #rich_editing{margin-right:5px}#your-profile legend{font-size:22px}#your-profile #rich_editing{border:0}#display_name{width:15em}#createuser .form-field input{width:25em}#utc-time,#local-time{padding-left:25px;font-style:italic;font-family:sans-serif}.defaultavatarpicker .avatar{margin:2px 0;vertical-align:middle}.options-general-php .spinner{float:none;margin:-3px 3px}#wpfooter{position:absolute;bottom:0;left:0;right:0;padding:10px 0;margin-right:20px;border-top-width:1px;border-top-style:solid}#wpfooter p{margin:0;line-height:20px}#wpfooter a{text-decoration:none}#wpfooter a:hover{text-decoration:underline}.wp-badge{padding-top:142px;height:50px;width:173px;font-size:14px;font-weight:bold;line-height:normal;text-align:center;margin:0 -5px;background:url('../images/wp-badge.png?ver=20111120') no-repeat}.about-wrap{position:relative;margin:25px 40px 0 20px;max-width:1050px;font-size:15px}.about-wrap div.updated,.about-wrap div.error{display:none!important}.about-wrap p{line-height:1.6em}.about-wrap h1{margin:.2em 200px 0 0;line-height:1.2em;font-size:2.8em;font-weight:200}.about-wrap h3{font-size:24px;margin-bottom:1em;padding-top:20px}.about-wrap code{font-size:14px}.about-wrap li.wp-person a.web{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:20px;font-weight:normal;line-height:1.6em}.about-wrap .point-releases{margin-top:5px}.about-wrap .changelog.point-releases h3{padding-top:35px}.about-wrap .changelog.point-releases h3:first-child{padding-top:7px}.about-wrap .wp-badge{position:absolute;top:0;right:0}.about-wrap h2.nav-tab-wrapper{padding-left:6px}.about-wrap h2 .nav-tab{padding:4px 10px 6px;margin:0 3px -1px 0;font-size:18px;vertical-align:top}.about-wrap h2 .nav-tab-active{font-weight:bold;padding-top:3px}.about-wrap .feature-section{padding-bottom:20px}.about-wrap .feature-section h4{margin-bottom:.6em}.about-wrap .feature-section p{margin-top:.6em}.about-wrap .feature-section img,.about-wrap .feature-section .video{border:0;margin:0 1.94% 10px 0;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.about-wrap .feature-section .video video{max-width:100%}.about-wrap .feature-section.three-col img{margin:.5em 0 .5em 5px;max-width:100%;float:none}.about-wrap .feature-section.images-stagger-right img,.about-wrap .feature-section.images-stagger-right .video{float:right;margin:0 5px 12px 2em}.about-wrap .feature-section.images-stagger-left img{float:left;margin:0 2em 12px 5px}.about-wrap .feature-section .image-100{margin:0 0 2em 0;width:100%}.about-wrap .feature-section .image-66{width:65%}.about-wrap .feature-section .image-66.video{max-width:600px}.about-wrap .feature-section .image-50{max-width:50%}.about-wrap .feature-section img.image-30{max-width:31.2381%}.about-wrap .feature-section.col{margin-bottom:0}.about-wrap .feature-section.col h4{margin:0 0 .6em 0}.about-wrap .feature-section.col .last-feature{margin-right:0}.about-wrap .feature-section.two-col div,.about-wrap .feature-section.three-col div{margin-right:4.999999999%;float:left}.about-wrap .feature-section.two-col div{width:47%}.about-wrap .feature-section.three-col div{width:30%}.ie8 .about-wrap .feature-section.three-col img{margin-left:0}.ie8 .about-wrap .feature-section img{border-width:1px;border-style:solid}.about-wrap .images-stagger-right img.image-30:nth-child(2){margin-left:1em}.about-wrap .three-col-images{text-align:center}.about-wrap .three-col-images img{margin:0 0 10px}.about-wrap .three-col-images .last-feature{float:right}.about-wrap .three-col-images .first-feature{float:left}.about-wrap .changelog .feature-section{overflow:hidden}.about-wrap .changelog li{list-style-type:disc;margin-left:3em}.about-wrap .return-to-dashboard{margin:30px 0 0 -5px;font-size:14px;font-weight:bold;line-height:normal}.about-wrap .return-to-dashboard a{text-decoration:none;padding:0 5px}.about-wrap h4.wp-people-group{margin-top:2.6em;font-size:16px}.about-wrap ul.wp-people-group{overflow:hidden;padding:0 5px;margin:0 -15px 0 -5px}.about-wrap li.wp-person{float:left;margin-right:10px}.about-wrap li.wp-person img.gravatar{float:left;margin:0 10px 10px 0;padding:2px;width:60px;height:60px}.about-wrap ul.compact{margin-bottom:0}.about-wrap ul.compact li.wp-person img.gravatar{width:30px;height:30px}.about-wrap li.wp-person{height:70px;width:280px;padding-bottom:15px}ul.compact .about-wrap li.wp-person{height:auto;width:180px;padding-bottom:0;margin-bottom:0}.about-wrap li.wp-person a.web{display:block;margin:6px 0 2px;font-size:16px;text-decoration:none}.about-wrap #wp-people-group-validators+p.wp-credits-list{margin-top:0}.about-wrap p.wp-credits-list a{white-space:nowrap}.freedoms-php .about-wrap ol{margin:40px 60px}.freedoms-php .about-wrap ol li{list-style-type:decimal;font-weight:bold}.freedoms-php .about-wrap ol p{font-weight:normal;margin:.6em 0}.about-description{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:20px;font-weight:normal;line-height:1.6em;margin-top:1.4em}.about-text{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:24px;font-weight:normal;line-height:1.6em;margin:1em 200px 1.4em 0;min-height:60px}@media only screen and (max-width:900px){.about-wrap .feature-section .images-stagger-left img,.about-wrap .feature-section .images-stagger-right img,.about-wrap .feature-section .images-stagger-right .video{clear:both}.about-wrap .feature-section .video.image-66{float:none;width:98%;max-width:98%}.about-wrap .feature-section.images-stagger-right .video.image-66{margin-left:3px}}@media only screen and (max-width:768px){.about-wrap .feature-section .image-66{float:none;width:98%;max-width:98%}.about-wrap .feature-section.images-stagger-right .image-66{margin-left:3px}.about-wrap .feature-section.images-stagger-left .image-66{margin-right:3px}}body.full-overlay-active{overflow:hidden}.wp-full-overlay{background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%;min-width:0}.wp-full-overlay.expanded{margin-left:300px}.wp-full-overlay .close-full-overlay{text-decoration:none}.wp-full-overlay a.collapse-sidebar{position:absolute;bottom:12px;left:0;z-index:50;display:block;width:19px;height:19px;margin-left:15px;padding:0;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%;text-decoration:none}.wp-full-overlay .collapse-sidebar-arrow{position:absolute;margin-top:2px;margin-left:2px;display:block;width:15px;height:15px;background:transparent url('../images/arrows.png') no-repeat -1px -73px}.wp-full-overlay .collapse-sidebar-label{position:absolute;left:100%;color:#808080;line-height:20px;margin-left:10px}.wp-full-overlay.collapsed .collapse-sidebar{position:absolute;left:100%}.wp-full-overlay.collapsed .collapse-sidebar-arrow{background-position:-1px -109px}.wp-full-overlay.collapsed .collapse-sidebar-label{display:none}.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label{color:#666}.wp-full-overlay-sidebar{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;position:fixed;width:300px;height:100%;top:0;bottom:0;left:0;padding:0;margin:0;z-index:10;overflow:auto;background:#f5f5f5;border-right:1px solid rgba(0,0,0,0.2)}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{overflow:visible;margin-left:-300px}.wp-full-overlay-sidebar:after{content:'';display:block;position:absolute;top:0;bottom:0;right:0;width:3px;box-shadow:-5px 0 4px -4px rgba(0,0,0,0.1) inset;z-index:1000}.wp-full-overlay-sidebar .wp-full-overlay-header{position:absolute;left:0;right:0;height:45px;padding:0 20px;line-height:45px;z-index:10;margin:0;border-top:0;border-bottom:1px solid #fff;box-shadow:inset 0 -1px 0 0 #dfdfdf}.wp-full-overlay-sidebar .wp-full-overlay-footer{bottom:0;border-bottom:0;border-top:1px solid #dfdfdf;box-shadow:inset 0 1px 0 0 #fff}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content{position:absolute;top:45px;bottom:45px;left:0;right:0;overflow:auto}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content .accordion-section:first-child{border-top:1px solid #fff}.wp-full-overlay.collapsed,.wp-full-overlay.expanded .wp-full-overlay-sidebar{margin-left:0!important}.wp-full-overlay-main{position:absolute;left:0;right:0;top:0;bottom:0;height:100%}.wp-full-overlay,.wp-full-overlay-sidebar,.wp-full-overlay .collapse-sidebar,.wp-full-overlay-main{-webkit-transition-property:left,right,top,bottom,width,margin;-moz-transition-property:left,right,top,bottom,width,margin;-ms-transition-property:left,right,top,bottom,width,margin;-o-transition-property:left,right,top,bottom,width,margin;transition-property:left,right,top,bottom,width,margin;-webkit-transition-duration:.2s;-moz-transition-duration:.2s;-ms-transition-duration:.2s;-o-transition-duration:.2s;transition-duration:.2s}.customize-support .hide-if-customize,.customize-support.wp-core-ui .hide-if-customize,.customize-support .wp-core-ui .hide-if-customize{display:none}.no-customize-support .hide-if-no-customize,.no-customize-support.wp-core-ui .hide-if-no-customize,.no-customize-support .wp-core-ui .hide-if-no-customize{display:none}#customize-container{display:none;background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%}.customize-active #customize-container{display:block}.customize-loading #customize-container{background:#fff url("../images/wpspin_light.gif") no-repeat fixed center center;background-size:16px 16px}.customize-loading #customize-container iframe{opacity:0}#customize-container .collapse-sidebar{bottom:16px}#customize-container iframe,#theme-installer iframe{height:100%;width:100%;z-index:20;-webkit-transition:opacity .3s;-moz-transition:opacity .3s;-ms-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s}#theme-installer{display:none}#theme-installer.single-theme{display:block}.install-theme-info{display:none;padding:10px 20px 20px}.single-theme .install-theme-info{padding-top:15px}#theme-installer .install-theme-info{display:block}.install-theme-info .theme-install{float:right;margin-top:18px}.install-theme-info .theme-name{font-size:16px;line-height:24px;margin-bottom:0}.install-theme-info .theme-screenshot{margin-top:15px;width:258px;border:1px solid #ccc}.install-theme-info .theme-details{overflow:hidden}.theme-details .theme-version{margin:15px 0;float:left}.theme-details .star-holder{margin:14px 0;float:right}.theme-details .theme-description{float:left;color:#777;line-height:20px}#excerpt,.attachmentlinks{margin:0;height:4em;width:98%}#template div{margin-right:190px}p.pagenav{margin:0;display:inline}.pagenav span{font-weight:bold;margin:0 6px}.row-title{font-size:13px!important;font-weight:bold}.column-author img,.column-username img{float:left;margin-right:10px;margin-top:1px}.row-actions{visibility:hidden;padding:2px 0 0}.mobile .row-actions{visibility:visible}tr:hover .row-actions,div.comment-item:hover .row-actions{visibility:visible}.row-actions-visible{padding:2px 0 0}.form-table .pre{padding:8px;margin:0}table.form-table td .updated{font-size:13px}.tagchecklist{margin-left:14px;font-size:12px;overflow:auto}.tagchecklist strong{margin-left:-8px;position:absolute}.tagchecklist span{margin-right:25px;display:block;float:left;font-size:11px;line-height:1.8em;white-space:nowrap;cursor:default}.tagchecklist span a{margin:6px 0 0 -9px;cursor:pointer;width:10px;height:10px;display:block;float:left;text-indent:-9999px;overflow:hidden;position:absolute}#poststuff h2{margin-top:20px;font-size:1.5em;margin-bottom:15px;padding:0 0 3px;clear:left}#poststuff h3,.metabox-holder h3{font-size:12px;font-weight:normal;line-height:1;padding:7px 10px;margin:0}#poststuff .inside{margin:6px 0 8px}#poststuff .inside #parent_id,#poststuff .inside #page_template{max-width:100%}.inline-edit-row #post_parent,.inline-edit-row select[name="page_template"]{max-width:80%}.ie8 #poststuff .inside #parent_id,.ie8 #poststuff .inside #page_template,.ie8 .inline-edit-row #post_parent,.ie8 .inline-edit-row select[name="page_template"]{width:250px}#post-visibility-select{line-height:1.5em;margin-top:3px}#poststuff #submitdiv .inside{margin:0;padding:0}.edit-form-section{margin-bottom:20px}#templateside ul li a{text-decoration:none}.tool-box .title{margin:8px 0;font-size:18px;font-weight:normal;line-height:24px}#sidemenu{margin:-30px 15px 0 315px;list-style:none;position:relative;float:right;padding-left:10px;font-size:12px}#sidemenu a{padding:0 7px;display:block;float:left;line-height:28px;border-top-width:1px;border-top-style:solid;border-bottom-width:1px;border-bottom-style:solid}#sidemenu a.current{font-weight:normal;padding-left:6px;padding-right:6px;border-top-left-radius:3px;border-top-right-radius:3px;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-width:1px;border-style:solid}#sidemenu li{display:inline;line-height:200%;list-style:none;text-align:center;white-space:nowrap;margin:0;padding:0}#sidemenu li a .count-0{display:none}.plugin-install #description,.plugin-install-network #description{width:60%}table .vers,table .column-visible,table .column-rating{text-align:left}.error-message{color:red;font-weight:bold}body.iframe{height:98%}td.media-icon{text-align:center;width:80px;padding-top:8px;padding-bottom:8px}td.media-icon img{max-width:80px;max-height:60px}#howto{font-size:11px;margin:0 5px;display:block}.importers{font-size:16px;width:auto}.importers td{padding-right:14px}#namediv table{width:100%}#namediv td.first{width:10px;white-space:nowrap}#namediv input{width:98%}#namediv p{margin:10px 0}#submitdiv h3{margin-bottom:0!important}.zerosize{height:0;width:0;margin:0;border:0;padding:0;overflow:hidden;position:absolute}br.clear{height:2px;line-height:2px}.checkbox{border:0;margin:0;padding:0}fieldset{border:0;padding:0;margin:0}.post-categories{display:inline;margin:0;padding:0}.post-categories li{display:inline}#dashboard_right_now p.musub{margin-top:12px;border-top:1px solid #ececec;padding-left:16px;position:static}.rtl #dashboard_right_now p.musub{padding-left:0;padding-right:16px}#dashboard_right_now td.b a.musublink{font-size:16px}#dashboard_right_now div.musubtable{border-top:0}#dashboard_right_now div.musubtable .t{white-space:normal}.wp-list-table .site-deleted{background:#ff8573}.wp-list-table .site-spammed{background:#faafaa}.wp-list-table .site-archived{background:#ffebe8}.wp-list-table .site-mature{background:#fecac2}div.star-holder{position:relative;height:17px;width:100px;background:url('../images/stars.png?ver=20121108') repeat-x bottom left}div.star-holder .star-rating{background:url('../images/stars.png?ver=20121108') repeat-x top left;height:17px;float:left}div.action-links{font-weight:normal;margin:6px 0 0}#plugin-information-header{margin:0;padding:0 5px;font-weight:bold;position:relative;border-bottom-width:1px;border-bottom-style:solid;height:2.5em}#plugin-information ul#sidemenu{font-weight:normal;margin:0 5px;position:absolute;left:0;bottom:-1px}#plugin-information p.action-button{width:100%;padding-bottom:0;margin-bottom:0;margin-top:10px;border-top-left-radius:3px;border-bottom-left-radius:3px;-moz-border-top-left-radius:3px;-moz-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px}#plugin-information .action-button a{text-align:center;font-weight:bold;text-decoration:none;display:block;line-height:2em}#plugin-information h2{clear:none!important;margin-right:200px}#plugin-information .fyi{margin:0 10px 50px;width:210px}#plugin-information .fyi h2{font-size:.9em;margin-bottom:0;margin-right:0}#plugin-information .fyi h2.mainheader{padding:5px;-moz-border-top-left-radius:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px}#plugin-information .fyi ul{padding:10px 5px 10px 7px;margin:0;list-style:none;-moz-border-bottom-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}#plugin-information .fyi li{margin-right:0}#plugin-information #section-holder{padding:10px}#plugin-information .section ul,#plugin-information .section ol{margin-left:16px;list-style-type:square;list-style-image:none}#plugin-information #section-screenshots ol{list-style:none;margin:0}#plugin-information #section-screenshots li img{vertical-align:text-top;max-width:100%;width:auto;height:auto}#plugin-information #section-screenshots li p{font-style:italic;padding-left:20px;padding-bottom:2em}#plugin-information #section-screenshots ol,#plugin-information .updated,#plugin-information pre{margin-right:215px}#plugin-information pre{padding:7px;overflow:auto}#poststuff #editor-toolbar{height:30px}div.zerosize{border:0 none;height:0;margin:0;overflow:hidden;padding:0;width:0}.posting{margin-right:212px;position:relative}h3.tb{text-shadow:0 1px 0 #fff;font-size:12px;font-weight:bold;line-height:normal;margin-left:5px}#TB_window{border:1px solid #333}.js .postbox:hover .handlediv,.js .stuffbox:hover .handlediv{background:transparent url(../images/arrows.png) no-repeat 6px 7px}.press-this #submitdiv:hover .handlediv{background:0}.tbtitle{font-size:1.7em;outline:0;padding:3px 4px;border-color:#dfdfdf}#extra-fields .button{margin-right:5px}#photo_saving{margin:0 8px 8px;vertical-align:middle}#img_container_container{overflow:auto}#extra-fields{margin-top:10px;position:relative}#extra-fields h2{margin:12px}#waiting{margin-top:10px;overflow:hidden}#waiting span{float:right;margin:0 0 0 5px}#waiting .spinner{display:block}#extra-fields .postbox{margin-bottom:5px}#extra-fields .titlewrap{padding:0;overflow:auto;height:100px}#img_container a{display:block;float:left;overflow:hidden}#img_container img,#img_container a{width:68px;height:68px}#img_container img{border:0;background-color:#f4f4f4;cursor:pointer}#img_container a,#img_container a:link,#img_container a:visited{border:1px solid #ccc;display:block;position:relative}#img_container a:hover,#img_container a:active{border-color:black;z-index:1000;border-width:2px;margin:-1px}#embed-code{width:100%;height:98px}#TB_ajaxContent #options{position:absolute;top:20px;right:25px;padding:5px}#TB_ajaxContent h3{margin-bottom:.25em}.error a{text-decoration:underline}.updated a{text-decoration:none;padding-bottom:2px}.taghint{color:#aaa;margin:-17px 0 0 7px;visibility:hidden}input.newtag ~ div.taghint{visibility:visible}input.newtag:focus ~ div.taghint{visibility:hidden}#mce_fullscreen_container{background:#fff}#photo-add-url-div input[type="text"]{width:300px}.alignleft h3{margin:0}h3 span{font-weight:normal}#template textarea{font-family:Consolas,Monaco,monospace;font-size:12px;width:97%;background:#f9f9f9;outline:0}#template p{width:97%}#templateside{float:right;width:190px;word-wrap:break-word}#templateside h3,#postcustomstuff p.submit{margin:0}#templateside h4{margin:1em 0 0}#templateside ol,#templateside ul{margin:.5em;padding:0}#templateside li{margin:4px 0}#templateside ul li a span.highlight{display:block}.nonessential{font-size:11px;font-style:italic;padding-left:12px}.highlight{padding:3px 3px 3px 12px;margin-left:-12px;font-weight:bold;border:0 none}#documentation{margin-top:10px}#documentation label{line-height:22px;vertical-align:top;font-weight:bold}.fileedit-sub{padding:10px 0 8px;line-height:180%}#filter-box{clear:both}.feature-filter{padding:8px 12px 0}.feature-filter .feature-group{float:left;margin:5px 10px 10px}.feature-filter .feature-group li{display:inline-block;vertical-align:top;list-style-type:none;padding-right:25px;width:150px}.feature-container{width:100%;overflow:auto;margin-bottom:10px}.ui-sortable,.ui-draggable{-ms-touch-action:none}.login *{margin:0;padding:0}.login h1 a{background-image:url('../images/wordpress-logo.png?ver=20120216');background-size:274px 63px;background-position:top center;background-repeat:no-repeat;width:326px;height:67px;text-indent:-9999px;outline:0;overflow:hidden;padding-bottom:15px;display:block}.login form{margin-left:8px;padding:26px 24px 46px;font-weight:normal;background:#fff;border:1px solid #e5e5e5;-webkit-box-shadow:rgba(200,200,200,0.7) 0 4px 10px -1px;box-shadow:rgba(200,200,200,0.7) 0 4px 10px -1px}.login form .forgetmenot{float:left;margin-bottom:0}.login form .forgetmenot label{font-size:12px;font-weight:normal;line-height:19px}.login .button-primary{float:right}.login label{color:#777;font-size:14px}.login #nav,.login #backtoblog{text-shadow:#fff 0 1px 0;margin:0 0 0 16px;padding:16px 16px 0}.login form .input,.login input[type="text"]{color:#555;font-weight:200;font-size:24px;line-height:1;width:100%;padding:3px;margin-top:2px;margin-right:6px;margin-bottom:16px;border:1px solid #e5e5e5;background:#fbfbfb;outline:0;-webkit-box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2);box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2)}.login #pass-strength-result{width:250px;font-weight:bold;border-style:solid;border-width:1px;margin:12px 0 6px;padding:6px 5px;text-align:center}#login{width:320px;padding:114px 0 0;margin:auto}#login form p{margin-bottom:0}#login form p.submit{padding:0}#login_error,.login .message{margin:0 0 16px 8px;padding:12px}#backtoblog{padding:12px 16px 0}.mobile #login{padding:20px 0}.mobile #login #nav,.mobile #login #backtoblog{margin-left:8px}.mobile #login h1 a{width:auto}.mobile #login form,.mobile #login .message,.mobile #login_error{margin-left:0}body.interim-login{height:auto}.interim-login #login{padding:0;margin:5px auto 20px}.interim-login.login h1 a{width:auto}.interim-login #login_error,.interim-login.login .message{margin:0 0 16px}.interim-login.login form{margin:0}.pressthis{margin:20px 0}.pressthis a,.pressthis a:hover,.pressthis a:focus,.pressthis a:active{display:inline-block;position:relative;cursor:move;color:#333;background:#d8d8d8;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(7%,#e6e6e6),color-stop(77%,#d8d8d8));background-image:-webkit-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-moz-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-o-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:linear-gradient(to top,#e6e6e6 7%,#d8d8d8);border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;border:1px solid #b4b4b4;font-style:normal;line-height:16px;font-size:14px;text-decoration:none;text-shadow:0 1px 0 #fff}.pressthis a:active{outline:0}.pressthis a:hover:after{-webkit-transform:skew(20deg) rotate(9deg);-moz-transform:skew(20deg) rotate(9deg);transform:skew(20deg) rotate(9deg);-moz-box-shadow:0 10px 8px rgba(0,0,0,0.7);-webkit-box-shadow:0 10px 8px rgba(0,0,0,0.7);box-shadow:0 10px 8px rgba(0,0,0,0.7)}.pressthis a span{background:url(../images/press-this.png?v=20120502) no-repeat 0 5px;background-size:24px 20px;padding:8px 11px 8px 27px;margin:0 5px;display:inline-block}.pressthis a:after{content:'';width:70%;height:55%;z-index:-1;position:absolute;right:10px;bottom:9px;background:transparent;-webkit-transform:skew(20deg) rotate(6deg);-moz-transform:skew(20deg) rotate(6deg);transform:skew(20deg) rotate(6deg);-webkit-box-shadow:0 10px 8px rgba(0,0,0,0.6);box-shadow:0 10px 8px rgba(0,0,0,0.6)}.pressthis #wphead{height:32px;margin-left:0;margin-right:0;margin-bottom:5px}.pressthis #wphead h1{font-size:16px;font-weight:normal;line-height:32px;margin:0;float:left}.pressthis #wphead h1 a{text-decoration:none}.pressthis #wphead h1 a:hover{text-decoration:underline}.pressthis #header-logo{float:left;margin:7px 7px 0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.pressthis #message{margin:10px 0}.pressthis #title{margin-left:0;margin-right:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.pressthis .tagchecklist span a{background:transparent url(../images/xit.gif) no-repeat 0 0}.pressthis #titlediv{margin:0}.pressthis .wp-media-buttons{cursor:default;padding:8px 8px 0}.pressthis .howto{margin-top:2px;margin-bottom:3px;font-size:12px;font-style:italic;display:block}.pressthis #poststuff{margin:0 10px 10px;padding:0}.pressthis #photo-add-url-div input[type="text"]{width:220px}.pressthis .inner-sidebar{width:200px}.pressthis .inner-sidebar .sleeve{padding-top:5px}.pressthis #submitdiv p{margin:0;padding:6px}.pressthis #submitdiv #publishing-actions{border-bottom:1px solid #dfdfdf}.pressthis #publish{float:right}.pressthis #poststuff h2,.pressthis #poststuff h3{font-size:14px;line-height:1}.pressthis #tagsdiv-post_tag h3,.pressthis #categorydiv h3{cursor:pointer}.pressthis #submitdiv h3{cursor:default}.pressthis .postbox,.pressthis .stuffbox{margin-bottom:10px;min-width:0}.pressthis .actions{float:right;margin:-19px 0 0}#extra-fields .pressthis .actions{margin:-32px -7px 0 0}.pressthis .actions li{float:left;list-style:none;margin-right:10px}.pressthis .categorydiv div.tabs-panel{height:100px}.pressthis .tagsdiv .newtag{width:120px}.pressthis #content{margin:5px 0;padding:0 5px;border:0 none;height:345px;font-family:Consolas,Monaco,monospace;font-size:13px;line-height:19px;background:transparent}.pressthis #publishing-actions .spinner{display:inline;vertical-align:middle}body.press-this{color:#333;margin:0;padding:0;min-width:675px;min-height:400px}.press-this-sidebar{float:right;width:200px;padding-top:10px}.no-js #message{display:block}#nav-menu-meta ul.outer-border{border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.accordion-section ul.category-tabs,.accordion-section ul.add-menu-item-tabs,.accordion-section ul.wp-tab-bar{margin:0}.accordion-section .categorychecklist{margin:13px 0}#nav-menu-meta .accordion-section-content{padding:18px 13px}#nav-menu-meta .button-controls{margin-bottom:0}#nav-menus-frame{margin-left:300px;margin-top:23px}#wpbody-content #menu-settings-column{display:inline;width:281px;margin-left:-300px;clear:both;float:left;padding-top:0}#menu-settings-column .inside{clear:both;margin:10px 0 0}.metabox-holder-disabled .postbox,.metabox-holder-disabled .accordion-section-content{opacity:.5;filter:alpha(opacity=50)}.metabox-holder-disabled .button-controls .select-all{display:none}#wpbody{position:relative}.blank-slate .menu-name{height:2em}.blank-slate .menu-settings{border:0;margin-top:0;padding-top:0;overflow:hidden}.is-submenu{font-style:italic;font-weight:normal;margin-left:4px}.manage-menus{margin-top:23px;padding:10px;overflow:hidden;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.manage-menus select{float:left;margin-right:6px}.manage-menus .selected-menu{float:left;margin:5px 6px 0 0}.manage-menus .submit-btn{float:left;margin-top:1px}.menu-edit p{margin:.3em 0 .6em}.menu-edit #post-body-content h3{margin:0 0 10px}.menu-edit .checkbox-input{margin-top:4px}.menu-settings{margin-top:2em;overflow:hidden}.menu-settings dl{margin:0 0 10px;overflow:hidden;position:relative}.menu-settings dd{float:left;margin:0;width:60%}.theme-location-set{font-size:11px}#menu-management-liquid{float:left;min-width:100%;margin-top:3px}#menu-management{position:relative;margin-right:20px;margin-top:-3px;width:100%}#menu-management .menu-edit{margin-bottom:20px}.nav-menus-php #post-body{padding:0 10px 10px;border-width:1px 0;border-style:solid}#nav-menu-header,#nav-menu-footer{padding:0 10px}#nav-menu-header{border-bottom:1px solid;margin-bottom:13px}#nav-menu-header .menu-name-label{margin-top:2px}#nav-menu-footer{border-top:1px solid}.nav-menus-php #post-body div.updated,.nav-menus-php #post-body div.error{margin:0}.nav-menus-php #post-body-content{position:relative;float:none}#menu-management .menu-add-new abbr{font-weight:bold}#select-nav-menu-container{text-align:right;padding:0 10px 3px 10px;margin-bottom:5px}#select-nav-menu{width:100px;display:inline}#menu-name-label{margin-top:-2px}.widefat td.menu-location-menus{padding-bottom:5px}.menu-location-menus select{float:left}#locations-nav-menu-wrapper{padding:5px 0}.locations-nav-menu-select select{float:left;width:160px;margin-right:5px}.locations-row-links{float:left;margin:6px 0 0 6px}.locations-edit-menu-link,.locations-add-menu-link{margin:0 3px}.locations-edit-menu-link{padding-right:3px;border-right:1px solid #ccc}#wpbody .open-label{display:block;float:left}#wpbody .open-label span{padding-right:10px}.js .input-with-default-title{font-style:italic}#menu-management .inside{padding:0 10px}.postbox .howto input,.accordion-container .howto input{width:180px;float:right}.accordion-container .outer-border{margin:0}#nav-menu-meta .accordion-container .top{border-top:1px solid #dfdfdf}#nav-menu-meta .accordion-container .accordion-section:first-child,#nav-menu-meta .accordion-container .accordion-section:first-child h3,#nav-menu-meta .accordion-container .top,#nav-menu-meta .accordion-container .top h3{border-top-left-radius:3px;border-top-right-radius:3px;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px}#nav-menu-meta .accordion-container .accordion-section:last-child,#nav-menu-meta .accordion-container .accordion-section:last-child .accordion-section-content,#nav-menu-meta .accordion-container .bottom,#nav-menu-meta .accordion-container .bottom:not(.open) h3{border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}.customlinkdiv .howto input{width:180px}.customlinkdiv p{margin-top:0}#nav-menu-theme-locations .howto select{width:100%}#nav-menu-theme-locations .button-controls{text-align:right}.add-menu-item-view-all{height:400px}#menu-container .submit{margin:0 0 10px;padding:0}.nav-menus-php .add-new-menu-action{float:left;margin:6px 0 0 6px;line-height:15px}.nav-menus-php .meta-sep,.nav-menus-php .submitdelete,.nav-menus-php .submitcancel{display:block;float:left;margin:4px 0;line-height:15px}.meta-sep{padding:0 2px}#cancel-save{text-decoration:underline;font-size:12px;margin-left:20px;margin-top:5px}.button.right,.button-secondary.right,.button-primary.right{float:right}.list-controls{float:left;margin-top:5px}.add-to-menu{float:right}#menu-name{width:270px}#manage-menu .inside{padding:0}#available-links dt{display:block}#add-custom-link .howto{font-size:12px}#add-custom-link label span{display:block;float:left;margin-top:5px;padding-right:5px}.menu-item-textbox{width:180px}.nav-menus-php .howto span{margin-top:4px;display:block;float:left}.quick-search{width:190px}.nav-menus-php .list-wrap{display:none;clear:both;margin-bottom:10px}.nav-menus-php .list-container{max-height:200px;overflow-y:auto;padding:10px 10px 5px}.nav-menus-php .postbox p.submit{margin-bottom:0}.nav-menus-php .list li{display:none;margin:0;margin-bottom:5px}.nav-menus-php .list li .menu-item-title{cursor:pointer;display:block}.nav-menus-php .list li .menu-item-title input{margin-right:3px;margin-top:-3px}#menu-container .inside{padding-bottom:10px}.menu{padding-top:1em}.menu ul{width:100%}.menu li{margin-bottom:0;position:relative}#menu-to-edit{margin:0;padding:.1em 0}.menu-item-bar{clear:both;line-height:1.5em;position:relative;margin:9px 0 0}.menu-item-handle{border:1px solid #dfdfdf;position:relative;padding-left:10px;height:auto;width:400px;line-height:35px;text-shadow:0 1px 0 #fff;overflow:hidden;word-wrap:break-word}#menu-to-edit .menu-item-invalid .menu-item-handle{background:#fdf8ff;background-image:-webkit-gradient(linear,left bottom,left top,from(#f6c9cc),to(#fdf8ff));background-image:-webkit-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-moz-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-o-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:linear-gradient(to top,#f6c9cc,#fdf8ff)}.menu-item-edit-active .menu-item-handle{border-bottom-left-radius:0;border-bottom-right-radius:0;-moz-border-bottom-left-radius:0;-moz-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0}.no-js .menu-item-edit-active .item-edit{display:none}.js .menu-item-handle{cursor:move}.menu li.deleting .menu-item-handle{background-image:none;text-shadow:0}.menu-item-handle .item-title{font-size:12px;font-weight:bold;padding:7px 0;line-height:20px;display:block;margin-right:13em}li.menu-item.ui-sortable-helper dl{margin-top:0}li.menu-item.ui-sortable-helper .menu-item-transport dl{margin-top:13px}.menu .sortable-placeholder{height:35px;width:410px;margin-top:13px}.menu-item-depth-0{margin-left:0}.menu-item-depth-1{margin-left:30px}.menu-item-depth-2{margin-left:60px}.menu-item-depth-3{margin-left:90px}.menu-item-depth-4{margin-left:120px}.menu-item-depth-5{margin-left:150px}.menu-item-depth-6{margin-left:180px}.menu-item-depth-7{margin-left:210px}.menu-item-depth-8{margin-left:240px}.menu-item-depth-9{margin-left:270px}.menu-item-depth-10{margin-left:300px}.menu-item-depth-11{margin-left:330px}.menu-item-depth-0 .menu-item-transport{margin-left:0}.menu-item-depth-1 .menu-item-transport{margin-left:-30px}.menu-item-depth-2 .menu-item-transport{margin-left:-60px}.menu-item-depth-3 .menu-item-transport{margin-left:-90px}.menu-item-depth-4 .menu-item-transport{margin-left:-120px}.menu-item-depth-5 .menu-item-transport{margin-left:-150px}.menu-item-depth-6 .menu-item-transport{margin-left:-180px}.menu-item-depth-7 .menu-item-transport{margin-left:-210px}.menu-item-depth-8 .menu-item-transport{margin-left:-240px}.menu-item-depth-9 .menu-item-transport{margin-left:-270px}.menu-item-depth-10 .menu-item-transport{margin-left:-300px}.menu-item-depth-11 .menu-item-transport{margin-left:-330px}body.menu-max-depth-0{min-width:950px!important}body.menu-max-depth-1{min-width:980px!important}body.menu-max-depth-2{min-width:1010px!important}body.menu-max-depth-3{min-width:1040px!important}body.menu-max-depth-4{min-width:1070px!important}body.menu-max-depth-5{min-width:1100px!important}body.menu-max-depth-6{min-width:1130px!important}body.menu-max-depth-7{min-width:1160px!important}body.menu-max-depth-8{min-width:1190px!important}body.menu-max-depth-9{min-width:1220px!important}body.menu-max-depth-10{min-width:1250px!important}body.menu-max-depth-11{min-width:1280px!important}.item-type{font-size:12px;padding-right:10px}.item-controls{font-size:12px;position:absolute;right:20px;top:-1px}.item-controls a{text-decoration:none}.item-controls a:hover{cursor:pointer}.item-controls .item-order{padding-right:10px}.nav-menus-php .item-edit{position:absolute;right:-20px;top:0;display:block;width:30px;height:36px;overflow:hidden;text-indent:-999em;border-bottom:1px solid;-moz-border-bottom-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.menu-instructions-inactive{display:none}.menu-item-settings{display:block;width:400px;padding:10px 0 10px 10px;border:solid;border-width:0 1px 1px 1px;border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}.menu-item-settings .field-move a{display:none;margin:0 2px}.menu-item-edit-active .menu-item-settings{display:block}.menu-item-edit-inactive .menu-item-settings{display:none}.menu-item-settings .description-thin,.menu-item-settings .description-wide{margin-right:10px;float:left}.add-menu-item-pagelinks{margin:.5em auto;text-align:center}.link-to-original{display:block;margin:0 0 10px;padding:3px 5px 5px;font-size:12px;font-style:italic}.link-to-original a{padding-left:4px;font-style:normal}.hidden-field{display:none}.description-thin{width:190px;height:40px}.description-wide{width:390px}.menu-item-actions{padding-top:15px}#cancel-save{cursor:pointer}.nav-menus-php .major-publishing-actions{clear:both;padding:3px 0 5px}.nav-menus-php .major-publishing-actions .publishing-action{text-align:right;float:right;line-height:23px;margin:2px 0 1px}.nav-menus-php .major-publishing-actions .form-invalid{padding-left:4px;margin-left:-4px;border:0 none}.nav-menus-php .blank-slate .menu-settings{display:none}.nav-menus-php .delete-action{float:left;margin-top:2px}.nav-menus-php .submitbox .submitcancel{border-bottom:1px solid;padding:1px 2px;text-decoration:none}#menu-item-name-wrap:after,#menu-item-url-wrap:after,#menu-name-label:after,#menu-settings-column .inside:after,#nav-menus-frame:after,.nav-menus-php #post-body-content:after,.nav-menus-php .button-controls:after,.nav-menus-php .major-publishing-actions:after,.nav-menus-php .menu-item-settings:after{clear:both;content:".";display:block;height:0;visibility:hidden}#nav-menus-frame,.button-controls,#menu-item-url-wrap,#menu-item-name-wrap{display:block}div.widget-liquid-left{float:left;clear:left;width:100%;margin-right:-325px}div#widgets-left{margin-left:5px;margin-right:325px}div#widgets-right{width:285px;margin:0 auto}div.widget-liquid-right{float:right;clear:right;width:300px}.widget-liquid-right .widget,.inactive-sidebar .widget,.widget-liquid-right .sidebar-description{width:250px;margin:0 auto 20px;overflow:hidden}.widget-liquid-right .sidebar-description{margin-bottom:10px}.inactive-sidebar .widget{margin:0 10px 20px;display:inline-block}div.sidebar-name{font-size:13px;border-width:1px;border-style:solid;border-top-left-radius:3px;border-top-right-radius:3px;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px}div.sidebar-name h3{font-weight:normal;font-size:15px;margin:0;padding:8px 10px;overflow:hidden;white-space:nowrap}.js .sidebar-name{cursor:pointer}.js .closed .sidebar-name{border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}.widget-liquid-right .widgets-sortables,#widgets-left .widget-holder{border-width:0 1px 1px;border-style:none solid solid;border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}.js .closed .widgets-sortables,.js .closed .widget-holder{display:none}.widget-liquid-right .widgets-sortables{padding:15px 0 0}#available-widgets .widget-holder{padding:7px 5px 0}#available-widgets .widget{-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.inactive-sidebar{padding:5px 5px 0}#widget-list .widget{width:250px;margin:0 10px 15px;border:0 none;background:transparent;display:inline-block;vertical-align:top}#widget-list .widget-description{padding:5px 8px}.widget-placeholder{border-width:1px;border-style:dashed;margin:0 auto 20px;height:27px;width:250px}.inactive-sidebar .widget-placeholder{margin:0 10px 20px;float:left}div.widgets-holder-wrap{padding:0;margin:10px 0 20px}#widgets-left #available-widgets{background-color:transparent;border:0 none}ul#widget-list{list-style:none;margin:0;padding:0;min-height:100px}.widget .widget-top{margin-bottom:-1px;font-size:12px;font-weight:bold;line-height:26px;overflow:hidden}a.widget-action{display:block;width:24px;height:26px}#available-widgets a.widget-action{display:none}.widget-top .widget-title{padding:7px 9px}.widget-top .widget-title-action{float:right}.widget-top a.widget-action{background:transparent url(../images/arrows.png) no-repeat 4px 6px}.widget-top a.widget-action:hover{background:transparent url(../images/arrows-dark.png) no-repeat 4px 6px}.widget .widget-inside,.widget .widget-description{padding:12px 12px 10px;font-size:12px;line-height:16px}.widget-inside,.widget-description{display:none}#available-widgets .widget-description{display:block}.widget .widget-inside p{margin:0 0 1em;padding:0}.widget-title h4{margin:0;padding-bottom:.2em;line-height:1;overflow:hidden;white-space:nowrap}.widgets-sortables{min-height:90px}.widget-control-actions{margin-top:8px}.widget-control-actions a{text-decoration:none}.widget-control-actions a:hover{text-decoration:underline}.widget-control-actions div.alignleft{margin-top:6px}div#sidebar-info{padding:0 1em;margin-bottom:1em;font-size:12px}.widget-title a,.widget-title a:hover{text-decoration:none;border-bottom:0}.widget-control-edit{display:block;font-size:12px;font-weight:normal;line-height:26px;padding:0 8px 0 0}.widget-control-edit .add,.widget-control-edit .edit{display:none}a.widget-control-edit{text-decoration:none}#available-widgets .widget-control-edit .add,#widgets-right .widget-control-edit .edit,.inactive-sidebar .widget-control-edit .edit{display:inline}.editwidget{margin:0 auto 15px}.editwidget .widget-inside{display:block;padding:10px}.inactive p.description{margin:5px 15px 10px}#available-widgets p.description{margin:0 12px 12px}.widget-position{margin-top:8px}.inactive{padding-top:2px}.sidebar-name .spinner{float:none;margin:0 3px -3px}.sidebar-name-arrow{float:right;height:29px;width:26px}.widget-title .in-widget-title{font-size:12px;white-space:nowrap}#removing-widget{display:none;padding-left:15px;font-size:12px;font-weight:normal;line-height:1}.widget-control-noform,#access-off,.widgets_access .widget-action,.widgets_access .sidebar-name-arrow,.widgets_access #access-on,.widgets_access .widget-holder .description{display:none}.widgets_access .widget-holder,.widgets_access #widget-list{padding-top:10px}.widgets_access #access-off{display:inline}.widgets_access #wpbody-content .widget-title-action,.widgets_access #wpbody-content .widget-control-edit,.widgets_access .closed .widgets-sortables,.widgets_access .closed .widget-holder{display:block}.widgets_access .closed .sidebar-name{border-bottom-left-radius:0;border-bottom-right-radius:0;-moz-border-bottom-left-radius:0;-moz-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0}.widgets_access .sidebar-name,.widgets_access .widget .widget-top{cursor:default}.accordion-section{border-top:1px solid #fff;border-bottom:1px solid #dfdfdf;margin:0}.accordion-section:first-child{border-top:1px solid #dfdfdf}.accordion-section:last-child{box-shadow:0 1px 0 0 #fff}.accordion-section.open .accordion-section-content,.no-js .accordion-section .accordion-section-content{display:block}.accordion-section.open:hover{border-bottom-color:#dfdfdf}.accordion-section-content{display:none;padding:10px 20px 15px;overflow:hidden;background:#fdfdfd;border-left:1px solid #dfdfdf;border-right:1px solid #dfdfdf}.accordion-section-title{margin:0;padding:15px 20px;position:relative;border-left:1px solid #dfdfdf;border-right:1px solid #dfdfdf;-webkit-user-select:none;-moz-user-select:none;user-select:none}.js .accordion-section-title{cursor:pointer}.js .accordion-section-title:after{content:'';width:0;height:0;border-color:#ccc transparent;border-style:solid;border-width:6px 6px 0;position:absolute;top:25px;right:20px;z-index:1}.accordion-section-title:focus{outline:0}.accordion-section-title:hover:after,.accordion-section-title:focus:after{border-color:#aaa transparent}.cannot-expand .accordion-section-title{cursor:auto}.cannot-expand .accordion-section-title:after{display:none}.control-section .accordion-section-title{padding:10px 20px;color:#464646;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:15px;font-weight:normal;line-height:1;text-shadow:0 1px 0 #fff;background:#f5f5f5;background-image:-webkit-gradient(linear,left bottom,left top,from(#eee),to(#f5f5f5));background-image:-webkit-linear-gradient(bottom,#eee,#f5f5f5);background-image:-moz-linear-gradient(bottom,#eee,#f5f5f5);background-image:-o-linear-gradient(bottom,#eee,#f5f5f5);background-image:linear-gradient(to top,#eee,#f5f5f5)}.control-section .accordion-section-title:after{top:15px}.js .control-section:hover .accordion-section-title,.js .control-section .accordion-section-title:hover,.js .control-section.open .accordion-section-title,.js .control-section .accordion-section-title:focus{color:black;background:#f9f9f9;background-image:-webkit-gradient(linear,left bottom,left top,from(#ececec),to(#f9f9f9));background-image:-webkit-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-moz-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-o-linear-gradient(bottom,#ececec,#f9f9f9);background-image:linear-gradient(to top,#ececec,#f9f9f9)}.control-section.open .accordion-section-title{border-bottom:1px solid #dfdfdf}@media only screen and (max-width:768px){#col-left{width:100%}#col-right{width:100%}}@media only screen and (min-width:769px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:860px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (min-width:980px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:768px){#col-left{width:100%}#col-right{width:100%}.form-field input,.form-field textarea{width:99%}.form-wrap .form-field{padding:0}#profile-page .form-table textarea{max-width:400px;width:auto}}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.press-this .tagchecklist span a{background-image:url('../images/xit-2x.gif');background-size:20px auto}.js .postbox:hover .handlediv,.js .stuffbox:hover .handlediv,.widget-top a.widget-action{background-image:url('../images/arrows-2x.png');background-size:15px 123px}.widget-top a.widget-action:hover{background-image:url('../images/arrows-dark-2x.png');background-size:15px 123px}.post-com-count{background-image:url('../images/bubble_bg-2x.gif');background-size:18px 100px}tr.wp-locked .locked-indicator{background-image:url('../images/lock-2x.png');background-size:16px 16px}th .comment-grey-bubble{background-image:url('../images/comment-grey-bubble-2x.png');background-size:12px 12px}.sorting-indicator{background-image:url('../images/sort-2x.gif?ver=20130102');background-size:14px 4px}#content-resize-handle,#post-body .wp_themeSkin .mceStatusbar a.mceResize{background:transparent url('../images/resize-2x.gif') no-repeat scroll right bottom;background-size:11px 11px}div.star-holder{background:url('../images/stars-2x.png?ver=20121108') repeat-x bottom left;background-size:21px 37px}div.star-holder .star-rating{background:url('../images/stars-2x.png?ver=20121108') repeat-x top left;background-size:21px 37px}.welcome-panel .welcome-panel-close:before{background-image:url('../images/xit-2x.gif');background-size:20px auto}.welcome-panel .welcome-icon{background-image:url('../images/welcome-icons-2x.png')}.login h1 a{background-image:url('../images/wordpress-logo-2x.png?ver=20120412');background-size:274px 63px}.wp-badge{background-image:url('../images/wp-badge-2x.png?ver=20120516');background-size:173px 194px}.wp-full-overlay .collapse-sidebar-arrow{background-image:url('../images/arrows-2x.png');background-size:15px 123px}.pressthis a span{background-image:url(../images/press-this-2x.png?v=20121105)}.imgedit-crop,.imgedit-rleft,.imgedit-rright,.imgedit-flipv,.imgedit-fliph,.imgedit-undo,.imgedit-redo{background-image:url('../images/imgedit-icons-2x.png');background-size:260px 64px}.spinner,.imgedit-wait,.customize-loading #customize-container{background-image:url(../images/wpspin_light-2x.gif)}.wp-slider .ui-slider-handle:before{background-image:url(../images/arrows-pr-2x.png);background-size:16px 102px}}.locale-zh-cn .howto,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn #utc-time,.locale-zh-cn #local-time,.locale-zh-cn p.install-help,.locale-zh-cn p.help,.locale-zh-cn p.description,.locale-zh-cn span.description,.locale-zh-cn .form-wrap p{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #wp-fullscreen-tagline{font-family:KaiTi,"楷体",sans-serif}.locale-zh-cn #wp-fullscreen-modes a{font-size:12px}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-ru-ru .inline-edit-row fieldset label span.title{width:auto;min-width:5em}.locale-ru-ru.press-this .posting{margin-right:257px}.locale-ru-ru.press-this #photo-add-url-div input[type="text"]{width:255px}.locale-ru-ru.press-this #side-sortables{width:245px}.locale-ru-ru #customize-header-actions .button{padding:0 8px 1px}.locale-lt-lt .inline-edit-row fieldset label span.title{width:8em}.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em} 2 No newline at end of file