Ticket #22862: 22862-sass.diff
File 22862-sass.diff, 718.8 KB (added by , 12 years ago) |
---|
-
new file wp-admin/css/scss/mixins.scss
diff --git a/wp-admin/css/scss/mixins.scss b/wp-admin/css/scss/mixins.scss new file mode 100644 index 0000000..61b6ab3
- + 1 @mixin linear-gradient-precise($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 @mixin 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 @mixin rounded($radius: 3px) { 20 border-radius: $radius; 21 -moz-border-radius: $radius; 22 -webkit-border-radius: $radius; 23 } 24 25 @mixin 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 @mixin 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 @mixin 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 @mixin 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 @mixin 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 @mixin 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 @mixin no-box-shadows { 83 -moz-box-shadow: none; 84 -webkit-box-shadow: none; 85 box-shadow: none; 86 } 87 88 @mixin no-user-select { 89 -webkit-user-select: none; 90 -moz-user-select: none; 91 user-select: none; 92 } 93 94 @mixin serif-font { 95 font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; 96 } 97 98 @mixin sans-serif-font { 99 font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif; 100 } 101 102 @mixin normal-font($size: 12px, $height: 1) { 103 font-size: $size; 104 font-weight: normal; 105 line-height: $height; 106 } 107 108 @mixin bold-font($size: 12px, $height: normal) { 109 font-size: $size; 110 font-weight: bold; 111 line-height: $height; 112 } 113 114 @mixin about-font ($size: 20px) { 115 @include sans-serif-font(); 116 @include normal-font($size, 1.6em); 117 } 118 No newline at end of file -
new file wp-admin/css/scss/modules/about.scss
diff --git a/wp-admin/css/scss/modules/about.scss b/wp-admin/css/scss/modules/about.scss new file mode 100644 index 0000000..9faa40a
- + 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 @include 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 @include 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 @include 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 @include 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 @include about-font; 312 margin-top: 1.4em; 313 } 314 315 .about-text { 316 @include 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/scss/modules/accordion.scss
diff --git a/wp-admin/css/scss/modules/accordion.scss b/wp-admin/css/scss/modules/accordion.scss new file mode 100644 index 0000000..bd95492
- + 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 @include 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 @include serif-font(); 82 @include normal-font(15px); 83 text-shadow: 0 1px 0 #fff; 84 @include 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 @include 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/scss/modules/actions.scss
diff --git a/wp-admin/css/scss/modules/actions.scss b/wp-admin/css/scss/modules/actions.scss 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/scss/modules/categories.scss
diff --git a/wp-admin/css/scss/modules/categories.scss b/wp-admin/css/scss/modules/categories.scss new file mode 100644 index 0000000..7c3c5cc
- + 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 @include 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/scss/modules/comments.scss
diff --git a/wp-admin/css/scss/modules/comments.scss b/wp-admin/css/scss/modules/comments.scss new file mode 100644 index 0000000..896d7dd
- + 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 @include 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/scss/modules/customize.scss
diff --git a/wp-admin/css/scss/modules/customize.scss b/wp-admin/css/scss/modules/customize.scss 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/scss/modules/dashboard.scss
diff --git a/wp-admin/css/scss/modules/dashboard.scss b/wp-admin/css/scss/modules/dashboard.scss new file mode 100644 index 0000000..1dec3e0
- + 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 @include rounded(3px); 34 font-size: 13px; 35 line-height: 2.1em; 36 37 h3 { 38 margin: 0; 39 @include sans-serif-font(); 40 @include 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 @include 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 @include 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 @include 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 @include no-box-shadows(); 650 651 h3 { 652 border-bottom-color: #f6e2ac; 653 text-shadow: none; 654 background: transparent none; 655 color: white; 656 @include 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/scss/modules/edit-post.scss
diff --git a/wp-admin/css/scss/modules/edit-post.scss b/wp-admin/css/scss/modules/edit-post.scss new file mode 100644 index 0000000..d6fc95a
- + 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 @include 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 @include 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 @include border-box(); 605 606 & > div { 607 position: absolute; 608 height: 100%; 609 border-style: solid; 610 border-width: 0 1px 0 0; 611 @include 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 @include 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 @include 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 @include 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/scss/modules/footer.scss
diff --git a/wp-admin/css/scss/modules/footer.scss b/wp-admin/css/scss/modules/footer.scss 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/scss/modules/forms.scss
diff --git a/wp-admin/css/scss/modules/forms.scss b/wp-admin/css/scss/modules/forms.scss new file mode 100644 index 0000000..297561a
- + 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 @include 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/scss/modules/full-overlay.scss
diff --git a/wp-admin/css/scss/modules/full-overlay.scss b/wp-admin/css/scss/modules/full-overlay.scss new file mode 100644 index 0000000..136022b
- + 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 @include 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 @include 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 @include transitions(); 170 } 171 No newline at end of file -
new file wp-admin/css/scss/modules/global.scss
diff --git a/wp-admin/css/scss/modules/global.scss b/wp-admin/css/scss/modules/global.scss new file mode 100644 index 0000000..5a3adf2
- + 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 @include bold-font(14px); 167 padding: 15px 23px 14px; 168 background: #f1f1f1; 169 color: #21759b; 170 @include 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 @include 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 @include 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/scss/modules/header.scss
diff --git a/wp-admin/css/scss/modules/header.scss b/wp-admin/css/scss/modules/header.scss new file mode 100644 index 0000000..66ad215
- + 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 @include 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/scss/modules/hidpi.scss
diff --git a/wp-admin/css/scss/modules/hidpi.scss b/wp-admin/css/scss/modules/hidpi.scss 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/scss/modules/layout-blocks.scss
diff --git a/wp-admin/css/scss/modules/layout-blocks.scss b/wp-admin/css/scss/modules/layout-blocks.scss new file mode 100644 index 0000000..0f0ffdc
- + 1 /*------------------------------------------------------------------------------ 2 8.0 - Layout Blocks 3 ------------------------------------------------------------------------------*/ 4 5 html.wp-toolbar { 6 padding-top: 28px; 7 @include 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 @include 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 @include rounded-top; 216 } 217 218 .js .postbox .hndle { 219 cursor: move; 220 } 221 222 .postbox.closed .hndle { 223 @include 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 @include 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 @include 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/scss/modules/list-posts.scss
diff --git a/wp-admin/css/scss/modules/list-posts.scss b/wp-admin/css/scss/modules/list-posts.scss 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/scss/modules/localized.scss
diff --git a/wp-admin/css/scss/modules/localized.scss b/wp-admin/css/scss/modules/localized.scss 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/scss/modules/login.scss
diff --git a/wp-admin/css/scss/modules/login.scss b/wp-admin/css/scss/modules/login.scss new file mode 100644 index 0000000..1cfa7a5
- + 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 @include 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/scss/modules/media-queries.scss
diff --git a/wp-admin/css/scss/modules/media-queries.scss b/wp-admin/css/scss/modules/media-queries.scss 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/scss/modules/media.scss
diff --git a/wp-admin/css/scss/modules/media.scss b/wp-admin/css/scss/modules/media.scss new file mode 100644 index 0000000..868a499
- + 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 @include linear-gradient(#fff, #f7f7f7); 104 @include 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 @include linear-gradient(#72a7cf, #8cc1e9); 116 @include 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 @include 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 @include 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 @include rounded(3px); 646 margin-bottom: 8px; 647 padding: 2px 10px; 648 } 649 No newline at end of file -
new file wp-admin/css/scss/modules/misc.scss
diff --git a/wp-admin/css/scss/modules/misc.scss b/wp-admin/css/scss/modules/misc.scss new file mode 100644 index 0000000..8c5a9d8
- + 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 @include 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 @include 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 @include 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 @include 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 @include 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/scss/modules/nav-menus.scss
diff --git a/wp-admin/css/scss/modules/nav-menus.scss b/wp-admin/css/scss/modules/nav-menus.scss new file mode 100644 index 0000000..4325280
- + 1 /* nav-menu */ 2 3 .no-js #message { 4 display: block; 5 } 6 7 #nav-menu-meta ul.outer-border { 8 @include 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 @include 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 @include 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 @include 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 @include linear-gradient(#f6c9cc, #fdf8ff); 477 } 478 479 .menu-item-edit-active .menu-item-handle { 480 @include 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 @include 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/scss/modules/navigation.scss
diff --git a/wp-admin/css/scss/modules/navigation.scss b/wp-admin/css/scss/modules/navigation.scss new file mode 100644 index 0000000..650d73c
- + 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 @include 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 @include 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 @include 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 @include 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 @include bold-font(9px, 17px); 328 margin-top: 1px; 329 margin-left: 7px; 330 @include 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 @include 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 @include bold-font(11px, 1.4em); 482 height: 1.4em; 483 min-width: 0.7em; 484 padding: 0 6px; 485 display: inline-block; 486 @include 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/scss/modules/notifications.scss
diff --git a/wp-admin/css/scss/modules/notifications.scss b/wp-admin/css/scss/modules/notifications.scss new file mode 100644 index 0000000..fbbddd2
- + 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 @include 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/scss/modules/plugins.scss
diff --git a/wp-admin/css/scss/modules/plugins.scss b/wp-admin/css/scss/modules/plugins.scss 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/scss/modules/press-this.scss
diff --git a/wp-admin/css/scss/modules/press-this.scss b/wp-admin/css/scss/modules/press-this.scss new file mode 100644 index 0000000..393e7d5
- + 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 @include linear-gradient-precise(#e6e6e6, 7%, #d8d8d8, 77%); 13 @include 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 @include 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 @include no-user-select(); 86 } 87 88 #message { 89 margin: 10px 0; 90 } 91 92 #title { 93 margin-left: 0; 94 margin-right: 0; 95 @include 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/scss/modules/settings.scss
diff --git a/wp-admin/css/scss/modules/settings.scss b/wp-admin/css/scss/modules/settings.scss 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/scss/modules/tags.scss
diff --git a/wp-admin/css/scss/modules/tags.scss b/wp-admin/css/scss/modules/tags.scss new file mode 100644 index 0000000..d196c14
- + 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 @include 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/scss/modules/text.scss
diff --git a/wp-admin/css/scss/modules/text.scss b/wp-admin/css/scss/modules/text.scss new file mode 100644 index 0000000..3d12158
- + 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 @include serif-font(); 19 } 20 21 h2 .nav-tab, 22 .wrap h2, 23 .subtitle, 24 .login form .input { 25 @include 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/scss/modules/themes.scss
diff --git a/wp-admin/css/scss/modules/themes.scss b/wp-admin/css/scss/modules/themes.scss new file mode 100644 index 0000000..1c870a5
- + 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 @include 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/scss/modules/users.scss
diff --git a/wp-admin/css/scss/modules/users.scss b/wp-admin/css/scss/modules/users.scss 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/scss/modules/widgets.scss
diff --git a/wp-admin/css/scss/modules/widgets.scss b/wp-admin/css/scss/modules/widgets.scss new file mode 100644 index 0000000..1c3c2db
- + 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 @include 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 @include 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 @include 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 @include 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 @include 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 @include 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 @include 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 @include rounded-bottom; 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/scss/variables.scss
diff --git a/wp-admin/css/scss/variables.scss b/wp-admin/css/scss/variables.scss new file mode 100644 index 0000000..dad7617
- + 1 $border-color: #dfdfdf; -
new file wp-admin/css/scss/wp-admin.scss
diff --git a/wp-admin/css/scss/wp-admin.scss b/wp-admin/css/scss/wp-admin.scss new file mode 100644 index 0000000..2cfaa3b
- + 1 @import "variables"; 2 @import "mixins"; 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"; 50 @import "modules/text"; 51 @import "modules/forms"; 52 @import "modules/actions"; 53 @import "modules/notifications"; 54 @import "modules/header"; 55 @import "modules/navigation"; 56 @import "modules/layout-blocks"; 57 @import "modules/dashboard"; 58 @import "modules/list-posts"; 59 @import "modules/edit-post"; 60 @import "modules/categories"; 61 @import "modules/tags"; 62 @import "modules/media"; 63 @import "modules/comments"; 64 @import "modules/themes"; 65 @import "modules/plugins"; 66 @import "modules/users"; 67 @import "modules/settings"; 68 @import "modules/footer"; 69 @import "modules/about"; 70 @import "modules/full-overlay"; 71 @import "modules/customize"; 72 @import "modules/misc"; 73 @import "modules/login"; 74 @import "modules/press-this"; 75 @import "modules/nav-menus"; 76 @import "modules/widgets"; 77 @import "modules/accordion"; 78 @import "modules/media-queries"; 79 @import "modules/hidpi"; 80 @import "modules/localized"; 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..32afea6 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 height: auto; 53 min-height: 100%; 54 width: 100%; 55 position: relative; 56 } 47 height: auto; 48 min-height: 100%; 49 width: 100%; 50 position: relative; } 57 51 58 52 #wpcontent { 59 height: 100%; 60 } 53 height: 100%; } 61 54 62 55 #wpcontent, 63 56 #wpfooter { 64 margin-left: 165px; 65 } 57 margin-left: 165px; } 66 58 67 59 .folded #wpcontent, 68 60 .folded #wpfooter { 69 margin-left: 52px; 70 } 61 margin-left: 52px; } 71 62 72 63 #wpbody-content { 73 padding-bottom: 65px; 74 float: left; 75 width: 100%; 76 } 64 padding-bottom: 65px; 65 float: left; 66 width: 100%; } 77 67 78 68 #adminmenuback, 79 69 #adminmenuwrap, 80 70 #adminmenu, 81 71 #adminmenu .wp-submenu { 82 width: 145px; 83 } 72 width: 145px; } 84 73 85 74 #adminmenuback { 86 position: absolute; 87 top: 0; 88 bottom: 0; 89 z-index: -1; 90 } 75 position: absolute; 76 top: 0; 77 bottom: 0; 78 z-index: -1; } 91 79 92 80 #adminmenu { 93 clear: left; 94 margin: 0; 95 padding: 0; 96 list-style: none; 97 } 81 clear: left; 82 margin: 0; 83 padding: 0; 84 list-style: none; } 98 85 99 86 .folded #adminmenuback, 100 87 .folded #adminmenuwrap, 101 88 .folded #adminmenu, 102 89 .folded #adminmenu li.menu-top { 103 width: 32px; 104 } 90 width: 32px; } 105 91 106 92 /* inner 2 column liquid layout */ 107 108 93 .inner-sidebar { 109 float: right; 110 clear: right; 111 display: none; 112 width: 281px; 113 position: relative; 114 } 115 116 .columns-2 .inner-sidebar { 117 margin-right: auto; 118 width: 286px; 119 display: block; 120 } 121 122 .inner-sidebar #side-sortables, 123 .columns-2 .inner-sidebar #side-sortables { 124 min-height: 300px; 125 width: 280px; 126 padding: 0; 127 } 128 129 .has-right-sidebar .inner-sidebar { 130 display: block; 131 } 94 float: right; 95 clear: right; 96 display: none; 97 width: 281px; 98 position: relative; } 99 .columns-2 .inner-sidebar { 100 margin-right: auto; 101 width: 286px; 102 display: block; } 103 .inner-sidebar #side-sortables, .columns-2 .inner-sidebar #side-sortables { 104 min-height: 300px; 105 width: 280px; 106 padding: 0; } 107 .has-right-sidebar .inner-sidebar { 108 display: block; } 132 109 133 110 .has-right-sidebar #post-body { 134 float: left; 135 clear: left; 136 width: 100%; 137 margin-right: -2000px; 138 } 139 111 float: left; 112 clear: left; 113 width: 100%; 114 margin-right: -2000px; } 140 115 .has-right-sidebar #post-body-content { 141 margin-right: 300px; 142 float: none; 143 width: auto; 144 } 116 margin-right: 300px; 117 float: none; 118 width: auto; } 145 119 146 120 /* 2 columns main area */ 147 148 121 #col-container, 149 122 #col-left, 150 123 #col-right { 151 overflow: hidden; 152 padding: 0; 153 margin: 0; 154 } 124 overflow: hidden; 125 padding: 0; 126 margin: 0; } 155 127 156 128 #col-left { 157 width: 35%; 158 } 129 width: 35%; } 159 130 160 131 #col-right { 161 float: right; 162 clear: right; 163 width: 65%; 164 } 132 float: right; 133 clear: right; 134 width: 65%; } 165 135 166 136 .col-wrap { 167 padding: 0 7px; 168 } 137 padding: 0 7px; } 169 138 170 139 /* utility classes */ 171 140 .alignleft { 172 float: left; 173 } 141 float: left; } 174 142 175 143 .alignright { 176 float: right; 177 } 144 float: right; } 178 145 179 146 .textleft { 180 text-align: left; 181 } 147 text-align: left; } 182 148 183 149 .textright { 184 text-align: right; 185 } 150 text-align: right; } 186 151 187 152 .clear { 188 clear: both; 189 } 153 clear: both; } 190 154 191 155 /* Hide visually but not from screen readers */ 192 156 .screen-reader-text, 193 157 .screen-reader-text span, 194 158 .ui-helper-hidden-accessible { 195 position: absolute; 196 left: -1000em; 197 top: -1000em; 198 height: 1px; 199 width: 1px; 200 overflow: hidden; 201 } 159 position: absolute; 160 left: -1000em; 161 top: -1000em; 162 height: 1px; 163 width: 1px; 164 overflow: hidden; } 202 165 203 166 .screen-reader-shortcut { 204 position: absolute; 205 top: -1000em; 206 } 207 208 .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; 225 } 167 position: absolute; 168 top: -1000em; } 169 .screen-reader-shortcut:focus { 170 left: 6px; 171 top: -21px; 172 height: auto; 173 width: auto; 174 display: block; 175 font-size: 14px; 176 font-weight: bold; 177 line-height: normal; 178 padding: 15px 23px 14px; 179 background: #f1f1f1; 180 color: #21759b; 181 border-radius: 3px; 182 -moz-border-radius: 3px; 183 -webkit-border-radius: 3px; 184 z-index: 100000; 185 -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); 186 box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); 187 text-decoration: none; } 226 188 227 189 .hidden, 228 190 .js .closed .inside, … … TABLE OF CONTENTS: 232 194 .js .wp-core-ui .hide-if-js, 233 195 .no-js.wp-core-ui .hide-if-no-js, 234 196 .no-js .wp-core-ui .hide-if-no-js { 235 display: none; 236 } 197 display: none; } 237 198 238 199 /* include margin and padding in the width calculation of input and textarea */ 239 200 input[type="text"], … … input[type="search"], 243 204 input[type="email"], 244 205 input[type="url"], 245 206 textarea { 246 -moz-box-sizing: border-box; 247 -webkit-box-sizing: border-box; 248 -ms-box-sizing: border-box; /* ie8 only */ 249 box-sizing: border-box; 250 } 207 -moz-box-sizing: border-box; 208 -webkit-box-sizing: border-box; 209 -ms-box-sizing: border-box; 210 box-sizing: border-box; } 251 211 252 212 input[type="checkbox"], 253 213 input[type="radio"] { 254 vertical-align: text-top; 255 padding: 0; 256 margin: 1px 0 0; 257 } 214 vertical-align: text-top; 215 padding: 0; 216 margin: 1px 0 0; } 258 217 259 218 input[type="search"] { 260 -webkit-appearance: textfield; 261 } 219 -webkit-appearance: textfield; } 262 220 263 221 input[type="search"]::-webkit-search-decoration { 264 display: none; 265 } 222 display: none; } 266 223 267 224 /* general */ 268 225 html, 269 226 body { 270 height: 100%; 271 margin: 0; 272 padding: 0; 273 } 227 height: 100%; 228 margin: 0; 229 padding: 0; } 274 230 275 231 body { 276 font-family: sans-serif; 277 font-size: 12px; 278 line-height: 1.4em; 279 min-width: 600px; 280 } 281 282 body.iframe { 283 min-width: 0; 284 padding-top: 1px; 285 } 286 287 body.login { 288 background: #fbfbfb; 289 min-width: 0; 290 } 232 font-family: sans-serif; 233 font-size: 12px; 234 line-height: 1.4em; 235 min-width: 600px; } 236 body.iframe { 237 min-width: 0; 238 padding-top: 1px; } 239 body.login { 240 background: #fbfbfb; 241 min-width: 0; } 291 242 292 243 iframe, 293 244 img { 294 border: 0; 295 } 245 border: 0; } 296 246 297 247 td, 298 248 textarea, 299 249 input, 300 250 select, 301 251 button { 302 font-family: inherit; 303 font-size: inherit; 304 font-weight: inherit; 305 } 252 font-family: inherit; 253 font-size: inherit; 254 font-weight: inherit; } 306 255 307 256 td, 308 257 textarea { 309 line-height: inherit; 310 } 258 line-height: inherit; } 311 259 312 260 input, 313 261 select { 314 line-height: 15px; 315 } 262 line-height: 15px; } 316 263 317 264 a, 318 265 input[type="text"], … … input[type="url"], 324 271 select, 325 272 textarea, 326 273 div { 327 outline: 0; 328 } 274 outline: 0; } 329 275 330 276 a:focus, 331 277 a:active { 332 outline: thin dotted; 333 } 278 outline: thin dotted; } 334 279 335 280 #adminmenu a:focus, 336 281 #adminmenu a:active, 337 282 .screen-reader-text:focus { 338 outline: none; 339 } 283 outline: none; } 340 284 341 285 blockquote, 342 286 q { 343 quotes: none; 344 } 287 quotes: none; } 345 288 346 289 blockquote:before, 347 290 blockquote:after, 348 291 q:before, 349 292 q:after { 350 content: ''; 351 content: none; 352 } 293 content: ''; 294 content: none; } 353 295 354 296 p { 355 margin: 1em 0; 356 } 297 margin: 1em 0; } 357 298 358 299 blockquote { 359 margin: 1em; 360 } 300 margin: 1em; } 361 301 362 302 label { 363 cursor: pointer; 364 } 303 cursor: pointer; } 365 304 366 305 li, 367 306 dd { 368 margin-bottom: 6px; 369 } 307 margin-bottom: 6px; } 370 308 371 309 textarea, 372 310 input, 373 311 select { 374 margin: 1px; 375 padding: 3px; 376 } 312 margin: 1px; 313 padding: 3px; } 377 314 378 315 h1, 379 316 h2, … … h3, 381 318 h4, 382 319 h5, 383 320 h6 { 384 display: block; 385 font-weight: bold; 386 } 321 display: block; 322 font-weight: bold; } 387 323 388 324 h1 { 389 font-size: 2em; 390 margin: .67em 0; 391 } 325 font-size: 2em; 326 margin: .67em 0; } 392 327 393 328 h2 { 394 font-size: 1.5em; 395 margin: .83em 0; 396 } 329 font-size: 1.5em; 330 margin: .83em 0; } 397 331 398 332 h3 { 399 font-size: 1.17em; 400 margin: 1em 0; 401 } 333 font-size: 1.17em; 334 margin: 1em 0; } 402 335 403 336 h4 { 404 font-size: 1em; 405 margin: 1.33em 0; 406 } 337 font-size: 1em; 338 margin: 1.33em 0; } 407 339 408 340 h5 { 409 font-size: 0.83em; 410 margin: 1.67em 0; 411 } 341 font-size: 0.83em; 342 margin: 1.67em 0; } 412 343 413 344 h6 { 414 font-size: 0.67em; 415 margin: 2.33em 0; 416 } 345 font-size: 0.67em; 346 margin: 2.33em 0; } 417 347 418 348 ul, 419 349 ol { 420 padding: 0; 421 } 350 padding: 0; } 422 351 423 352 ul { 424 list-style: none; 425 } 353 list-style: none; } 426 354 427 355 ol { 428 list-style-type: decimal; 429 margin-left: 2em; 430 } 356 list-style-type: decimal; 357 margin-left: 2em; } 431 358 432 359 ul.ul-disc { 433 list-style: disc outside; 434 } 360 list-style: disc outside; } 435 361 436 362 ul.ul-square { 437 list-style: square outside; 438 } 363 list-style: square outside; } 439 364 440 365 ol.ol-decimal { 441 list-style: decimal outside; 442 } 366 list-style: decimal outside; } 443 367 444 368 ul.ul-disc, 445 369 ul.ul-square, 446 370 ol.ol-decimal { 447 margin-left: 1.8em; 448 } 371 margin-left: 1.8em; } 449 372 450 373 ul.ul-disc > li, 451 374 ul.ul-square > li, 452 375 ol.ol-decimal > li { 453 margin: 0 0 0.5em; 454 } 376 margin: 0 0 0.5em; } 455 377 456 378 .code, 457 379 code { 458 font-family: Consolas, Monaco, monospace; 459 } 380 font-family: Consolas, Monaco, monospace; } 460 381 461 382 kbd, 462 383 code { 463 padding: 1px 3px; 464 margin: 0 1px; 465 font-size: 11px; 466 } 384 padding: 1px 3px; 385 margin: 0 1px; 386 font-size: 11px; } 467 387 468 388 .subsubsub { 469 list-style: none; 470 margin: 8px 0 5px; 471 padding: 0; 472 font-size: 12px; 473 float: left; 474 } 475 476 .subsubsub a { 477 line-height: 2; 478 padding: .2em; 479 text-decoration: none; 480 } 481 482 .subsubsub a .count, 483 .subsubsub a.current .count { 484 color: #999; 485 font-weight: normal; 486 } 487 488 .subsubsub a.current { 489 font-weight: bold; 490 border: none; 491 } 492 493 .subsubsub li { 494 display: inline-block; 495 margin: 0; 496 padding: 0; 497 white-space: nowrap; 498 } 389 list-style: none; 390 margin: 8px 0 5px; 391 padding: 0; 392 font-size: 12px; 393 float: left; } 394 .subsubsub a { 395 line-height: 2; 396 padding: .2em; 397 text-decoration: none; } 398 .subsubsub a .count, 399 .subsubsub a.current .count { 400 color: #999; 401 font-weight: normal; } 402 .subsubsub a.current { 403 font-weight: bold; 404 border: none; } 405 .subsubsub li { 406 display: inline-block; 407 margin: 0; 408 padding: 0; 409 white-space: nowrap; } 499 410 500 411 .widefat, 501 412 div.updated, … … select, 536 447 .feature-filter, 537 448 #widget-list .widget-top, 538 449 .editwidget .widget-inside { 539 -webkit-border-radius: 3px;540 541 border-width: 1px;542 border-style: solid;543 }450 border-radius: 3px; 451 -moz-border-radius: 3px; 452 -webkit-border-radius: 3px; 453 border-width: 1px; 454 border-style: solid; } 544 455 545 456 /* .widefat - main style for tables */ 546 457 .widefat { 547 border-spacing: 0; 548 width: 100%; 549 clear: both; 550 margin: 0; 551 } 552 553 .widefat * { 554 word-wrap: break-word; 555 } 556 557 .widefat a { 558 text-decoration: none; 559 } 560 561 .widefat thead th:first-of-type { 562 -webkit-border-top-left-radius: 3px; 563 border-top-left-radius: 3px; 564 } 565 .widefat thead th:last-of-type { 566 -webkit-border-top-right-radius: 3px; 567 border-top-right-radius: 3px; 568 } 569 .widefat tfoot th:first-of-type { 570 -webkit-border-bottom-left-radius: 3px; 571 border-bottom-left-radius: 3px; 572 } 573 .widefat tfoot th:last-of-type { 574 -webkit-border-bottom-right-radius: 3px; 575 border-bottom-right-radius: 3px; 576 } 577 578 .widefat td, 579 .widefat th { 580 border-width: 1px 0; 581 border-style: solid; 582 } 583 .widefat tfoot th { 584 border-bottom: none; 585 } 586 587 .widefat .no-items td { 588 border-bottom-width: 0; 589 } 590 591 .widefat td { 592 font-size: 12px; 593 padding: 4px 7px 2px; 594 vertical-align: top; 595 } 596 597 .widefat td p, 598 .widefat td ol, 599 .widefat td ul { 600 font-size: 12px; 601 } 602 603 .widefat th { 604 padding: 7px 7px 8px; 605 text-align: left; 606 line-height: 1.3em; 607 font-size: 14px; 608 } 609 610 .widefat th input { 611 margin: 0 0 0 8px; 612 padding: 0; 613 vertical-align: text-top; 614 } 615 616 .widefat .check-column { 617 width: 2.2em; 618 padding: 6px 0 25px; 619 vertical-align: top; 620 } 621 622 .widefat tbody th.check-column { 623 padding: 9px 0 22px; 624 } 625 626 .widefat.media .check-column { 627 padding-top: 8px; 628 } 629 630 .widefat thead .check-column, 631 .widefat tfoot .check-column { 632 padding: 10px 0 0; 633 } 634 635 .no-js .widefat thead .check-column input, 636 .no-js .widefat tfoot .check-column input { 637 display: none; 638 } 458 border-spacing: 0; 459 width: 100%; 460 clear: both; 461 margin: 0; } 462 .widefat * { 463 word-wrap: break-word; } 464 .widefat a { 465 text-decoration: none; } 466 .widefat thead th:first-of-type { 467 -moz-border-top-left-radius: 3px; 468 -webkit-border-top-left-radius: 3px; 469 border-top-left-radius: 3px; } 470 .widefat thead th:last-of-type { 471 -moz-border-top-right-radius: 3px; 472 -webkit-border-top-right-radius: 3px; 473 border-top-right-radius: 3px; } 474 .widefat tfoot th:first-of-type { 475 -moz-border-bottom-left-radius: 3px; 476 -webkit-border-bottom-left-radius: 3px; 477 border-bottom-left-radius: 3px; } 478 .widefat tfoot th:last-of-type { 479 -moz-border-bottom-right-radius: 3px; 480 -webkit-border-bottom-right-radius: 3px; 481 border-bottom-right-radius: 3px; } 482 .widefat td, 483 .widefat th { 484 border-width: 1px 0; 485 border-style: solid; } 486 .widefat tfoot th { 487 border-bottom: none; } 488 .widefat .no-items td { 489 border-bottom-width: 0; } 490 .widefat td { 491 font-size: 12px; 492 padding: 4px 7px 2px; 493 vertical-align: top; } 494 .widefat td p, 495 .widefat td ol, 496 .widefat td ul { 497 font-size: 12px; } 498 .widefat th { 499 padding: 7px 7px 8px; 500 text-align: left; 501 line-height: 1.3em; 502 font-size: 14px; } 503 .widefat th input { 504 margin: 0 0 0 8px; 505 padding: 0; 506 vertical-align: text-top; } 507 .widefat .check-column { 508 width: 2.2em; 509 padding: 6px 0 25px; 510 vertical-align: top; } 511 .widefat tbody th.check-column { 512 padding: 9px 0 22px; } 513 .widefat.media .check-column { 514 padding-top: 8px; } 515 .widefat thead .check-column, 516 .widefat tfoot .check-column { 517 padding: 10px 0 0; } 518 .no-js .widefat thead .check-column input, .no-js .widefat tfoot .check-column input { 519 display: none; } 639 520 640 521 .widefat .num, 641 522 .column-comments, 642 523 .column-links, 643 524 .column-posts { 644 text-align: center; 645 } 525 text-align: center; } 646 526 647 527 .widefat th#comments { 648 vertical-align: middle; 649 } 528 vertical-align: middle; } 650 529 651 530 .wrap { 652 margin: 4px 15px 0 0; 653 } 531 margin: 4px 15px 0 0; } 654 532 655 533 div.updated, 656 534 div.error { 657 padding: 0 0.6em; 658 margin: 5px 15px 2px; 659 } 535 padding: 0 0.6em; 536 margin: 5px 15px 2px; } 660 537 661 538 div.updated p, 662 539 div.error p { 663 margin: 0.5em 0; 664 padding: 2px; 665 } 540 margin: 0.5em 0; 541 padding: 2px; } 666 542 667 543 .wrap div.updated, 668 544 .wrap div.error, 669 545 .media-upload-form div.error { 670 margin: 5px 0 15px; 671 } 546 margin: 5px 0 15px; } 672 547 673 548 .wrap h2, 674 549 .subtitle { 675 font-weight: normal; 676 margin: 0; 677 text-shadow: #fff 0 1px 0; 678 } 550 font-weight: normal; 551 margin: 0; 552 text-shadow: #fff 0 1px 0; } 679 553 680 554 .wrap h2 { 681 font-size: 23px; 682 padding: 9px 15px 4px 0; 683 line-height: 29px; 684 } 555 font-size: 23px; 556 padding: 9px 15px 4px 0; 557 line-height: 29px; } 685 558 686 559 .subtitle { 687 font-size: 14px; 688 padding-left: 25px; 689 } 560 font-size: 14px; 561 padding-left: 25px; } 690 562 691 563 .wrap .add-new-h2 { 692 font-family: sans-serif; 693 margin-left: 4px; 694 padding: 3px 8px; 695 position: relative; 696 top: -3px; 697 text-decoration: none; 698 font-size: 12px; 699 border: 0 none; 700 } 564 font-family: sans-serif; 565 margin-left: 4px; 566 padding: 3px 8px; 567 position: relative; 568 top: -3px; 569 text-decoration: none; 570 font-size: 12px; 571 border: 0 none; } 701 572 702 573 .wrap h2.long-header { 703 padding-right: 0; 704 } 574 padding-right: 0; } 705 575 706 576 html, 707 577 .wp-dialog { 708 background-color: #fff; 709 } 578 background-color: white; } 710 579 711 580 textarea, 712 581 input[type="text"], … … input[type="search"], 718 587 input[type="tel"], 719 588 input[type="url"], 720 589 select { 721 background-color: #fff; 722 color: #333; 723 } 590 background-color: white; 591 color: #333; } 724 592 725 593 select { 726 color: #000; 727 } 594 color: black; } 728 595 729 596 select[disabled] { 730 color: #7f7f7f; 731 } 597 color: #7f7f7f; } 732 598 733 599 select:focus { 734 border-color: #aaa; 735 } 600 border-color: #aaa; } 736 601 737 602 textarea:focus, 738 603 input[type="text"]:focus, … … input[type="search"]:focus, 744 609 input[type="tel"]:focus, 745 610 input[type="url"]:focus, 746 611 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); 749 } 612 -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); 613 box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); } 750 614 751 615 input[readonly] { 752 background-color: #eee; 753 } 616 background-color: #eee; } 754 617 755 618 :-moz-placeholder, 756 619 .wp-core-ui :-moz-placeholder { 757 color: #a9a9a9; 758 } 620 color: #a9a9a9; } 759 621 760 /*------------------------------------------------------------------------------ 761 1.0 - Text Styles 762 ------------------------------------------------------------------------------*/ 622 .postbox .spinner { 623 display: none; 624 vertical-align: middle; } 625 626 .button-controls { 627 clear: both; 628 margin: 10px 0; } 629 630 .show-all, 631 .hide-all { 632 cursor: pointer; } 633 634 .hide-all { 635 display: none; } 636 637 img { 638 border: none; } 763 639 764 640 div.sidebar-name h3, 765 641 #menu-management .nav-tab, … … a.rsswidget, 778 654 .widefat th, 779 655 .quicktags, 780 656 .search { 781 font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; 782 } 657 font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; } 783 658 784 659 h2 .nav-tab, 785 660 .wrap h2, 786 661 .subtitle, 787 662 .login form .input { 788 font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif; 789 } 663 font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif; } 790 664 791 665 .quicktags, 792 666 .search { 793 font-size: 12px; 794 } 667 font-size: 12px; } 795 668 796 669 .icon32 { 797 float: left; 798 height: 34px; 799 margin: 7px 8px 0 0; 800 width: 36px; 801 } 670 float: left; 671 height: 34px; 672 margin: 7px 8px 0 0; 673 width: 36px; } 802 674 803 675 .icon16 { 804 height: 18px; 805 width: 18px; 806 padding: 6px 6px; 807 margin: -6px 0 0 -8px; 808 float: left; 809 } 676 height: 18px; 677 width: 18px; 678 padding: 6px 6px; 679 margin: -6px 0 0 -8px; 680 float: left; } 810 681 811 682 .key-labels label { 812 line-height: 24px; 813 } 683 line-height: 24px; } 814 684 815 685 .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 } 686 /* https://developer.mozilla.org/en-US/docs/CSS/white-space */ 687 white-space: pre-wrap; 688 /* css-3 */ 689 word-wrap: break-word; 690 /* IE 5.5 - 7 */ } 820 691 821 692 .howto { 822 font-style: italic; 823 display: block; 824 font-family: sans-serif; 825 } 693 font-style: italic; 694 display: block; 695 font-family: sans-serif; } 826 696 827 697 p.install-help { 828 margin: 8px 0; 829 font-style: italic; 830 } 698 margin: 8px 0; 699 font-style: italic; } 831 700 832 701 .no-break { 833 white-space: nowrap; 834 } 702 white-space: nowrap; } 835 703 836 704 /*------------------------------------------------------------------------------ 837 705 2.0 - Forms 838 706 ------------------------------------------------------------------------------*/ 839 840 841 707 .wp-admin select { 842 padding: 2px; 843 height: 2em; 844 } 845 846 .wp-admin select[multiple] { 847 height: auto; 848 } 708 padding: 2px; 709 height: 2em; } 710 .wp-admin select[multiple] { 711 height: auto; } 849 712 850 713 .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; 857 } 714 padding: 1.5em 0; 715 margin: 5px 0; 716 border-bottom-left-radius: 3px; 717 border-bottom-right-radius: 3px; 718 -moz-border-bottom-left-radius: 3px; 719 -moz-border-bottom-right-radius: 3px; 720 -webkit-border-bottom-left-radius: 3px; 721 -webkit-border-bottom-right-radius: 3px; } 858 722 859 723 form p.submit a.cancel:hover { 860 text-decoration: none; 861 } 724 text-decoration: none; } 862 725 863 726 #minor-publishing-actions input, 864 727 #major-publishing-actions input, 865 728 #minor-publishing-actions .preview { 866 text-align: center; 867 } 729 text-align: center; } 868 730 869 731 textarea.all-options, 870 732 input.all-options { 871 width: 250px; 872 } 733 width: 250px; } 873 734 874 735 input.large-text, 875 736 textarea.large-text { 876 width: 99%; 877 } 737 width: 99%; } 878 738 879 739 input.regular-text, 880 740 #adduser .form-field input { 881 width: 25em; 882 } 741 width: 25em; } 883 742 884 743 input.small-text { 885 width: 50px; 886 } 887 888 input[type="number"].small-text { 889 width: 60px; 890 } 744 width: 50px; } 745 input.small-text[type="number"] { 746 width: 60px; } 891 747 892 748 #doaction, 893 749 #doaction2, 894 750 #post-query-submit { 895 margin: 1px 8px 0 0; 896 } 751 margin: 1px 8px 0 0; } 897 752 898 753 .tablenav #changeit, 899 754 .tablenav #delete_all, 900 755 .tablenav #clear-recent-list { 901 margin-top: 1px; 902 } 903 756 margin-top: 1px; } 904 757 .tablenav .actions select { 905 float: left; 906 margin-right: 6px; 907 max-width: 200px; 908 } 909 758 float: left; 759 margin-right: 6px; 760 max-width: 200px; } 910 761 .ie8 .tablenav .actions select { 911 width: 155px; 912 } 913 914 .ie8 .tablenav .actions select#cat { 915 width: 200px; 916 } 762 width: 155px; } 763 .ie8 .tablenav .actions select#cat { 764 width: 200px; } 917 765 918 766 #timezone_string option { 919 margin-left: 1em; 920 } 767 margin-left: 1em; } 921 768 922 769 label, 923 770 #your-profile label + a { 924 vertical-align: middle; 925 } 771 vertical-align: middle; } 926 772 927 773 #misc-publishing-actions label { 928 vertical-align: baseline; 929 } 774 vertical-align: baseline; } 930 775 931 776 #pass-strength-result { 932 933 934 935 936 937 938 939 display: none; 940 } 777 border-style: solid; 778 border-width: 1px; 779 float: left; 780 margin: 13px 5px 5px 1px; 781 padding: 3px 5px; 782 text-align: center; 783 width: 200px; 784 display: none; } 785 941 786 .indicator-hint { 942 padding-top: 8px; 943 } 787 padding-top: 8px; } 944 788 945 789 p.search-box { 946 float: right; 947 margin: 0; 948 } 790 float: right; 791 margin: 0; } 949 792 950 793 .search-box input[name="s"], 951 794 #search-plugins input[name="s"], 952 795 .tagsdiv .newtag { 953 float: left; 954 height: 2em; 955 margin: 0 4px 0 0; 956 } 796 float: left; 797 height: 2em; 798 margin: 0 4px 0 0; } 957 799 958 800 input[type="text"].ui-autocomplete-loading { 959 background: transparent url('../images/loading.gif') no-repeat right center; 960 visibility: visible; 961 } 801 background: transparent url("../images/loading.gif") no-repeat right center; 802 visibility: visible; } 962 803 963 804 ul#add-to-blog-users { 964 margin: 0 0 0 14px; 965 } 805 margin: 0 0 0 14px; } 966 806 967 807 .ui-autocomplete-input.open { 968 border-bottom-right-radius: 0; 969 border-bottom-left-radius: 0; 970 } 808 border-bottom-right-radius: 0; 809 border-bottom-left-radius: 0; } 971 810 972 811 .ui-autocomplete { 973 padding: 0; 974 margin: 0; 975 list-style: none; 976 position: absolute; 977 z-index: 10000; 978 border-bottom-right-radius: 3px; 979 border-bottom-left-radius: 3px; 980 border-width: 1px; 981 border-style: solid; 982 } 983 984 .ui-autocomplete li { 985 margin-bottom: 0; 986 white-space: nowrap; 987 text-align: left; 988 } 989 990 .ui-autocomplete li a { 991 display: block; 992 height: 100%; 993 padding: 4px 10px; 994 } 995 996 .ui-autocomplete li a.ui-state-focus { 997 cursor: pointer; 998 } 812 padding: 0; 813 margin: 0; 814 list-style: none; 815 position: absolute; 816 z-index: 10000; 817 border-bottom-right-radius: 3px; 818 border-bottom-left-radius: 3px; 819 border-width: 1px; 820 border-style: solid; } 821 .ui-autocomplete li { 822 margin-bottom: 0; 823 white-space: nowrap; 824 text-align: left; } 825 .ui-autocomplete li a { 826 display: block; 827 height: 100%; 828 padding: 4px 10px; } 829 .ui-autocomplete li a.ui-state-focus { 830 cursor: pointer; } 999 831 1000 832 /*------------------------------------------------------------------------------ 1001 833 3.0 - Actions 1002 834 ------------------------------------------------------------------------------*/ 1003 1004 835 #major-publishing-actions { 1005 padding: 10px 10px 8px; 1006 clear: both; 1007 border-top: 1px solid #f5f5f5; 1008 margin-top: -2px; 1009 } 836 padding: 10px 10px 8px; 837 clear: both; 838 border-top: 1px solid #f5f5f5; 839 margin-top: -2px; } 1010 840 1011 841 #delete-action { 1012 line-height: 25px; 1013 vertical-align: middle; 1014 text-align: left; 1015 float: left; 1016 } 842 line-height: 25px; 843 vertical-align: middle; 844 text-align: left; 845 float: left; } 1017 846 1018 847 #publishing-action { 1019 text-align: right; 1020 float: right; 1021 line-height: 23px; 1022 } 1023 1024 #publishing-action .spinner { 1025 float: left; 1026 } 848 text-align: right; 849 float: right; 850 line-height: 23px; } 851 #publishing-action .spinner { 852 float: left; } 1027 853 1028 854 #misc-publishing-actions { 1029 padding: 6px 0 0; 1030 } 855 padding: 6px 0 0; } 1031 856 1032 857 .misc-pub-section { 1033 padding: 6px 10px 8px; 1034 border-width: 1px 0; 1035 border-style: solid; 1036 } 1037 1038 .misc-pub-section:first-child { 1039 border-top-width: 0; 1040 } 858 padding: 6px 10px 8px; 859 border-width: 1px 0; 860 border-style: solid; } 861 .misc-pub-section:first-child { 862 border-top-width: 0; } 1041 863 1042 864 .misc-pub-section-last { 1043 border-bottom-width: 0; 1044 } 865 border-bottom-width: 0; } 1045 866 1046 867 #minor-publishing-actions { 1047 padding: 10px 10px 2px 8px; 1048 text-align: right; 1049 } 868 padding: 10px 10px 2px 8px; 869 text-align: right; } 1050 870 1051 871 #minor-publishing { 1052 border-bottom-width: 1px; 1053 border-bottom-style: solid; 1054 -webkit-box-shadow: 0 1px 0 #fff; 1055 box-shadow: 0 1px 0 #fff; 1056 } 872 border-bottom-width: 1px; 873 border-bottom-style: solid; 874 -webkit-box-shadow: 0 1px 0 #fff; 875 box-shadow: 0 1px 0 #fff; } 1057 876 1058 877 #save-post { 1059 float: left; 1060 } 878 float: left; } 1061 879 1062 880 .preview { 1063 float: right; 1064 } 881 float: right; } 1065 882 1066 883 #sticky-span { 1067 margin-left: 18px; 1068 } 884 margin-left: 18px; } 1069 885 1070 886 .side-info { 1071 margin: 0; 1072 padding: 4px; 1073 font-size: 11px; 1074 } 1075 1076 .side-info h5 { 1077 padding-bottom: 7px; 1078 font-size: 14px; 1079 margin: 12px 2px 5px; 1080 border-bottom-width: 1px; 1081 border-bottom-style: solid; 1082 } 1083 1084 .side-info ul { 1085 margin: 0; 1086 padding-left: 18px; 1087 list-style: square; 1088 } 887 margin: 0; 888 padding: 4px; 889 font-size: 11px; } 890 .side-info h5 { 891 padding-bottom: 7px; 892 font-size: 14px; 893 margin: 12px 2px 5px; 894 border-bottom-width: 1px; 895 border-bottom-style: solid; } 896 .side-info ul { 897 margin: 0; 898 padding-left: 18px; 899 list-style: square; } 1089 900 1090 901 .approve, 1091 902 .unapproved .unapprove { 1092 display: none; 1093 } 903 display: none; } 1094 904 1095 905 .unapproved .approve, 1096 906 .spam .approve, 1097 907 .trash .approve { 1098 display: inline; 1099 } 908 display: inline; } 1100 909 1101 910 td.action-links, 1102 911 th.action-links { 1103 text-align: right; 1104 } 1105 912 text-align: right; } 1106 913 1107 914 /*------------------------------------------------------------------------------ 1108 915 4.0 - Notifications 1109 916 ------------------------------------------------------------------------------*/ 1110 1111 917 #update-nag, 1112 918 .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; 1124 } 919 line-height: 19px; 920 padding: 5px 0; 921 font-size: 12px; 922 text-align: center; 923 margin: -1px 15px 0 5px; 924 border-width: 1px; 925 border-style: solid; 926 border-bottom-left-radius: 3px; 927 border-bottom-right-radius: 3px; 928 -moz-border-bottom-left-radius: 3px; 929 -moz-border-bottom-right-radius: 3px; 930 -webkit-border-bottom-left-radius: 3px; 931 -webkit-border-bottom-right-radius: 3px; } 1125 932 1126 933 .plugins .plugin-update { 1127 padding: 0; 1128 } 934 padding: 0; } 1129 935 1130 936 .plugin-update .update-message { 1131 margin: 0 10px 8px 31px; 1132 font-weight: bold; 1133 } 937 margin: 0 10px 8px 31px; 938 font-weight: bold; } 1134 939 1135 940 ul#dismissed-updates { 1136 display: none; 1137 } 941 display: none; } 1138 942 1139 943 form.upgrade { 1140 margin-top: 8px; 1141 } 944 margin-top: 8px; } 1142 945 1143 946 form.upgrade .hint { 1144 font-style: italic; 1145 font-size: 85%; 1146 margin: -0.5em 0 2em 0; 1147 } 947 font-style: italic; 948 font-size: 85%; 949 margin: -0.5em 0 2em 0; } 1148 950 1149 951 .update-php .spinner { 1150 float: none; 1151 margin: -4px 0; 1152 } 952 float: none; 953 margin: -4px 0; } 1153 954 1154 955 #ajax-loading, 1155 956 .ajax-loading, 1156 957 .ajax-feedback, 1157 958 .imgedit-wait-spin, 1158 .list-ajax-loading { /* deprecated */1159 visibility: hidden; 1160 }959 .list-ajax-loading { 960 /* deprecated */ 961 visibility: hidden; } 1161 962 1162 963 #ajax-response.alignleft { 1163 margin-left: 2em; 1164 } 1165 964 margin-left: 2em; } 1166 965 1167 966 /*------------------------------------------------------------------------------ 1168 967 6.0 - Admin Header … … form.upgrade .hint { 1171 970 #sidemenu a, 1172 971 #taglist a, 1173 972 #catlist a { 1174 text-decoration: none; 1175 } 973 text-decoration: none; } 1176 974 1177 975 /*------------------------------------------------------------------------------ 1178 976 6.1 - Screen Options Tabs 1179 977 ------------------------------------------------------------------------------*/ 1180 1181 978 #screen-options-wrap, 1182 979 #contextual-help-wrap { 1183 margin: 0; 1184 padding: 8px 20px 12px; 1185 position: relative; 1186 } 980 margin: 0; 981 padding: 8px 20px 12px; 982 position: relative; } 1187 983 1188 984 #contextual-help-wrap { 1189 overflow: auto; 1190 } 1191 1192 #screen-meta .screen-reader-text { 1193 visibility: hidden; 1194 } 985 overflow: auto; } 1195 986 1196 987 #screen-meta-links { 1197 margin: 0 24px 0 0; 1198 } 1199 1200 #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; 1204 } 988 margin: 0 24px 0 0; } 989 #screen-meta-links a:focus { 990 -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4); 991 box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4); 992 outline: none; } 993 #screen-meta-links .screen-meta-toggle { 994 position: relative; 995 top: -1px; } 996 #screen-meta-links a.show-settings { 997 text-decoration: none; 998 z-index: 1; 999 padding: 1px 16px 0 6px; 1000 height: 22px; 1001 line-height: 22px; 1002 font-size: 12px; 1003 display: block; 1004 text-shadow: rgba(255, 255, 255, 0.7) 0 1px 0; } 1005 #screen-meta-links a.show-settings:hover { 1006 text-decoration: none; } 1205 1007 1206 1008 /* screen options and help tabs revert */ 1207 1009 #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; 1213 } 1010 display: none; 1011 position: relative; 1012 margin: 0 15px 0 5px; 1013 border-width: 0 1px 1px; 1014 border-style: none solid solid; } 1015 #screen-meta .screen-reader-text { 1016 visibility: hidden; } 1214 1017 1215 1018 #screen-options-link-wrap, 1216 1019 #contextual-help-link-wrap { 1217 float: right; 1218 height: 23px; 1219 padding: 0; 1220 margin: 0 0 0 6px; 1221 font-family: sans-serif; 1222 } 1020 float: right; 1021 height: 23px; 1022 padding: 0; 1023 margin: 0 0 0 6px; 1024 font-family: sans-serif; } 1223 1025 1224 1026 #screen-options-link-wrap, 1225 1027 #contextual-help-link-wrap, 1226 1028 #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 } 1029 border-bottom-left-radius: 3px; 1030 border-bottom-right-radius: 3px; 1031 -moz-border-bottom-left-radius: 3px; 1032 -moz-border-bottom-right-radius: 3px; 1033 -webkit-border-bottom-left-radius: 3px; 1034 -webkit-border-bottom-right-radius: 3px; } 1248 1035 1249 #screen-meta-links a.show-settings:hover {1250 text-decoration: none;1251 }1252 1036 /* end screen options and help tabs */ 1253 1254 1037 .toggle-arrow { 1255 background-repeat: no-repeat; 1256 background-position: top left; 1257 background-color: transparent; 1258 height: 22px; 1259 line-height: 22px; 1260 display: block; 1261 } 1038 background-repeat: no-repeat; 1039 background-position: top left; 1040 background-color: transparent; 1041 height: 22px; 1042 line-height: 22px; 1043 display: block; } 1262 1044 1263 1045 .toggle-arrow-active { 1264 background-position: bottom left; 1265 } 1046 background-position: bottom left; } 1266 1047 1267 1048 #screen-options-wrap h5, 1268 1049 #contextual-help-wrap h5 { 1269 margin: 8px 0; 1270 font-size: 13px; 1271 } 1050 margin: 8px 0; 1051 font-size: 13px; } 1272 1052 1273 1053 .metabox-prefs label { 1274 display: inline-block; 1275 padding-right: 15px; 1276 white-space: nowrap; 1277 line-height: 30px; 1278 } 1279 1280 .metabox-prefs label input { 1281 margin: 0 5px 0 2px; 1282 } 1283 1054 display: inline-block; 1055 padding-right: 15px; 1056 white-space: nowrap; 1057 line-height: 30px; } 1058 .metabox-prefs label input { 1059 margin: 0 5px 0 2px; } 1060 .metabox-prefs label a { 1061 display: none; } 1284 1062 .metabox-prefs .columns-prefs label input { 1285 margin: 0 2px; 1286 } 1287 1288 .metabox-prefs label a { 1289 display: none; 1290 } 1063 margin: 0 2px; } 1291 1064 1292 1065 /*------------------------------------------------------------------------------ 1293 1066 6.2 - Help Menu 1294 1067 ------------------------------------------------------------------------------*/ 1295 1296 1068 #contextual-help-wrap { 1297 padding: 0; 1298 margin-left: -4px; 1299 } 1069 padding: 0; 1070 margin-left: -4px; } 1300 1071 1301 1072 #contextual-help-columns { 1302 position: relative; 1303 } 1073 position: relative; } 1304 1074 1305 1075 #contextual-help-back { 1306 position: absolute; 1307 top: 0; 1308 bottom: 0; 1309 left: 150px; 1310 right: 170px; 1311 border-width: 0 1px; 1312 border-style: solid; 1313 } 1314 1315 #contextual-help-wrap.no-sidebar #contextual-help-back { 1316 right: 0; 1317 1318 border-right-width: 0; 1319 -webkit-border-bottom-right-radius: 2px; 1320 border-bottom-right-radius: 2px; 1321 } 1076 position: absolute; 1077 top: 0; 1078 bottom: 0; 1079 left: 150px; 1080 right: 170px; 1081 border-width: 0 1px; 1082 border-style: solid; } 1083 #contextual-help-wrap.no-sidebar #contextual-help-back { 1084 right: 0; 1085 border-right-width: 0; 1086 -moz-border-bottom-right-radius: 2px; 1087 -webkit-border-bottom-right-radius: 2px; 1088 border-bottom-right-radius: 2px; } 1322 1089 1323 1090 .contextual-help-tabs { 1324 float: left; 1325 width: 150px; 1326 margin: 0; 1327 } 1328 1329 .contextual-help-tabs ul { 1330 margin: 1em 0; 1331 } 1332 1333 .contextual-help-tabs li { 1334 margin-bottom: 0; 1335 list-style-type: none; 1336 border-style: solid; 1337 border-width: 1px 0; 1338 border-color: transparent; 1339 } 1340 1341 .contextual-help-tabs a { 1342 display: block; 1343 padding: 5px 5px 5px 12px; 1344 line-height: 18px; 1345 text-decoration: none; 1346 } 1347 1348 .contextual-help-tabs .active { 1349 padding: 0; 1350 margin: 0 -1px 0 0; 1351 border-width: 1px 0 1px 1px; 1352 border-style: solid; 1353 } 1091 float: left; 1092 width: 150px; 1093 margin: 0; } 1094 .contextual-help-tabs ul { 1095 margin: 1em 0; } 1096 .contextual-help-tabs li { 1097 margin-bottom: 0; 1098 list-style-type: none; 1099 border-style: solid; 1100 border-width: 1px 0; 1101 border-color: transparent; } 1102 .contextual-help-tabs a { 1103 display: block; 1104 padding: 5px 5px 5px 12px; 1105 line-height: 18px; 1106 text-decoration: none; } 1107 .contextual-help-tabs .active { 1108 padding: 0; 1109 margin: 0 -1px 0 0; 1110 border-width: 1px 0 1px 1px; 1111 border-style: solid; } 1354 1112 1355 1113 .contextual-help-tabs-wrap { 1356 padding: 0 20px; 1357 overflow: auto; 1358 } 1114 padding: 0 20px; 1115 overflow: auto; } 1359 1116 1360 1117 .help-tab-content { 1361 display: none; 1362 margin: 0 22px 12px 0; 1363 line-height: 1.6em; 1364 } 1365 1366 .help-tab-content.active { 1367 display: block; 1368 } 1369 1370 .help-tab-content ul li { 1371 list-style-type: disc; 1372 margin-left: 18px; 1373 } 1118 display: none; 1119 margin: 0 22px 12px 0; 1120 line-height: 1.6em; } 1121 .help-tab-content.active { 1122 display: block; } 1123 .help-tab-content ul li { 1124 list-style-type: disc; 1125 margin-left: 18px; } 1374 1126 1375 1127 .contextual-help-sidebar { 1376 width: 150px; 1377 float: right; 1378 padding: 0 8px 0 12px; 1379 overflow: auto; 1380 } 1381 1128 width: 150px; 1129 float: right; 1130 padding: 0 8px 0 12px; 1131 overflow: auto; } 1382 1132 1383 1133 /*------------------------------------------------------------------------------ 1384 1134 7.0 - Main Navigation (Left Menu) 1385 1135 ------------------------------------------------------------------------------*/ 1386 1387 1136 #adminmenuback, 1388 1137 #adminmenuwrap { 1389 border-width: 0 1px 0 0; 1390 border-style: solid; 1391 } 1138 border-width: 0 1px 0 0; 1139 border-style: solid; } 1392 1140 1393 1141 #adminmenuwrap { 1394 position: relative; 1395 float: left; 1396 } 1142 position: relative; 1143 float: left; } 1397 1144 1398 1145 #adminmenushadow { 1399 position: absolute; 1400 top: 0; 1401 right: 0; 1402 bottom: 0; 1403 width: 6px; 1404 z-index: 20; 1405 } 1146 position: absolute; 1147 top: 0; 1148 right: 0; 1149 bottom: 0; 1150 width: 6px; 1151 z-index: 20; } 1406 1152 1407 1153 /* side admin menu */ 1408 1154 #adminmenu * { 1409 -webkit-user-select: none; 1410 -moz-user-select: none; 1411 user-select: none; 1412 } 1413 1155 -webkit-user-select: none; 1156 -moz-user-select: none; 1157 user-select: none; } 1414 1158 #adminmenu li { 1415 margin: 0; 1416 padding: 0; 1417 cursor: pointer; 1418 } 1419 1159 margin: 0; 1160 padding: 0; 1161 cursor: pointer; } 1420 1162 #adminmenu a { 1421 display: block; 1422 line-height: 18px; 1423 padding: 2px 5px; 1424 } 1425 1163 display: block; 1164 line-height: 18px; 1165 padding: 2px 5px; } 1426 1166 #adminmenu li.menu-top { 1427 min-height: 28px; 1428 position: relative; 1429 } 1430 1167 min-height: 28px; 1168 position: relative; } 1431 1169 #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; 1446 } 1447 1448 .js #adminmenu .sub-open, 1449 .js #adminmenu .opensub .wp-submenu, 1450 #adminmenu a.menu-top:focus + .wp-submenu, 1451 .no-js li.wp-has-submenu:hover .wp-submenu { 1452 top: -1px; 1453 } 1454 1455 #adminmenu .wp-has-current-submenu .wp-submenu, 1456 .no-js li.wp-has-current-submenu:hover .wp-submenu, 1170 list-style: none; 1171 padding: 4px 0; 1172 margin: 0; 1173 position: absolute; 1174 top: -1000em; 1175 left: 146px; 1176 z-index: 1000; 1177 overflow: visible; 1178 border-width: 1px; 1179 border-style: solid; 1180 border-top-right-radius: 3px; 1181 border-bottom-right-radius: 3px; 1182 -moz-border-top-right-radius: 3px; 1183 -moz-border-bottom-right-radius: 3px; 1184 -webkit-border-top-right-radius: 3px; 1185 -webkit-border-bottom-right-radius: 3px; } 1186 .js #adminmenu .sub-open, .js #adminmenu .opensub .wp-submenu, 1187 #adminmenu a.menu-top:focus + .wp-submenu, .no-js #adminmenu li.wp-has-submenu:hover .wp-submenu { 1188 top: -1px; } 1189 #adminmenu .wp-has-current-submenu .wp-submenu, .no-js #adminmenu li.wp-has-current-submenu:hover .wp-submenu, 1457 1190 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 1458 1191 #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, 1459 1192 #adminmenu .wp-has-current-submenu.opensub .wp-submenu { 1460 position: relative; 1461 z-index: 3; 1462 top: auto; 1463 left: auto; 1464 right: auto; 1465 bottom: auto; 1466 border: 0 none; 1467 1468 -webkit-box-shadow: none; 1469 box-shadow: none; 1470 } 1471 1472 .folded #adminmenu .wp-submenu.sub-open, 1473 .folded #adminmenu .opensub .wp-submenu, 1474 .folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, 1475 .folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu, 1476 .folded #adminmenu a.menu-top:focus + .wp-submenu, 1477 .folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu, 1478 .no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu { 1479 top: -1px; 1480 left: 32px; 1481 } 1482 1483 .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 1484 .folded #adminmenu .wp-has-current-submenu .wp-submenu { 1485 border-width: 1px; 1486 border-style: solid; 1487 position: absolute; 1488 top: -1000em; 1489 } 1490 1193 position: relative; 1194 z-index: 3; 1195 top: auto; 1196 left: auto; 1197 right: auto; 1198 bottom: auto; 1199 border: 0 none; 1200 -moz-box-shadow: none; 1201 -webkit-box-shadow: none; 1202 box-shadow: none; } 1203 .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 { 1204 top: -1px; 1205 left: 32px; } 1206 .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu { 1207 border-width: 1px; 1208 border-style: solid; 1209 position: absolute; 1210 top: -1000em; } 1491 1211 #adminmenu .wp-submenu a { 1492 font-size: 12px; 1493 line-height: 18px; 1494 margin: 0; 1495 padding-left: 12px; 1496 } 1497 1212 font-size: 12px; 1213 line-height: 18px; 1214 margin: 0; 1215 padding-left: 12px; } 1498 1216 #adminmenu .wp-not-current-submenu li > a { 1499 padding-left: 16px; 1500 } 1501 1502 #adminmenu .wp-has-current-submenu ul > li > a, 1503 .folded #adminmenu li.menu-top .wp-submenu > li > a { 1504 padding-left: 12px; 1505 } 1506 1217 padding-left: 16px; } 1218 #adminmenu .wp-has-current-submenu ul > li > a, .folded #adminmenu li.menu-top .wp-submenu > li > a { 1219 padding-left: 12px; } 1507 1220 #adminmenu a.menu-top, 1508 1221 #adminmenu .wp-submenu-head { 1509 font-size: 13px; 1510 font-weight: bold; 1511 line-height: 18px; 1512 padding: 0; 1513 } 1514 1515 #adminmenu .wp-submenu-head, 1516 .folded #adminmenu .wp-menu-name { 1517 display: none; 1518 } 1519 1222 font-size: 13px; 1223 font-weight: bold; 1224 line-height: 18px; 1225 padding: 0; } 1226 #adminmenu .wp-submenu-head, .folded #adminmenu .wp-menu-name { 1227 display: none; } 1520 1228 .folded #adminmenu .wp-submenu-head { 1521 display: block; 1522 } 1523 1229 display: block; } 1524 1230 #adminmenu .wp-submenu li { 1525 padding: 0; 1526 margin: 0; 1527 overflow: hidden; 1528 } 1529 1231 padding: 0; 1232 margin: 0; 1233 overflow: hidden; } 1530 1234 #adminmenu a.menu-top { 1531 border-width: 1px 0; 1532 border-style: solid none; 1533 } 1534 1235 border-width: 1px 0; 1236 border-style: solid none; } 1535 1237 #adminmenu .wp-menu-image img { 1536 padding: 7px 0 0 7px; 1537 opacity: 0.6; 1538 filter: alpha(opacity=60); 1539 } 1540 1238 padding: 7px 0 0 7px; 1239 opacity: 0.6; 1240 filter: alpha(opacity=60); } 1541 1241 #adminmenu div.wp-menu-name { 1542 padding: 5px; 1543 } 1544 1242 padding: 5px; } 1545 1243 #adminmenu div.wp-menu-image { 1546 float: left; 1547 width: 28px; 1548 height: 28px; 1549 } 1550 1244 float: left; 1245 width: 28px; 1246 height: 28px; } 1551 1247 .folded #adminmenu div.wp-menu-image { 1552 width: 32px; 1553 position: absolute; 1554 z-index: 25; 1555 } 1556 1248 width: 32px; 1249 position: absolute; 1250 z-index: 25; } 1557 1251 .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 ); 1574 } 1575 1252 height: 28px; } 1576 1253 #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 ); 1589 } 1590 1254 display: none; 1255 position: absolute; 1256 top: 7px; 1257 left: -1px; 1258 width: 14px; 1259 height: 15px; 1260 -moz-transform: matrix(-0.6, 1, 0.6, 1, 0, 0); 1261 -webkit-transform: matrix(-0.6, 1, 0.6, 1, 0, 0); 1262 -o-transform: matrix(-0.6, 1, 0.6, 1, 0, 0); 1263 -ms-transform: matrix(-0.6, 1, 0.6, 1, 0, 0); 1264 transform: matrix(-0.6, 1, 0.6, 1, 0, 0); } 1591 1265 #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 height: 28px; 1598 border-width: 1px 0; 1599 border-style: solid; 1600 top: 0; 1601 } 1602 1266 -moz-transform: translate(145px); 1267 -webkit-transform: translate(145px); 1268 -o-transform: translate(145px); 1269 -ms-transform: translate(145px); 1270 transform: translate(145px); 1271 height: 28px; 1272 border-width: 1px 0; 1273 border-style: solid; 1274 top: 0; } 1603 1275 .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 ); 1609 } 1610 1276 -moz-transform: translate(32px); 1277 -webkit-transform: translate(32px); 1278 -o-transform: translate(32px); 1279 -ms-transform: translate(32px); 1280 transform: translate(32px); } 1611 1281 #adminmenu li.current .wp-menu-arrow, 1612 1282 #adminmenu li.wp-has-current-submenu .wp-menu-arrow, 1613 1283 #adminmenu li.wp-has-current-submenu .wp-menu-arrow div, 1614 1284 #adminmenu li.wp-has-submenu .wp-menu-arrow div, 1615 #adminmenu li.current .wp-menu-arrow div, 1616 .no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow, 1285 #adminmenu li.current .wp-menu-arrow div, .no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow, 1617 1286 #adminmenu li.wp-has-submenu.opensub .wp-menu-arrow, 1618 1287 #adminmenu a.wp-has-submenu:focus .wp-menu-arrow, 1619 1288 #adminmenu a:hover .wp-menu-arrow { 1620 display: block; 1621 } 1622 1289 display: block; } 1623 1290 #adminmenu li.current .wp-menu-arrow, 1624 1291 #adminmenu li.wp-menu-open .wp-menu-arrow { 1625 top: 0; 1626 } 1627 1292 top: 0; } 1628 1293 .no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow, 1629 1294 #adminmenu li.wp-has-submenu.opensub .wp-menu-arrow, 1630 1295 #adminmenu a.wp-has-submenu:focus .wp-menu-arrow { 1631 z-index: 1001; 1632 } 1633 1296 z-index: 1001; } 1634 1297 .ie8 #adminmenu li.menu-top:hover .wp-menu-arrow { 1635 display: none; 1636 } 1637 1298 display: none; } 1638 1299 #adminmenu .wp-not-current-submenu .wp-menu-arrow div { 1639 width: 15px; 1640 top: 6px; 1641 border-width: 0 0 1px 1px; 1642 border-style: solid; 1643 } 1644 1645 .wp-menu-arrow, 1646 .folded #adminmenu li .wp-menu-arrow div, 1647 .no-js #adminmenu li.wp-not-current-submenu:hover .wp-menu-arrow { 1648 display: none; 1649 } 1650 1651 .folded #adminmenu li.current .wp-menu-arrow, 1652 .folded #adminmenu li.current .wp-menu-arrow div, 1653 .folded #adminmenu li.wp-has-current-submenu .wp-menu-arrow div, 1654 .folded #adminmenu li.wp-menu-open .wp-menu-arrow, 1655 .folded #adminmenu li a:focus .wp-menu-arrow { 1656 display: block; 1657 } 1658 1300 width: 15px; 1301 top: 6px; 1302 border-width: 0 0 1px 1px; 1303 border-style: solid; } 1304 #adminmenu .wp-menu-arrow, .folded #adminmenu li .wp-menu-arrow div, .no-js #adminmenu li.wp-not-current-submenu:hover .wp-menu-arrow { 1305 display: none; } 1306 .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 { 1307 display: block; } 1659 1308 #adminmenu li.menu-top:hover .wp-menu-image img, 1660 1309 #adminmenu li.wp-has-current-submenu .wp-menu-image img { 1661 opacity: 1; 1662 filter: alpha(opacity=100); 1663 } 1664 1310 opacity: 1; 1311 filter: alpha(opacity=100); } 1665 1312 #adminmenu li.wp-menu-separator { 1666 height: 3px; 1667 padding: 0; 1668 margin: 0; 1669 border-width: 1px 0; 1670 border-style: solid; 1671 cursor: inherit; 1672 } 1673 1313 height: 3px; 1314 padding: 0; 1315 margin: 0; 1316 border-width: 1px 0; 1317 border-style: solid; 1318 cursor: inherit; } 1674 1319 #adminmenu div.separator { 1675 height: 1px; 1676 padding: 0; 1677 border-width: 1px 0 0 0; 1678 border-style: solid; 1679 } 1680 1320 height: 1px; 1321 padding: 0; 1322 border-width: 1px 0 0 0; 1323 border-style: solid; } 1681 1324 #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; 1688 } 1689 1325 padding: 5px 4px 5px 10px; 1326 margin: -4px -1px 4px; 1327 border-width: 1px 0; 1328 border-style: solid; 1329 -moz-border-top-right-radius: 3px; 1330 -webkit-border-top-right-radius: 3px; 1331 border-top-right-radius: 3px; } 1690 1332 #adminmenu li.wp-menu-open { 1691 border-width: 0 0 1px; 1692 border-style: solid; 1693 } 1694 1695 #adminmenu li.current, 1696 .folded #adminmenu li.wp-menu-open { 1697 border: 0 none; 1698 } 1699 1333 border-width: 0 0 1px; 1334 border-style: solid; } 1335 #adminmenu li.current, .folded #adminmenu li.wp-menu-open { 1336 border: 0 none; } 1700 1337 .folded #adminmenu li.wp-has-current-submenu { 1701 margin-bottom: 1px; 1702 } 1703 1338 margin-bottom: 1px; } 1704 1339 .folded #adminmenu .wp-has-current-submenu.menu-top-last { 1705 margin-bottom: 0; 1706 } 1340 margin-bottom: 0; } 1341 1342 .wp-menu-arrow { 1343 z-index: 25; 1344 position: absolute; 1345 right: 100%; 1346 margin: 0; 1347 height: 30px; 1348 width: 6px; 1349 -moz-transform: translate(146px); 1350 -webkit-transform: translate(146px); 1351 -o-transform: translate(146px); 1352 -ms-transform: translate(146px); 1353 transform: translate(146px); } 1707 1354 1708 1355 #adminmenu .awaiting-mod, 1709 1356 #adminmenu span.update-plugins, 1710 1357 #sidemenu li a span.update-plugins { 1711 1712 1713 1714 line-height: 17px;1715 font-weight: bold;1716 1717 1718 -webkit-border-radius: 10px;1719 1720 z-index: 26;1721 }1358 position: absolute; 1359 font-family: sans-serif; 1360 font-size: 9px; 1361 font-weight: bold; 1362 line-height: 17px; 1363 margin-top: 1px; 1364 margin-left: 7px; 1365 border-radius: 10px; 1366 -moz-border-radius: 10px; 1367 -webkit-border-radius: 10px; 1368 z-index: 26; } 1722 1369 1723 1370 #adminmenu li .awaiting-mod span, 1724 1371 #adminmenu li span.update-plugins span, 1725 1372 #sidemenu li a span.update-plugins span { 1726 display: block; 1727 padding: 0 6px; 1728 } 1373 display: block; 1374 padding: 0 6px; } 1729 1375 1730 1376 #adminmenu li span.count-0, 1731 1377 #sidemenu li a .count-0 { 1732 display: none; 1733 } 1378 display: none; } 1734 1379 1735 1380 #collapse-menu { 1736 font-size: 12px; 1737 line-height: 34px; 1738 border-width: 1px 0 0; 1739 border-style: solid; 1740 } 1381 font-size: 12px; 1382 line-height: 34px; 1383 border-width: 1px 0 0; 1384 border-style: solid; } 1741 1385 1742 1386 .folded #collapse-menu span { 1743 display: none; 1744 } 1387 display: none; } 1745 1388 1746 1389 #collapse-button, 1747 1390 #collapse-button div { 1748 width: 15px; 1749 height: 15px; 1750 } 1391 width: 15px; 1392 height: 15px; } 1751 1393 1752 1394 #collapse-button { 1753 1754 1755 1756 1757 -webkit-border-radius: 10px;1758 1759 }1395 float: left; 1396 margin: 8px 6px; 1397 border-width: 1px; 1398 border-style: solid; 1399 border-radius: 10px; 1400 -moz-border-radius: 10px; 1401 -webkit-border-radius: 10px; } 1760 1402 1761 1403 /* Auto-folding of the admin menu */ 1762 1404 @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 1851 } 1852 1405 .auto-fold #wpcontent, 1406 .auto-fold #wpfooter { 1407 margin-left: 52px; } 1408 1409 .auto-fold #adminmenuback, 1410 .auto-fold #adminmenuwrap, 1411 .auto-fold #adminmenu, 1412 .auto-fold #adminmenu li.menu-top { 1413 width: 32px; } 1414 1415 .auto-fold #adminmenu .wp-submenu.sub-open, 1416 .auto-fold #adminmenu .opensub .wp-submenu, 1417 .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, 1418 .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu, 1419 .auto-fold #adminmenu a.menu-top:focus + .wp-submenu, 1420 .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { 1421 top: -1px; 1422 left: 32px; } 1423 1424 .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 1425 .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { 1426 border-width: 1px; 1427 border-style: solid; 1428 position: absolute; 1429 top: -1000em; } 1430 1431 .auto-fold #adminmenu li.menu-top .wp-submenu > li > a { 1432 padding-left: 12px; } 1433 1434 .auto-fold #adminmenu .wp-menu-name { 1435 display: none; } 1436 1437 .auto-fold #adminmenu .wp-submenu-head { 1438 display: block; } 1439 1440 .auto-fold #adminmenu div.wp-menu-image { 1441 width: 32px; 1442 position: absolute; 1443 z-index: 25; } 1444 1445 .auto-fold #adminmenu a.menu-top { 1446 height: 28px; } 1447 1448 .auto-fold #adminmenu li .wp-menu-arrow { 1449 -moz-transform: translate(32px); 1450 -webkit-transform: translate(32px); 1451 -o-transform: translate(32px); 1452 -ms-transform: translate(32px); 1453 transform: translate(32px); } 1454 1455 .auto-fold #adminmenu li .wp-menu-arrow div { 1456 display: none; } 1457 1458 .auto-fold #adminmenu li.current .wp-menu-arrow, 1459 .auto-fold #adminmenu li.current .wp-menu-arrow div, 1460 .auto-fold #adminmenu li.wp-has-current-submenu .wp-menu-arrow div, 1461 .auto-fold #adminmenu li.wp-menu-open .wp-menu-arrow, 1462 .auto-fold #adminmenu li a:focus .wp-menu-arrow { 1463 display: block; } 1464 1465 .auto-fold #adminmenu li.wp-menu-open { 1466 border: 0 none; } 1467 1468 .auto-fold #adminmenu li.wp-has-current-submenu { 1469 margin-bottom: 1px; } 1470 1471 .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last { 1472 margin-bottom: 0; } 1473 1474 .auto-fold #collapse-menu span { 1475 display: none; } } 1853 1476 /* List table styles */ 1854 1477 .post-com-count-wrapper { 1855 min-width: 22px; 1856 font-family: sans-serif; 1857 } 1478 min-width: 22px; 1479 font-family: sans-serif; } 1858 1480 1859 1481 .post-com-count { 1860 background-image: url('../images/bubble_bg.gif'); 1861 height: 1.3em; 1862 line-height: 1.1em; 1863 display: block; 1864 text-decoration: none; 1865 padding: 0 0 6px; 1866 cursor: pointer; 1867 background-position: center -80px; 1868 background-repeat: no-repeat; 1869 } 1870 1871 .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; 1881 } 1882 1883 strong .post-com-count { 1884 background-position: center -55px; 1885 } 1886 1887 .post-com-count:hover { 1888 background-position: center -3px; 1889 } 1890 1891 .column-response .post-com-count { 1892 float: left; 1893 margin-right: 5px; 1894 text-align: center; 1895 } 1482 background-image: url("../images/bubble_bg.gif"); 1483 height: 1.3em; 1484 line-height: 1.1em; 1485 display: block; 1486 text-decoration: none; 1487 padding: 0 0 6px; 1488 cursor: pointer; 1489 background-position: center -80px; 1490 background-repeat: no-repeat; } 1491 .post-com-count span { 1492 font-size: 11px; 1493 font-weight: bold; 1494 line-height: 1.4em; 1495 height: 1.4em; 1496 min-width: 0.7em; 1497 padding: 0 6px; 1498 display: inline-block; 1499 border-radius: 5px; 1500 -moz-border-radius: 5px; 1501 -webkit-border-radius: 5px; } 1502 strong .post-com-count { 1503 background-position: center -55px; } 1504 .post-com-count:hover { 1505 background-position: center -3px; } 1506 .column-response .post-com-count { 1507 float: left; 1508 margin-right: 5px; 1509 text-align: center; } 1896 1510 1897 1511 .response-links { 1898 float: left; 1899 } 1512 float: left; } 1900 1513 1901 1514 #the-comment-list .attachment-80x60 { 1902 padding: 4px 8px; 1903 } 1515 padding: 4px 8px; } 1904 1516 1905 1517 th .comment-grey-bubble { 1906 background-image: url('../images/comment-grey-bubble.png'); 1907 background-repeat: no-repeat; 1908 height: 12px; 1909 width: 12px; 1910 } 1518 background-image: url("../images/comment-grey-bubble.png"); 1519 background-repeat: no-repeat; 1520 height: 12px; 1521 width: 12px; } 1911 1522 1912 1523 /*------------------------------------------------------------------------------ 1913 1524 8.0 - Layout Blocks 1914 1525 ------------------------------------------------------------------------------*/ 1915 1916 1526 html.wp-toolbar { 1917 1918 -webkit-box-sizing: border-box;1919 -moz-box-sizing: border-box;1920 1921 }1527 padding-top: 28px; 1528 -moz-box-sizing: border-box; 1529 -webkit-box-sizing: border-box; 1530 -ms-box-sizing: border-box; 1531 box-sizing: border-box; } 1922 1532 1923 1533 .narrow { 1924 width: 70%; 1925 margin-bottom: 40px; 1926 } 1927 1928 .narrow p { 1929 line-height: 150%; 1930 } 1534 width: 70%; 1535 margin-bottom: 40px; } 1536 .narrow p { 1537 line-height: 150%; } 1931 1538 1932 1539 .widefat th, 1933 1540 .widefat td { 1934 overflow: hidden; 1935 } 1936 1541 overflow: hidden; } 1937 1542 .widefat th { 1938 font-weight: normal; 1939 } 1940 1543 font-weight: normal; } 1941 1544 .widefat td p { 1942 margin: 2px 0 0.8em; 1943 } 1944 1545 margin: 2px 0 0.8em; } 1945 1546 .widefat .column-comment p { 1946 margin: 0.6em 0; 1947 } 1547 margin: 0.6em 0; } 1948 1548 1949 1549 /* Screens with postboxes */ 1950 1550 .postbox-container { 1951 float: left; 1952 } 1551 float: left; } 1953 1552 1954 1553 #dashboard-widgets.columns-1 .postbox-container { 1955 width: 100%; 1956 } 1957 1554 width: 100%; } 1958 1555 #dashboard-widgets.columns-2 .postbox-container { 1959 width: 49.5%; 1960 } 1961 1556 width: 49.5%; } 1962 1557 #dashboard-widgets.columns-2 #postbox-container-2, 1963 1558 #dashboard-widgets.columns-2 #postbox-container-3, 1964 1559 #dashboard-widgets.columns-2 #postbox-container-4 { 1965 float: right; 1966 width: 50.5%; 1967 } 1968 1560 float: right; 1561 width: 50.5%; } 1969 1562 #dashboard-widgets.columns-3 .postbox-container { 1970 width: 33.5%; 1971 } 1972 1563 width: 33.5%; } 1973 1564 #dashboard-widgets.columns-3 #postbox-container-1 { 1974 width: 33%; 1975 } 1976 1565 width: 33%; } 1977 1566 #dashboard-widgets.columns-3 #postbox-container-3, 1978 1567 #dashboard-widgets.columns-3 #postbox-container-4 { 1979 float: right; 1980 } 1981 1568 float: right; } 1982 1569 #dashboard-widgets.columns-4 .postbox-container { 1983 width: 25%; 1984 } 1570 width: 25%; } 1985 1571 1986 1572 .postbox-container .meta-box-sortables { 1987 -moz-box-sizing: border-box; 1988 -webkit-box-sizing: border-box; 1989 -ms-box-sizing: border-box; 1990 box-sizing: border-box; 1991 } 1573 -moz-box-sizing: border-box; 1574 -webkit-box-sizing: border-box; 1575 -ms-box-sizing: border-box; 1576 box-sizing: border-box; } 1992 1577 1993 1578 .metabox-holder .postbox-container .empty-container { 1994 border: 3px dashed #CCCCCC; 1995 height: 250px; 1996 } 1579 border: 3px dashed #ccc; 1580 height: 250px; } 1997 1581 1998 1582 .metabox-holder.columns-1 .postbox-container .empty-container, 1999 1583 .columns-2 #postbox-container-3 .empty-container, 2000 1584 .columns-2 #postbox-container-4 .empty-container, 2001 1585 .columns-3 #postbox-container-4 .empty-container { 2002 border: 0 none; 2003 height: 0; 2004 min-height: 0; 2005 } 1586 border: 0 none; 1587 height: 0; 1588 min-height: 0; } 2006 1589 2007 1590 #poststuff { 2008 padding-top: 10px; 2009 } 2010 2011 #poststuff #post-body { 2012 padding: 0; 2013 } 1591 padding-top: 10px; } 1592 #poststuff #post-body { 1593 padding: 0; } 1594 #poststuff .postbox-container { 1595 width: 100%; } 1596 #poststuff #post-body.columns-2 { 1597 margin-right: 300px; } 2014 1598 2015 1599 #post-body-content { 2016 width: 100%; 2017 float: left; 2018 } 2019 2020 #poststuff .postbox-container { 2021 width: 100%; 2022 } 2023 2024 #poststuff #post-body.columns-2 { 2025 margin-right: 300px; 2026 } 1600 width: 100%; 1601 float: left; } 2027 1602 2028 1603 #post-body.columns-2 #postbox-container-1 { 2029 float: right; 2030 margin-right: -300px; 2031 width: 280px; 2032 } 1604 float: right; 1605 margin-right: -300px; 1606 width: 280px; } 2033 1607 2034 1608 #post-body.columns-2 #side-sortables { 2035 min-height: 250px; 2036 } 1609 min-height: 250px; } 2037 1610 2038 1611 /* one column on the dash */ 2039 1612 @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 } 2049 } 1613 #wpbody-content #dashboard-widgets .postbox-container { 1614 width: 100%; } 2050 1615 1616 #wpbody-content .metabox-holder .postbox-container .empty-container { 1617 border: 0 none; 1618 height: 0; 1619 min-height: 0; } } 2051 1620 /* two columns on the dash, but keep the setting if one is selected */ 2052 1621 @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 } 2091 } 2092 1622 #wpbody-content #dashboard-widgets .postbox-container { 1623 width: 49.5%; } 1624 1625 #wpbody-content #dashboard-widgets #postbox-container-2, 1626 #wpbody-content #dashboard-widgets #postbox-container-3, 1627 #wpbody-content #dashboard-widgets #postbox-container-4 { 1628 float: right; 1629 width: 50.5%; } 1630 1631 #dashboard-widgets #postbox-container-3 .empty-container, 1632 #dashboard-widgets #postbox-container-4 .empty-container { 1633 border: 0 none; 1634 height: 0; 1635 min-height: 0; } 1636 1637 #wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container { 1638 width: 100%; } 1639 1640 #wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container { 1641 border: 0 none; 1642 height: 0; 1643 min-height: 0; } 1644 1645 /* show the radio buttons for column prefs only for one or two columns */ 1646 .index-php .screen-layout, 1647 .index-php .columns-prefs { 1648 display: block; } 1649 1650 .columns-prefs .columns-prefs-3, 1651 .columns-prefs .columns-prefs-4 { 1652 display: none; } } 2093 1653 /* one column on the post write/edit screen */ 2094 1654 @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 } 2120 } 2121 1655 #wpbody-content #poststuff #post-body { 1656 margin: 0; } 1657 1658 #wpbody-content #post-body.columns-2 #postbox-container-1 { 1659 margin-right: 0; 1660 width: 100%; } 1661 1662 #poststuff #postbox-container-1 .empty-container, 1663 #poststuff #postbox-container-1 #side-sortables:empty { 1664 border: 0 none; 1665 height: 0; 1666 min-height: 0; } 1667 1668 #poststuff #post-body.columns-2 #side-sortables { 1669 min-height: 0; } 1670 1671 /* hide the radio buttons for column prefs */ 1672 .screen-layout, 1673 .columns-prefs { 1674 display: none; } } 2122 1675 .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; 2127 } 1676 border-top-left-radius: 3px; 1677 border-top-right-radius: 3px; 1678 -moz-border-top-left-radius: 3px; 1679 -moz-border-top-right-radius: 3px; 1680 -webkit-border-top-left-radius: 3px; 1681 -webkit-border-top-right-radius: 3px; } 2128 1682 2129 1683 .js .postbox .hndle { 2130 cursor: move; 2131 } 1684 cursor: move; } 2132 1685 2133 1686 .postbox.closed .hndle { 2134 -webkit-border-radius: 3px;2135 2136 }1687 border-radius: 3px; 1688 -moz-border-radius: 3px; 1689 -webkit-border-radius: 3px; } 2137 1690 2138 1691 .hndle a { 2139 font-size: 11px; 2140 font-weight: normal; 2141 } 1692 font-size: 11px; 1693 font-weight: normal; } 2142 1694 2143 1695 .postbox .handlediv { 2144 float: right; 2145 width: 27px; 2146 height: 30px; 2147 } 1696 float: right; 1697 width: 27px; 1698 height: 30px; } 2148 1699 2149 1700 .js .postbox .handlediv { 2150 cursor: pointer; 2151 } 1701 cursor: pointer; } 2152 1702 2153 1703 .sortable-placeholder { 2154 border-width: 1px; 2155 border-style: dashed; 2156 margin-bottom: 20px; 2157 } 1704 border-width: 1px; 1705 border-style: dashed; 1706 margin-bottom: 20px; } 2158 1707 2159 1708 .widget, 2160 1709 .postbox, 2161 1710 .stuffbox { 2162 margin-bottom: 20px; 2163 padding: 0; 2164 border-width: 1px; 2165 border-style: solid; 2166 line-height: 1; 2167 } 1711 margin-bottom: 20px; 1712 padding: 0; 1713 border-width: 1px; 1714 border-style: solid; 1715 line-height: 1; } 2168 1716 2169 1717 .widget .widget-top, 2170 1718 .postbox h3, 2171 1719 .stuffbox h3 { 2172 margin-top: 1px; 2173 border-bottom-width: 1px; 2174 border-bottom-style: solid; 2175 -webkit-user-select: none; 2176 -moz-user-select: none; 2177 user-select: none; 2178 } 1720 margin-top: 1px; 1721 border-bottom-width: 1px; 1722 border-bottom-style: solid; 1723 -webkit-user-select: none; 1724 -moz-user-select: none; 1725 user-select: none; } 2179 1726 2180 1727 .js .widget .widget-top, 2181 1728 .js .postbox h3 { 2182 cursor: move; 2183 } 1729 cursor: move; } 2184 1730 2185 1731 .postbox .inside, 2186 1732 .stuffbox .inside { 2187 padding: 0 12px 0 10px; 2188 line-height: 1.4em; 2189 } 1733 padding: 0 12px 0 10px; 1734 line-height: 1.4em; } 2190 1735 2191 1736 .postbox .inside { 2192 margin: 10px 0; 2193 position: relative; 2194 } 1737 margin: 10px 0; 1738 position: relative; } 2195 1739 2196 1740 .postbox.closed h3 { 2197 2198 -webkit-box-shadow: none;2199 2200 }1741 border: none; 1742 -moz-box-shadow: none; 1743 -webkit-box-shadow: none; 1744 box-shadow: none; } 2201 1745 2202 1746 .postbox table.form-table { 2203 margin-bottom: 0; 2204 } 1747 margin-bottom: 0; } 2205 1748 2206 1749 .temp-border { 2207 border: 1px dotted #ccc; 2208 } 1750 border: 1px dotted #ccc; } 2209 1751 2210 1752 .columns-prefs label { 2211 padding: 0 5px; 2212 } 2213 1753 padding: 0 5px; } 2214 1754 2215 1755 /*------------------------------------------------------------------------------ 2216 1756 9.0 - Dashboard 2217 1757 ------------------------------------------------------------------------------*/ 2218 2219 1758 #dashboard-widgets-wrap { 2220 margin: 0 -8px; 2221 } 1759 margin: 0 -8px; } 2222 1760 2223 1761 #wpbody-content .metabox-holder { 2224 padding-top: 10px; 2225 } 1762 padding-top: 10px; } 2226 1763 2227 1764 #dashboard-widgets .meta-box-sortables { 2228 margin: 0 8px; 2229 } 1765 margin: 0 8px; } 2230 1766 2231 1767 #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; 2259 } 1768 border-top-style: solid; 1769 border-top-width: 1px; 1770 margin: 0 -10px; 1771 padding: 3px 8px; 1772 font-size: 11px; } 2260 1773 2261 1774 /* Welcome Panel */ 2262 1775 .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; 2272 } 2273 2274 .welcome-panel h3 { 2275 margin: 0; 2276 font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif; 2277 font-size: 21px; 2278 font-weight: normal; 2279 line-height: 1.2; 2280 } 2281 .welcome-panel h4 { 2282 margin: 1.33em 0 0; 2283 font-size: 13px; 2284 } 2285 2286 .welcome-panel .about-description { 2287 font-size: 16px; 2288 margin: 0; 2289 } 2290 2291 .welcome-panel .welcome-panel-close { 2292 position: absolute; 2293 top: 5px; 2294 right: 10px; 2295 padding: 8px 3px; 2296 font-size: 13px; 2297 text-decoration: none; 2298 line-height: 1; 2299 } 2300 2301 .welcome-panel .welcome-panel-close:before { 2302 content: ' '; 2303 position: absolute; 2304 left: -12px; 2305 width: 10px; 2306 height: 100%; 2307 background: url('../images/xit.gif') 0 17% no-repeat; 2308 } 2309 2310 .welcome-panel .welcome-panel-close:hover:before { 2311 background-position: 100% 17%; 2312 } 2313 2314 .wp-core-ui .welcome-panel .button.button-hero { 2315 margin: 15px 0 3px; 2316 } 1776 position: relative; 1777 overflow: auto; 1778 margin: 20px 0; 1779 padding: 23px 10px 12px; 1780 border-width: 1px; 1781 border-style: solid; 1782 border-radius: 3px; 1783 -moz-border-radius: 3px; 1784 -webkit-border-radius: 3px; 1785 font-size: 13px; 1786 line-height: 2.1em; } 1787 .welcome-panel h3 { 1788 margin: 0; 1789 font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif; 1790 font-size: 21px; 1791 font-weight: normal; 1792 line-height: 1.2; } 1793 .welcome-panel h4 { 1794 margin: 1.33em 0 0; 1795 font-size: 13px; } 1796 .welcome-panel .about-description { 1797 font-size: 16px; 1798 margin: 0; } 1799 .welcome-panel .welcome-panel-close { 1800 position: absolute; 1801 top: 5px; 1802 right: 10px; 1803 padding: 8px 3px; 1804 font-size: 13px; 1805 text-decoration: none; 1806 line-height: 1; } 1807 .welcome-panel .welcome-panel-close:before { 1808 content: ' '; 1809 position: absolute; 1810 left: -12px; 1811 width: 10px; 1812 height: 100%; 1813 background: url("../images/xit.gif") 0 17% no-repeat; } 1814 .welcome-panel .welcome-panel-close:hover:before { 1815 background-position: 100% 17%; } 1816 .wp-core-ui .welcome-panel .button.button-hero { 1817 margin: 15px 0 3px; } 1818 .welcome-panel .welcome-panel-column-container { 1819 clear: both; 1820 overflow: hidden; 1821 position: relative; } 1822 .welcome-panel .welcome-panel-column { 1823 width: 32%; 1824 min-width: 200px; 1825 float: left; } 1826 .welcome-panel .welcome-panel-column:first-child { 1827 width: 36%; } 1828 .welcome-panel .welcome-panel-column ul { 1829 margin: 0.8em 1em 1em 0; } 1830 .welcome-panel .welcome-panel-column li { 1831 line-height: 16px; 1832 list-style-type: none; } 1833 .ie8 .welcome-panel .welcome-panel-column { 1834 min-width: 230px; } 1835 .welcome-panel .welcome-icon { 1836 display: block; 1837 padding: 2px 0 8px 32px; 1838 background-image: url("../images/welcome-icons.png"); 1839 background-repeat: no-repeat; 1840 background-size: 16px; } 1841 .welcome-panel .welcome-add-page { 1842 background-position: 0 2px; } 1843 .welcome-panel .welcome-edit-page { 1844 background-position: 0 -90px; } 1845 .welcome-panel .welcome-learn-more { 1846 background-position: 0 -136px; } 1847 .welcome-panel .welcome-comments { 1848 background-position: 0 -182px; } 1849 .welcome-panel .welcome-view-site { 1850 background-position: 0 -274px; } 1851 .welcome-panel .welcome-widgets-menus { 1852 background-position: 1px -229px; 1853 line-height: 14px; } 1854 .welcome-panel .welcome-write-blog { 1855 background-position: 0 -44px; } 2317 1856 2318 1857 .welcome-panel-content { 2319 margin-left: 13px; 2320 max-width: 1500px; 2321 } 1858 margin-left: 13px; 1859 max-width: 1500px; } 1860 .welcome-panel-content p { 1861 margin-top: 7px; } 2322 1862 2323 .welcome-panel .welcome-panel-column-container { 2324 clear: both; 2325 overflow: hidden; 2326 position: relative; 2327 } 2328 2329 .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; 2337 } 1863 @media screen and (max-width: 870px) { 1864 .welcome-panel .welcome-panel-column, 1865 .welcome-panel .welcome-panel-column:first-child { 1866 display: block; 1867 float: none; 1868 width: 100%; } 1869 .welcome-panel .welcome-panel-column li { 1870 display: inline-block; 1871 margin-right: 13px; } 1872 .welcome-panel .welcome-panel-column ul { 1873 margin: 0.4em 0 0; } 1874 .welcome-panel .welcome-icon { 1875 padding-left: 25px; } } 1876 /* dashboard */ 1877 .edit-box { 1878 display: none; } 1879 h3:hover .edit-box { 1880 display: inline; } 2338 1881 2339 .welcome-panel .welcome-panel-column:first-child { 2340 width: 36%; 2341 } 1882 #dashboard-widgets form .input-text-wrap input { 1883 width: 100%; } 1884 #dashboard-widgets form .textarea-wrap textarea { 1885 width: 100%; } 1886 #dashboard-widgets .postbox form .submit { 1887 float: none; 1888 margin: .5em 0 0; 1889 padding: 0; 1890 border: none; } 1891 #dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish { 1892 min-width: 0; } 1893 #dashboard-widgets a { 1894 text-decoration: none; } 1895 #dashboard-widgets h3 a { 1896 text-decoration: underline; } 1897 #dashboard-widgets h3 .postbox-title-action { 1898 position: absolute; 1899 right: 10px; 1900 padding: 0; 1901 top: 5px; } 1902 .js #dashboard-widgets h3 .postbox-title-action { 1903 right: 30px; } 1904 #dashboard-widgets h4 { 1905 font-size: 13px; 1906 font-weight: normal; 1907 line-height: 1; 1908 margin: 0 0 .2em; 1909 padding: 0; } 2342 1910 2343 .welcome-panel-column p { 2344 margin-top: 7px; 2345 } 1911 /* Right Now */ 1912 #dashboard_right_now p.sub, 1913 #dashboard_right_now .table, #dashboard_right_now .versions { 1914 margin: -12px; } 1915 #dashboard_right_now .inside { 1916 font-size: 12px; 1917 padding-top: 20px; } 1918 #dashboard_right_now p.sub { 1919 padding: 5px 0 15px; 1920 color: #8f8f8f; 1921 font-size: 14px; 1922 position: absolute; 1923 top: -17px; 1924 left: 15px; } 1925 #dashboard_right_now .table { 1926 margin: 0; 1927 padding: 0; 1928 position: relative; } 1929 #dashboard_right_now .table_content { 1930 float: left; 1931 border-top-width: 1px; 1932 border-top-style: solid; 1933 width: 45%; } 1934 #dashboard_right_now .table_discussion { 1935 float: right; 1936 border-top-width: 1px; 1937 border-top-style: solid; 1938 width: 45%; } 1939 #dashboard_right_now table td { 1940 padding: 3px 0; 1941 white-space: nowrap; } 1942 #dashboard_right_now table tr.first td { 1943 border-top: none; } 1944 #dashboard_right_now td.b { 1945 padding-right: 6px; 1946 text-align: right; 1947 font-size: 14px; 1948 width: 1%; } 1949 #dashboard_right_now td.b a { 1950 font-size: 18px; } 1951 #dashboard_right_now td.b a:hover { 1952 color: #d54e21; } 1953 #dashboard_right_now .t { 1954 font-size: 12px; 1955 padding-right: 12px; 1956 padding-top: 6px; 1957 color: #777; } 1958 #dashboard_right_now .t a { 1959 white-space: nowrap; } 1960 #dashboard_right_now .spam { 1961 color: red; } 1962 #dashboard_right_now .waiting { 1963 color: #e66f00; } 1964 #dashboard_right_now .approved { 1965 color: green; } 1966 #dashboard_right_now .versions { 1967 padding: 6px 10px 12px; 1968 clear: both; } 1969 #dashboard_right_now a.button { 1970 float: right; 1971 clear: right; 1972 position: relative; 1973 top: -5px; } 2346 1974 2347 .welcome-panel .welcome-icon { 2348 display: block; 2349 padding: 2px 0 8px 32px; 2350 background-image: url('../images/welcome-icons.png'); 2351 background-repeat: no-repeat; 2352 background-size: 16px; 2353 } 1975 /* Recent Comments */ 1976 #dashboard_recent_comments h3 { 1977 margin-bottom: 0; } 1978 #dashboard_recent_comments .inside { 1979 margin-top: 0; } 1980 #dashboard_recent_comments .comment-meta .approve { 1981 font-style: italic; 1982 font-family: sans-serif; 1983 font-size: 10px; } 1984 #dashboard_recent_comments .subsubsub { 1985 float: none; 1986 white-space: normal; } 2354 1987 2355 .welcome-panel .welcome-add-page { 2356 background-position: 0 2px; 2357 } 1988 #the-comment-list { 1989 position: relative; } 1990 #the-comment-list p.comment-author img { 1991 float: left; 1992 margin-right: 8px; } 1993 #the-comment-list p.comment-author strong a { 1994 border: none; } 1995 #the-comment-list td { 1996 vertical-align: top; } 1997 #the-comment-list td.comment { 1998 word-wrap: break-word; } 1999 #the-comment-list td.comment p.comment-author { 2000 margin-top: 0; 2001 margin-left: 0; } 2002 #the-comment-list .comment-item { 2003 padding: 1em 10px; 2004 border-top: 1px solid; } 2005 #the-comment-list .comment-item .avatar { 2006 float: left; 2007 margin: 0 10px 5px 0; } 2008 #the-comment-list .comment-item h4 { 2009 line-height: 1.7em; 2010 margin-top: -0.4em; 2011 color: #777; } 2012 #the-comment-list .comment-item h4 cite { 2013 font-style: normal; 2014 font-weight: normal; } 2015 #the-comment-list .comment-item:first-child { 2016 border-top: none; } 2017 #the-comment-list .comment-item blockquote, 2018 #the-comment-list .comment-item blockquote p { 2019 margin: 0; 2020 padding: 0; 2021 display: inline; } 2022 #the-comment-list .comment-item p.row-actions { 2023 margin: 3px 0 0; 2024 padding: 0; 2025 font-size: 12px; } 2026 #the-comment-list .pingback { 2027 padding-left: 9px !important; } 2028 #the-comment-list .comment-item, 2029 #the-comment-list #replyrow { 2030 margin: 0 -10px; } 2031 #dashboard_recent_comments #the-comment-list .trackback blockquote, #dashboard_recent_comments #the-comment-list .pingback blockquote { 2032 display: block; } 2358 2033 2359 .welcome-panel .welcome-edit-page { 2360 background-position: 0 -90px; 2361 } 2034 /* QuickPress */ 2035 #title-wrap label, 2036 #tags-input-wrap label { 2037 cursor: text; } 2362 2038 2363 .welcome-panel .welcome-learn-more { 2364 background-position: 0 -136px; 2365 } 2039 #title-wrap #title { 2040 padding: 2px 6px; 2041 font-size: 1.3em; 2042 line-height: 100%; 2043 outline: none; } 2044 #title-wrap #title-prompt-text { 2045 font-size: 1.3em; 2046 padding: 5px 8px; } 2366 2047 2367 .welcome-panel .welcome-comments { 2368 background-position: 0 -182px; 2369 } 2048 #tags-input-wrap #tags-input { 2049 outline: none; } 2050 #tags-input-wrap #tags-input-prompt-text { 2051 font-size: 1em; 2052 padding: 4px 8px; } 2370 2053 2371 .welcome-panel .welcome-view-site { 2372 background-position: 0 -274px; 2373 } 2054 .no-js #dashboard_quick_press { 2055 display: none; } 2056 #dashboard_quick_press .easy-blogging { 2057 padding: 0 8px; 2058 text-align: left; } 2059 #dashboard_quick_press .input-text-wrap { 2060 position: relative; } 2061 #dashboard_quick_press .prompt { 2062 color: #bbb; 2063 position: absolute; } 2064 #dashboard_quick_press div.updated { 2065 padding: 0 5px; } 2066 #dashboard_quick_press .input-text-wrap, 2067 #dashboard_quick_press .textarea-wrap { 2068 margin: 0 0 1em 0; } 2069 #dashboard_quick_press .wp-media-buttons { 2070 margin: 0 0 .2em 1px; 2071 padding: 0; } 2072 #dashboard_quick_press .wp-media-buttons a { 2073 color: #777; } 2074 #dashboard-widgets #dashboard_quick_press form p.submit input { 2075 float: left; } 2076 #dashboard-widgets #dashboard_quick_press form p.submit #save-post { 2077 margin: 0 0.7em 0 1px; } 2078 #dashboard-widgets #dashboard_quick_press form p.submit #publish { 2079 float: right; } 2080 #dashboard-widgets #dashboard_quick_press form p.submit .spinner { 2081 vertical-align: middle; 2082 margin: 4px 6px 0 0; } 2374 2083 2375 .welcome-panel .welcome-widgets-menus { 2376 background-position: 1px -229px; 2377 line-height: 14px; 2378 } 2084 /* Recent Drafts */ 2085 #dashboard_recent_drafts ul, 2086 #dashboard_recent_drafts p { 2087 margin: 0; 2088 padding: 0; 2089 word-wrap: break-word; } 2090 #dashboard_recent_drafts ul { 2091 list-style: none; } 2092 #dashboard_recent_drafts ul li { 2093 margin-bottom: 1em; } 2094 #dashboard_recent_drafts h4 { 2095 line-height: 1.7em; 2096 word-wrap: break-word; } 2097 #dashboard_recent_drafts h4 abbr { 2098 font-weight: normal; 2099 font-family: sans-serif; 2100 font-size: 12px; 2101 color: #999; 2102 margin-left: 3px; } 2379 2103 2380 .welcome-panel .welcome-write-blog { 2381 background-position: 0 -44px; 2382 } 2104 /* Feeds */ 2105 .rss-widget ul { 2106 margin: 0; 2107 padding: 0; 2108 list-style: none; } 2109 .rss-widget ul li { 2110 line-height: 1.5em; 2111 margin-bottom: 12px; } 2112 .rss-widget span.rss-date { 2113 color: #999; 2114 font-size: 12px; 2115 margin-left: 3px; } 2116 .rss-widget cite { 2117 display: block; 2118 text-align: right; 2119 margin: 0 0 1em; 2120 padding: 0; } 2121 .rss-widget cite:before { 2122 content: '\2014'; } 2383 2123 2384 .welcome-panel .welcome-panel-column ul{2385 margin: 0.8em 1em 1em 0;2386 }2124 a.rsswidget { 2125 font-size: 13px; 2126 line-height: 1.7em; } 2387 2127 2388 .welcome-panel .welcome-panel-column li { 2389 line-height: 16px; 2390 list-style-type: none; 2391 } 2128 /* Plugins */ 2129 #dashboard_plugins h4 { 2130 line-height: 1.7em; } 2131 #dashboard_plugins h5 { 2132 font-size: 13px; 2133 font-weight: normal; 2134 line-height: 1.4em; 2135 margin: 0; 2136 display: inline; } 2137 #dashboard_plugins h5 a { 2138 line-height: 1.4em; } 2139 #dashboard_plugins .inside span { 2140 font-size: 12px; 2141 padding-left: 5px; } 2142 #dashboard_plugins p { 2143 margin: 0.3em 0 1.4em; 2144 line-height: 1.4em; } 2392 2145 2393 @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 } 2413 } 2146 .dashboard-comment-wrap { 2147 overflow: hidden; 2148 word-wrap: break-word; } 2149 2150 /* Browser Nag */ 2151 #dashboard_browser_nag a { 2152 color: white; 2153 text-decoration: underline; } 2154 #dashboard_browser_nag a.update-browser-link { 2155 font-size: 1.2em; 2156 font-weight: bold; 2157 line-height: normal; } 2158 #dashboard_browser_nag a.browse-happy-link, #dashboard_browser_nag a.update-browser-link { 2159 text-shadow: #d29a04 0 1px 0; } 2160 #dashboard_browser_nag p.browser-update-nag.has-browser-icon { 2161 padding-right: 125px; } 2162 #dashboard_browser_nag .browser-icon { 2163 margin-top: -35px; } 2164 #dashboard_browser_nag.postbox { 2165 background-color: #e29808; 2166 background-image: none; 2167 border-color: #edc048; 2168 color: white; 2169 -moz-box-shadow: none; 2170 -webkit-box-shadow: none; 2171 box-shadow: none; } 2172 #dashboard_browser_nag.postbox h3 { 2173 border-bottom-color: #f6e2ac; 2174 text-shadow: none; 2175 background: transparent none; 2176 color: white; 2177 -moz-box-shadow: none; 2178 -webkit-box-shadow: none; 2179 box-shadow: none; } 2180 #dashboard_browser_nag.postbox.browser-insecure { 2181 background-color: #ac1b1b; 2182 border-color: #ac1b1b; } 2183 #dashboard_browser_nag.postbox.browser-insecure h3 { 2184 border-bottom-color: #cd5a5a; 2185 color: white; } 2186 #dashboard_browser_nag.browser-insecure a.browse-happy-link, #dashboard_browser_nag.browser-insecure a.update-browser-link { 2187 text-shadow: #871b15 0 1px 0; } 2414 2188 2415 2189 /*------------------------------------------------------------------------------ 2416 2190 10.0 - List Posts (/Pages/etc) 2417 2191 ------------------------------------------------------------------------------*/ 2418 2419 2192 table.fixed { 2420 table-layout: fixed; 2421 } 2193 table-layout: fixed; } 2422 2194 2423 2195 .fixed .column-rating, 2424 2196 .fixed .column-visible { 2425 width: 8%; 2426 } 2427 2197 width: 8%; } 2428 2198 .fixed .column-posts, 2429 2199 .fixed .column-date, 2430 2200 .fixed .column-parent, 2431 2201 .fixed .column-links, 2432 2202 .fixed .column-author, 2433 2203 .fixed .column-format { 2434 width: 10%; 2435 } 2436 2204 width: 10%; } 2437 2205 .fixed .column-response, 2438 2206 .fixed .column-categories, 2439 2207 .fixed .column-tags, 2440 2208 .fixed .column-rel, 2441 2209 .fixed .column-role { 2442 width: 15%; 2443 } 2444 2210 width: 15%; } 2445 2211 .fixed .column-slug { 2446 width: 25%; 2447 } 2448 2212 width: 25%; } 2449 2213 .fixed .column-locations { 2450 width: 35%; 2451 } 2452 2214 width: 35%; } 2453 2215 .fixed .column-comments { 2454 width: 4em; 2455 padding: 8px 0; 2456 text-align: left; 2457 } 2458 2459 .fixed .column-comments .vers { 2460 padding-left: 3px; 2461 } 2462 2463 .fixed .column-comments a { 2464 float: left; 2465 } 2466 2216 width: 4em; 2217 padding: 8px 0; 2218 text-align: left; } 2219 .fixed .column-comments .vers { 2220 padding-left: 3px; } 2221 .fixed .column-comments a { 2222 float: left; } 2467 2223 .fixed .column-icon { 2468 width: 80px; 2469 } 2470 2224 width: 80px; } 2471 2225 #comments-form .fixed .column-author { 2472 width: 20%; 2473 } 2226 width: 20%; } 2474 2227 2475 2228 #commentsdiv.postbox .inside { 2476 margin: 0; 2477 padding: 0; 2478 } 2479 2229 margin: 0; 2230 padding: 0; } 2480 2231 #commentsdiv .inside .row-actions { 2481 line-height:18px; 2482 } 2483 2232 line-height: 18px; } 2484 2233 #commentsdiv .inside .column-author { 2485 width: 25%; 2486 } 2487 2234 width: 25%; } 2488 2235 #commentsdiv .column-comment p { 2489 margin: 0.6em 0; 2490 padding: 0; 2491 } 2492 2236 margin: 0.6em 0; 2237 padding: 0; } 2493 2238 #commentsdiv #replyrow td { 2494 padding: 0; 2495 } 2496 2239 padding: 0; } 2497 2240 #commentsdiv p { 2498 padding: 8px 10px; 2499 margin: 0; 2500 } 2501 2241 padding: 8px 10px; 2242 margin: 0; } 2502 2243 #commentsdiv #add-new-comment { 2503 border-width: 0 0 1px; 2504 border-style: none none solid; 2505 } 2506 2244 border-width: 0 0 1px; 2245 border-style: none none solid; } 2507 2246 #commentsdiv .comments-box { 2508 border: 0 none; 2509 } 2510 2511 #commentsdiv .comments-box thead th { 2512 background: transparent; 2513 padding: 0 7px 4px; 2514 font-style: italic; 2515 } 2516 2517 #commentsdiv .comments-box tr:last-child td { 2518 border-bottom: 0 none; 2519 } 2520 2247 border: 0 none; } 2248 #commentsdiv .comments-box thead th { 2249 background: transparent; 2250 padding: 0 7px 4px; 2251 font-style: italic; } 2252 #commentsdiv .comments-box tr:last-child td { 2253 border-bottom: 0 none; } 2521 2254 #commentsdiv .spinner { 2522 padding-left: 5px; 2523 } 2255 padding-left: 5px; } 2524 2256 2525 2257 .sorting-indicator { 2526 display: none; 2527 width: 7px; 2528 height: 4px; 2529 margin-top: 8px; 2530 margin-left: 7px; 2531 background-image: url('../images/sort.gif'); 2532 background-repeat: no-repeat; 2533 } 2258 display: none; 2259 width: 7px; 2260 height: 4px; 2261 margin-top: 8px; 2262 margin-left: 7px; 2263 background-image: url("../images/sort.gif"); 2264 background-repeat: no-repeat; } 2534 2265 2535 2266 tr.wp-locked .locked-indicator { 2536 background: url('../images/lock.png') no-repeat; 2537 margin: -2px 0 0 6px; 2538 height: 20px; 2539 width: 16px; 2540 } 2267 background: url("../images/lock.png") no-repeat; 2268 margin: -2px 0 0 6px; 2269 height: 20px; 2270 width: 16px; } 2541 2271 2542 2272 tr.wp-locked .check-column label, 2543 2273 tr.wp-locked .check-column input[type="checkbox"], 2544 2274 tr.wp-locked .row-actions .inline, 2545 2275 tr.wp-locked .row-actions .trash { 2546 display: none; 2547 } 2276 display: none; } 2548 2277 2549 2278 tr .locked-info { 2550 height: 0; 2551 opacity: 0; 2552 } 2279 height: 0; 2280 opacity: 0; } 2553 2281 2554 2282 tr.wp-locked .locked-info { 2555 height: auto; 2556 opacity: 1; 2557 } 2283 height: auto; 2284 opacity: 1; } 2558 2285 2559 2286 tr.locked-info, tr.wp-locked .locked-info { 2560 -webkit-transition: height 1s, opacity 500ms; 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; 2565 } 2287 -webkit-transition: height 1s, opacity 500ms; 2288 -moz-transition: height 1s, opacity 500ms; 2289 -ms-transition: height 1s, opacity 500ms; 2290 -o-transition: height 1s, opacity 500ms; 2291 transition: height 1s, opacity 500ms; } 2566 2292 2567 2293 .fixed .column-comments .sorting-indicator { 2568 margin-top: 3px; 2569 } 2294 margin-top: 3px; } 2570 2295 2571 2296 #menu-locations-wrap .widefat { 2572 width: 60%; 2573 } 2297 width: 60%; } 2574 2298 2575 2299 .widefat th.sortable, 2576 2300 .widefat th.sorted { 2577 padding: 0; 2578 } 2301 padding: 0; } 2579 2302 2580 2303 th.sortable a, 2581 2304 th.sorted a { 2582 display: block; 2583 overflow: hidden; 2584 padding: 7px 7px 8px; 2585 } 2305 display: block; 2306 overflow: hidden; 2307 padding: 7px 7px 8px; } 2586 2308 2587 2309 .fixed .column-comments.sortable a, 2588 2310 .fixed .column-comments.sorted a { 2589 padding: 8px 0; 2590 } 2311 padding: 8px 0; } 2591 2312 2592 2313 th.sortable a span, 2593 2314 th.sorted a span { 2594 float: left; 2595 cursor: pointer; 2596 } 2315 float: left; 2316 cursor: pointer; } 2597 2317 2598 2318 th.sorted.asc .sorting-indicator, 2599 2319 th.desc:hover span.sorting-indicator { 2600 display: block; 2601 background-position: 0 0; 2602 } 2320 display: block; 2321 background-position: 0 0; } 2603 2322 2604 2323 th.sorted.desc .sorting-indicator, 2605 2324 th.asc:hover span.sorting-indicator { 2606 display: block; 2607 background-position: -7px 0; 2608 } 2325 display: block; 2326 background-position: -7px 0; } 2609 2327 2610 2328 /* Bulk Actions */ 2611 2329 .tablenav-pages a { 2612 2613 2614 2615 2616 padding: 0 2px; 2617 } 2330 border-bottom-style: solid; 2331 border-bottom-width: 2px; 2332 font-weight: bold; 2333 margin-right: 1px; 2334 padding: 0 2px; } 2335 2618 2336 .tablenav-pages .current-page { 2619 text-align: center; 2620 } 2621 .tablenav-pages .next-page { 2622 margin-left: 2px; 2623 } 2337 text-align: center; } 2624 2338 2625 .tablenav a.button-secondary { 2626 display: block; 2627 margin: 3px 8px 0 0; 2628 } 2339 .tablenav-pages .next-page { 2340 margin-left: 2px; } 2629 2341 2630 2342 .tablenav { 2631 clear: both; 2632 height: 30px; 2633 margin: 6px 0 4px; 2634 vertical-align: middle; 2635 } 2636 2637 .tablenav.themes { 2638 max-width: 98%; 2639 } 2640 2641 .tablenav .tablenav-pages { 2642 float: right; 2643 display: block; 2644 cursor: default; 2645 height: 30px; 2646 line-height: 30px; 2647 font-size: 12px; 2648 } 2649 2650 .tablenav .no-pages, 2651 .tablenav .one-page .pagination-links { 2652 display: none; 2653 } 2343 clear: both; 2344 height: 30px; 2345 margin: 6px 0 4px; 2346 vertical-align: middle; } 2347 .tablenav.themes { 2348 max-width: 98%; } 2349 .tablenav a.button-secondary { 2350 display: block; 2351 margin: 3px 8px 0 0; } 2352 .tablenav .tablenav-pages { 2353 float: right; 2354 display: block; 2355 cursor: default; 2356 height: 30px; 2357 line-height: 30px; 2358 font-size: 12px; } 2359 .tablenav .tablenav-pages a.disabled:hover, 2360 .tablenav .tablenav-pages a.disabled:active { 2361 cursor: default; } 2362 .tablenav .no-pages, 2363 .tablenav .one-page .pagination-links { 2364 display: none; } 2365 .tablenav .displaying-num { 2366 margin-right: 10px; 2367 font-size: 12px; 2368 font-style: italic; } 2369 .tablenav .actions { 2370 overflow: hidden; 2371 padding: 2px 8px 0 0; } 2372 .tablenav .delete { 2373 margin-right: 20px; } 2654 2374 2655 2375 .tablenav .tablenav-pages a, 2656 .tablenav-pages span.current { 2657 text-decoration: none; 2658 padding: 3px 6px; 2659 } 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 .tablenav .actions { 2673 overflow: hidden; 2674 padding: 2px 8px 0 0; 2675 } 2676 2677 .tablenav .delete { 2678 margin-right: 20px; 2679 } 2376 .tablenav-pages span.current { 2377 text-decoration: none; 2378 padding: 3px 6px; } 2680 2379 2681 2380 .view-switch { 2682 float: right; 2683 margin: 6px 8px 0; 2684 } 2685 2686 .view-switch a { 2687 text-decoration: none; 2688 } 2381 float: right; 2382 margin: 6px 8px 0; } 2383 .view-switch a { 2384 text-decoration: none; } 2689 2385 2690 2386 .filter { 2691 float: left; 2692 margin: -5px 0 0 10px; 2693 } 2387 float: left; 2388 margin: -5px 0 0 10px; } 2389 .filter .subsubsub { 2390 margin-left: -10px; 2391 margin-top: 13px; } 2694 2392 2695 .filter .subsubsub {2696 margin-left: -10px;2697 margin-top: 13px;2698 }2699 2393 .screen-per-page { 2700 width: 4em; 2701 } 2394 width: 4em; } 2702 2395 2703 2396 #posts-filter fieldset { 2704 float: left; 2705 margin: 0 1.5ex 1em 0; 2706 padding: 0; 2707 } 2397 float: left; 2398 margin: 0 1.5ex 1em 0; 2399 padding: 0; } 2708 2400 2709 2401 #posts-filter fieldset legend { 2710 padding: 0 0 .2em 1px; 2711 } 2712 2402 padding: 0 0 .2em 1px; } 2713 2403 2714 2404 /*------------------------------------------------------------------------------ 2715 2405 10.1 - Inline Editing 2716 2406 ------------------------------------------------------------------------------*/ 2717 2718 2407 /* 2719 2408 .quick-edit* is for Quick Edit 2720 2409 .bulk-edit* is for Bulk Edit 2721 2410 .inline-edit* is for everything 2722 2411 */ 2723 2724 2412 /* Layout */ 2725 2726 2413 #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; 2742 } 2743 2414 font-size: 12px; 2415 float: left; 2416 margin: 0; 2417 padding: 0; 2418 width: 100%; } 2744 2419 #wpbody-content .quick-edit-row-post .inline-edit-col-left { 2745 width: 40%; 2746 } 2747 2420 width: 40%; } 2748 2421 #wpbody-content .quick-edit-row-post .inline-edit-col-right { 2749 width: 39%; 2750 } 2751 2752 #wpbody-content .inline-edit-row-post .inline-edit-col-center { 2753 width: 20%; 2754 } 2755 2422 width: 39%; } 2423 #wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col { 2424 border-width: 0 0 0 1px; 2425 border-style: none none none solid; } 2756 2426 #wpbody-content .quick-edit-row-page .inline-edit-col-left { 2757 width: 50%; 2758 } 2759 2427 width: 50%; } 2428 #wpbody-content .inline-edit-row-post .inline-edit-col-center { 2429 width: 20%; } 2760 2430 #wpbody-content .quick-edit-row-page .inline-edit-col-right, 2761 2431 #wpbody-content .bulk-edit-row-post .inline-edit-col-right { 2762 width: 49%; 2763 } 2764 2432 width: 49%; } 2765 2433 #wpbody-content .bulk-edit-row .inline-edit-col-left { 2766 width: 30%; 2767 } 2768 2434 width: 30%; } 2769 2435 #wpbody-content .bulk-edit-row-page .inline-edit-col-right { 2770 width: 69%; 2771 } 2772 2436 width: 69%; } 2773 2437 #wpbody-content .bulk-edit-row .inline-edit-col-bottom { 2774 float: right; 2775 width: 69%; 2776 } 2777 2438 float: right; 2439 width: 69%; } 2778 2440 #wpbody-content .inline-edit-row-page .inline-edit-col-right { 2779 margin-top: 27px; 2780 } 2441 margin-top: 27px; } 2781 2442 2782 .inline-edit-row fieldset .inline-edit-group { 2783 clear: both; 2784 } 2443 tr.inline-edit-row td, 2444 #wpbody-content .inline-edit-row fieldset .inline-edit-col { 2445 padding: 0 0.5em; } 2446 2447 .inline-edit-row { 2448 /* Positioning */ } 2449 .inline-edit-row fieldset .inline-edit-group { 2450 clear: both; } 2451 .inline-edit-row fieldset .inline-edit-group:after { 2452 content: "."; 2453 display: block; 2454 height: 0; 2455 clear: both; 2456 visibility: hidden; } 2457 .inline-edit-row p.submit { 2458 clear: both; 2459 padding: 0.5em; 2460 margin: 0.5em 0 0; } 2461 .inline-edit-row span.error { 2462 line-height: 22px; 2463 margin: 0 15px; 2464 padding: 3px 5px; } 2465 .inline-edit-row h4 { 2466 margin: .2em 0; 2467 padding: 0; 2468 line-height: 23px; 2469 text-transform: uppercase; } 2470 .inline-edit-row fieldset { 2471 /* Specific Elements */ } 2472 .inline-edit-row fieldset span.title, 2473 .inline-edit-row fieldset span.checkbox-title { 2474 margin: 0; 2475 padding: 0; 2476 line-height: 27px; 2477 font-style: italic; 2478 line-height: 1.8em; } 2479 .inline-edit-row fieldset label, 2480 .inline-edit-row fieldset span.inline-edit-categories-label { 2481 display: block; 2482 margin: .2em 0; } 2483 .inline-edit-row fieldset label.inline-edit-tags { 2484 margin-top: 0; } 2485 .inline-edit-row fieldset label.inline-edit-tags span.title { 2486 margin: .2em 0; 2487 width: auto; } 2488 .inline-edit-row fieldset label span.title { 2489 display: block; 2490 float: left; 2491 width: 5em; } 2492 .inline-edit-row fieldset label span.input-text-wrap { 2493 display: block; 2494 margin-left: 5em; } 2495 .inline-edit-row fieldset label input[type=checkbox] { 2496 vertical-align: text-bottom; } 2497 .inline-edit-row fieldset label textarea { 2498 width: 100%; 2499 height: 4em; } 2500 .inline-edit-row fieldset input[type="text"], 2501 .inline-edit-row fieldset textarea { 2502 border-style: solid; 2503 border-width: 1px; } 2504 .inline-edit-row fieldset .inline-edit-date { 2505 float: left; } 2506 .inline-edit-row fieldset input[name=jj], 2507 .inline-edit-row fieldset input[name=hh], 2508 .inline-edit-row fieldset input[name=mn] { 2509 font-size: 12px; 2510 width: 2.1em; } 2511 .inline-edit-row fieldset input[name=aa] { 2512 font-size: 12px; 2513 width: 3.5em; } 2514 .inline-edit-row fieldset label input.inline-edit-password-input { 2515 width: 8em; } 2516 .inline-edit-row fieldset ul.cat-checklist li, 2517 .inline-edit-row fieldset ul.cat-checklist input { 2518 margin: 0; } 2519 .inline-edit-row fieldset label input.inline-edit-menu-order-input { 2520 width: 3em; } 2521 .inline-edit-row fieldset label input.inline-edit-slug-input { 2522 width: 75%; } 2523 .inline-edit-row .input-text-wrap input[type=text] { 2524 width: 100%; } 2525 .inline-edit-row fieldset ul.cat-checklist label, 2526 .inline-edit-row #bulk-titles div { 2527 font-family: sans-serif; 2528 font-style: normal; 2529 font-size: 11px; } 2785 2530 2786 .inline-edit-row fieldset .inline-edit-group:after { 2787 content: "."; 2788 display: block; 2789 height: 0; 2790 clear: both; 2791 visibility: hidden; 2792 } 2531 .quick-edit-row-post fieldset.inline-edit-col-right label span.title { 2532 width: auto; 2533 padding-right: 0.5em; } 2793 2534 2794 .inline-edit-row p.submit { 2795 clear: both; 2796 padding: 0.5em; 2797 margin: 0.5em 0 0; 2798 } 2535 #wpbody-content .bulk-edit-row fieldset .inline-edit-group label { 2536 max-width: 50%; } 2799 2537 2800 .inline-edit-row span.error { 2801 line-height: 22px; 2802 margin: 0 15px; 2803 padding: 3px 5px; 2804 } 2538 #wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child { 2539 margin-right: 0.5em; } 2805 2540 2806 /* Positioning */ 2807 .inline-edit-row h4 { 2808 margin: .2em 0; 2809 padding: 0; 2810 line-height: 23px; 2811 } 2812 .inline-edit-row fieldset span.title, 2813 .inline-edit-row fieldset span.checkbox-title { 2814 margin: 0; 2815 padding: 0; 2816 line-height: 27px; 2817 } 2541 .inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input { 2542 width: 6em; } 2818 2543 2819 .inline-edit-row fieldset label, 2820 .inline-edit-row fieldset span.inline-edit-categories-label { 2821 display: block; 2822 margin: .2em 0; 2823 } 2544 .inline-edit-save .spinner { 2545 padding: 4px 10px 0; 2546 vertical-align: top; 2547 float: right; } 2824 2548 2825 .inline-edit-row fieldset label.inline-edit-tags { 2826 margin-top: 0; 2827 } 2549 ul.cat-checklist { 2550 height: 12em; 2551 border-style: solid; 2552 border-width: 1px; 2553 overflow-y: scroll; 2554 padding: 0 5px; 2555 margin: 0; } 2828 2556 2829 .inline-edit-row fieldset label.inline-edit-tags span.title { 2830 margin: .2em 0; 2831 width: auto; 2832 } 2557 #bulk-titles { 2558 display: block; 2559 height: 12em; 2560 border-style: solid; 2561 border-width: 1px; 2562 overflow-y: scroll; 2563 padding: 0 5px; 2564 margin: 0 0 5px; } 2833 2565 2834 .inline-edit-row fieldset label span.title { 2835 display: block; 2836 float: left; 2837 width: 5em; 2838 } 2566 .quick-edit-row-post fieldset label.inline-edit-status { 2567 float: left; } 2839 2568 2840 .inline-edit-row fieldset label span.input-text-wrap { 2841 display: block; 2842 margin-left: 5em; 2843 } 2569 #bulk-titles { 2570 line-height: 140%; } 2571 #bulk-titles div { 2572 margin: 0.2em 0.3em; } 2573 #bulk-titles div a { 2574 cursor: pointer; 2575 display: block; 2576 float: left; 2577 height: 10px; 2578 margin: 3px 3px 0 -2px; 2579 overflow: hidden; 2580 position: relative; 2581 text-indent: -9999px; 2582 width: 10px; } 2844 2583 2845 .quick-edit-row-post fieldset.inline-edit-col-right label span.title { 2846 width: auto; 2847 padding-right: 0.5em; 2848 } 2584 /*------------------------------------------------------------------------------ 2585 11.0 - Write/Edit Post Screen 2586 ------------------------------------------------------------------------------*/ 2587 #show-comments { 2588 overflow: hidden; } 2849 2589 2850 .inline-edit-row .input-text-wrap input[type=text] { 2851 width: 100%; 2852 } 2590 #save-action .spinner, 2591 #show-comments a, 2592 #show-comments .spinner { 2593 float: left; } 2853 2594 2854 .inline-edit-row fieldset label input[type=checkbox] { 2855 vertical-align: text-bottom; 2856 } 2595 #lost-connection-notice .spinner { 2596 display: block; 2597 float: left; 2598 margin: 0 5px 0 0; } 2857 2599 2858 .inline-edit-row fieldset label textarea { 2859 width: 100%; 2860 height: 4em; 2861 } 2600 .rtl #lost-connection-notice .spinner { 2601 float: right; 2602 margin: 0 0 0 5px; } 2862 2603 2863 #wpbody-content .bulk-edit-row fieldset .inline-edit-group label { 2864 max-width: 50%; 2865 } 2604 #titlediv { 2605 position: relative; 2606 margin-bottom: 5px; } 2607 #titlediv label { 2608 cursor: text; } 2609 #titlediv div.inside { 2610 margin: 0; } 2611 #titlediv #title { 2612 padding: 3px 8px; 2613 font-size: 1.7em; 2614 line-height: 100%; 2615 height: 1.7em; 2616 width: 100%; 2617 outline: none; 2618 margin: 1px 0; } 2866 2619 2867 #wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child { 2868 margin-right: 0.5em 2869 } 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 .inline-edit-row fieldset input[type="text"], 2894 .inline-edit-row fieldset textarea { 2895 border-style: solid; 2896 border-width: 1px; 2897 } 2898 2899 .inline-edit-row fieldset .inline-edit-date { 2900 float: left; 2901 } 2902 2903 .inline-edit-row fieldset input[name=jj], 2904 .inline-edit-row fieldset input[name=hh], 2905 .inline-edit-row fieldset input[name=mn] { 2906 font-size: 12px; 2907 width: 2.1em; 2908 } 2909 2910 .inline-edit-row fieldset input[name=aa] { 2911 font-size: 12px; 2912 width: 3.5em; 2913 } 2914 2915 .inline-edit-row fieldset label input.inline-edit-password-input { 2916 width: 8em; 2917 } 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 .inline-edit-row fieldset ul.cat-checklist li, 2939 .inline-edit-row fieldset ul.cat-checklist input { 2940 margin: 0; 2941 } 2942 2943 .inline-edit-row fieldset ul.cat-checklist label, 2944 .inline-edit-row #bulk-titles div { 2945 font-family: sans-serif; 2946 font-style: normal; 2947 font-size: 11px; 2948 } 2949 2950 .inline-edit-row fieldset label input.inline-edit-menu-order-input { 2951 width: 3em; 2952 } 2953 2954 .inline-edit-row fieldset label input.inline-edit-slug-input { 2955 width: 75%; 2956 } 2957 2958 .quick-edit-row-post fieldset label.inline-edit-status { 2959 float: left; 2960 } 2961 2962 #bulk-titles { 2963 line-height: 140%; 2964 } 2965 #bulk-titles div { 2966 margin: 0.2em 0.3em; 2967 } 2968 2969 #bulk-titles div a { 2970 cursor: pointer; 2971 display: block; 2972 float: left; 2973 height: 10px; 2974 margin: 3px 3px 0 -2px; 2975 overflow: hidden; 2976 position: relative; 2977 text-indent: -9999px; 2978 width: 10px; 2979 } 2980 2981 2982 /*------------------------------------------------------------------------------ 2983 11.0 - Write/Edit Post Screen 2984 ------------------------------------------------------------------------------*/ 2985 2986 #show-comments { 2987 overflow: hidden; 2988 } 2989 2990 #save-action .spinner, 2991 #show-comments a, 2992 #show-comments .spinner { 2993 float: left; 2994 } 2995 2996 #lost-connection-notice .spinner { 2997 display: block; 2998 float: left; 2999 margin: 0 5px 0 0; 3000 } 3001 3002 .rtl #lost-connection-notice .spinner { 3003 float: right; 3004 margin: 0 0 0 5px; 3005 } 3006 3007 #titlediv { 3008 position: relative; 3009 margin-bottom: 5px; 3010 } 3011 3012 #titlediv label { 3013 cursor: text; 3014 } 3015 3016 #titlediv div.inside { 3017 margin: 0; 3018 } 3019 3020 #poststuff #titlewrap { 3021 border: 0; 3022 padding: 0; 3023 } 3024 3025 #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; 3033 } 2620 #poststuff #titlewrap { 2621 border: 0; 2622 padding: 0; } 3034 2623 3035 2624 #titlediv #title-prompt-text, 3036 2625 #wp-fullscreen-title-prompt-text { 3037 color: #bbb; 3038 position: absolute; 3039 font-size: 1.7em; 3040 padding: 11px 10px; 3041 } 2626 color: #bbb; 2627 position: absolute; 2628 font-size: 1.7em; 2629 padding: 11px 10px; } 3042 2630 3043 2631 #wp-fullscreen-save .fs-saved { 3044 color: #999; 3045 float: right; 3046 margin-top: 4px; 3047 } 2632 color: #999; 2633 float: right; 2634 margin-top: 4px; } 3048 2635 3049 2636 #wp-fullscreen-title-prompt-text { 3050 padding: 11px; 3051 } 2637 padding: 11px; } 3052 2638 3053 2639 #poststuff .inside-submitbox, 3054 2640 #side-sortables .inside-submitbox { 3055 margin: 0 3px; 3056 font-size: 11px; 3057 } 2641 margin: 0 3px; 2642 font-size: 11px; } 3058 2643 3059 2644 input#link_description, 3060 2645 input#link_url { 3061 width: 98%; 3062 } 2646 width: 98%; } 3063 2647 3064 2648 #pending { 3065 background: 0 none; 3066 border: 0 none; 3067 padding: 0; 3068 font-size: 11px; 3069 margin-top: -1px; 3070 } 2649 background: 0 none; 2650 border: 0 none; 2651 padding: 0; 2652 font-size: 11px; 2653 margin-top: -1px; } 3071 2654 3072 2655 #edit-slug-box { 3073 line-height: 24px; 3074 min-height: 25px; /* Yes, line-height + 1 */ 3075 margin-top: 5px; 3076 padding-right: 6px; 3077 } 3078 3079 #edit-slug-box .cancel { 3080 margin-right: 10px; 3081 font-size: 11px; 3082 } 2656 line-height: 24px; 2657 min-height: 25px; 2658 /* Yes, line-height + 1 */ 2659 margin-top: 5px; 2660 padding-right: 6px; } 2661 #edit-slug-box .cancel { 2662 margin-right: 10px; 2663 font-size: 11px; } 3083 2664 3084 2665 #editable-post-name-full { 3085 display: none; 3086 } 2666 display: none; } 3087 2667 3088 2668 #editable-post-name input { 3089 width: 16em; 3090 } 2669 width: 16em; } 3091 2670 3092 2671 .postarea h3 label { 3093 float: left; 3094 } 2672 float: left; } 3095 2673 3096 2674 .submitbox .submit { 3097 text-align: left; 3098 padding: 12px 10px 10px; 3099 font-size: 11px; 3100 } 3101 2675 text-align: left; 2676 padding: 12px 10px 10px; 2677 font-size: 11px; } 3102 2678 .submitbox .submitdelete { 3103 text-decoration: none; 3104 padding: 1px 2px; 3105 } 3106 2679 text-decoration: none; 2680 padding: 1px 2px; } 3107 2681 .submitbox .submitdelete, 3108 2682 .submitbox .submit a:hover { 3109 border-bottom-width: 1px; 3110 border-bottom-style: solid; 3111 } 3112 2683 border-bottom-width: 1px; 2684 border-bottom-style: solid; } 3113 2685 .submitbox .submit input { 3114 margin-bottom: 8px; 3115 margin-right: 4px; 3116 padding: 6px; 3117 } 2686 margin-bottom: 8px; 2687 margin-right: 4px; 2688 padding: 6px; } 3118 2689 3119 2690 .inside-submitbox #post_status { 3120 margin: 2px 0 2px -2px; 3121 } 2691 margin: 2px 0 2px -2px; } 3122 2692 3123 2693 #post-status-select { 3124 line-height: 2.5em; 3125 margin-top: 3px; 3126 } 2694 line-height: 2.5em; 2695 margin-top: 3px; } 3127 2696 3128 2697 /* Post Screen */ 3129 2698 #post-body #normal-sortables { 3130 min-height: 50px; 3131 } 2699 min-height: 50px; } 3132 2700 3133 2701 .postbox { 3134 position: relative; 3135 min-width: 255px; 3136 } 2702 position: relative; 2703 min-width: 255px; } 3137 2704 3138 2705 #trackback_url { 3139 width: 99%; 3140 } 2706 width: 99%; } 3141 2707 3142 2708 #normal-sortables .postbox .submit { 3143 background: transparent none; 3144 border: 0 none; 3145 float: right; 3146 padding: 0 12px; 3147 margin:0; 3148 } 2709 background: transparent none; 2710 border: 0 none; 2711 float: right; 2712 padding: 0 12px; 2713 margin: 0; } 3149 2714 3150 2715 .category-add input[type="text"], 3151 2716 .category-add select { 3152 width: 100%; 3153 max-width: 260px; 3154 } 2717 width: 100%; 2718 max-width: 260px; } 3155 2719 3156 2720 .press-this #side-sortables .category-tabs li, 3157 2721 ul.category-tabs li, 3158 2722 #side-sortables .add-menu-item-tabs li, 3159 2723 .wp-tab-bar li { 3160 display: inline; 3161 line-height: 1.35em; 3162 } 2724 display: inline; 2725 line-height: 1.35em; } 3163 2726 3164 2727 .no-js .category-tabs li.hide-if-no-js { 3165 display: none; 3166 } 2728 display: none; } 3167 2729 3168 2730 .category-tabs a, 3169 2731 #side-sortables .add-menu-item-tabs a, 3170 2732 .wp-tab-bar a { 3171 text-decoration: none; 3172 } 2733 text-decoration: none; } 3173 2734 3174 2735 .category-tabs { 3175 margin: 8px 0 3px; 3176 } 2736 margin: 8px 0 3px; } 3177 2737 3178 2738 #category-adder h4 { 3179 margin: 10px 0; 3180 } 2739 margin: 10px 0; } 3181 2740 3182 2741 #side-sortables .add-menu-item-tabs, 3183 2742 .wp-tab-bar { 3184 margin-bottom: 3px; 3185 } 2743 margin-bottom: 3px; } 3186 2744 3187 2745 #normal-sortables .postbox #replyrow .submit { 3188 float: none; 3189 margin: 0; 3190 padding: 0 7px 5px; 3191 } 2746 float: none; 2747 margin: 0; 2748 padding: 0 7px 5px; } 3192 2749 3193 2750 #side-sortables .submitbox .submit input, 3194 2751 #side-sortables .submitbox .submit .preview, 3195 2752 #side-sortables .submitbox .submit a.preview:hover { 3196 border: 0 none; 3197 } 2753 border: 0 none; } 3198 2754 3199 2755 #side-sortables .inside-submitbox .insidebox, 3200 2756 .stuffbox .insidebox { 3201 margin: 11px 0; 3202 } 2757 margin: 11px 0; } 3203 2758 3204 2759 ul.category-tabs, 3205 2760 ul.add-menu-item-tabs, 3206 2761 ul.wp-tab-bar { 3207 margin-top: 12px; 3208 } 2762 margin-top: 12px; } 3209 2763 3210 2764 ul.category-tabs li { 3211 border-style: solid; 3212 border-width: 1px; 3213 position: relative; 3214 } 2765 border-style: solid; 2766 border-width: 1px; 2767 position: relative; } 3215 2768 3216 2769 ul.add-menu-item-tabs li.tabs, 3217 2770 .wp-tab-active { 3218 border-style: solid solid none; 3219 border-width: 1px 1px 0; 3220 } 2771 border-style: solid solid none; 2772 border-width: 1px 1px 0; } 3221 2773 3222 2774 #post-body .add-menu-item-tabs li.tabs { 3223 border-style: solid none solid solid; 3224 border-width: 1px 0 1px 1px; 3225 margin-right: -1px; 3226 } 2775 border-style: solid none solid solid; 2776 border-width: 1px 0 1px 1px; 2777 margin-right: -1px; } 3227 2778 3228 2779 ul.category-tabs li, 3229 2780 ul.add-menu-item-tabs li, 3230 2781 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; 3236 } 2782 padding: 3px 5px 5px; 2783 border-top-left-radius: 3px; 2784 border-top-right-radius: 3px; 2785 -moz-border-top-left-radius: 3px; 2786 -moz-border-top-right-radius: 3px; 2787 -webkit-border-top-left-radius: 3px; 2788 -webkit-border-top-right-radius: 3px; } 3237 2789 3238 2790 /* positioning etc. */ 3239 2791 form#tags-filter { 3240 position: relative; 3241 } 2792 position: relative; } 3242 2793 3243 2794 /* Edit posts */ 3244 2795 td.post-title strong, 3245 2796 td.plugin-title strong { 3246 display: block; 3247 margin-bottom: .2em; 3248 } 2797 display: block; 2798 margin-bottom: .2em; } 3249 2799 3250 2800 td.post-title p, 3251 2801 td.plugin-title p { 3252 margin: 6px 0; 3253 } 2802 margin: 6px 0; } 3254 2803 3255 2804 /* Global classes */ 3256 2805 .wp-hidden-children .wp-hidden-child, 3257 2806 .ui-tabs-hide { 3258 display: none; 3259 } 2807 display: none; } 3260 2808 3261 2809 .commentlist .avatar { 3262 vertical-align: text-top; 3263 } 2810 vertical-align: text-top; } 3264 2811 3265 2812 #post-body .tagsdiv #newtag { 3266 margin-right: 5px; 3267 width: 16em; 3268 } 2813 margin-right: 5px; 2814 width: 16em; } 3269 2815 3270 2816 #side-sortables input#post_password { 3271 width: 94% 3272 } 2817 width: 94%; } 3273 2818 3274 2819 #side-sortables .tagsdiv #newtag { 3275 width: 68%; 3276 } 2820 width: 68%; } 3277 2821 3278 2822 #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; 3286 } 2823 border-width: 0 1px 1px; 2824 border-style: none solid solid; 2825 width: 100%; 2826 border-bottom-left-radius: 3px; 2827 border-bottom-right-radius: 3px; 2828 -moz-border-bottom-left-radius: 3px; 2829 -moz-border-bottom-right-radius: 3px; 2830 -webkit-border-bottom-left-radius: 3px; 2831 -webkit-border-bottom-right-radius: 3px; } 3287 2832 3288 2833 #post-status-info td { 3289 font-size: 12px; 3290 } 2834 font-size: 12px; } 3291 2835 3292 2836 .autosave-info { 3293 padding: 2px 15px; 3294 text-align: right; 3295 } 2837 padding: 2px 15px; 2838 text-align: right; } 3296 2839 3297 2840 #editorcontent #post-status-info { 3298 border: none; 3299 } 2841 border: none; } 3300 2842 3301 2843 #post-body .wp_themeSkin .mceStatusbar a.mceResize { 3302 display: block; 3303 background: transparent url('../images/resize.gif') no-repeat scroll right bottom; 3304 width: 12px; 3305 cursor: se-resize; 3306 margin: 0 1px; 3307 position: relative; 3308 top: -2px; 3309 } 2844 display: block; 2845 background: transparent url("../images/resize.gif") no-repeat scroll right bottom; 2846 width: 12px; 2847 cursor: se-resize; 2848 margin: 0 1px; 2849 position: relative; 2850 top: -2px; } 3310 2851 3311 2852 #post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize { 3312 top: 20px; 3313 } 2853 top: 20px; } 3314 2854 3315 2855 #content-resize-handle { 3316 background: transparent url('../images/resize.gif') no-repeat scroll right bottom; 3317 width: 12px; 3318 cursor: se-resize; 3319 position: absolute; 3320 right: 2px; 3321 height: 19px; 3322 } 3323 3324 .press-this #content-resize-handle { 3325 bottom: 2px; 3326 } 3327 3328 .tmce-active #content-resize-handle { 3329 display: none; 3330 } 2856 background: transparent url("../images/resize.gif") no-repeat scroll right bottom; 2857 width: 12px; 2858 cursor: se-resize; 2859 position: absolute; 2860 right: 2px; 2861 height: 19px; } 2862 .press-this #content-resize-handle { 2863 bottom: 2px; } 2864 .tmce-active #content-resize-handle { 2865 display: none; } 3331 2866 3332 2867 #wp-word-count { 3333 display: block; 3334 padding: 2px 10px; 3335 } 2868 display: block; 2869 padding: 2px 10px; } 3336 2870 3337 2871 #timestampdiv select { 3338 height: 20px; 3339 line-height: 14px; 3340 padding: 0; 3341 vertical-align: top; 3342 } 2872 height: 20px; 2873 line-height: 14px; 2874 padding: 0; 2875 vertical-align: top; } 3343 2876 3344 2877 #aa, #jj, #hh, #mn { 3345 padding: 1px; 3346 font-size: 12px; 3347 } 2878 padding: 1px; 2879 font-size: 12px; } 3348 2880 3349 2881 #jj, #hh, #mn { 3350 width: 2em; 3351 } 2882 width: 2em; } 3352 2883 3353 2884 #aa { 3354 width: 3.4em; 3355 } 2885 width: 3.4em; } 3356 2886 3357 2887 .curtime #timestamp { 3358 background-repeat: no-repeat; 3359 background-position: left center; 3360 padding: 2px 0 1px 20px; 3361 } 2888 background-repeat: no-repeat; 2889 background-position: left center; 2890 padding: 2px 0 1px 20px; } 3362 2891 3363 2892 #timestampdiv { 3364 padding-top: 5px; 3365 line-height: 23px; 3366 } 3367 3368 #timestampdiv p { 3369 margin: 8px 0 6px; 3370 } 3371 3372 #timestampdiv input { 3373 border-width: 1px; 3374 border-style: solid; 3375 } 2893 padding-top: 5px; 2894 line-height: 23px; } 2895 #timestampdiv p { 2896 margin: 8px 0 6px; } 2897 #timestampdiv input { 2898 border-width: 1px; 2899 border-style: solid; } 3376 2900 3377 2901 .notification-dialog { 3378 position: fixed; 3379 top: 30%; 3380 left: 50%; 3381 width: 450px; 3382 margin-left: -225px; 3383 background: #fff; 3384 line-height: 1.5; 3385 z-index: 1000005; 3386 } 2902 position: fixed; 2903 top: 30%; 2904 left: 50%; 2905 width: 450px; 2906 margin-left: -225px; 2907 background: #fff; 2908 line-height: 1.5; 2909 z-index: 1000005; } 3387 2910 3388 2911 .notification-dialog-background { 3389 position: fixed; 3390 top: 0; 3391 left: 0; 3392 right: 0; 3393 bottom: 0; 3394 background: #000; 3395 opacity: 0.5; 3396 filter: alpha(opacity=50); 3397 z-index: 1000000; 3398 } 2912 position: fixed; 2913 top: 0; 2914 left: 0; 2915 right: 0; 2916 bottom: 0; 2917 background: #000; 2918 opacity: 0.5; 2919 filter: alpha(opacity=50); 2920 z-index: 1000000; } 3399 2921 3400 2922 #post-lock-dialog .post-locked-message, 3401 2923 #post-lock-dialog .post-taken-over { 3402 margin: 25px; 3403 } 3404 2924 margin: 25px; } 3405 2925 #post-lock-dialog .post-locked-message a.button { 3406 margin-right: 10px; 3407 } 3408 2926 margin-right: 10px; } 3409 2927 #post-lock-dialog .post-locked-avatar { 3410 float: left; 3411 margin: 0 20px 20px 0; 3412 } 3413 2928 float: left; 2929 margin: 0 20px 20px 0; } 3414 2930 #post-lock-dialog .wp-tab-first { 3415 outline: 0; 3416 } 3417 2931 outline: 0; } 3418 2932 #post-lock-dialog .locked-saving img { 3419 float: left; 3420 margin-right: 3px; 3421 } 3422 3423 #post-lock-dialog.saving .locked-saving, 3424 #post-lock-dialog.saved .locked-saved { 3425 display: inline; 3426 } 2933 float: left; 2934 margin-right: 3px; } 2935 #post-lock-dialog.saving .locked-saving, #post-lock-dialog.saved .locked-saved { 2936 display: inline; } 3427 2937 3428 2938 /*------------------------------------------------------------------------------ 3429 2939 11.1 - Custom Fields 3430 2940 ------------------------------------------------------------------------------*/ 3431 3432 2941 #postcustomstuff thead th { 3433 padding: 5px 8px 8px; 3434 } 3435 2942 padding: 5px 8px 8px; } 3436 2943 #postcustom #postcustomstuff .submit { 3437 border: 0 none; 3438 float: none; 3439 padding: 0 8px 8px; 3440 } 3441 2944 border: 0 none; 2945 float: none; 2946 padding: 0 8px 8px; } 3442 2947 #side-sortables #postcustom #postcustomstuff .submit { 3443 margin: 0; 3444 padding: 0; 3445 } 3446 2948 margin: 0; 2949 padding: 0; } 3447 2950 #side-sortables #postcustom #postcustomstuff #the-list textarea { 3448 height: 85px; 3449 } 3450 2951 height: 85px; } 3451 2952 #side-sortables #postcustom #postcustomstuff td.left input, 3452 #side-sortables #postcustom #postcustomstuff td.left select, 2953 #side-sortables #postcustom #postcustomstuff td.left select { 2954 margin: 3px 3px 0; } 3453 2955 #side-sortables #postcustomstuff #newmetaleft a { 3454 margin: 3px 3px 0; 3455 } 3456 2956 margin: 3px 3px 0; } 3457 2957 #postcustomstuff table { 3458 margin: 0; 3459 width: 100%; 3460 border-width: 1px; 3461 border-style: solid; 3462 border-spacing: 0; 3463 } 3464 2958 margin: 0; 2959 width: 100%; 2960 border-width: 1px; 2961 border-style: solid; 2962 border-spacing: 0; } 3465 2963 #postcustomstuff tr { 3466 vertical-align: top; 3467 } 3468 2964 vertical-align: top; } 3469 2965 #postcustomstuff table input, 3470 2966 #postcustomstuff table select, 3471 2967 #postcustomstuff table textarea { 3472 width: 96%; 3473 margin: 8px; 3474 } 3475 3476 #side-sortables #postcustomstuff table input, 3477 #side-sortables #postcustomstuff table select, 3478 #side-sortables #postcustomstuff table textarea { 3479 margin: 3px; 3480 } 3481 2968 width: 96%; 2969 margin: 8px; } 2970 #side-sortables #postcustomstuff table input, #side-sortables #postcustomstuff table select, #side-sortables #postcustomstuff table textarea { 2971 margin: 3px; } 3482 2972 #postcustomstuff th.left, 3483 2973 #postcustomstuff td.left { 3484 width: 38%; 3485 } 3486 2974 width: 38%; } 3487 2975 #postcustomstuff .submit input { 3488 margin: 0; 3489 width: auto; 3490 } 3491 2976 margin: 0; 2977 width: auto; } 3492 2978 #postcustomstuff #newmetaleft a { 3493 display: inline-block; 3494 margin: 0 8px 8px; 3495 text-decoration: none; 3496 } 3497 2979 display: inline-block; 2980 margin: 0 8px 8px; 2981 text-decoration: none; } 3498 2982 .no-js #postcustomstuff #enternew { 3499 display: none; 3500 } 2983 display: none; } 3501 2984 3502 2985 #post-body-content .compat-attachment-fields { 3503 margin-bottom: 20px; 3504 } 2986 margin-bottom: 20px; } 3505 2987 3506 2988 .compat-attachment-fields th { 3507 padding-top: 5px; 3508 padding-right: 10px; 3509 } 2989 padding-top: 5px; 2990 padding-right: 10px; } 3510 2991 3511 2992 /*------------------------------------------------------------------------------ 3512 2993 11.2 - Post Revisions 3513 2994 ------------------------------------------------------------------------------*/ 3514 2995 .revisions-control-frame, 3515 2996 .revisions-diff-frame { 3516 position: relative; 3517 } 2997 position: relative; } 3518 2998 3519 2999 .revisions-controls { 3520 padding-top: 40px; 3521 height: 100px; 3522 z-index: 1; 3523 } 3524 3525 .revisions-controls input[type="checkbox"] { 3526 position: relative; 3527 top: -1px; 3528 vertical-align: text-bottom; 3529 } 3530 3531 .revisions.pinned .revisions-controls { 3532 position: fixed; 3533 top: 0; 3534 padding-bottom: 10px; 3535 } 3000 padding-top: 40px; 3001 height: 100px; 3002 z-index: 1; } 3003 .revisions-controls input[type="checkbox"] { 3004 position: relative; 3005 top: -1px; 3006 vertical-align: text-bottom; } 3007 .revisions.pinned .revisions-controls { 3008 position: fixed; 3009 top: 0; 3010 padding-bottom: 10px; } 3011 .revisions-controls .author-card .date { 3012 color: #777; } 3013 .revisions-controls .author-card .avatar, 3014 .revisions-controls .author-card .author-info { 3015 float: left; 3016 margin-left: 6px; 3017 margin-right: 6px; } 3018 .revisions-controls .author-card.autosave { 3019 color: #d54e21; } 3020 .revisions-controls .author-card .author-name { 3021 font-weight: bold; } 3022 .revisions-controls .author-card .byline { 3023 display: block; 3024 font-size: 12px; } 3025 .revisions-controls .author-card .avatar { 3026 vertical-align: middle; } 3027 .revisions-controls .wp-slider { 3028 max-width: 70%; 3029 margin: 0 auto; 3030 top: -3px; } 3536 3031 3537 3032 .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; 3546 } 3547 3548 .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; 3556 } 3557 3558 .revisions-tickmarks > div:first-child { 3559 border-width: 0; 3560 } 3033 position: relative; 3034 margin: 0 auto; 3035 height: 0.8em; 3036 top: 7px; 3037 max-width: 70%; 3038 -moz-box-sizing: border-box; 3039 -webkit-box-sizing: border-box; 3040 -ms-box-sizing: border-box; 3041 box-sizing: border-box; } 3042 .revisions-tickmarks > div { 3043 position: absolute; 3044 height: 100%; 3045 border-style: solid; 3046 border-width: 0 1px 0 0; 3047 -moz-box-sizing: border-box; 3048 -webkit-box-sizing: border-box; 3049 -ms-box-sizing: border-box; 3050 box-sizing: border-box; } 3051 .revisions-tickmarks > div:first-child { 3052 border-width: 0; } 3561 3053 3562 3054 .comparing-two-revisions .revisions-controls { 3563 height: 140px; 3564 } 3055 height: 140px; } 3565 3056 3566 3057 .revisions .diff-error { 3567 position: absolute; 3568 text-align: center; 3569 margin: 0 auto; 3570 width: 100%; 3571 display: none; 3572 } 3058 position: absolute; 3059 text-align: center; 3060 margin: 0 auto; 3061 width: 100%; 3062 display: none; } 3573 3063 3574 3064 .revisions.diff-error .diff-error { 3575 display: block; 3576 } 3065 display: block; } 3577 3066 3578 3067 .revisions .loading-indicator { 3579 position: fixed; 3580 vertical-align: middle; 3581 opacity: 0; 3582 width: 100%; 3583 top: 50%; 3584 margin-left: -90px; 3585 -webkit-transition: opacity 0.5s; 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 } 3592 3068 position: fixed; 3069 vertical-align: middle; 3070 opacity: 0; 3071 width: 100%; 3072 top: 50%; 3073 margin-left: -90px; 3074 -webkit-transition: opacity 0.5s; 3075 -moz-transition: opacity 0.5s; 3076 -ms-transition: opacity 0.5s; 3077 -o-transition: opacity 0.5s; 3078 transition: opacity 0.5s; 3079 filter: alpha(opacity=0); 3080 /* ie8 and earlier */ } 3593 3081 body.folded .revisions .loading-indicator { 3594 margin-left: -32px; 3595 } 3596 3082 margin-left: -32px; } 3597 3083 .revisions .loading-indicator span.spinner { 3598 display: block; 3599 margin: 0 auto; 3600 float: none; 3601 } 3602 3084 display: block; 3085 margin: 0 auto; 3086 float: none; } 3603 3087 .revisions.loading .loading-indicator { 3604 opacity: 1; 3605 filter: alpha(opacity=100); /* ie8 and earlier */ 3606 } 3607 3088 opacity: 1; 3089 filter: alpha(opacity=100); 3090 /* ie8 and earlier */ } 3608 3091 .revisions .diff { 3609 -webkit-transition: opacity 0.5s; 3610 -moz-transition: opacity 0.5s; 3611 -ms-transition: opacity 0.5s; 3612 -o-transition: opacity 0.5s; 3613 transition: opacity 0.5s; 3614 } 3615 3092 -webkit-transition: opacity 0.5s; 3093 -moz-transition: opacity 0.5s; 3094 -ms-transition: opacity 0.5s; 3095 -o-transition: opacity 0.5s; 3096 transition: opacity 0.5s; } 3616 3097 .revisions.loading .diff { 3617 opacity: 0.5; 3618 filter: alpha(opacity=50); /* ie8 and earlier */ 3619 } 3620 3098 opacity: 0.5; 3099 filter: alpha(opacity=50); 3100 /* ie8 and earlier */ } 3621 3101 .revisions.diff-error .diff { 3622 visibility: hidden; 3623 } 3102 visibility: hidden; } 3624 3103 3625 3104 .revisions-meta { 3626 margin-top: 15px; 3627 } 3105 margin-top: 15px; } 3628 3106 3629 3107 .revision-toggle-compare-mode { 3630 position: absolute; 3631 top: 0; 3632 right: 0; 3633 } 3108 position: absolute; 3109 top: 0; 3110 right: 0; } 3634 3111 3635 3112 .comparing-two-revisions .revisions-previous, 3636 3113 .comparing-two-revisions .revisions-next, 3637 3114 .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; 3651 } 3115 display: none; } 3652 3116 3653 3117 .comparing-two-revisions .diff-meta-to strong { 3654 display: block; 3655 } 3118 display: block; } 3656 3119 3657 3120 .revisions-previous, 3658 3121 .revisions-next { 3659 position: relative; 3660 z-index: 1; 3661 } 3122 position: relative; 3123 z-index: 1; } 3662 3124 3663 3125 .revisions-previous { 3664 float: left; 3665 } 3126 float: left; } 3666 3127 3667 3128 .revisions-next { 3668 float: right; 3669 } 3670 3671 .revisions-controls .wp-slider { 3672 max-width: 70%; 3673 margin: 0 auto; 3674 top: -3px; 3675 } 3129 float: right; } 3676 3130 3677 3131 /* Revision meta box */ 3678 3132 .post-revisions li img, 3679 3133 #revisions-meta-restored img { 3680 vertical-align: middle; 3681 } 3134 vertical-align: middle; } 3682 3135 3683 3136 table.diff { 3684 table-layout: fixed; 3685 width: 100%; 3686 white-space: pre-wrap; 3687 word-wrap: break-word; 3688 } 3689 3690 table.diff col.content { 3691 width: auto; 3692 } 3693 3694 table.diff col.content.diffsplit { 3695 width: 48%; 3696 } 3697 3698 table.diff col.diffsplit.middle { 3699 width: auto; 3700 } 3701 3702 table.diff col.ltype { 3703 width: 30px; 3704 } 3705 3706 table.diff tr { 3707 background-color: transparent; 3708 } 3709 3710 table.diff td, 3711 table.diff th { 3712 padding: .5em; 3713 font-family: Consolas, Monaco, monospace; 3714 } 3715 3716 table.diff .diff-deletedline del, 3717 table.diff .diff-addedline ins { 3718 text-decoration: none; 3719 } 3137 table-layout: fixed; 3138 width: 100%; 3139 white-space: pre-wrap; 3140 word-wrap: break-word; } 3141 table.diff col.content { 3142 width: auto; } 3143 table.diff col.content.diffsplit { 3144 width: 48%; } 3145 table.diff col.content.middle { 3146 width: auto; } 3147 table.diff col.ltype { 3148 width: 30px; } 3149 table.diff tr { 3150 background-color: transparent; } 3151 table.diff td, 3152 table.diff th { 3153 padding: .5em; 3154 font-family: Consolas, Monaco, monospace; } 3155 table.diff .diff-deletedline del, 3156 table.diff .diff-addedline ins { 3157 text-decoration: none; } 3720 3158 3721 3159 .diff-meta { 3722 -webkit-border-radius: 3px; 3723 border-radius: 3px; 3724 padding: 5px; 3725 clear: both; 3726 min-height: 32px; 3727 } 3160 border-radius: 3px; 3161 -moz-border-radius: 3px; 3162 -webkit-border-radius: 3px; 3163 padding: 5px; 3164 clear: both; 3165 min-height: 32px; } 3166 .diff-meta input.restore-revision { 3167 float: right; 3168 margin-left: 6px; 3169 margin-right: 6px; 3170 margin-top: 4px; } 3728 3171 3729 3172 .diff-title strong { 3730 line-height: 32px; 3731 min-width: 60px; 3732 text-align: right; 3733 float: left; 3734 margin-right: 5px; 3735 } 3173 line-height: 32px; 3174 min-width: 60px; 3175 text-align: right; 3176 float: left; 3177 margin-right: 5px; } 3736 3178 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 } 3179 .diff-meta-from { 3180 display: none; } 3181 .comparing-two-revisions .diff-meta-from { 3182 display: block; } 3743 3183 3744 .revisions-controls .author-card .byline { 3745 display: block; 3746 font-size: 12px; 3747 } 3184 .revisions-tooltip { 3185 position: absolute; 3186 bottom: 105px; 3187 margin-right: 0; 3188 margin-left: -69px; 3189 z-index: 0; 3190 max-width: 350px; 3191 min-width: 130px; 3192 padding: 8px 4px; 3193 display: none; 3194 opacity: 0; } 3195 .revisions-tooltip.flipped { 3196 margin-left: 0; 3197 margin-right: -70px; } 3198 .revisions-tooltip.flipped .revisions-tooltip-arrow { 3199 margin-left: 0; 3200 margin-right: 35px; 3201 left: auto; 3202 right: 0; } 3203 .ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow > span { 3204 right: 25px; } 3205 .revisions.pinned .revisions-tooltip { 3206 display: none !important; } 3207 .comparing-two-revisions .revisions-tooltip { 3208 bottom: 145px; } 3748 3209 3749 .revisions-controls .author-card .avatar { 3750 vertical-align: middle; 3751 } 3210 .revisions-tooltip-arrow { 3211 width: 70px; 3212 height: 15px; 3213 overflow: hidden; 3214 position: absolute; 3215 left: 0; 3216 margin-left: 35px; 3217 bottom: -15px; } 3218 .revisions-tooltip-arrow > span { 3219 content: ""; 3220 position: absolute; 3221 left: 20px; 3222 top: -20px; 3223 width: 25px; 3224 height: 25px; 3225 -webkit-transform: rotate(45deg); 3226 -moz-transform: rotate(45deg); 3227 -ms-transform: rotate(45deg); 3228 -o-transform: rotate(45deg); 3229 tranform: rotate(45deg); } 3230 .revisions-tooltip.flipped .revisions-tooltip-arrow > span { 3231 left: auto; 3232 right: 20px; } 3233 .ie8 .revisions-tooltip-arrow > span { 3234 left: 15px; 3235 top: -25px; 3236 -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)"; } 3752 3237 3753 .diff-meta input.restore-revision { 3754 float: right; 3755 margin-left: 6px; 3756 margin-right: 6px; 3757 margin-top: 4px; 3758 } 3238 .revisions-tooltip, 3239 .revisions-tooltip-arrow > span { 3240 border-width: 1px; 3241 border-style: solid; } 3759 3242 3760 .diff-meta-from { 3761 display: none; 3762 } 3243 div.revisions-controls > .wp-slider > .ui-slider-handle { 3244 margin-left: -10px; } 3763 3245 3764 .comparing-two-revisions .diff-meta-from { 3765 display: block; 3766 } 3767 3768 .revisions-tooltip { 3769 position: absolute; 3770 bottom: 105px; 3771 margin-right: 0; 3772 margin-left: -69px; 3773 z-index: 0; 3774 max-width: 350px; 3775 min-width: 130px; 3776 padding: 8px 4px; 3777 display: none; 3778 opacity: 0; 3779 } 3780 3781 .revisions-tooltip.flipped { 3782 margin-left: 0; 3783 margin-right: -70px; 3784 } 3785 3786 .revisions.pinned .revisions-tooltip { 3787 display: none !important; 3788 } 3789 3790 .comparing-two-revisions .revisions-tooltip { 3791 bottom: 145px; 3792 } 3793 3794 .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; 3809 } 3810 3811 .revisions-tooltip-arrow > span { 3812 content: ""; 3813 position: absolute; 3814 left: 20px; 3815 top: -20px; 3816 width: 25px; 3817 height: 25px; 3818 -webkit-transform: rotate(45deg); 3819 -moz-transform: rotate(45deg); 3820 -ms-transform: rotate(45deg); 3821 -o-transform: rotate(45deg); 3822 tranform: rotate(45deg); 3823 } 3824 3825 .revisions-tooltip.flipped .revisions-tooltip-arrow > span { 3826 left: auto; 3827 right: 20px; 3828 } 3829 3830 .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; 3838 } 3839 3840 .revisions-tooltip, 3841 .revisions-tooltip-arrow > span { 3842 border-width: 1px; 3843 border-style: solid; 3844 } 3845 3846 div.revisions-controls > .wp-slider > .ui-slider-handle { 3847 margin-left: -10px; 3848 } 3849 3850 /* jQuery UI Slider */ 3246 /* jQuery UI Slider */ 3851 3247 .wp-slider.ui-slider { 3852 3853 3854 3855 3856 text-align: left;3857 cursor: pointer;3858 } 3859 3248 position: relative; 3249 border-width: 1px; 3250 border-style: solid; 3251 border-radius: 3px; 3252 -moz-border-radius: 3px; 3253 -webkit-border-radius: 3px; 3254 text-align: left; 3255 cursor: pointer; } 3860 3256 .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%; 3869 } 3870 3871 .wp-slider .ui-slider-handle:before { 3872 content: ""; 3873 position: absolute; 3874 top: 6px; 3875 left: 3px; 3876 height: 8px; 3877 width: 13px; 3878 background: url(../images/arrows-pr.png) no-repeat -2px -47px; 3879 } 3880 3881 .wp-slider .ui-slider-handle.from-handle:before, 3882 .wp-slider .ui-slider-handle.to-handle:before { 3883 height: 8px; 3884 width: 7px; 3885 } 3886 3887 .wp-slider .ui-slider-handle.from-handle:before { 3888 background-position: -5px -84px; 3889 left: 7px; 3890 } 3891 3892 .wp-slider .ui-slider-handle.to-handle:before { 3893 background-position: -4px -65px; 3894 left: 5px; 3895 } 3896 3257 position: absolute; 3258 z-index: 2; 3259 margin-top: -3px; 3260 width: 19px; 3261 height: 19px; 3262 border-width: 1px; 3263 border-style: solid; 3264 border-radius: 50%; 3265 -moz-border-radius: 50%; 3266 -webkit-border-radius: 50%; } 3267 .wp-slider .ui-slider-handle:before { 3268 content: ""; 3269 position: absolute; 3270 top: 6px; 3271 left: 3px; 3272 height: 8px; 3273 width: 13px; 3274 background: url(../images/arrows-pr.png) no-repeat -2px -47px; } 3275 .wp-slider .ui-slider-handle.from-handle:before, .wp-slider .ui-slider-handle.to-handle:before { 3276 height: 8px; 3277 width: 7px; } 3278 .wp-slider .ui-slider-handle.from-handle:before { 3279 background-position: -5px -84px; 3280 left: 7px; } 3281 .wp-slider .ui-slider-handle.to-handle:before { 3282 background-position: -4px -65px; 3283 left: 5px; } 3897 3284 .wp-slider .ui-slider-range { 3898 position: absolute; 3899 font-size: .7em; 3900 display: block; 3901 border: 0; 3902 background-color: transparent; 3903 background-image: none; 3904 } 3905 3285 position: absolute; 3286 font-size: .7em; 3287 display: block; 3288 border: 0; 3289 background-color: transparent; 3290 background-image: none; } 3906 3291 .wp-slider.ui-slider-horizontal { 3907 height: .8em; 3908 } 3909 3910 .wp-slider.ui-slider-horizontal .ui-slider-handle { 3911 top: -.25em; 3912 margin-left: -.6em; 3913 } 3914 3915 .wp-slider.ui-slider-horizontal .ui-slider-range { 3916 top: 0; 3917 height: 100%; 3918 } 3919 3920 .wp-slider.ui-slider-horizontal .ui-slider-range-min { 3921 left: 0; 3922 } 3923 3924 .wp-slider.ui-slider-horizontal .ui-slider-range-max { 3925 right: 0; 3926 } 3927 3292 height: .8em; } 3293 .wp-slider.ui-slider-horizontal .ui-slider-handle { 3294 top: -.25em; 3295 margin-left: -.6em; } 3296 .wp-slider.ui-slider-horizontal .ui-slider-range { 3297 top: 0; 3298 height: 100%; } 3299 .wp-slider.ui-slider-horizontal .ui-slider-range-min { 3300 left: 0; } 3301 .wp-slider.ui-slider-horizontal .ui-slider-range-max { 3302 right: 0; } 3928 3303 3929 3304 /*------------------------------------------------------------------------------ 3930 3305 11.3 - Featured Images 3931 3306 ------------------------------------------------------------------------------*/ 3932 3933 3307 #select-featured-image { 3934 padding: 4px 0; 3935 overflow: hidden; 3936 } 3937 3938 #select-featured-image img { 3939 max-width: 100%; 3940 height: auto; 3941 margin-bottom: 10px; 3942 } 3943 3944 #select-featured-image a { 3945 float: left; 3946 clear: both; 3947 } 3948 3949 #select-featured-image .remove { 3950 display: none; 3951 margin-top: 10px; 3952 } 3953 3954 .js #select-featured-image.has-featured-image .remove { 3955 display: inline-block; 3956 } 3957 3958 .no-js #select-featured-image .choose { 3959 display: none; 3960 } 3308 padding: 4px 0; 3309 overflow: hidden; } 3310 #select-featured-image img { 3311 max-width: 100%; 3312 height: auto; 3313 margin-bottom: 10px; } 3314 #select-featured-image a { 3315 float: left; 3316 clear: both; } 3317 #select-featured-image .remove { 3318 display: none; 3319 margin-top: 10px; } 3320 .js #select-featured-image.has-featured-image .remove { 3321 display: inline-block; } 3322 .no-js #select-featured-image .choose { 3323 display: none; } 3961 3324 3962 3325 /*------------------------------------------------------------------------------ 3963 3326 11.4 - Post formats 3964 3327 ------------------------------------------------------------------------------*/ 3965 3966 3328 a.post-state-format { 3967 overflow: hidden; 3968 display: inline-block; 3969 vertical-align: middle; 3970 height: 16px; 3971 width: 16px; 3972 margin-right: 5px; 3973 background-repeat: no-repeat; 3974 text-indent: -999em; 3975 } 3329 overflow: hidden; 3330 display: inline-block; 3331 vertical-align: middle; 3332 height: 16px; 3333 width: 16px; 3334 margin-right: 5px; 3335 background-repeat: no-repeat; 3336 text-indent: -999em; } 3976 3337 3977 3338 #post-formats-select { 3978 line-height: 2em; 3979 } 3980 3981 label.post-format-icon { 3982 margin-left: 5px; 3983 padding: 2px 0 2px 21px; 3984 } 3985 3986 .post-format-icon.post-format-standard { 3987 background-position: 0 0; 3988 } 3989 3990 .post-format-icon.post-format-image { 3991 background-position: 0 -32px; 3992 } 3993 3994 .post-format-icon.post-format-gallery { 3995 background-position: 0 -64px; 3996 } 3997 3998 .post-format-icon.post-format-audio { 3999 background-position: 0 -96px; 4000 } 4001 4002 .post-format-icon.post-format-video { 4003 background-position: 0 -128px; 4004 } 4005 4006 .post-format-icon.post-format-chat { 4007 background-position: 0 -160px; 4008 } 4009 4010 .post-format-icon.post-format-status { 4011 background-position: 0 -192px; 4012 } 4013 4014 .post-format-icon.post-format-aside { 4015 background-position: 0 -224px; 4016 } 4017 4018 .post-format-icon.post-format-quote { 4019 background-position: 0 -256px; 4020 } 4021 4022 .post-format-icon.post-format-link { 4023 background-position: 0 -288px; 4024 } 4025 3339 line-height: 2em; } 3340 3341 .post-format-icon { 3342 margin-left: 5px; 3343 padding: 2px 0 2px 21px; 3344 line-height: 2em; } 3345 .post-format-icon.post-format-standard { 3346 background-position: 0 0; } 3347 .post-format-icon.post-format-image { 3348 background-position: 0 -32px; } 3349 .post-format-icon.post-format-gallery { 3350 background-position: 0 -64px; } 3351 .post-format-icon.post-format-audio { 3352 background-position: 0 -96px; } 3353 .post-format-icon.post-format-video { 3354 background-position: 0 -128px; } 3355 .post-format-icon.post-format-chat { 3356 background-position: 0 -160px; } 3357 .post-format-icon.post-format-status { 3358 background-position: 0 -192px; } 3359 .post-format-icon.post-format-aside { 3360 background-position: 0 -224px; } 3361 .post-format-icon.post-format-quote { 3362 background-position: 0 -256px; } 3363 .post-format-icon.post-format-link { 3364 background-position: 0 -288px; } 4026 3365 4027 3366 /*------------------------------------------------------------------------------ 4028 3367 12.0 - Categories 4029 3368 ------------------------------------------------------------------------------*/ 4030 4031 3369 .category-adder { 4032 margin-left: 120px; 4033 padding: 4px 0; 4034 } 4035 4036 .category-adder h4 { 4037 margin: 0 0 8px; 4038 } 4039 4040 #side-sortables .category-adder { 4041 margin: 0; 4042 } 3370 margin-left: 120px; 3371 padding: 4px 0; } 3372 .category-adder h4 { 3373 margin: 0 0 8px; } 3374 #side-sortables .category-adder { 3375 margin: 0; } 4043 3376 4044 3377 #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 } 4052 4053 #post-body ul.add-menu-item-tabs li { 4054 padding: 8px; 4055 } 4056 4057 #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; 4062 } 3378 float: left; 3379 width: 120px; 3380 text-align: right; 3381 /* Negative margin for the sake of those without JS: all tabs display */ 3382 margin: 0 -120px 0 5px; 3383 padding: 0; } 3384 #post-body ul.add-menu-item-tabs li { 3385 padding: 8px; } 3386 #post-body ul.add-menu-item-tabs li.tabs { 3387 border-top-left-radius: 3px; 3388 border-bottom-left-radius: 3px; 3389 -moz-border-top-left-radius: 3px; 3390 -moz-border-bottom-left-radius: 3px; 3391 -webkit-border-top-left-radius: 3px; 3392 -webkit-border-bottom-left-radius: 3px; } 4063 3393 4064 3394 .wp-tab-panel, 4065 3395 .categorydiv div.tabs-panel, 4066 3396 .customlinkdiv div.tabs-panel, 4067 3397 .posttypediv div.tabs-panel, 4068 3398 .taxonomydiv div.tabs-panel { 4069 min-height: 42px; 4070 max-height: 200px; 4071 overflow: auto; 4072 padding: 0 0.9em; 4073 border-style: solid; 4074 border-width: 1px; 4075 } 3399 min-height: 42px; 3400 max-height: 200px; 3401 overflow: auto; 3402 padding: 0 0.9em; 3403 border-style: solid; 3404 border-width: 1px; } 4076 3405 4077 3406 div.tabs-panel-active { 4078 display:block; 4079 } 3407 display: block; } 4080 3408 4081 3409 div.tabs-panel-inactive { 4082 display:none; 4083 } 3410 display: none; } 4084 3411 4085 3412 #front-page-warning, 4086 3413 #front-static-pages ul, … … ul.export-filters, 4090 3417 .customlinkdiv ul.categorychecklist ul, 4091 3418 .posttypediv ul.categorychecklist ul, 4092 3419 .taxonomydiv ul.categorychecklist ul { 4093 margin-left: 18px; 4094 } 3420 margin-left: 18px; } 4095 3421 4096 3422 ul.categorychecklist li { 4097 margin: 0; 4098 padding: 0; 4099 line-height: 19px; 4100 word-wrap: break-word; 4101 } 3423 margin: 0; 3424 padding: 0; 3425 line-height: 19px; 3426 word-wrap: break-word; } 4102 3427 4103 3428 .categorydiv .tabs-panel, 4104 3429 .customlinkdiv .tabs-panel, 4105 3430 .posttypediv .tabs-panel, 4106 3431 .taxonomydiv .tabs-panel { 4107 border-width: 3px; 4108 border-style: solid; 4109 } 3432 border-width: 3px; 3433 border-style: solid; } 4110 3434 4111 3435 .form-wrap p, 4112 3436 .form-wrap label { 4113 font-size: 11px; 4114 } 4115 3437 font-size: 11px; } 4116 3438 .form-wrap label { 4117 display: block; 4118 padding: 2px; 4119 font-size: 12px; 4120 } 3439 display: block; 3440 padding: 2px; 3441 font-size: 12px; } 3442 .form-wrap .form-field { 3443 margin: 0 0 10px; 3444 padding: 8px 0; } 3445 .form-wrap .form-field #parent { 3446 max-width: 100%; } 4121 3447 4122 3448 .form-field input, 4123 3449 .form-field textarea { 4124 border-style: solid; 4125 border-width: 1px; 4126 width: 95%; 4127 } 3450 border-style: solid; 3451 border-width: 1px; 3452 width: 95%; } 4128 3453 4129 3454 p.description, 4130 3455 .form-wrap p { 4131 margin: 2px 0 5px; 4132 } 3456 margin: 2px 0 5px; } 4133 3457 4134 3458 p.help, 4135 3459 p.description, 4136 3460 span.description, 4137 3461 .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%; 4150 } 3462 font-size: 12px; 3463 font-style: italic; 3464 font-family: sans-serif; } 4151 3465 4152 3466 .col-wrap h3 { 4153 margin: 12px 0; 4154 font-size: 1.1em; 4155 } 4156 3467 margin: 12px 0; 3468 font-size: 1.1em; } 4157 3469 .col-wrap p.submit { 4158 margin-top: -10px; 4159 } 4160 3470 margin-top: -10px; } 4161 3471 4162 3472 /*------------------------------------------------------------------------------ 4163 3473 13.0 - Tags 4164 3474 ------------------------------------------------------------------------------*/ 4165 4166 3475 #poststuff .taghint { 4167 color: #aaa; 4168 margin: 15px 0 -24px 12px; 4169 } 4170 4171 #poststuff .tagsdiv .howto { 4172 margin: 0 0 6px 8px; 4173 } 3476 color: #aaa; 3477 margin: 15px 0 -24px 12px; } 4174 3478 4175 3479 .ajaxtag .newtag { 4176 position: relative; 4177 } 3480 position: relative; } 4178 3481 4179 3482 .tagsdiv .newtag { 4180 width: 180px; 4181 } 4182 3483 width: 180px; } 4183 3484 .tagsdiv .the-tags { 4184 display: block; 4185 height: 60px; 4186 margin: 0 auto; 4187 overflow: auto; 4188 width: 260px; 4189 } 4190 4191 #post-body-content .tagsdiv .the-tags { 4192 margin: 0 5px; 4193 } 3485 display: block; 3486 height: 60px; 3487 margin: 0 auto; 3488 overflow: auto; 3489 width: 260px; } 3490 #post-body-content .tagsdiv .the-tags { 3491 margin: 0 5px; } 3492 #poststuff .tagsdiv .howto { 3493 margin: 0 0 6px 8px; } 4194 3494 4195 3495 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; 4204 } 4205 4206 p.popular-tags a { 4207 padding: 0 3px; 4208 } 3496 border-radius: 8px; 3497 -moz-border-radius: 8px; 3498 -webkit-border-radius: 8px; 3499 border-width: 1px; 3500 border-style: solid; 3501 line-height: 2em; 3502 max-width: 1000px; 3503 padding: 8px 12px 12px; 3504 text-align: justify; } 3505 p.popular-tags a { 3506 padding: 0 3px; } 4209 3507 4210 3508 .tagcloud { 4211 width: 97%; 4212 margin: 0 0 40px; 4213 text-align: justify; 4214 } 4215 4216 .tagcloud h3 { 4217 margin: 2px 0 12px; 4218 } 3509 width: 97%; 3510 margin: 0 0 40px; 3511 text-align: justify; } 3512 .tagcloud h3 { 3513 margin: 2px 0 12px; } 4219 3514 4220 3515 .ac_results { 4221 padding: 0; 4222 margin: 0; 4223 list-style: none; 4224 position: absolute; 4225 z-index: 10000; 4226 display: none; 4227 border-width: 1px; 4228 border-style: solid; 4229 } 4230 4231 .ac_results li { 4232 padding: 2px 5px; 4233 white-space: nowrap; 4234 text-align: left; 4235 } 3516 padding: 0; 3517 margin: 0; 3518 list-style: none; 3519 position: absolute; 3520 z-index: 10000; 3521 display: none; 3522 border-width: 1px; 3523 border-style: solid; } 3524 .ac_results li { 3525 padding: 2px 5px; 3526 white-space: nowrap; 3527 text-align: left; } 4236 3528 4237 3529 .ac_over { 4238 cursor: pointer; 4239 } 3530 cursor: pointer; } 4240 3531 4241 3532 .ac_match { 4242 text-decoration: underline; 4243 } 3533 text-decoration: underline; } 4244 3534 4245 3535 /* links tables */ 4246 3536 table.links-table { 4247 width: 100%; 4248 } 3537 width: 100%; } 4249 3538 4250 3539 .links-table th { 4251 font-weight: normal; 4252 text-align: left; 4253 vertical-align: top; 4254 min-width: 80px; 4255 width: 20%; 4256 word-wrap: break-word; 4257 } 4258 3540 font-weight: normal; 3541 text-align: left; 3542 vertical-align: top; 3543 min-width: 80px; 3544 width: 20%; 3545 word-wrap: break-word; } 4259 3546 .links-table th, 4260 3547 .links-table td { 4261 padding: 5px 0; 4262 } 4263 3548 padding: 5px 0; } 4264 3549 .links-table td label { 4265 margin-right: 8px; 4266 } 4267 3550 margin-right: 8px; } 4268 3551 .links-table td input[type="text"], 4269 3552 .links-table td textarea { 4270 width: 100%; 4271 } 4272 3553 width: 100%; } 4273 3554 .links-table #link_rel { 4274 max-width: 280px; 4275 } 3555 max-width: 280px; } 4276 3556 4277 3557 /*------------------------------------------------------------------------------ 4278 3558 14.0 - Media Screen 4279 3559 ------------------------------------------------------------------------------*/ 4280 4281 3560 .media-item .describe { 4282 border-collapse: collapse; 4283 width: 100%; 4284 border-top-style: solid; 4285 border-top-width: 1px; 4286 clear: both; 4287 cursor: default; 4288 } 4289 3561 border-collapse: collapse; 3562 width: 100%; 3563 border-top-style: solid; 3564 border-top-width: 1px; 3565 clear: both; 3566 cursor: default; } 3567 .media-item .describe td { 3568 padding: 0 8px 8px 0; 3569 vertical-align: top; } 3570 .media-item .describe th { 3571 vertical-align: top; 3572 text-align: left; 3573 padding: 5px 10px 10px; 3574 width: 140px; } 3575 .align .media-item .describe th { 3576 padding-top: 0; } 3577 .media-item .describe input[type="text"], 3578 .media-item .describe textarea { 3579 width: 460px; } 3580 .media-item .describe p.help { 3581 margin: 0; 3582 padding: 0 0 0 5px; } 4290 3583 .media-item.media-blank .describe { 4291 border: 0; 4292 } 4293 4294 .media-item .describe th { 4295 vertical-align: top; 4296 text-align: left; 4297 padding: 5px 10px 10px; 4298 width: 140px; 4299 } 4300 4301 .media-item .describe .align th { 4302 padding-top: 0; 4303 } 4304 3584 border: 0; } 4305 3585 .media-item .media-item-info tr { 4306 background-color: transparent; 4307 } 4308 4309 .media-item .describe td { 4310 padding: 0 8px 8px 0; 4311 vertical-align: top; 4312 } 4313 3586 background-color: transparent; } 4314 3587 .media-item thead.media-item-info td { 4315 padding: 4px 10px 0; 4316 } 4317 3588 padding: 4px 10px 0; } 4318 3589 .media-item .media-item-info .A1B1 { 4319 padding: 0 0 0 10px; 4320 } 4321 3590 padding: 0 0 0 10px; } 4322 3591 .media-item td.savesend { 4323 padding-bottom: 15px; 4324 } 4325 3592 padding-bottom: 15px; } 4326 3593 .media-item .thumbnail { 4327 max-height: 128px; 4328 max-width: 128px; 4329 } 3594 max-height: 128px; 3595 max-width: 128px; } 3596 .media-item .filename { 3597 line-height: 36px; 3598 overflow: hidden; 3599 padding: 0 10px; } 3600 .media-item .error-div { 3601 padding-left: 10px; } 3602 .media-item .pinkynail { 3603 float: left; 3604 margin: 2px 2px 0; 3605 max-width: 40px; 3606 max-height: 32px; } 3607 .media-item .startopen, 3608 .media-item .startclosed { 3609 display: none; } 3610 .media-item .original { 3611 position: relative; 3612 height: 34px; } 3613 .media-item .progress { 3614 float: right; 3615 height: 22px; 3616 margin: 6px 10px 0 0; 3617 width: 200px; 3618 line-height: 2em; 3619 padding: 0; 3620 overflow: hidden; 3621 margin-bottom: 2px; 3622 border: 1px solid #d1d1d1; 3623 background: #f7f7f7; 3624 background-image: -webkit-gradient(linear, left bottom, left top, from(white), to(#f7f7f7)); 3625 background-image: -webkit-linear-gradient(bottom, white, #f7f7f7); 3626 background-image: -moz-linear-gradient(bottom, white, #f7f7f7); 3627 background-image: -o-linear-gradient(bottom, white, #f7f7f7); 3628 background-image: linear-gradient(to top, white, #f7f7f7); 3629 border-radius: 3px; 3630 -moz-border-radius: 3px; 3631 -webkit-border-radius: 3px; 3632 -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1); 3633 -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1); 3634 box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1); } 3635 .media-item .bar { 3636 z-index: 9; 3637 width: 0; 3638 height: 100%; 3639 margin-top: -24px; 3640 background: #8cc1e9; 3641 background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9)); 3642 background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9); 3643 background-image: -moz-linear-gradient(bottom, #72a7cf, #8cc1e9); 3644 background-image: -o-linear-gradient(bottom, #72a7cf, #8cc1e9); 3645 background-image: linear-gradient(to top, #72a7cf, #8cc1e9); 3646 border-radius: 3px; 3647 -moz-border-radius: 3px; 3648 -webkit-border-radius: 3px; 3649 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3); 3650 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3); 3651 box-shadow: 0 0 3px rgba(0, 0, 0, 0.3); } 3652 .media-item .progress .percent { 3653 z-index: 10; 3654 position: relative; 3655 width: 200px; 3656 padding: 0 8px; 3657 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); 3658 color: rgba(0, 0, 0, 0.6); } 4330 3659 4331 3660 #wpbody-content #async-upload-wrap a { 4332 display: none; 4333 } 3661 display: none; } 4334 3662 4335 3663 .media-upload-form { 4336 margin-top: 20px; 4337 } 4338 4339 .media-upload-form td label { 4340 margin-right: 6px; 4341 margin-left: 2px; 4342 } 4343 4344 .media-upload-form .align .field label { 4345 display: inline; 4346 padding: 0 0 0 23px; 4347 margin: 0 1em 0 3px; 4348 font-weight: bold; 4349 } 4350 4351 .media-upload-form tr.image-size label { 4352 margin: 0 0 0 5px; 4353 font-weight: bold; 4354 } 4355 4356 .media-upload-form th.label label { 4357 font-weight: bold; 4358 margin: 0.5em; 4359 font-size: 13px; 4360 } 4361 4362 .media-upload-form th.label label span { 4363 padding: 0 5px; 4364 } 3664 margin-top: 20px; } 3665 .media-upload-form td label { 3666 margin-right: 6px; 3667 margin-left: 2px; } 3668 .media-upload-form .align .field label { 3669 display: inline; 3670 padding: 0 0 0 23px; 3671 margin: 0 1em 0 3px; 3672 font-weight: bold; } 3673 .media-upload-form tr.image-size label { 3674 margin: 0 0 0 5px; 3675 font-weight: bold; } 3676 .media-upload-form th.label label { 3677 font-size: 13px; 3678 font-weight: bold; 3679 line-height: normal; 3680 margin: 0.5em; } 3681 .media-upload-form th.label label span { 3682 padding: 0 5px; } 4365 3683 4366 3684 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; 4379 } 3685 border: medium none; 3686 text-decoration: none; } 4380 3687 4381 3688 .media-item .edit-attachment, 4382 3689 .describe-toggle-on, 4383 3690 .describe-toggle-off { 4384 display: block; 4385 line-height: 36px; 4386 float: right; 4387 margin-right: 15px; 4388 } 3691 display: block; 3692 line-height: 36px; 3693 float: right; 3694 margin-right: 15px; } 4389 3695 4390 3696 .media-item .describe-toggle-off, 4391 3697 .media-item.open .describe-toggle-on { 4392 display: none; 4393 } 3698 display: none; } 4394 3699 4395 3700 .media-item.open .describe-toggle-off { 4396 display: block; 4397 } 3701 display: block; } 4398 3702 4399 3703 #media-items .media-item { 4400 border-style: solid; 4401 border-width: 1px; 4402 min-height: 36px; 4403 position: relative; 4404 margin-top: -1px; 4405 width: 100%; 4406 } 3704 border-style: solid; 3705 border-width: 1px; 3706 min-height: 36px; 3707 position: relative; 3708 margin-top: -1px; 3709 width: 100%; } 4407 3710 4408 3711 #media-items { 4409 width: 623px; 4410 } 3712 width: 623px; } 4411 3713 4412 3714 .media-new-php #media-items { 4413 margin: 1em 0; 4414 } 3715 margin: 1em 0; } 4415 3716 4416 3717 #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); 4493 } 3718 border: 0 none; } 4494 3719 4495 3720 .upload-php .fixed .column-parent { 4496 width: 15%; 4497 } 3721 width: 15%; } 4498 3722 4499 3723 .js .html-uploader #plupload-upload-ui { 4500 display: none; 4501 } 3724 display: none; } 4502 3725 4503 3726 .js .html-uploader #html-upload-ui { 4504 display: block; 4505 } 3727 display: block; } 4506 3728 4507 3729 .media-upload-form .media-item.error { 4508 margin: 0; 4509 padding: 0; 4510 } 3730 margin: 0; 3731 padding: 0; } 4511 3732 4512 3733 .media-upload-form .media-item.error p, 4513 3734 .media-item .error-div { 4514 line-height: 16px; 4515 margin: 5px 10px; 4516 padding: 0; 4517 } 3735 line-height: 16px; 3736 margin: 5px 10px; 3737 padding: 0; } 4518 3738 4519 3739 .media-item .error-div a.dismiss { 4520 display: block; 4521 float: right; 4522 margin: 5px 4px 0 15px; 4523 } 3740 display: block; 3741 float: right; 3742 margin: 5px 4px 0 15px; } 4524 3743 4525 3744 /*------------------------------------------------------------------------------ 4526 3745 14.1 - Media Library 4527 3746 ------------------------------------------------------------------------------*/ 4528 4529 3747 .find-box { 4530 width: 600px; 4531 height: 300px; 4532 overflow: hidden; 4533 padding: 33px 0 51px; 4534 position: absolute; 4535 z-index: 1000; 4536 } 3748 width: 600px; 3749 height: 300px; 3750 overflow: hidden; 3751 padding: 33px 0 51px; 3752 position: absolute; 3753 z-index: 1000; } 4537 3754 4538 3755 .find-box-head { 4539 cursor: move; 4540 font-weight: bold; 4541 height: 2em; 4542 line-height: 2em; 4543 padding: 1px 12px; 4544 position: absolute; 4545 top: 5px; 4546 width: 100%; 4547 } 3756 cursor: move; 3757 font-weight: bold; 3758 height: 2em; 3759 line-height: 2em; 3760 padding: 1px 12px; 3761 position: absolute; 3762 top: 5px; 3763 width: 100%; } 4548 3764 4549 3765 .find-box-inside { 4550 overflow: auto; 4551 padding: 6px; 4552 height: 100%; 4553 } 3766 overflow: auto; 3767 padding: 6px; 3768 height: 100%; } 4554 3769 4555 3770 .find-box-search { 4556 overflow: hidden; 4557 padding: 9px; 4558 position: relative; 4559 } 4560 4561 .find-box-search .spinner { 4562 float: none; 4563 left: 125px; 4564 position: absolute; 4565 top: 9px; 4566 } 3771 overflow: hidden; 3772 padding: 9px; 3773 position: relative; } 3774 .find-box-search .spinner { 3775 float: none; 3776 left: 125px; 3777 position: absolute; 3778 top: 9px; } 4567 3779 4568 3780 #find-posts-input { 4569 float: left; 4570 width: 140px; 4571 height: 24px; 4572 } 3781 float: left; 3782 width: 140px; 3783 height: 24px; } 4573 3784 4574 3785 #find-posts-search { 4575 float: left; 4576 margin: 1px 4px 0 3px; 4577 } 3786 float: left; 3787 margin: 1px 4px 0 3px; } 4578 3788 4579 3789 #find-posts-response { 4580 margin: 8px 0; 4581 padding: 0 1px 6px; 4582 } 3790 margin: 8px 0; 3791 padding: 0 1px 6px; } 4583 3792 4584 3793 #find-posts-response table { 4585 width: 100%; 4586 } 3794 width: 100%; } 4587 3795 4588 3796 #find-posts-response .found-radio { 4589 padding: 3px 0 0 8px; 4590 width: 15px; 4591 } 3797 padding: 3px 0 0 8px; 3798 width: 15px; } 4592 3799 4593 3800 .find-box-buttons { 4594 padding: 8px; 4595 overflow: hidden; 4596 } 3801 padding: 8px; 3802 overflow: hidden; } 4597 3803 4598 3804 .find-box #resize-se { 4599 position: absolute; 4600 right: 1px; 4601 bottom: 1px; 4602 } 3805 position: absolute; 3806 right: 1px; 3807 bottom: 1px; } 4603 3808 4604 3809 .ui-find-overlay { 4605 position: absolute; 4606 top: 0; 4607 left: 0; 4608 background-color: #000; 4609 opacity: 0.6; 4610 filter: alpha(opacity=60); 4611 } 3810 position: absolute; 3811 top: 0; 3812 left: 0; 3813 background-color: black; 3814 opacity: 0.6; 3815 filter: alpha(opacity=60); } 4612 3816 4613 3817 ul#dismissed-updates { 4614 display: none; 4615 } 3818 display: none; } 4616 3819 4617 3820 form.upgrade { 4618 margin-top: 8px; 4619 } 3821 margin-top: 8px; } 4620 3822 4621 3823 form.upgrade .hint { 4622 font-style: italic; 4623 font-size: 85%; 4624 margin: -0.5em 0 2em 0; 4625 } 3824 font-style: italic; 3825 font-size: 85%; 3826 margin: -0.5em 0 2em 0; } 4626 3827 4627 3828 #poststuff .inside .the-tagcloud { 4628 4629 4630 4631 4632 4633 4634 -webkit-border-radius: 6px;4635 4636 }3829 margin: 5px 0 10px; 3830 padding: 8px; 3831 border-width: 1px; 3832 border-style: solid; 3833 line-height: 1.8em; 3834 word-spacing: 3px; 3835 border-radius: 6px; 3836 -moz-border-radius: 6px; 3837 -webkit-border-radius: 6px; } 4637 3838 4638 3839 .drag-drop #drag-drop-area { 4639 border: 4px dashed #DDDDDD; 4640 height: 200px; 4641 } 3840 border: 4px dashed #DDDDDD; 3841 height: 200px; } 4642 3842 4643 3843 .drag-drop .drag-drop-inside { 4644 margin: 70px auto 0; 4645 width: 250px; 4646 } 3844 margin: 70px auto 0; 3845 width: 250px; } 4647 3846 4648 3847 .drag-drop-inside p { 4649 color: #aaa; 4650 font-size: 14px; 4651 margin: 5px 0; 4652 display: none; 4653 } 3848 color: #aaa; 3849 font-size: 14px; 3850 margin: 5px 0; 3851 display: none; } 4654 3852 4655 3853 .drag-drop .drag-drop-inside p { 4656 text-align: center; 4657 } 3854 text-align: center; } 4658 3855 4659 3856 .drag-drop-inside p.drag-drop-info { 4660 font-size: 20px; 4661 } 3857 font-size: 20px; } 4662 3858 4663 3859 .drag-drop .drag-drop-inside p, 4664 3860 .drag-drop-inside p.drag-drop-buttons { 4665 display: block; 4666 } 3861 display: block; } 4667 3862 4668 3863 /* 4669 3864 #drag-drop-area:-moz-drag-over { … … form.upgrade .hint { 4671 3866 } 4672 3867 borger color while dragging a file over the uploader drop area */ 4673 3868 .drag-drop.drag-over #drag-drop-area { 4674 border-color: #83b4d8; 4675 } 3869 border-color: #83b4d8; } 4676 3870 4677 3871 #plupload-upload-ui { 4678 position: relative; 4679 } 4680 3872 position: relative; } 4681 3873 4682 3874 /*------------------------------------------------------------------------------ 4683 3875 14.2 - Image Editor 4684 3876 ------------------------------------------------------------------------------*/ 4685 4686 3877 .describe .image-editor { 4687 vertical-align: top; 4688 } 3878 vertical-align: top; } 4689 3879 4690 3880 .imgedit-wrap { 4691 position: relative; 4692 } 3881 position: relative; } 4693 3882 4694 3883 .imgedit-settings p { 4695 margin: 8px 0; 4696 } 3884 margin: 8px 0; } 4697 3885 4698 3886 .post-php .imgedit-wrap table { 4699 width: 100%; 4700 } 3887 width: 100%; } 4701 3888 4702 3889 .describe .imgedit-wrap table td, 4703 3890 .wp_attachment_holder .imgedit-wrap table td { 4704 vertical-align: top; 4705 padding-top: 0; 4706 } 3891 vertical-align: top; 3892 padding-top: 0; } 4707 3893 4708 3894 .describe .imgedit-wrap table td.imgedit-settings { 4709 padding: 0 5px; 4710 } 3895 padding: 0 5px; } 4711 3896 4712 3897 .wp_attachment_holder .imgedit-wrap table td.imgedit-settings { 4713 width: 250px; 4714 } 3898 width: 250px; } 4715 3899 4716 3900 td.imgedit-settings input { 4717 margin-top: 0; 4718 vertical-align: middle; 4719 } 3901 margin-top: 0; 3902 vertical-align: middle; } 4720 3903 4721 3904 .imgedit-wait { 4722 position: absolute; 4723 top: 0; 4724 background: #fff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px; 4725 background-size: 16px 16px; 4726 opacity: 0.7; 4727 filter: alpha(opacity=70); 4728 width: 100%; 4729 height: 500px; 4730 display: none; 4731 } 3905 position: absolute; 3906 top: 0; 3907 background: white url(../images/wpspin_light.gif) no-repeat scroll 22px 10px; 3908 background-size: 16px 16px; 3909 opacity: 0.7; 3910 filter: alpha(opacity=70); 3911 width: 100%; 3912 height: 500px; 3913 display: none; } 4732 3914 4733 3915 .spinner { 4734 background: url(../images/wpspin_light.gif) no-repeat; 4735 background-size: 16px 16px; 4736 display: none; 4737 float: right; 4738 opacity: 0.7; 4739 filter: alpha(opacity=70); 4740 width: 16px; 4741 height: 16px; 4742 margin: 5px 5px 0; 4743 } 3916 background: url(../images/wpspin_light.gif) no-repeat; 3917 background-size: 16px 16px; 3918 display: none; 3919 float: right; 3920 opacity: 0.7; 3921 filter: alpha(opacity=70); 3922 width: 16px; 3923 height: 16px; 3924 margin: 5px 5px 0; } 4744 3925 4745 3926 .no-float { 4746 float: none; 4747 } 3927 float: none; } 4748 3928 4749 3929 .media-disabled, 4750 .imgedit-settings .disabled { 4751 color: grey; 4752 } 3930 .imgedit-settings .disabled { 3931 color: grey; } 4753 3932 4754 3933 .wp_attachment_image, 4755 3934 .A1B1 { 4756 overflow: hidden; 4757 } 3935 overflow: hidden; } 4758 3936 4759 3937 .wp_attachment_image .button, 4760 3938 .A1B1 .button { 4761 float: left; 4762 } 3939 float: left; } 4763 3940 4764 3941 .no-js .wp_attachment_image .button { 4765 display: none; 4766 } 3942 display: none; } 4767 3943 4768 3944 .wp_attachment_image .spinner, 4769 3945 .A1B1 .spinner { 4770 float: left; 4771 padding: 0 4px 4px; 4772 vertical-align: bottom; 4773 } 3946 float: left; 3947 padding: 0 4px 4px; 3948 vertical-align: bottom; } 4774 3949 4775 3950 .imgedit-menu { 4776 margin: 0 0 12px; 4777 min-width: 300px; 4778 } 4779 4780 .imgedit-menu div { 4781 float: left; 4782 width: 32px; 4783 height: 32px; 4784 } 3951 margin: 0 0 12px; 3952 min-width: 300px; } 3953 .imgedit-menu div { 3954 float: left; 3955 width: 32px; 3956 height: 32px; } 4785 3957 4786 3958 .imgedit-crop-wrap { 4787 position: relative; 4788 } 3959 position: relative; } 4789 3960 4790 3961 .imgedit-crop { 4791 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -9px -31px; 4792 margin: 0 8px 0 0; 4793 } 4794 4795 .imgedit-crop.disabled:hover { 4796 background-position: -9px -31px; 4797 } 4798 4799 .imgedit-crop:hover { 4800 background-position: -9px -1px; 4801 } 3962 background: transparent url("../images/imgedit-icons.png") no-repeat scroll -9px -31px; 3963 margin: 0 8px 0 0; } 3964 .imgedit-crop.disabled:hover { 3965 background-position: -9px -31px; } 3966 .imgedit-crop:hover { 3967 background-position: -9px -1px; } 4802 3968 4803 3969 .imgedit-rleft { 4804 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -46px -31px; 4805 margin: 0 3px; 4806 } 4807 4808 .imgedit-rleft.disabled:hover { 4809 background-position: -46px -31px; 4810 } 4811 4812 .imgedit-rleft:hover { 4813 background-position: -46px -1px; 4814 } 3970 background: transparent url("../images/imgedit-icons.png") no-repeat scroll -46px -31px; 3971 margin: 0 3px; } 3972 .imgedit-rleft.disabled:hover { 3973 background-position: -46px -31px; } 3974 .imgedit-rleft:hover { 3975 background-position: -46px -1px; } 4815 3976 4816 3977 .imgedit-rright { 4817 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -77px -31px; 4818 margin: 0 8px 0 3px; 4819 } 4820 4821 .imgedit-rright.disabled:hover { 4822 background-position: -77px -31px; 4823 } 4824 4825 .imgedit-rright:hover { 4826 background-position: -77px -1px; 4827 } 3978 background: transparent url("../images/imgedit-icons.png") no-repeat scroll -77px -31px; 3979 margin: 0 8px 0 3px; } 3980 .imgedit-rright.disabled:hover { 3981 background-position: -77px -31px; } 3982 .imgedit-rright:hover { 3983 background-position: -77px -1px; } 4828 3984 4829 3985 .imgedit-flipv { 4830 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -115px -31px; 4831 margin: 0 3px; 4832 } 4833 4834 .imgedit-flipv.disabled:hover { 4835 background-position: -115px -31px; 4836 } 4837 4838 .imgedit-flipv:hover { 4839 background-position: -115px -1px; 4840 } 3986 background: transparent url("../images/imgedit-icons.png") no-repeat scroll -115px -31px; 3987 margin: 0 3px; } 3988 .imgedit-flipv.disabled:hover { 3989 background-position: -115px -31px; } 3990 .imgedit-flipv:hover { 3991 background-position: -115px -1px; } 4841 3992 4842 3993 .imgedit-fliph { 4843 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -147px -31px; 4844 margin: 0 8px 0 3px; 4845 } 4846 4847 .imgedit-fliph.disabled:hover { 4848 background-position: -147px -31px; 4849 } 4850 4851 .imgedit-fliph:hover { 4852 background-position: -147px -1px; 4853 } 3994 background: transparent url("../images/imgedit-icons.png") no-repeat scroll -147px -31px; 3995 margin: 0 8px 0 3px; } 3996 .imgedit-fliph.disabled:hover { 3997 background-position: -147px -31px; } 3998 .imgedit-fliph:hover { 3999 background-position: -147px -1px; } 4854 4000 4855 4001 .imgedit-undo { 4856 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -184px -31px; 4857 margin: 0 3px; 4858 } 4859 4860 .imgedit-undo.disabled:hover { 4861 background-position: -184px -31px; 4862 } 4863 4864 .imgedit-undo:hover { 4865 background-position: -184px -1px; 4866 } 4002 background: transparent url("../images/imgedit-icons.png") no-repeat scroll -184px -31px; 4003 margin: 0 3px; } 4004 .imgedit-undo.disabled:hover { 4005 background-position: -184px -31px; } 4006 .imgedit-undo:hover { 4007 background-position: -184px -1px; } 4867 4008 4868 4009 .imgedit-redo { 4869 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -215px -31px; 4870 margin: 0 8px 0 3px; 4871 } 4872 4873 .imgedit-redo.disabled:hover { 4874 background-position: -215px -31px; 4875 } 4876 4877 .imgedit-redo:hover { 4878 background-position: -215px -1px; 4879 } 4010 background: transparent url("../images/imgedit-icons.png") no-repeat scroll -215px -31px; 4011 margin: 0 8px 0 3px; } 4012 .imgedit-redo.disabled:hover { 4013 background-position: -215px -31px; } 4014 .imgedit-redo:hover { 4015 background-position: -215px -1px; } 4880 4016 4881 4017 .imgedit-applyto img { 4882 margin: 0 8px 0 0; 4883 } 4018 margin: 0 8px 0 0; } 4884 4019 4885 4020 .imgedit-group-top { 4886 margin: 5px 0; 4887 } 4021 margin: 5px 0; } 4888 4022 4889 4023 .imgedit-applyto .imgedit-label { 4890 padding: 2px 0 0; 4891 display: block; 4892 } 4024 padding: 2px 0 0; 4025 display: block; } 4893 4026 4894 4027 .imgedit-help { 4895 display: none; 4896 font-style: italic; 4897 margin-bottom: 8px; 4898 } 4028 display: none; 4029 font-style: italic; 4030 margin-bottom: 8px; } 4899 4031 4900 4032 a.imgedit-help-toggle { 4901 text-decoration: none; 4902 } 4033 text-decoration: none; } 4903 4034 4904 4035 .form-table td.imgedit-response { 4905 padding: 0; 4906 } 4036 padding: 0; } 4907 4037 4908 4038 .imgedit-submit { 4909 margin: 8px 0; 4910 } 4039 margin: 8px 0; } 4911 4040 4912 4041 .imgedit-submit-btn { 4913 margin-left: 20px; 4914 } 4042 margin-left: 20px; } 4915 4043 4916 4044 .imgedit-wrap .nowrap { 4917 white-space: nowrap; 4918 } 4045 white-space: nowrap; } 4919 4046 4920 4047 span.imgedit-scale-warn { 4921 color: red; 4922 font-size: 20px; 4923 font-style: normal; 4924 visibility: hidden; 4925 vertical-align: middle; 4926 } 4048 color: red; 4049 font-size: 20px; 4050 font-style: normal; 4051 visibility: hidden; 4052 vertical-align: middle; } 4927 4053 4928 4054 .imgedit-group { 4929 4930 4931 -webkit-border-radius: 3px;4932 4933 margin-bottom: 8px;4934 padding: 2px 10px;4935 }4055 border-width: 1px; 4056 border-style: solid; 4057 border-radius: 3px; 4058 -moz-border-radius: 3px; 4059 -webkit-border-radius: 3px; 4060 margin-bottom: 8px; 4061 padding: 2px 10px; } 4936 4062 4937 4063 /*------------------------------------------------------------------------------ 4938 4064 15.0 - Comments Screen 4939 4065 ------------------------------------------------------------------------------*/ 4940 4941 4066 .form-table { 4942 border-collapse: collapse; 4943 margin-top: 0.5em; 4944 width: 100%; 4945 margin-bottom: -8px; 4946 clear: both; 4947 } 4948 4949 .form-table td { 4950 margin-bottom: 9px; 4951 padding: 8px 10px; 4952 line-height: 20px; 4953 font-size: 12px; 4954 } 4067 border-collapse: collapse; 4068 margin-top: 0.5em; 4069 width: 100%; 4070 margin-bottom: -8px; 4071 clear: both; } 4072 .form-table td { 4073 margin-bottom: 9px; 4074 padding: 8px 10px; 4075 line-height: 20px; 4076 font-size: 12px; } 4077 .form-table td p { 4078 margin-top: 4px; } 4079 .color-palette .form-table td { 4080 border-width: 1px 1px 0; 4081 border-style: solid solid none; 4082 height: 10px; 4083 line-height: 20px; 4084 width: 10px; } 4085 .form-table th { 4086 vertical-align: top; 4087 text-align: left; 4088 padding: 10px; 4089 width: 200px; } 4090 .form-table th.th-full { 4091 width: auto; } 4092 .form-table div.color-option { 4093 display: block; 4094 clear: both; 4095 margin-top: 12px; } 4096 .form-table input.tog { 4097 margin-top: 2px; 4098 margin-right: 2px; 4099 float: left; } 4100 .form-table table.color-palette { 4101 vertical-align: bottom; 4102 float: left; 4103 margin: -12px 3px 11px; } 4955 4104 4956 4105 .form-table th, 4957 4106 .form-wrap label { 4958 font-weight: normal; 4959 text-shadow: #fff 0 1px 0; 4960 } 4961 4962 .form-table th { 4963 vertical-align: top; 4964 text-align: left; 4965 padding: 10px; 4966 width: 200px; 4967 } 4968 4969 .form-table th.th-full { 4970 width: auto; 4971 } 4972 4973 .form-table div.color-option { 4974 display: block; 4975 clear: both; 4976 margin-top: 12px; 4977 } 4978 4979 .form-table input.tog { 4980 margin-top: 2px; 4981 margin-right: 2px; 4982 float: left; 4983 } 4984 4985 .form-table td p { 4986 margin-top: 4px; 4987 } 4988 4989 .form-table table.color-palette { 4990 vertical-align: bottom; 4991 float: left; 4992 margin: -12px 3px 11px; 4993 } 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; 5001 } 4107 font-weight: normal; 4108 text-shadow: #fff 0 1px 0; } 5002 4109 5003 4110 .commentlist li { 5004 padding: 1em 1em .2em; 5005 margin: 0; 5006 border-bottom-width: 1px; 5007 border-bottom-style: solid; 5008 } 5009 5010 .commentlist li li { 5011 border-bottom: 0; 5012 padding: 0; 5013 } 5014 4111 padding: 1em 1em .2em; 4112 margin: 0; 4113 border-bottom-width: 1px; 4114 border-bottom-style: solid; } 4115 .commentlist li li { 4116 border-bottom: 0; 4117 padding: 0; } 5015 4118 .commentlist p { 5016 padding: 0; 5017 margin: 0 0 .8em; 5018 } 4119 padding: 0; 4120 margin: 0 0 .8em; } 4121 .commentlist .avatar { 4122 vertical-align: text-top; } 5019 4123 5020 4124 /* reply to comments */ 5021 4125 #replyrow input { 5022 border-width: 1px; 5023 border-style: solid; 5024 } 5025 4126 border-width: 1px; 4127 border-style: solid; } 5026 4128 #replyrow td { 5027 padding: 2px; 5028 } 4129 padding: 2px; } 4130 #replyrow h5 { 4131 margin: .2em 0 0; 4132 padding: 0 5px; 4133 line-height: 1.4em; 4134 font-size: 1em; } 5029 4135 5030 4136 #replysubmit { 5031 margin: 0; 5032 padding: 0 5px 3px; 5033 text-align: center; 5034 } 5035 5036 #replysubmit .spinner { 5037 padding: 2px 0 0; 5038 vertical-align: top; 5039 float: right; 5040 } 5041 5042 #replysubmit .button { 5043 margin-right: 5px; 5044 } 5045 5046 #replysubmit .error { 5047 color: red; 5048 line-height: 21px; 5049 text-align: center; 5050 } 5051 5052 #replyrow h5 { 5053 margin: .2em 0 0; 5054 padding: 0 5px; 5055 line-height: 1.4em; 5056 font-size: 1em; 5057 } 4137 margin: 0; 4138 padding: 0 5px 3px; 4139 text-align: center; } 4140 #replysubmit .spinner { 4141 padding: 2px 0 0; 4142 vertical-align: top; 4143 float: right; } 4144 #replysubmit .button { 4145 margin-right: 5px; } 4146 #replysubmit .error { 4147 color: red; 4148 line-height: 21px; 4149 text-align: center; } 5058 4150 5059 4151 #edithead .inside { 5060 float: left; 5061 padding: 3px 0 2px 5px; 5062 margin: 0; 5063 text-align: center; 5064 } 5065 5066 #edithead .inside input { 5067 width: 180px; 5068 } 5069 4152 float: left; 4153 padding: 3px 0 2px 5px; 4154 margin: 0; 4155 text-align: center; } 4156 #edithead .inside input { 4157 width: 180px; } 5070 4158 #edithead label { 5071 padding: 2px 0; 5072 } 4159 padding: 2px 0; } 5073 4160 5074 4161 #replycontainer { 5075 padding: 5px; 5076 } 4162 padding: 5px; } 5077 4163 5078 4164 #replycontent { 5079 5080 -webkit-box-shadow: none;5081 5082 }4165 height: 120px; 4166 -moz-box-shadow: none; 4167 -webkit-box-shadow: none; 4168 box-shadow: none; } 5083 4169 5084 4170 .comment-php .wp-editor-area { 5085 height: 200px; 5086 } 4171 height: 200px; } 5087 4172 5088 4173 .comment-ays { 5089 margin-bottom: 0; 5090 border-style: solid; 5091 border-width: 1px; 5092 } 5093 5094 .comment-ays th { 5095 border-right-style: solid; 5096 border-right-width: 1px; 5097 } 4174 margin-bottom: 0; 4175 border-style: solid; 4176 border-width: 1px; } 4177 .comment-ays th { 4178 border-right-style: solid; 4179 border-right-width: 1px; } 5098 4180 5099 4181 .trash-undo-inside, 5100 4182 .spam-undo-inside { 5101 margin: 1px 8px 1px 0; 5102 line-height: 16px; 5103 } 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; 5111 } 4183 margin: 1px 8px 1px 0; 4184 line-height: 16px; } 4185 .trash-undo-inside .avatar, 4186 .spam-undo-inside .avatar { 4187 height: 20px; 4188 width: 20px; 4189 margin-right: 8px; 4190 vertical-align: middle; } 5112 4191 5113 4192 .stuffbox .editcomment { 5114 clear: none; 5115 } 4193 clear: none; } 5116 4194 5117 4195 #comment-status-radio p { 5118 margin: 3px 0 5px; 5119 } 5120 4196 margin: 3px 0 5px; } 5121 4197 #comment-status-radio input { 5122 margin: 2px 3px 5px 0; 5123 vertical-align: middle; 5124 } 5125 4198 margin: 2px 3px 5px 0; 4199 vertical-align: middle; } 5126 4200 #comment-status-radio label { 5127 padding: 5px 0; 5128 } 5129 5130 .commentlist .avatar { 5131 vertical-align: text-top; 5132 } 5133 4201 padding: 5px 0; } 5134 4202 5135 4203 /*------------------------------------------------------------------------------ 5136 4204 16.0 - Themes 5137 4205 ------------------------------------------------------------------------------*/ 5138 5139 4206 .theme-install-php .tablenav { 5140 height: auto; 5141 } 5142 4207 height: auto; } 5143 4208 .theme-install-php .spinner { 5144 margin-top: 9px; 5145 } 4209 margin-top: 9px; } 5146 4210 5147 4211 h3.available-themes { 5148 margin: 0.3em 0 1em; 5149 float: left; 5150 } 4212 margin: 0.3em 0 1em; 4213 float: left; } 5151 4214 5152 4215 .available-theme { 5153 display: inline-block; 5154 margin-right: 10px; 5155 overflow: hidden; 5156 padding: 20px 20px 20px 0; 5157 vertical-align: top; 5158 width: 300px; 5159 } 5160 5161 .available-theme .screenshot { 5162 width: 300px; 5163 height: 225px; 5164 display: block; 5165 border-width: 1px; 5166 border-style: solid; 5167 margin-bottom: 10px; 5168 overflow: hidden; 5169 } 5170 5171 .available-theme img { 5172 width: 300px; 5173 } 5174 5175 .available-theme h3 { 5176 margin: 15px 0 0; 5177 } 5178 5179 .available-theme .theme-author { 5180 line-height: 18px; 5181 } 5182 5183 .available-theme .action-links { 5184 margin-top: 10px; 5185 overflow: hidden; 5186 } 5187 5188 .available-theme a.screenshot:focus { 5189 border-color: #777; 5190 } 4216 display: inline-block; 4217 margin-right: 10px; 4218 overflow: hidden; 4219 padding: 20px 20px 20px 0; 4220 vertical-align: top; 4221 width: 300px; } 4222 .available-theme .screenshot { 4223 width: 300px; 4224 height: 225px; 4225 display: block; 4226 border-width: 1px; 4227 border-style: solid; 4228 margin-bottom: 10px; 4229 overflow: hidden; } 4230 .available-theme img { 4231 width: 300px; } 4232 .available-theme h3 { 4233 margin: 15px 0 0; } 4234 .available-theme .theme-author { 4235 line-height: 18px; } 4236 .available-theme .action-links { 4237 margin-top: 10px; 4238 overflow: hidden; } 4239 .available-theme a.screenshot:focus { 4240 border-color: #777; } 5191 4241 5192 4242 #current-theme .theme-info li, 5193 4243 .theme-options li, 5194 4244 .available-theme .action-links li { 5195 float: left; 5196 padding-right: 10px; 5197 margin-right: 10px; 5198 border-right: 1px solid #dfdfdf; 5199 } 4245 float: left; 4246 padding-right: 10px; 4247 margin-right: 10px; 4248 border-right: 1px solid #dfdfdf; } 4249 #current-theme .theme-info li:last-child, 4250 .theme-options li:last-child, 4251 .available-theme .action-links li:last-child { 4252 padding-right: 0; 4253 margin-right: 0; 4254 border-right: 0; } 5200 4255 5201 4256 .available-theme .action-links li { 5202 padding-right: 8px; 5203 margin-right: 8px; 5204 } 5205 5206 .ie8 .available-theme .action-links li { 5207 padding-right: 7px; 5208 margin-right: 7px; 5209 } 5210 5211 #current-theme .theme-info li:last-child, 5212 .theme-options li:last-child, 5213 .available-theme .action-links li:last-child { 5214 padding-right: 0; 5215 margin-right: 0; 5216 border-right: 0; 5217 } 5218 4257 padding-right: 8px; 4258 margin-right: 8px; } 4259 .ie8 .available-theme .action-links li { 4260 padding-right: 7px; 4261 margin-right: 7px; } 5219 4262 .available-theme .action-links .delete-theme { 5220 float: right; 5221 margin-left: 8px; 5222 margin-right: 0; 5223 } 5224 5225 .available-theme .action-links .delete-theme a { 5226 color: red; 5227 padding: 2px; 5228 } 5229 5230 .available-theme .action-links .delete-theme a:hover { 5231 background: red; 5232 color: #fff; 5233 text-decoration: none; 5234 } 5235 4263 float: right; 4264 margin-left: 8px; 4265 margin-right: 0; } 4266 .available-theme .action-links .delete-theme a { 4267 color: red; 4268 padding: 2px; } 4269 .available-theme .action-links .delete-theme a:hover { 4270 background: red; 4271 color: white; 4272 text-decoration: none; } 5236 4273 .available-theme .action-links p { 5237 float: left; 5238 } 4274 float: left; } 5239 4275 5240 4276 #current-theme { 5241 margin: 20px 0 10px; 5242 padding: 0 0 20px; 5243 border-bottom-width: 1px; 5244 border-bottom-style: solid; 5245 overflow: hidden; 5246 } 5247 5248 #current-theme.has-screenshot { 5249 padding-left: 330px; 5250 } 5251 5252 #current-theme h3 { 5253 margin: 0; 5254 font-size: 12px; 5255 font-weight: normal; 5256 color: #999; 5257 } 5258 5259 #current-theme h4 { 5260 margin: 3px 0 16px; 5261 font-size: 20px; 5262 } 5263 5264 #current-theme h4 span { 5265 margin-left: 20px; 5266 font-size: 12px; 5267 font-weight: normal; 5268 } 5269 5270 #current-theme a { 5271 border-bottom: none; 5272 } 5273 5274 #current-theme .theme-info { 5275 margin: 1em 0; 5276 overflow: hidden; 5277 } 5278 5279 #current-theme .theme-description { 5280 margin-top: 5px; 5281 max-width: 600px; 5282 line-height: 1.6em; 5283 } 5284 5285 #current-theme img { 5286 float: left; 5287 width: 300px; 5288 margin-left: -330px; 5289 5290 border-width: 1px; 5291 border-style: solid; 5292 } 4277 margin: 20px 0 10px; 4278 padding: 0 0 20px; 4279 border-bottom-width: 1px; 4280 border-bottom-style: solid; 4281 overflow: hidden; } 4282 #current-theme.has-screenshot { 4283 padding-left: 330px; } 4284 #current-theme h3 { 4285 margin: 0; 4286 font-size: 12px; 4287 font-weight: normal; 4288 color: #999; } 4289 #current-theme h4 { 4290 margin: 3px 0 16px; 4291 font-size: 20px; } 4292 #current-theme h4 span { 4293 margin-left: 20px; 4294 font-size: 12px; 4295 font-weight: normal; } 4296 #current-theme a { 4297 border-bottom: none; } 4298 #current-theme .theme-info { 4299 margin: 1em 0; 4300 overflow: hidden; } 4301 #current-theme .theme-description { 4302 margin-top: 5px; 4303 max-width: 600px; 4304 line-height: 1.6em; } 4305 #current-theme img { 4306 float: left; 4307 width: 300px; 4308 margin-left: -330px; 4309 border-width: 1px; 4310 border-style: solid; } 5293 4311 5294 4312 .theme-options { 5295 overflow: hidden; 5296 font-size: 14px; 5297 padding-bottom: 10px; 5298 } 5299 5300 .theme-options .load-customize { 5301 margin-right: 30px; 5302 float: left; 5303 } 5304 5305 .theme-options span { 5306 float: left; 5307 margin-right: 10px; 5308 text-transform: uppercase; 5309 font-size: 11px; 5310 line-height: 18px; 5311 color: #999; 5312 } 5313 5314 .theme-options ul { 5315 float: left; 5316 margin: 0; 5317 } 4313 overflow: hidden; 4314 font-size: 14px; 4315 padding-bottom: 10px; } 4316 .theme-options .load-customize { 4317 margin-right: 30px; 4318 float: left; } 4319 .theme-options span { 4320 float: left; 4321 margin-right: 10px; 4322 text-transform: uppercase; 4323 font-size: 11px; 4324 line-height: 18px; 4325 color: #999; } 4326 .theme-options ul { 4327 float: left; 4328 margin: 0; } 5318 4329 5319 4330 /* Allow for three-up in small windows when sidebar is collapsed */ 5320 4331 @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 } 5341 } 5342 4332 .folded .available-theme, 4333 .folded .available-theme .screenshot { 4334 width: 300px; } 4335 .folded .available-theme .screenshot { 4336 height: 225px; } 4337 .folded #current-theme img { 4338 width: 300px; 4339 margin-left: -330px; } 4340 .folded #current-theme.has-screenshot { 4341 padding-left: 330px; } } 5343 4342 /* Adjust three-up display in smaller windows when sidebar is collapsed */ 5344 4343 @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 } 5365 } 5366 4344 .folded .available-theme, 4345 .folded .available-theme .screenshot { 4346 width: 270px; } 4347 .folded .available-theme .screenshot { 4348 height: 203px; } 4349 .folded #current-theme img { 4350 width: 270px; 4351 margin-left: -300px; } 4352 .folded #current-theme.has-screenshot { 4353 padding-left: 300px; } } 5367 4354 /* Allow for three-up on 1024px wide screens, e.g. tablets */ 5368 4355 @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 } 5390 } 5391 4356 .available-theme, 4357 .available-theme .screenshot, 4358 #current-theme img { 4359 width: 240px; } 4360 4361 .available-theme .screenshot { 4362 height: 180px; } 4363 .available-theme img { 4364 width: 100%; } 4365 4366 #current-theme.has-screenshot { 4367 padding-left: 270px; } 4368 #current-theme img { 4369 margin-left: -270px; } } 5392 4370 #post-body ul.add-menu-item-tabs li.tabs a, 5393 4371 #TB_window #TB_title a.tb-theme-preview-link, 5394 4372 #TB_window #TB_title a.tb-theme-preview-link:visited { 5395 font-weight: bold; 5396 text-decoration: none; 5397 } 4373 font-weight: bold; 4374 text-decoration: none; } 5398 4375 5399 4376 #TB_window #TB_title { 5400 background-color: #222; 5401 color: #cfcfcf; 5402 } 4377 background-color: #222; 4378 color: #cfcfcf; } 5403 4379 5404 4380 #broken-themes { 5405 text-align: left; 5406 width: 50%; 5407 border-spacing: 3px; 5408 padding: 3px; 5409 } 4381 text-align: left; 4382 width: 50%; 4383 border-spacing: 3px; 4384 padding: 3px; } 5410 4385 5411 4386 .theme-install-php h4 { 5412 margin: 2.5em 0 8px; 5413 } 5414 4387 margin: 2.5em 0 8px; } 5415 4388 5416 4389 /*------------------------------------------------------------------------------ 5417 4390 16.1 - Custom Header Screen 5418 4391 ------------------------------------------------------------------------------*/ 5419 5420 4392 .appearance_page_custom-header #headimg { 5421 border: 1px solid #DFDFDF; 5422 overflow: hidden; 5423 width: 100%; 5424 } 5425 4393 border: 1px solid #dfdfdf; 4394 overflow: hidden; 4395 width: 100%; } 5426 4396 .appearance_page_custom-header #upload-form p label { 5427 font-size: 12px; 5428 } 5429 4397 font-size: 12px; } 5430 4398 .appearance_page_custom-header .available-headers .default-header { 5431 float: left; 5432 margin: 0 20px 20px 0; 5433 } 5434 4399 float: left; 4400 margin: 0 20px 20px 0; } 5435 4401 .appearance_page_custom-header .random-header { 5436 clear: both; 5437 margin: 0 20px 20px 0; 5438 vertical-align: middle; 5439 } 5440 4402 clear: both; 4403 margin: 0 20px 20px 0; 4404 vertical-align: middle; } 5441 4405 .appearance_page_custom-header .available-headers label input, 5442 4406 .appearance_page_custom-header .random-header label input { 5443 margin-right: 10px; 5444 } 5445 4407 margin-right: 10px; } 5446 4408 .appearance_page_custom-header .available-headers label img { 5447 vertical-align: middle; 5448 } 5449 4409 vertical-align: middle; } 5450 4410 5451 4411 /*------------------------------------------------------------------------------ 5452 4412 16.2 - Custom Background Screen 5453 4413 ------------------------------------------------------------------------------*/ 5454 5455 4414 div#custom-background-image { 5456 min-height: 100px; 5457 border: 1px solid #dfdfdf; 5458 } 5459 5460 div#custom-background-image img { 5461 max-width: 400px; 5462 max-height: 300px; 5463 } 5464 4415 min-height: 100px; 4416 border: 1px solid #dfdfdf; } 4417 div#custom-background-image img { 4418 max-width: 400px; 4419 max-height: 300px; } 5465 4420 5466 4421 /*------------------------------------------------------------------------------ 5467 4422 16.3 - Tabbed Admin Screen Interface (Experimental) 5468 4423 ------------------------------------------------------------------------------*/ 5469 5470 4424 .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; 5485 } 4425 border-style: solid; 4426 border-width: 1px 1px 0; 4427 color: #aaa; 4428 text-shadow: #fff 0 1px 0; 4429 font-size: 12px; 4430 line-height: 16px; 4431 display: inline-block; 4432 padding: 4px 14px 6px; 4433 text-decoration: none; 4434 margin: 0 6px -1px 0; 4435 border-top-left-radius: 3px; 4436 border-top-right-radius: 3px; 4437 -moz-border-top-left-radius: 3px; 4438 -moz-border-top-right-radius: 3px; 4439 -webkit-border-top-left-radius: 3px; 4440 -webkit-border-top-right-radius: 3px; } 4441 h2 .nav-tab { 4442 padding: 4px 10px 6px; 4443 font-weight: 200; 4444 font-size: 20px; 4445 line-height: 24px; } 5486 4446 5487 4447 .nav-tab-active { 5488 border-width: 1px; 5489 color: #464646; 5490 } 4448 border-width: 1px; 4449 color: #464646; } 5491 4450 5492 4451 h2.nav-tab-wrapper, h3.nav-tab-wrapper { 5493 border-bottom-width: 1px; 5494 border-bottom-style: solid; 5495 padding-bottom: 0; 5496 } 5497 5498 h2 .nav-tab { 5499 padding: 4px 10px 6px; 5500 font-weight: 200; 5501 font-size: 20px; 5502 line-height: 24px; 5503 5504 } 5505 4452 border-bottom-width: 1px; 4453 border-bottom-style: solid; 4454 padding-bottom: 0; } 5506 4455 5507 4456 /*------------------------------------------------------------------------------ 5508 4457 17.0 - Plugins 5509 4458 ------------------------------------------------------------------------------*/ 5510 5511 4459 #dashboard_right_now .versions .b, 5512 4460 #post-status-display, 5513 4461 #post-visibility-display, … … h2 .nav-tab { 5521 4469 #ed_reply_toolbar #ed_reply_strong, 5522 4470 .item-controls .item-order a, 5523 4471 .feature-filter .feature-name { 5524 font-weight: bold; 5525 } 4472 font-weight: bold; } 5526 4473 5527 4474 .plugins p { 5528 margin: 0 4px; 5529 padding: 0; 5530 } 5531 5532 .plugins .desc p { 5533 margin: 0 0 8px; 5534 } 5535 4475 margin: 0 4px; 4476 padding: 0; } 4477 .desc .plugins p { 4478 margin: 0 0 8px; } 5536 4479 .plugins td.desc { 5537 line-height: 1.5em; 5538 } 5539 4480 line-height: 1.5em; } 5540 4481 .plugins .desc ul, 5541 4482 .plugins .desc ol { 5542 margin: 0 0 0 2em; 5543 } 5544 4483 margin: 0 0 0 2em; } 5545 4484 .plugins .desc ul { 5546 list-style-type: disc; 5547 } 5548 4485 list-style-type: disc; } 5549 4486 .plugins .row-actions-visible { 5550 padding: 0; 5551 } 5552 4487 padding: 0; } 5553 4488 .plugins tbody th.check-column { 5554 padding: 7px 0; 5555 } 5556 4489 padding: 7px 0; } 5557 4490 .plugins .inactive td, 5558 4491 .plugins .inactive th, 5559 4492 .plugins .active td, 5560 4493 .plugins .active th { 5561 border-top-style: solid; 5562 border-top-width: 1px; 5563 padding: 5px 7px 0; 5564 } 5565 4494 border-top-style: solid; 4495 border-top-width: 1px; 4496 padding: 5px 7px 0; } 5566 4497 .plugins .update th, 5567 4498 .plugins .update td { 5568 border-bottom: 0; 5569 } 5570 .plugin-update-tr td { 5571 border-top: 0; 5572 } 5573 5574 #wpbody-content .plugins .plugin-title, 5575 #wpbody-content .plugins .theme-title { 5576 padding-right: 12px; 5577 white-space:nowrap; 5578 } 5579 4499 border-bottom: 0; } 4500 #wpbody-content .plugins .plugin-title, #wpbody-content .plugins .theme-title { 4501 padding-right: 12px; 4502 white-space: nowrap; } 5580 4503 .plugins .second, 5581 4504 .plugins .row-actions-visible { 5582 padding: 0 0 5px; 5583 } 5584 4505 padding: 0 0 5px; } 5585 4506 .plugins .update .second, 5586 4507 .plugins .update .row-actions-visible { 5587 padding-bottom: 0; 5588 } 4508 padding-bottom: 0; } 4509 4510 .plugin-update-tr td { 4511 border-top: 0; } 5589 4512 5590 4513 .plugins-php .widefat tfoot th, 5591 4514 .plugins-php .widefat tfoot td { 5592 border-top-style: solid; 5593 border-top-width: 1px; 5594 } 4515 border-top-style: solid; 4516 border-top-width: 1px; } 5595 4517 5596 4518 .plugin-update-tr .update-message { 5597 margin: 5px; 5598 padding: 3px 5px; 5599 } 4519 margin: 5px; 4520 padding: 3px 5px; } 5600 4521 5601 4522 .plugin-install-php h4 { 5602 margin: 2.5em 0 8px; 5603 } 5604 4523 margin: 2.5em 0 8px; } 5605 4524 5606 4525 /*------------------------------------------------------------------------------ 5607 4526 18.0 - Users 5608 4527 ------------------------------------------------------------------------------*/ 5609 5610 4528 #profile-page .form-table textarea { 5611 width: 500px; 5612 margin-bottom: 6px; 5613 } 5614 4529 width: 500px; 4530 margin-bottom: 6px; } 5615 4531 #profile-page .form-table #rich_editing { 5616 margin-right: 5px 5617 } 4532 margin-right: 5px; } 5618 4533 5619 4534 #your-profile legend { 5620 font-size: 22px; 5621 } 5622 4535 font-size: 22px; } 5623 4536 #your-profile #rich_editing { 5624 border: none; 5625 } 4537 border: none; } 5626 4538 5627 4539 #display_name { 5628 width: 15em; 5629 } 4540 width: 15em; } 5630 4541 5631 4542 #createuser .form-field input { 5632 width: 25em; 5633 } 5634 5635 /*------------------------------------------------------------------------------ 5636 19.0 - Tools 5637 ------------------------------------------------------------------------------*/ 5638 5639 .pressthis { 5640 margin: 20px 0; 5641 } 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; 5665 } 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 } 4543 width: 25em; } 5703 4544 5704 4545 /*------------------------------------------------------------------------------ 5705 4546 20.0 - Settings 5706 4547 ------------------------------------------------------------------------------*/ 5707 5708 4548 #utc-time, #local-time { 5709 padding-left: 25px; 5710 font-style: italic; 5711 font-family: sans-serif; 5712 } 4549 padding-left: 25px; 4550 font-style: italic; 4551 font-family: sans-serif; } 5713 4552 5714 4553 .defaultavatarpicker .avatar { 5715 margin: 2px 0; 5716 vertical-align: middle; 5717 } 4554 margin: 2px 0; 4555 vertical-align: middle; } 5718 4556 5719 4557 .options-general-php .spinner { 5720 float: none; 5721 margin: -3px 3px; 5722 } 4558 float: none; 4559 margin: -3px 3px; } 5723 4560 5724 4561 /*------------------------------------------------------------------------------ 5725 4562 21.0 - Admin Footer 5726 4563 ------------------------------------------------------------------------------*/ 5727 5728 4564 #wpfooter { 5729 position: absolute; 5730 bottom: 0; 5731 left: 0; 5732 right: 0; 5733 padding: 10px 0; 5734 margin-right: 20px; 5735 border-top-width: 1px; 5736 border-top-style: solid; 5737 } 5738 5739 #wpfooter p { 5740 margin: 0; 5741 line-height: 20px; 5742 } 5743 5744 #wpfooter a { 5745 text-decoration: none; 5746 } 5747 5748 #wpfooter a:hover { 5749 text-decoration: underline; 5750 } 4565 position: absolute; 4566 bottom: 0; 4567 left: 0; 4568 right: 0; 4569 padding: 10px 0; 4570 margin-right: 20px; 4571 border-top-width: 1px; 4572 border-top-style: solid; } 4573 #wpfooter p { 4574 margin: 0; 4575 line-height: 20px; } 4576 #wpfooter a { 4577 text-decoration: none; } 4578 #wpfooter a:hover { 4579 text-decoration: underline; } 5751 4580 5752 4581 /*------------------------------------------------------------------------------ 5753 4582 22.0 - About Pages 5754 4583 ------------------------------------------------------------------------------*/ 4584 /* WordPress Version Badge */ 4585 .wp-badge { 4586 padding-top: 142px; 4587 height: 50px; 4588 width: 173px; 4589 font-size: 14px; 4590 font-weight: bold; 4591 line-height: normal; 4592 text-align: center; 4593 margin: 0 -5px; 4594 background: url("../images/wp-badge.png?ver=20111120") no-repeat; } 5755 4595 5756 4596 .about-wrap { 5757 position: relative; 5758 margin: 25px 40px 0 20px; 5759 max-width: 1050px; /* readability */ 4597 position: relative; 4598 margin: 25px 40px 0 20px; 4599 max-width: 1050px; 4600 /* readability */ 4601 font-size: 15px; 4602 /* Typography */ 4603 /* Point Releases */ 4604 /* Tabs */ 4605 /* Changelog / Update screen */ 4606 /* Return to Dashboard Home link */ 4607 /* Credits */ 4608 /* Freedoms */ } 4609 .about-wrap div.updated, 4610 .about-wrap div.error { 4611 display: none !important; } 4612 .about-wrap p { 4613 line-height: 1.6em; } 4614 .about-wrap h1 { 4615 margin: 0.2em 200px 0 0; 4616 line-height: 1.2em; 4617 font-size: 2.8em; 4618 font-weight: 200; } 4619 .about-wrap h3 { 4620 font-size: 24px; 4621 margin-bottom: 1em; 4622 padding-top: 20px; } 4623 .about-wrap code { 4624 font-size: 14px; } 4625 .about-wrap li.wp-person a.web { 4626 font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif; 4627 font-size: 20px; 4628 font-weight: normal; 4629 line-height: 1.6em; } 4630 .about-wrap .point-releases { 4631 margin-top: 5px; } 4632 .about-wrap .changelog.point-releases h3 { 4633 padding-top: 35px; } 4634 .about-wrap .changelog.point-releases h3:first-child { 4635 padding-top: 7px; } 4636 .about-wrap .wp-badge { 4637 position: absolute; 4638 top: 0; 4639 right: 0; } 4640 .about-wrap h2.nav-tab-wrapper { 4641 padding-left: 6px; } 4642 .about-wrap h2 .nav-tab { 4643 padding: 4px 10px 6px; 4644 margin: 0 3px -1px 0; 4645 font-size: 18px; 4646 vertical-align: top; } 4647 .about-wrap h2 .nav-tab-active { 4648 font-weight: bold; 4649 padding-top: 3px; } 4650 .about-wrap .feature-section { 4651 padding-bottom: 20px; } 4652 .about-wrap .feature-section h4 { 4653 margin-bottom: 0.6em; } 4654 .about-wrap .feature-section p { 4655 margin-top: 0.6em; } 4656 .about-wrap .feature-section img, 4657 .about-wrap .feature-section .video { 4658 border: none; 4659 margin: 0 1.94% 10px 0; 4660 border-radius: 3px; 4661 -moz-border-radius: 3px; 4662 -webkit-border-radius: 3px; } 4663 .about-wrap .feature-section .video video { 4664 max-width: 100%; } 4665 .about-wrap .feature-section.three-col img { 4666 margin: 0.5em 0 0.5em 5px; 4667 max-width: 100%; 4668 float: none; } 4669 .about-wrap .feature-section.images-stagger-right img, .about-wrap .feature-section.images-stagger-right .video { 4670 float: right; 4671 margin: 0 5px 12px 2em; } 4672 .about-wrap .feature-section.images-stagger-left img { 4673 float: left; 4674 margin: 0 2em 12px 5px; } 4675 .about-wrap .feature-section .image-100 { 4676 margin: 0 0 2em 0; 4677 width: 100%; } 4678 .about-wrap .feature-section .image-66 { 4679 width: 65%; } 4680 .about-wrap .feature-section .image-66.video { 4681 max-width: 600px; } 4682 .about-wrap .feature-section .image-50 { 4683 max-width: 50%; } 4684 .about-wrap .feature-section img.image-30 { 4685 max-width: 31.2381%; } 4686 .about-wrap .feature-section.col { 4687 margin-bottom: 0; } 4688 .about-wrap .feature-section.col h4 { 4689 margin: 0 0 0.6em 0; } 4690 .about-wrap .feature-section.col .last-feature { 4691 margin-right: 0; } 4692 .about-wrap .feature-section.two-col div, .about-wrap .feature-section.three-col div { 4693 margin-right: 4.999999999%; 4694 float: left; } 4695 .about-wrap .feature-section.two-col div { 4696 width: 47%; } 4697 .about-wrap .feature-section.three-col div { 4698 width: 30%; } 4699 .ie8 .about-wrap .feature-section.three-col img { 4700 margin-left: 0; } 4701 .ie8 .about-wrap .feature-section img { 4702 border-width: 1px; 4703 border-style: solid; } 4704 .about-wrap .images-stagger-right img.image-30:nth-child(2) { 4705 margin-left: 1em; } 4706 .about-wrap .three-col-images { 4707 text-align: center; } 4708 .about-wrap .three-col-images img { 4709 margin: 0 0 10px; } 4710 .about-wrap .three-col-images .last-feature { 4711 float: right; } 4712 .about-wrap .three-col-images .first-feature { 4713 float: left; } 4714 .about-wrap .changelog .feature-section { 4715 overflow: hidden; } 4716 .about-wrap .changelog li { 4717 list-style-type: disc; 4718 margin-left: 3em; } 4719 .about-wrap .return-to-dashboard { 4720 margin: 30px 0 0 -5px; 4721 font-size: 14px; 4722 font-weight: bold; 4723 line-height: normal; } 4724 .about-wrap .return-to-dashboard a { 4725 text-decoration: none; 4726 padding: 0 5px; } 4727 .about-wrap h4.wp-people-group { 4728 margin-top: 2.6em; 4729 font-size: 16px; } 4730 .about-wrap ul.wp-people-group { 4731 overflow: hidden; 4732 padding: 0 5px; 4733 margin: 0 -15px 0 -5px; } 4734 .about-wrap li.wp-person { 4735 float: left; 4736 margin-right: 10px; } 4737 .about-wrap li.wp-person img.gravatar { 4738 float: left; 4739 margin: 0 10px 10px 0; 4740 padding: 2px; 4741 width: 60px; 4742 height: 60px; } 4743 .about-wrap ul.compact { 4744 margin-bottom: 0; } 4745 .about-wrap ul.compact li.wp-person img.gravatar { 4746 width: 30px; 4747 height: 30px; } 4748 .about-wrap li.wp-person { 4749 height: 70px; 4750 width: 280px; 4751 padding-bottom: 15px; } 4752 ul.compact .about-wrap li.wp-person { 4753 height: auto; 4754 width: 180px; 4755 padding-bottom: 0; 4756 margin-bottom: 0; } 4757 .about-wrap li.wp-person a.web { 4758 display: block; 4759 margin: 6px 0 2px; 4760 font-size: 16px; 4761 text-decoration: none; } 4762 .about-wrap #wp-people-group-validators + p.wp-credits-list { 4763 margin-top: 0; } 4764 .about-wrap p.wp-credits-list a { 4765 white-space: nowrap; } 4766 .freedoms-php .about-wrap ol { 4767 margin: 40px 60px; } 4768 .freedoms-php .about-wrap ol li { 4769 list-style-type: decimal; 4770 font-weight: bold; } 4771 .freedoms-php .about-wrap ol p { 4772 font-weight: normal; 4773 margin: 0.6em 0; } 5760 4774 5761 font-size: 15px; 5762 } 4775 .about-description { 4776 font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif; 4777 font-size: 20px; 4778 font-weight: normal; 4779 line-height: 1.6em; 4780 margin-top: 1.4em; } 5763 4781 5764 .about-wrap div.updated, 5765 .about-wrap div.error { 5766 display: none !important; 5767 } 4782 .about-text { 4783 font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif; 4784 font-size: 24px; 4785 font-weight: normal; 4786 line-height: 1.6em; 4787 margin: 1em 200px 1.4em 0; 4788 min-height: 60px; } 5768 4789 5769 /* Typography */ 4790 @media only screen and (max-width: 900px) { 4791 .about-wrap .feature-section .images-stagger-left img, 4792 .about-wrap .feature-section .images-stagger-right img, 4793 .about-wrap .feature-section .images-stagger-right .video { 4794 clear: both; } 4795 .about-wrap .feature-section .video.image-66 { 4796 float: none; 4797 width: 98%; 4798 max-width: 98%; } 4799 .about-wrap .feature-section.images-stagger-right .video.image-66 { 4800 margin-left: 3px; } } 4801 @media only screen and (max-width: 768px) { 4802 .about-wrap .feature-section .image-66 { 4803 float: none; 4804 width: 98%; 4805 max-width: 98%; } 4806 .about-wrap .feature-section.images-stagger-right .image-66 { 4807 margin-left: 3px; } 4808 .about-wrap .feature-section.images-stagger-left .image-66 { 4809 margin-right: 3px; } } 4810 /*------------------------------------------------------------------------------ 4811 23.0 - Full Overlay w/ Sidebar 4812 ------------------------------------------------------------------------------*/ 4813 body.full-overlay-active { 4814 overflow: hidden; } 5770 4815 5771 .about-wrap p { 5772 line-height: 1.6em; 5773 } 4816 .wp-full-overlay { 4817 background: #fff; 4818 z-index: 500000; 4819 position: fixed; 4820 overflow: visible; 4821 top: 0; 4822 bottom: 0; 4823 left: 0; 4824 right: 0; 4825 height: 100%; 4826 min-width: 0; 4827 /* Close Link */ 4828 /* Collapse Button */ } 4829 .wp-full-overlay.expanded { 4830 margin-left: 300px; } 4831 .wp-full-overlay .close-full-overlay { 4832 text-decoration: none; } 4833 .wp-full-overlay a.collapse-sidebar { 4834 position: absolute; 4835 bottom: 12px; 4836 left: 0; 4837 z-index: 50; 4838 display: block; 4839 width: 19px; 4840 height: 19px; 4841 margin-left: 15px; 4842 padding: 0; 4843 border-radius: 50%; 4844 -moz-border-radius: 50%; 4845 -webkit-border-radius: 50%; 4846 text-decoration: none; } 4847 .wp-full-overlay .collapse-sidebar-arrow { 4848 position: absolute; 4849 margin-top: 2px; 4850 margin-left: 2px; 4851 display: block; 4852 width: 15px; 4853 height: 15px; 4854 background: transparent url("../images/arrows.png") no-repeat -1px -73px; } 4855 .wp-full-overlay .collapse-sidebar-label { 4856 position: absolute; 4857 left: 100%; 4858 color: #808080; 4859 line-height: 20px; 4860 margin-left: 10px; } 4861 .wp-full-overlay.collapsed .collapse-sidebar { 4862 position: absolute; 4863 left: 100%; } 4864 .wp-full-overlay.collapsed .collapse-sidebar-arrow { 4865 background-position: -1px -109px; } 4866 .wp-full-overlay.collapsed .collapse-sidebar-label { 4867 display: none; } 4868 .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label { 4869 color: #666; } 5774 4870 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 } 4871 .wp-full-overlay-sidebar { 4872 -moz-box-sizing: border-box; 4873 -webkit-box-sizing: border-box; 4874 -ms-box-sizing: border-box; 4875 box-sizing: border-box; 4876 position: fixed; 4877 width: 300px; 4878 height: 100%; 4879 top: 0; 4880 bottom: 0; 4881 left: 0; 4882 padding: 0; 4883 margin: 0; 4884 z-index: 10; 4885 overflow: auto; 4886 background: #f5f5f5; 4887 border-right: 1px solid rgba(0, 0, 0, 0.2); } 4888 .wp-full-overlay.collapsed .wp-full-overlay-sidebar { 4889 overflow: visible; 4890 margin-left: -300px; } 4891 .wp-full-overlay-sidebar:after { 4892 content: ''; 4893 display: block; 4894 position: absolute; 4895 top: 0; 4896 bottom: 0; 4897 right: 0; 4898 width: 3px; 4899 box-shadow: -5px 0 4px -4px rgba(0, 0, 0, 0.1) inset; 4900 z-index: 1000; } 4901 .wp-full-overlay-sidebar .wp-full-overlay-header { 4902 position: absolute; 4903 left: 0; 4904 right: 0; 4905 height: 45px; 4906 padding: 0 20px; 4907 line-height: 45px; 4908 z-index: 10; 4909 margin: 0; 4910 border-top: 0; 4911 border-bottom: 1px solid #fff; 4912 box-shadow: inset 0 -1px 0 0px #dfdfdf; } 4913 .wp-full-overlay-sidebar .wp-full-overlay-footer { 4914 bottom: 0; 4915 border-bottom: 0; 4916 border-top: 1px solid #dfdfdf; 4917 box-shadow: inset 0 1px 0 0px #fff; } 4918 .wp-full-overlay-sidebar .wp-full-overlay-sidebar-content { 4919 position: absolute; 4920 top: 45px; 4921 bottom: 45px; 4922 left: 0; 4923 right: 0; 4924 overflow: auto; } 4925 .wp-full-overlay-sidebar .wp-full-overlay-sidebar-content .accordion-section:first-child { 4926 border-top: 1px solid #fff; } 5781 4927 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 } 4928 .wp-full-overlay.collapsed, 4929 .wp-full-overlay.expanded .wp-full-overlay-sidebar { 4930 margin-left: 0 !important; } 5790 4931 5791 .about-description { 5792 margin-top: 1.4em; 5793 } 4932 .wp-full-overlay-main { 4933 position: absolute; 4934 left: 0; 4935 right: 0; 4936 top: 0; 4937 bottom: 0; 4938 height: 100%; } 5794 4939 5795 .about-text { 5796 margin: 1em 200px 1.4em 0; 5797 min-height: 60px; 5798 font-size: 24px; 5799 } 4940 /* Animations */ 4941 .wp-full-overlay, 4942 .wp-full-overlay-sidebar, 4943 .wp-full-overlay .collapse-sidebar, 4944 .wp-full-overlay-main { 4945 -webkit-transition-property: left, right, top, bottom, width, margin; 4946 -moz-transition-property: left, right, top, bottom, width, margin; 4947 -ms-transition-property: left, right, top, bottom, width, margin; 4948 -o-transition-property: left, right, top, bottom, width, margin; 4949 transition-property: left, right, top, bottom, width, margin; 4950 -webkit-transition-duration: 0.2s; 4951 -moz-transition-duration: 0.2s; 4952 -ms-transition-duration: 0.2s; 4953 -o-transition-duration: 0.2s; 4954 transition-duration: 0.2s; } 5800 4955 5801 .about-wrap h3 { 5802 font-size: 24px; 5803 margin-bottom: 1em; 5804 padding-top: 20px; 5805 }4956 /*------------------------------------------------------------------------------ 4957 24.0 - Customize Loader 4958 ------------------------------------------------------------------------------*/ 4959 .customize-support .hide-if-customize, .customize-support.wp-core-ui .hide-if-customize, .customize-support .wp-core-ui .hide-if-customize { 4960 display: none; } 5806 4961 5807 .about-wrap .feature-section { 5808 padding-bottom: 20px; 5809 } 4962 .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 { 4963 display: none; } 5810 4964 5811 .about-wrap .feature-section h4 { 5812 margin-bottom: 0.6em; 5813 } 4965 #customize-container { 4966 display: none; 4967 background: #fff; 4968 z-index: 500000; 4969 position: fixed; 4970 overflow: visible; 4971 top: 0; 4972 bottom: 0; 4973 left: 0; 4974 right: 0; 4975 height: 100%; } 4976 .customize-active #customize-container { 4977 display: block; } 4978 .customize-loading #customize-container { 4979 background: white url("../images/wpspin_light.gif") no-repeat fixed center center; 4980 background-size: 16px 16px; } 4981 .customize-loading #customize-container iframe { 4982 opacity: 0; } 4983 #customize-container .collapse-sidebar { 4984 bottom: 16px; } 5814 4985 5815 .about-wrap .feature-section p { 5816 margin-top: 0.6em; 5817 } 4986 #customize-container iframe, 4987 #theme-installer iframe { 4988 height: 100%; 4989 width: 100%; 4990 z-index: 20; 4991 -webkit-transition: opacity 0.3s; 4992 -moz-transition: opacity 0.3s; 4993 -ms-transition: opacity 0.3s; 4994 -o-transition: opacity 0.3s; 4995 transition: opacity 0.3s; } 5818 4996 5819 .about-wrap code { 5820 font-size: 14px; 5821 } 4997 #theme-installer { 4998 display: none; } 4999 #theme-installer.single-theme { 5000 display: block; } 5822 5001 5823 /* Point Releases */ 5002 .install-theme-info { 5003 display: none; 5004 padding: 10px 20px 20px; } 5005 .single-theme .install-theme-info { 5006 padding-top: 15px; } 5007 #theme-installer .install-theme-info { 5008 display: block; } 5009 .install-theme-info .theme-install { 5010 float: right; 5011 margin-top: 18px; } 5012 .install-theme-info .theme-name { 5013 font-size: 16px; 5014 line-height: 24px; 5015 margin-bottom: 0; } 5016 .install-theme-info .theme-screenshot { 5017 margin-top: 15px; 5018 width: 258px; 5019 border: 1px solid #ccc; } 5020 .install-theme-info .theme-details { 5021 overflow: hidden; } 5824 5022 5825 .about-wrap .point-releases { 5826 margin-top: 5px; 5827 } 5023 .theme-details .theme-version { 5024 margin: 15px 0; 5025 float: left; } 5026 .theme-details .star-holder { 5027 margin: 14px 0; 5028 float: right; } 5029 .theme-details .theme-description { 5030 float: left; 5031 color: #777; 5032 line-height: 20px; } 5828 5033 5829 .about-wrap .changelog.point-releases h3 { 5830 padding-top: 35px; 5831 } 5034 /*------------------------------------------------------------------------------ 5035 25.0 - Misc 5036 ------------------------------------------------------------------------------*/ 5037 #excerpt, 5038 .attachmentlinks { 5039 margin: 0; 5040 height: 4em; 5041 width: 98%; } 5832 5042 5833 .about-wrap .changelog.point-releases h3:first-child { 5834 padding-top: 7px; 5835 } 5043 #template div { 5044 margin-right: 190px; } 5836 5045 5837 /* WordPress Version Badge */ 5046 p.pagenav { 5047 margin: 0; 5048 display: inline; } 5838 5049 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; 5848 } 5050 .pagenav span { 5051 font-weight: bold; 5052 margin: 0 6px; } 5849 5053 5850 .about-wrap .wp-badge { 5851 position: absolute; 5852 top: 0; 5853 right: 0; 5854 } 5054 .row-title { 5055 font-size: 13px !important; 5056 font-weight: bold; } 5855 5057 5856 /* Tabs */ 5058 .column-author img, .column-username img { 5059 float: left; 5060 margin-right: 10px; 5061 margin-top: 1px; } 5857 5062 5858 . about-wrap h2.nav-tab-wrapper{5859 padding-left: 6px;5860 }5063 .row-actions { 5064 visibility: hidden; 5065 padding: 2px 0 0; } 5861 5066 5862 .about-wrap h2 .nav-tab { 5863 padding: 4px 10px 6px; 5864 margin: 0 3px -1px 0; 5865 font-size: 18px; 5866 vertical-align: top; 5867 } 5067 .mobile .row-actions { 5068 visibility: visible; } 5868 5069 5869 .about-wrap h2 .nav-tab-active { 5870 font-weight: bold; 5871 padding-top: 3px; 5872 } 5070 tr:hover .row-actions, 5071 div.comment-item:hover .row-actions { 5072 visibility: visible; } 5873 5073 5874 /* Changelog / Update screen */ 5074 .row-actions-visible { 5075 padding: 2px 0 0; } 5875 5076 5876 .about-wrap .feature-section img, 5877 .about-wrap .feature-section .video { 5878 border: none; 5879 margin: 0 1.94% 10px 0; 5880 -webkit-border-radius: 3px; 5881 border-radius: 3px; 5882 } 5077 .form-table .pre { 5078 padding: 8px; 5079 margin: 0; } 5883 5080 5884 .about-wrap .feature-section .video video { 5885 max-width: 100%; 5886 } 5081 table.form-table td .updated { 5082 font-size: 13px; } 5887 5083 5888 .about-wrap .feature-section.three-col img { 5889 margin: 0.5em 0 0.5em 5px; 5890 max-width: 100%; 5891 float: none; 5892 } 5084 .tagchecklist { 5085 margin-left: 14px; 5086 font-size: 12px; 5087 overflow: auto; } 5088 .tagchecklist strong { 5089 margin-left: -8px; 5090 position: absolute; } 5091 .tagchecklist span { 5092 margin-right: 25px; 5093 display: block; 5094 float: left; 5095 font-size: 11px; 5096 line-height: 1.8em; 5097 white-space: nowrap; 5098 cursor: default; } 5099 .tagchecklist span a { 5100 margin: 6px 0pt 0pt -9px; 5101 cursor: pointer; 5102 width: 10px; 5103 height: 10px; 5104 display: block; 5105 float: left; 5106 text-indent: -9999px; 5107 overflow: hidden; 5108 position: absolute; } 5893 5109 5894 .ie8 .about-wrap .feature-section.three-col img { 5895 margin-left: 0; 5896 } 5110 #poststuff h2 { 5111 margin-top: 20px; 5112 font-size: 1.5em; 5113 margin-bottom: 15px; 5114 padding: 0 0 3px; 5115 clear: left; } 5897 5116 5898 .about-wrap .feature-section.images-stagger-right img, 5899 .about-wrap .feature-section.images-stagger-right .video { 5900 float: right; 5901 margin: 0 5px 12px 2em; 5902 } 5117 #poststuff h3, 5118 .metabox-holder h3 { 5119 font-size: 12px; 5120 font-weight: normal; 5121 line-height: 1; 5122 padding: 7px 10px; 5123 margin: 0; } 5903 5124 5904 .about-wrap .feature-section.images-stagger-left img { 5905 float: left; 5906 margin: 0 2em 12px 5px; 5907 } 5125 #poststuff .inside { 5126 margin: 6px 0 8px; } 5908 5127 5909 .about-wrap .feature-section .image-100 { 5910 margin: 0 0 2em 0; 5911 width: 100%; 5912 } 5128 #poststuff .inside #parent_id, 5129 #poststuff .inside #page_template { 5130 max-width: 100%; } 5913 5131 5914 . about-wrap .feature-section .image-66 {5915 width: 65%; 5916 }5132 .inline-edit-row #post_parent, 5133 .inline-edit-row select[name="page_template"] { 5134 max-width: 80%; } 5917 5135 5918 .about-wrap .feature-section .image-66.video { 5919 max-width: 600px; 5920 } 5136 .ie8 #poststuff .inside #parent_id, 5137 .ie8 #poststuff .inside #page_template, 5138 .ie8 .inline-edit-row #post_parent, 5139 .ie8 .inline-edit-row select[name="page_template"] { 5140 width: 250px; } 5921 5141 5922 .about-wrap .feature-section .image-50{5923 max-width: 50%;5924 }5142 #post-visibility-select { 5143 line-height: 1.5em; 5144 margin-top: 3px; } 5925 5145 5926 .about-wrap .feature-section img.image-30{5927 max-width: 31.2381%;5928 }5146 #poststuff #submitdiv .inside { 5147 margin: 0; 5148 padding: 0; } 5929 5149 5930 .ie8 .about-wrap .feature-section img { 5931 border-width: 1px; 5932 border-style: solid; 5933 } 5150 .edit-form-section { 5151 margin-bottom: 20px; } 5934 5152 5935 .about-wrap .images-stagger-right img.image-30:nth-child(2) { 5936 margin-left: 1em; 5937 } 5153 #templateside ul li a { 5154 text-decoration: none; } 5938 5155 5939 .about-wrap .feature-section.col { 5940 margin-bottom: 0; 5941 } 5156 .tool-box .title { 5157 margin: 8px 0; 5158 font-size: 18px; 5159 font-weight: normal; 5160 line-height: 24px; } 5942 5161 5943 .about-wrap .feature-section.col h4 { 5944 margin: 0 0 0.6em 0; 5945 } 5162 #sidemenu { 5163 margin: -30px 15px 0 315px; 5164 list-style: none; 5165 position: relative; 5166 float: right; 5167 padding-left: 10px; 5168 font-size: 12px; } 5169 #sidemenu a { 5170 padding: 0 7px; 5171 display: block; 5172 float: left; 5173 line-height: 28px; 5174 border-top-width: 1px; 5175 border-top-style: solid; 5176 border-bottom-width: 1px; 5177 border-bottom-style: solid; } 5178 #sidemenu a.current { 5179 font-weight: normal; 5180 padding-left: 6px; 5181 padding-right: 6px; 5182 border-top-left-radius: 3px; 5183 border-top-right-radius: 3px; 5184 -moz-border-top-left-radius: 3px; 5185 -moz-border-top-right-radius: 3px; 5186 -webkit-border-top-left-radius: 3px; 5187 -webkit-border-top-right-radius: 3px; 5188 border-width: 1px; 5189 border-style: solid; } 5190 #sidemenu li { 5191 display: inline; 5192 line-height: 200%; 5193 list-style: none; 5194 text-align: center; 5195 white-space: nowrap; 5196 margin: 0; 5197 padding: 0; } 5198 #sidemenu li a .count-0 { 5199 display: none; } 5946 5200 5947 . about-wrap .feature-section.col .last-feature {5948 margin-right: 0; 5949 }5201 .plugin-install #description, 5202 .plugin-install-network #description { 5203 width: 60%; } 5950 5204 5951 .about-wrap .feature-section.two-col div { 5952 width: 47%; 5953 margin-right: 4.999999999%; 5954 float: left; 5955 } 5205 table .vers, 5206 table .column-visible, 5207 table .column-rating { 5208 text-align: left; } 5956 5209 5957 .about-wrap .feature-section.three-col div { 5958 width: 30%; 5959 margin-right: 4.999999999%; 5960 float: left; 5961 } 5210 .error-message { 5211 color: red; 5212 font-weight: bold; } 5962 5213 5963 .about-wrap .three-col-images { 5964 text-align: center; 5965 }5214 /* Scrollbar fix for bulk upgrade iframe */ 5215 body.iframe { 5216 height: 98%; } 5966 5217 5967 .about-wrap .three-col-images img { 5968 margin: 0 0 10px; 5969 } 5218 /* - Only used once or twice in all of WP - deprecate for global style 5219 ------------------------------------------------------------------------------*/ 5220 td.media-icon { 5221 text-align: center; 5222 width: 80px; 5223 padding-top: 8px; 5224 padding-bottom: 8px; } 5225 td.media-icon img { 5226 max-width: 80px; 5227 max-height: 60px; } 5970 5228 5971 .about-wrap .three-col-images .last-feature { 5972 float: right; 5973 } 5229 #howto { 5230 font-size: 11px; 5231 margin: 0 5px; 5232 display: block; } 5974 5233 5975 .about-wrap .three-col-images .first-feature { 5976 float: left; 5977 } 5234 .importers { 5235 font-size: 16px; 5236 width: auto; } 5237 .importers td { 5238 padding-right: 14px; } 5978 5239 5979 .about-wrap .changelog .feature-section { 5980 overflow: hidden; 5981 } 5240 #namediv table { 5241 width: 100%; } 5242 #namediv td.first { 5243 width: 10px; 5244 white-space: nowrap; } 5245 #namediv input { 5246 width: 98%; } 5247 #namediv p { 5248 margin: 10px 0; } 5982 5249 5983 .about-wrap .changelog li { 5984 list-style-type: disc; 5985 margin-left: 3em; 5986 } 5250 #submitdiv h3 { 5251 margin-bottom: 0 !important; } 5987 5252 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 } 5253 /* - Used - but could/should be deprecated with a CSS reset 5254 ------------------------------------------------------------------------------*/ 5255 .zerosize { 5256 height: 0; 5257 width: 0; 5258 margin: 0; 5259 border: 0; 5260 padding: 0; 5261 overflow: hidden; 5262 position: absolute; } 6005 5263 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 } 6020 } 5264 br.clear { 5265 height: 2px; 5266 line-height: 2px; } 6021 5267 6022 /* Return to Dashboard Home link */ 5268 .checkbox { 5269 border: none; 5270 margin: 0; 5271 padding: 0; } 6023 5272 6024 .about-wrap .return-to-dashboard { 6025 margin: 30px 0 0 -5px; 6026 font-size: 14px; 6027 font-weight: bold; 6028 } 5273 fieldset { 5274 border: 0; 5275 padding: 0; 5276 margin: 0; } 6029 5277 6030 . about-wrap .return-to-dashboard a{6031 text-decoration: none;6032 padding: 0 5px;6033 }5278 .post-categories { 5279 display: inline; 5280 margin: 0; 5281 padding: 0; } 6034 5282 6035 /* Credits */ 5283 .post-categories li { 5284 display: inline; } 6036 5285 6037 .about-wrap h4.wp-people-group { 6038 margin-top: 2.6em; 6039 font-size: 16px; 6040 } 5286 /*----------------------------------------------------------------------------- 5287 MERGED 5288 -------------------------------------------------------------------------------*/ 5289 /* ms */ 5290 /* Dashboard: MS Specific Data */ 5291 #dashboard_right_now p.musub { 5292 margin-top: 12px; 5293 border-top: 1px solid #ececec; 5294 padding-left: 16px; 5295 position: static; } 5296 .rtl #dashboard_right_now p.musub { 5297 padding-left: 0; 5298 padding-right: 16px; } 5299 #dashboard_right_now td.b a.musublink { 5300 font-size: 16px; } 5301 #dashboard_right_now div.musubtable { 5302 border-top: none; } 5303 #dashboard_right_now div.musubtable .t { 5304 white-space: normal; } 6041 5305 6042 .about-wrap ul.wp-people-group { 6043 overflow: hidden; 6044 padding: 0 5px; 6045 margin: 0 -15px 0 -5px; 6046 } 5306 /* Background Color for Site Status */ 5307 .wp-list-table .site-deleted { 5308 background: #ff8573; } 6047 5309 6048 .about-wrap ul.compact { 6049 margin-bottom: 0 6050 } 5310 .wp-list-table .site-spammed { 5311 background: #faafaa; } 6051 5312 6052 .about-wrap li.wp-person { 6053 float: left; 6054 margin-right: 10px; 6055 } 5313 .wp-list-table .site-archived { 5314 background: #ffebe8; } 6056 5315 6057 .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; 6063 } 5316 .wp-list-table .site-mature { 5317 background: #fecac2; } 6064 5318 6065 .about-wrap ul.compact li.wp-person img.gravatar { 6066 width: 30px; 6067 height: 30px; 6068 } 5319 /* Star ratings */ 5320 div.star-holder { 5321 position: relative; 5322 height: 17px; 5323 width: 100px; 5324 background: url("../images/stars.png?ver=20121108") repeat-x bottom left; } 5325 div.star-holder .star-rating { 5326 background: url("../images/stars.png?ver=20121108") repeat-x top left; 5327 height: 17px; 5328 float: left; } 6069 5329 6070 .about-wrap li.wp-person { 6071 height: 70px; 6072 width: 280px; 6073 padding-bottom: 15px; 6074 } 5330 div.action-links { 5331 font-weight: normal; 5332 margin: 6px 0 0; } 6075 5333 6076 .about-wrap ul.compact li.wp-person { 6077 height: auto; 6078 width: 180px; 6079 padding-bottom: 0; 6080 margin-bottom: 0; 6081 } 5334 /* Header on thickbox */ 5335 #plugin-information-header { 5336 margin: 0; 5337 padding: 0 5px; 5338 font-weight: bold; 5339 position: relative; 5340 border-bottom-width: 1px; 5341 border-bottom-style: solid; 5342 height: 2.5em; } 5343 5344 #plugin-information { 5345 /* Install sidemenu */ } 5346 #plugin-information ul#sidemenu { 5347 font-weight: normal; 5348 margin: 0 5px; 5349 position: absolute; 5350 left: 0; 5351 bottom: -1px; } 5352 #plugin-information p.action-button { 5353 width: 100%; 5354 padding-bottom: 0; 5355 margin-bottom: 0; 5356 margin-top: 10px; 5357 border-top-left-radius: 3px; 5358 border-bottom-left-radius: 3px; 5359 -moz-border-top-left-radius: 3px; 5360 -moz-border-bottom-left-radius: 3px; 5361 -webkit-border-top-left-radius: 3px; 5362 -webkit-border-bottom-left-radius: 3px; } 5363 #plugin-information .action-button a { 5364 text-align: center; 5365 font-weight: bold; 5366 text-decoration: none; 5367 display: block; 5368 line-height: 2em; } 5369 #plugin-information h2 { 5370 clear: none !important; 5371 margin-right: 200px; } 5372 #plugin-information .fyi { 5373 margin: 0 10px 50px; 5374 width: 210px; } 5375 #plugin-information .fyi h2 { 5376 font-size: 0.9em; 5377 margin-bottom: 0; 5378 margin-right: 0; } 5379 #plugin-information .fyi h2.mainheader { 5380 padding: 5px; 5381 -moz-border-top-left-radius: 3px; 5382 -webkit-border-top-left-radius: 3px; 5383 border-top-left-radius: 3px; } 5384 #plugin-information .fyi ul { 5385 padding: 10px 5px 10px 7px; 5386 margin: 0; 5387 list-style: none; 5388 -moz-border-bottom-left-radius: 3px; 5389 -webkit-border-bottom-left-radius: 3px; 5390 border-bottom-left-radius: 3px; } 5391 #plugin-information .fyi li { 5392 margin-right: 0; } 5393 #plugin-information #section-holder { 5394 padding: 10px; } 5395 #plugin-information .section ul, 5396 #plugin-information .section ol { 5397 margin-left: 16px; 5398 list-style-type: square; 5399 list-style-image: none; } 5400 #plugin-information #section-screenshots ol { 5401 list-style: none; 5402 margin: 0; } 5403 #plugin-information #section-screenshots li img { 5404 vertical-align: text-top; 5405 max-width: 100%; 5406 width: auto; 5407 height: auto; } 5408 #plugin-information #section-screenshots li p { 5409 font-style: italic; 5410 padding-left: 20px; 5411 padding-bottom: 2em; } 5412 #plugin-information #section-screenshots ol, 5413 #plugin-information .updated, 5414 #plugin-information pre { 5415 margin-right: 215px; } 5416 #plugin-information pre { 5417 padding: 7px; 5418 overflow: auto; } 6082 5419 6083 .about-wrap #wp-people-group-validators + p.wp-credits-list { 6084 margin-top: 0; 6085 } 5420 #poststuff #editor-toolbar { 5421 height: 30px; } 6086 5422 6087 .about-wrap li.wp-person a.web { 6088 display: block; 6089 margin: 6px 0 2px; 6090 font-size: 16px; 6091 text-decoration: none; 6092 } 5423 div.zerosize { 5424 border: 0 none; 5425 height: 0; 5426 margin: 0; 5427 overflow: hidden; 5428 padding: 0; 5429 width: 0; } 6093 5430 6094 . about-wrap p.wp-credits-list a{6095 white-space: nowrap;6096 }5431 .posting { 5432 margin-right: 212px; 5433 position: relative; } 6097 5434 6098 /* Freedoms */ 5435 h3.tb { 5436 text-shadow: 0 1px 0 #fff; 5437 font-size: 12px; 5438 font-weight: bold; 5439 line-height: normal; 5440 margin-left: 5px; } 6099 5441 6100 .freedoms-php .about-wrap ol { 6101 margin: 40px 60px; 6102 } 5442 #TB_window { 5443 border: 1px solid #333; } 6103 5444 6104 .freedoms-php .about-wrap ol li { 6105 list-style-type: decimal; 6106 font-weight: bold; 6107 } 5445 .js .postbox:hover .handlediv, 5446 .js .stuffbox:hover .handlediv { 5447 background: transparent url(../images/arrows.png) no-repeat 6px 7px; } 6108 5448 6109 .freedoms-php .about-wrap ol p { 6110 font-weight: normal; 6111 margin: 0.6em 0; 6112 } 5449 .press-this #submitdiv:hover .handlediv { 5450 background: none; } 6113 5451 6114 /*------------------------------------------------------------------------------ 6115 23.0 - Full Overlay w/ Sidebar 6116 ------------------------------------------------------------------------------*/ 5452 .tbtitle { 5453 font-size: 1.7em; 5454 outline: none; 5455 padding: 3px 4px; 5456 border-color: #dfdfdf; } 6117 5457 6118 body.full-overlay-active { 6119 overflow: hidden; 6120 } 5458 #extra-fields .button { 5459 margin-right: 5px; } 6121 5460 6122 .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 } 5461 /* Photo Styles */ 5462 #photo_saving { 5463 margin: 0 8px 8px; 5464 vertical-align: middle; } 6134 5465 6135 .wp-full-overlay-sidebar { 6136 -webkit-box-sizing: border-box; 6137 -moz-box-sizing: border-box; 6138 box-sizing: border-box; 6139 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 } 6157 6158 .wp-full-overlay.collapsed, 6159 .wp-full-overlay.expanded .wp-full-overlay-sidebar { 6160 margin-left: 0 !important; 6161 } 6162 6163 .wp-full-overlay.expanded { 6164 margin-left: 300px; 6165 } 6166 6167 .wp-full-overlay.collapsed .wp-full-overlay-sidebar { 6168 margin-left: -300px; 6169 } 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; 6181 } 6182 6183 .wp-full-overlay-main { 6184 position: absolute; 6185 left: 0; 6186 right: 0; 6187 top: 0; 6188 bottom: 0; 6189 height: 100%; 6190 } 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; 6201 } 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; 6207 } 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; 6214 } 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; 6223 } 6224 6225 .wp-full-overlay-sidebar-content .accordion-section:first-child { 6226 border-top: 1px solid #fff; 6227 } 6228 6229 /* Close Link */ 6230 .wp-full-overlay .close-full-overlay { 6231 text-decoration: none; 6232 } 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; 6247 } 6248 6249 .wp-full-overlay.collapsed .collapse-sidebar { 6250 position: absolute; 6251 left: 100%; 6252 } 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; 6262 } 6263 6264 .wp-full-overlay.collapsed .collapse-sidebar-arrow { 6265 background-position: -1px -109px; 6266 } 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; 6274 } 6275 6276 .wp-full-overlay.collapsed .collapse-sidebar-label { 6277 display: none; 6278 } 6279 6280 .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label { 6281 color: #666; 6282 } 6283 6284 /* Animations */ 6285 .wp-full-overlay, 6286 .wp-full-overlay-sidebar, 6287 .wp-full-overlay .collapse-sidebar, 6288 .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; 6300 } 6301 6302 6303 /*------------------------------------------------------------------------------ 6304 24.0 - Customize Loader 6305 ------------------------------------------------------------------------------*/ 6306 6307 .no-customize-support .hide-if-no-customize, 6308 .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 .customize-support.wp-core-ui .hide-if-customize, 6312 .customize-support .wp-core-ui .hide-if-customize { 6313 display: none; 6314 } 6315 6316 #customize-container { 6317 display: none; 6318 background: #fff; 6319 z-index: 500000; 6320 position: fixed; 6321 overflow: visible; 6322 top: 0; 6323 bottom: 0; 6324 left: 0; 6325 right: 0; 6326 height: 100%; 6327 } 6328 6329 .customize-active #customize-container { 6330 display: block; 6331 } 6332 6333 .customize-loading #customize-container iframe { 6334 opacity: 0; 6335 } 6336 6337 .customize-loading #customize-container { 6338 background: #fff url("../images/wpspin_light.gif") no-repeat fixed center center; 6339 background-size: 16px 16px; 6340 } 6341 6342 #customize-container iframe, 6343 #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; 6353 } 6354 6355 #customize-container .collapse-sidebar { 6356 bottom: 16px; 6357 } 6358 6359 #theme-installer { 6360 display: none; 6361 } 6362 6363 #theme-installer.single-theme { 6364 display: block; 6365 } 6366 6367 .install-theme-info { 6368 display: none; 6369 padding: 10px 20px 20px; 6370 } 6371 6372 .single-theme .install-theme-info { 6373 padding-top: 15px; 6374 } 6375 6376 #theme-installer .install-theme-info { 6377 display: block; 6378 } 6379 6380 .install-theme-info .theme-install { 6381 float: right; 6382 margin-top: 18px; 6383 } 6384 6385 .install-theme-info .theme-name { 6386 font-size: 16px; 6387 line-height: 24px; 6388 margin-bottom: 0; 6389 } 6390 6391 .install-theme-info .theme-screenshot { 6392 margin-top: 15px; 6393 width: 258px; 6394 border: 1px solid #ccc; 6395 } 6396 6397 .install-theme-info .theme-details { 6398 overflow: hidden; 6399 } 6400 6401 .theme-details .theme-version { 6402 margin: 15px 0; 6403 float: left; 6404 } 6405 6406 .theme-details .star-holder { 6407 margin: 14px 0; 6408 float: right; 6409 } 6410 6411 .theme-details .theme-description { 6412 float: left; 6413 color: #777; 6414 line-height: 20px; 6415 } 6416 6417 /*------------------------------------------------------------------------------ 6418 25.0 - Misc 6419 ------------------------------------------------------------------------------*/ 6420 6421 #excerpt, 6422 .attachmentlinks { 6423 margin: 0; 6424 height: 4em; 6425 width: 98%; 6426 } 6427 6428 #template div { 6429 margin-right: 190px; 6430 } 6431 6432 p.pagenav { 6433 margin: 0; 6434 display: inline; 6435 } 6436 6437 .pagenav span { 6438 font-weight: bold; 6439 margin: 0 6px; 6440 } 6441 6442 .row-title { 6443 font-size: 13px !important; 6444 font-weight: bold; 6445 } 6446 6447 .column-author img, .column-username img { 6448 float: left; 6449 margin-right: 10px; 6450 margin-top: 1px; 6451 } 6452 6453 .row-actions { 6454 visibility: hidden; 6455 padding: 2px 0 0; 6456 } 6457 6458 .mobile .row-actions { 6459 visibility: visible; 6460 } 6461 6462 tr:hover .row-actions, 6463 div.comment-item:hover .row-actions { 6464 visibility: visible; 6465 } 6466 6467 .row-actions-visible { 6468 padding: 2px 0 0; 6469 } 6470 6471 .form-table .pre { 6472 padding: 8px; 6473 margin: 0; 6474 } 6475 6476 table.form-table td .updated { 6477 font-size: 13px; 6478 } 6479 6480 .tagchecklist { 6481 margin-left: 14px; 6482 font-size: 12px; 6483 overflow: auto; 6484 } 6485 .tagchecklist strong { 6486 margin-left: -8px; 6487 position: absolute; 6488 } 6489 .tagchecklist span { 6490 margin-right: 25px; 6491 display: block; 6492 float: left; 6493 font-size: 11px; 6494 line-height: 1.8em; 6495 white-space: nowrap; 6496 cursor: default; 6497 } 6498 .tagchecklist span a { 6499 margin: 6px 0pt 0pt -9px; 6500 cursor: pointer; 6501 width: 10px; 6502 height: 10px; 6503 display: block; 6504 float: left; 6505 text-indent: -9999px; 6506 overflow: hidden; 6507 position: absolute; 6508 } 6509 6510 #poststuff h2 { 6511 margin-top: 20px; 6512 font-size: 1.5em; 6513 margin-bottom: 15px; 6514 padding: 0 0 3px; 6515 clear: left; 6516 } 6517 6518 #poststuff h3, 6519 .metabox-holder h3 { 6520 font-size: 15px; 6521 font-weight: normal; 6522 padding: 7px 10px; 6523 margin: 0; 6524 line-height: 1; 6525 } 6526 6527 #poststuff .inside { 6528 margin: 6px 0 8px; 6529 } 6530 6531 #poststuff .inside #parent_id, 6532 #poststuff .inside #page_template { 6533 max-width: 100%; 6534 } 6535 6536 .inline-edit-row #post_parent, 6537 .inline-edit-row select[name="page_template"] { 6538 max-width: 80%; 6539 } 6540 6541 .ie8 #poststuff .inside #parent_id, 6542 .ie8 #poststuff .inside #page_template, 6543 .ie8 .inline-edit-row #post_parent, 6544 .ie8 .inline-edit-row select[name="page_template"] { 6545 width: 250px; 6546 } 6547 6548 #post-visibility-select { 6549 line-height: 1.5em; 6550 margin-top: 3px; 6551 } 6552 6553 #poststuff #submitdiv .inside { 6554 margin: 0; 6555 padding: 0; 6556 } 6557 6558 .edit-form-section { 6559 margin-bottom: 20px; 6560 } 6561 6562 #templateside ul li a { 6563 text-decoration: none; 6564 } 6565 6566 .tool-box .title { 6567 margin: 8px 0; 6568 font-size: 18px; 6569 font-weight: normal; 6570 line-height: 24px; 6571 } 6572 6573 #sidemenu { 6574 margin: -30px 15px 0 315px; 6575 list-style: none; 6576 position: relative; 6577 float: right; 6578 padding-left: 10px; 6579 font-size: 12px; 6580 } 6581 6582 #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; 6601 } 6602 6603 #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; 6613 } 6614 6615 #sidemenu li a .count-0 { 6616 display: none; 6617 } 6618 6619 .plugin-install #description, 6620 .plugin-install-network #description { 6621 width: 60%; 6622 } 6623 6624 table .vers, 6625 table .column-visible, 6626 table .column-rating { 6627 text-align: left; 6628 } 6629 6630 .error-message { 6631 color: red; 6632 font-weight: bold; 6633 } 6634 6635 /* Scrollbar fix for bulk upgrade iframe */ 6636 body.iframe { 6637 height: 98%; 6638 } 6639 6640 6641 /* - Only used once or twice in all of WP - deprecate for global style 6642 ------------------------------------------------------------------------------*/ 6643 td.media-icon { 6644 text-align: center; 6645 width: 80px; 6646 padding-top: 8px; 6647 padding-bottom: 8px; 6648 } 6649 6650 td.media-icon img { 6651 max-width: 80px; 6652 max-height: 60px; 6653 } 6654 6655 #howto { 6656 font-size: 11px; 6657 margin: 0 5px; 6658 display: block; 6659 } 6660 6661 .importers td { 6662 padding-right: 14px; 6663 } 6664 6665 .importers { 6666 font-size: 16px; 6667 width: auto; 6668 } 6669 6670 #namediv table { 6671 width: 100%; 6672 } 6673 6674 #namediv td.first { 6675 width: 10px; 6676 white-space: nowrap; 6677 } 6678 6679 #namediv input { 6680 width: 98%; 6681 } 6682 6683 #namediv p { 6684 margin: 10px 0; 6685 } 6686 6687 #submitdiv h3 { 6688 margin-bottom: 0 !important; 6689 } 6690 6691 /* - Used - but could/should be deprecated with a CSS reset 6692 ------------------------------------------------------------------------------*/ 6693 .zerosize { 6694 height: 0; 6695 width: 0; 6696 margin: 0; 6697 border: 0; 6698 padding: 0; 6699 overflow: hidden; 6700 position: absolute; 6701 } 6702 6703 br.clear { 6704 height: 2px; 6705 line-height: 2px; 6706 } 6707 6708 .checkbox { 6709 border: none; 6710 margin: 0; 6711 padding: 0; 6712 } 6713 6714 fieldset { 6715 border: 0; 6716 padding: 0; 6717 margin: 0; 6718 } 6719 6720 .post-categories { 6721 display: inline; 6722 margin: 0; 6723 padding: 0; 6724 } 6725 6726 .post-categories li { 6727 display: inline; 6728 } 6729 6730 6731 /*----------------------------------------------------------------------------- 6732 MERGED 6733 -------------------------------------------------------------------------------*/ 6734 6735 /* dashboard */ 6736 .edit-box { 6737 display: none; 6738 } 6739 6740 h3:hover .edit-box { 6741 display: inline; 6742 } 6743 6744 #dashboard-widgets form .input-text-wrap input { 6745 width: 100%; 6746 } 6747 6748 #dashboard-widgets form .textarea-wrap textarea { 6749 width: 100%; 6750 } 6751 6752 #dashboard-widgets .postbox form .submit { 6753 float: none; 6754 margin: .5em 0 0; 6755 padding: 0; 6756 border: none; 6757 } 6758 6759 #dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish { 6760 min-width: 0; 6761 } 6762 6763 #dashboard-widgets a { 6764 text-decoration: none; 6765 } 6766 6767 #dashboard-widgets h3 a { 6768 text-decoration: underline; 6769 } 6770 6771 #dashboard-widgets h3 .postbox-title-action { 6772 position: absolute; 6773 right: 10px; 6774 padding: 0; 6775 top: 5px; 6776 } 6777 6778 .js #dashboard-widgets h3 .postbox-title-action { 6779 right: 30px; 6780 } 6781 6782 #dashboard-widgets h4 { 6783 font-weight: normal; 6784 font-size: 13px; 6785 margin: 0 0 .2em; 6786 padding: 0; 6787 } 6788 6789 /* Right Now */ 6790 #dashboard_right_now p.sub, 6791 #dashboard_right_now .table, #dashboard_right_now .versions { 6792 margin: -12px; 6793 } 6794 6795 #dashboard_right_now .inside { 6796 font-size: 12px; 6797 padding-top: 20px; 6798 } 6799 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 } 6808 6809 #dashboard_right_now .table { 6810 margin: 0; 6811 padding: 0; 6812 position: relative; 6813 } 6814 6815 #dashboard_right_now .table_content { 6816 float: left; 6817 border-top-width: 1px; 6818 border-top-style: solid; 6819 width: 45%; 6820 } 6821 6822 #dashboard_right_now .table_discussion { 6823 float: right; 6824 border-top-width: 1px; 6825 border-top-style: solid; 6826 width: 45%; 6827 } 6828 6829 #dashboard_right_now table td { 6830 padding: 3px 0; 6831 white-space: nowrap; 6832 } 6833 6834 #dashboard_right_now table tr.first td { 6835 border-top: none; 6836 } 6837 6838 #dashboard_right_now td.b { 6839 padding-right: 6px; 6840 text-align: right; 6841 font-size: 14px; 6842 width: 1%; 6843 } 6844 6845 #dashboard_right_now td.b a { 6846 font-size: 18px; 6847 } 6848 6849 #dashboard_right_now td.b a:hover { 6850 color: #d54e21; 6851 } 6852 6853 #dashboard_right_now .t { 6854 font-size: 12px; 6855 padding-right: 12px; 6856 padding-top: 6px; 6857 color: #777; 6858 } 6859 6860 #dashboard_right_now .t a { 6861 white-space: nowrap; 6862 } 6863 6864 #dashboard_right_now .spam { 6865 color: red; 6866 } 6867 6868 #dashboard_right_now .waiting { 6869 color: #e66f00; 6870 } 6871 6872 #dashboard_right_now .approved { 6873 color: green; 6874 } 6875 6876 #dashboard_right_now .versions { 6877 padding: 6px 10px 12px; 6878 clear: both; 6879 } 6880 6881 #dashboard_right_now a.button { 6882 float: right; 6883 clear: right; 6884 position: relative; 6885 top: -5px; 6886 } 6887 6888 /* Recent Comments */ 6889 #dashboard_recent_comments h3 { 6890 margin-bottom: 0; 6891 } 6892 6893 #dashboard_recent_comments .inside { 6894 margin-top: 0; 6895 } 6896 6897 #dashboard_recent_comments .comment-meta .approve { 6898 font-style: italic; 6899 font-family: sans-serif; 6900 font-size: 10px; 6901 } 6902 6903 #dashboard_recent_comments .subsubsub { 6904 float: none; 6905 white-space: normal; 6906 } 6907 6908 #the-comment-list { 6909 position: relative; 6910 } 6911 6912 #the-comment-list .comment-item { 6913 padding: 1em 10px; 6914 border-top: 1px solid; 6915 } 6916 6917 #the-comment-list .pingback { 6918 padding-left: 9px !important; 6919 } 6920 6921 #the-comment-list .comment-item, 6922 #the-comment-list #replyrow { 6923 margin: 0 -10px; 6924 } 6925 6926 #the-comment-list .comment-item:first-child { 6927 border-top: none; 6928 } 6929 6930 #the-comment-list .comment-item .avatar { 6931 float: left; 6932 margin: 0 10px 5px 0; 6933 } 6934 6935 #the-comment-list .comment-item h4 { 6936 line-height: 1.7em; 6937 margin-top: -0.4em; 6938 color: #777; 6939 } 6940 6941 #the-comment-list .comment-item h4 cite { 6942 font-style: normal; 6943 font-weight: normal; 6944 } 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; 6951 } 6952 6953 #dashboard_recent_comments #the-comment-list .trackback blockquote, 6954 #dashboard_recent_comments #the-comment-list .pingback blockquote { 6955 display: block; 6956 } 6957 6958 #the-comment-list .comment-item p.row-actions { 6959 margin: 3px 0 0; 6960 padding: 0; 6961 font-size: 12px; 6962 } 6963 6964 /* QuickPress */ 6965 .no-js #dashboard_quick_press { 6966 display: none; 6967 } 6968 6969 #dashboard_quick_press .easy-blogging { 6970 padding: 0 8px; 6971 text-align: left; 6972 } 6973 6974 #dashboard_quick_press .input-text-wrap { 6975 position: relative; 6976 } 6977 6978 #dashboard_quick_press .prompt { 6979 color: #bbb; 6980 position: absolute; 6981 } 6982 6983 #dashboard_quick_press div.updated { 6984 padding: 0 5px; 6985 } 6986 6987 #title-wrap label, 6988 #tags-input-wrap label { 6989 cursor: text; 6990 } 6991 6992 #title-wrap #title { 6993 padding: 2px 6px; 6994 font-size: 1.3em; 6995 line-height: 100%; 6996 outline: none; 6997 } 6998 6999 #tags-input-wrap #tags-input { 7000 outline: none; 7001 } 7002 7003 #title-wrap #title-prompt-text { 7004 font-size: 1.3em; 7005 padding: 5px 8px; 7006 } 7007 7008 #tags-input-wrap #tags-input-prompt-text { 7009 font-size: 1em; 7010 padding: 4px 8px; 7011 } 7012 7013 #dashboard_quick_press .input-text-wrap, 7014 #dashboard_quick_press .textarea-wrap { 7015 margin: 0 0 1em 0; 7016 } 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; 7042 } 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; 7050 } 7051 7052 #dashboard_recent_drafts ul { 7053 list-style: none; 7054 } 7055 7056 #dashboard_recent_drafts ul li { 7057 margin-bottom: 1em; 7058 } 7059 7060 #dashboard_recent_drafts h4 { 7061 line-height: 1.7em; 7062 word-wrap: break-word; 7063 } 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; 7071 } 7072 7073 /* Feeds */ 7074 .rss-widget ul { 7075 margin: 0; 7076 padding: 0; 7077 list-style: none; 7078 } 7079 7080 a.rsswidget { 7081 font-size: 13px; 7082 line-height: 1.7em; 7083 } 7084 7085 .rss-widget ul li { 7086 line-height: 1.5em; 7087 margin-bottom: 12px; 7088 } 7089 7090 .rss-widget span.rss-date { 7091 color: #999; 7092 font-size: 12px; 7093 margin-left: 3px; 7094 } 7095 7096 .rss-widget cite { 7097 display: block; 7098 text-align: right; 7099 margin: 0 0 1em; 7100 padding: 0; 7101 } 7102 7103 .rss-widget cite:before { 7104 content: '\2014'; 7105 } 7106 7107 /* Plugins */ 7108 #dashboard_plugins h4 { 7109 line-height: 1.7em; 7110 } 7111 7112 #dashboard_plugins h5 { 7113 font-weight: normal; 7114 font-size: 13px; 7115 margin: 0; 7116 display: inline; 7117 line-height: 1.4em; 7118 } 7119 7120 #dashboard_plugins h5 a { 7121 line-height: 1.4em; 7122 } 7123 7124 #dashboard_plugins .inside span { 7125 font-size: 12px; 7126 padding-left: 5px; 7127 } 7128 7129 #dashboard_plugins p { 7130 margin: 0.3em 0 1.4em; 7131 line-height: 1.4em; 7132 } 7133 7134 .dashboard-comment-wrap { 7135 overflow: hidden; 7136 word-wrap: break-word; 7137 } 7138 7139 /* Browser Nag */ 7140 #dashboard_browser_nag a.update-browser-link { 7141 font-size: 1.2em; 7142 font-weight: bold; 7143 } 7144 7145 #dashboard_browser_nag a { 7146 text-decoration: underline; 7147 } 7148 7149 #dashboard_browser_nag p.browser-update-nag.has-browser-icon { 7150 padding-right: 125px; 7151 } 7152 7153 #dashboard_browser_nag .browser-icon { 7154 margin-top: -35px; 7155 } 7156 7157 #dashboard_browser_nag.postbox.browser-insecure { 7158 background-color: #ac1b1b; 7159 border-color: #ac1b1b; 7160 } 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; 7169 } 7170 7171 #dashboard_browser_nag.postbox.browser-insecure h3 { 7172 border-bottom-color: #cd5a5a; 7173 color: #fff; 7174 } 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; 7183 } 7184 7185 #dashboard_browser_nag a { 7186 color: #fff; 7187 } 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; 7192 } 7193 7194 #dashboard_browser_nag a.browse-happy-link, 7195 #dashboard_browser_nag a.update-browser-link { 7196 text-shadow: #d29a04 0 1px 0; 7197 } 7198 7199 7200 /* login */ 7201 7202 .login * { 7203 margin: 0; 7204 padding: 0; 7205 } 7206 7207 .login form { 7208 margin-left: 8px; 7209 padding: 26px 24px 46px; 7210 font-weight: normal; 7211 background: #fff; 7212 border: 1px solid #e5e5e5; 7213 -webkit-box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px; 7214 box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px; 7215 } 7216 7217 .login form .forgetmenot { 7218 font-weight: normal; 7219 float: left; 7220 margin-bottom: 0; 7221 } 7222 7223 .login .button-primary { 7224 float: right; 7225 } 7226 7227 #login form p { 7228 margin-bottom: 0; 7229 } 7230 7231 #login form p.submit { 7232 padding: 0; 7233 } 7234 7235 .login label { 7236 color: #777; 7237 font-size: 14px; 7238 } 7239 7240 .login form .forgetmenot label { 7241 font-size: 12px; 7242 line-height: 19px; 7243 } 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; 7257 } 7258 7259 #login { 7260 width: 320px; 7261 padding: 114px 0 0; 7262 margin: auto; 7263 } 7264 7265 #login_error, 7266 .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; 7276 } 7277 7278 #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; 7308 } 7309 7310 .mobile #login { 7311 padding: 20px 0; 7312 } 7313 7314 .mobile #login form, 7315 .mobile #login .message, 7316 .mobile #login_error { 7317 margin-left: 0; 7318 } 7319 7320 .mobile #login #nav, 7321 .mobile #login #backtoblog { 7322 margin-left: 8px; 7323 } 7324 7325 .mobile #login h1 a { 7326 width: auto; 7327 } 7328 7329 body.interim-login { 7330 height: auto; 7331 } 7332 7333 .interim-login #login { 7334 padding: 0; 7335 margin: 5px auto 20px; 7336 } 7337 7338 .interim-login.login h1 a { 7339 width: auto; 7340 } 7341 7342 .interim-login #login_error, 7343 .interim-login.login .message { 7344 margin: 0 0 16px; 7345 } 7346 7347 .interim-login.login form { 7348 margin: 0; 7349 } 7350 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 } 7359 7360 .rtl #dashboard_right_now p.musub { 7361 padding-left: 0; 7362 padding-right: 16px; 7363 } 7364 7365 #dashboard_right_now td.b a.musublink { 7366 font-size: 16px; 7367 } 7368 7369 #dashboard_right_now div.musubtable { 7370 border-top: none; 7371 } 7372 7373 #dashboard_right_now div.musubtable .t { 7374 white-space: normal; 7375 } 7376 7377 /* Background Color for Site Status */ 7378 .wp-list-table .site-deleted { 7379 background: #ff8573; 7380 } 7381 .wp-list-table .site-spammed { 7382 background: #faafaa; 7383 } 7384 .wp-list-table .site-archived { 7385 background: #ffebe8; 7386 } 7387 .wp-list-table .site-mature { 7388 background: #fecac2; 7389 } 7390 7391 /* nav-menu */ 7392 7393 .no-js #message { 7394 display: block; 7395 } 7396 7397 #nav-menu-meta ul.outer-border { 7398 -webkit-border-radius: 3px; 7399 border-radius: 3px; 7400 } 7401 7402 .accordion-section ul.category-tabs, 7403 .accordion-section ul.add-menu-item-tabs, 7404 .accordion-section ul.wp-tab-bar { 7405 margin: 0; 7406 } 7407 7408 .accordion-section .categorychecklist { 7409 margin: 13px 0; 7410 } 7411 7412 #nav-menu-meta .accordion-section-content { 7413 padding: 18px 13px; 7414 } 7415 7416 #nav-menu-meta .button-controls { 7417 margin-bottom: 0; 7418 } 7419 7420 #nav-menus-frame { 7421 margin-left: 300px; 7422 margin-top: 23px; 7423 } 7424 7425 #wpbody-content #menu-settings-column { 7426 display:inline; 7427 width:281px; 7428 margin-left: -300px; 7429 clear: both; 7430 float: left; 7431 padding-top: 0; 7432 } 7433 7434 #menu-settings-column .inside { 7435 clear: both; 7436 margin: 10px 0 0; 7437 } 7438 7439 .metabox-holder-disabled .postbox, 7440 .metabox-holder-disabled .accordion-section-content { 7441 opacity: 0.5; 7442 filter: alpha(opacity=50); 7443 } 7444 7445 .metabox-holder-disabled .button-controls .select-all { 7446 display: none; 7447 } 7448 7449 #wpbody { 7450 position: relative; 7451 } 7452 7453 .blank-slate .menu-name { 7454 height: 2em; 7455 } 7456 7457 .blank-slate .menu-settings { 7458 border: none; 7459 margin-top: 0; 7460 padding-top: 0; 7461 overflow: hidden; 7462 } 7463 7464 .is-submenu { 7465 font-style: italic; 7466 font-weight: normal; 7467 margin-left: 4px; 7468 } 7469 7470 .manage-menus { 7471 margin-top: 23px; 7472 padding: 10px; 7473 overflow: hidden; 7474 -webkit-border-radius: 3px; 7475 border-radius: 3px; 7476 } 7477 7478 .manage-menus select { 7479 float: left; 7480 margin-right: 6px; 7481 } 7482 7483 .manage-menus .selected-menu { 7484 float: left; 7485 margin: 5px 6px 0 0; 7486 } 7487 7488 .manage-menus .submit-btn { 7489 float: left; 7490 margin-top: 1px; 7491 } 7492 7493 .menu-edit p { 7494 margin: .3em 0 .6em; 7495 } 7496 7497 .menu-edit #post-body-content h3 { 7498 margin: 0 0 10px; 7499 } 7500 7501 .menu-settings { 7502 margin-top: 2em; 7503 overflow: hidden; 7504 } 7505 7506 .menu-settings dl { 7507 margin: 0 0 10px; 7508 overflow: hidden; 7509 position: relative; 7510 } 7511 7512 .menu-settings dd { 7513 float: left; 7514 margin: 0; 7515 width: 60%; 7516 } 7517 7518 .menu-edit .checkbox-input { 7519 margin-top: 4px; 7520 } 7521 7522 .theme-location-set { 7523 font-size: 11px; 7524 } 7525 7526 /* Menu Container */ 7527 #menu-management-liquid { 7528 float: left; 7529 min-width: 100%; 7530 margin-top: 3px; 7531 } 7532 7533 #menu-management { 7534 position: relative; 7535 margin-right: 20px; 7536 margin-top: -3px; 7537 width: 100%; 7538 } 7539 7540 #menu-management .menu-edit { 7541 margin-bottom: 20px; 7542 } 7543 7544 .nav-menus-php #post-body { 7545 padding: 0 10px 10px; 7546 border-width: 1px 0; 7547 border-style: solid; 7548 } 7549 7550 #nav-menu-header, 7551 #nav-menu-footer { 7552 padding: 0 10px; 7553 } 7554 7555 #nav-menu-header { 7556 border-bottom: 1px solid; 7557 margin-bottom: 13px; 7558 } 7559 7560 #nav-menu-header .menu-name-label { 7561 margin-top: 2px; 7562 } 7563 7564 #nav-menu-footer { 7565 border-top: 1px solid; 7566 } 7567 7568 .nav-menus-php #post-body div.updated, 7569 .nav-menus-php #post-body div.error { 7570 margin: 0; 7571 } 7572 7573 .nav-menus-php #post-body-content { 7574 position: relative; 7575 float: none; 7576 } 7577 7578 #menu-management .menu-add-new abbr { 7579 font-weight:bold; 7580 } 7581 7582 #select-nav-menu-container { 7583 text-align: right; 7584 padding: 0 10px 3px 10px; 7585 margin-bottom: 5px; 7586 } 7587 7588 #select-nav-menu { 7589 width: 100px; 7590 display: inline; 7591 } 7592 7593 #menu-name-label { 7594 margin-top: -2px; 7595 } 7596 7597 .widefat td.menu-location-menus { 7598 padding-bottom: 5px; 7599 } 7600 7601 .menu-location-menus select { 7602 float: left; 7603 } 7604 7605 #locations-nav-menu-wrapper { 7606 padding: 5px 0; 7607 } 7608 7609 .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 } 5466 #img_container_container { 5467 overflow: auto; } 7689 5468 7690 #nav-menu-theme-locations .howto select { 7691 width: 100%; 7692 } 5469 #extra-fields { 5470 margin-top: 10px; 5471 position: relative; } 5472 #extra-fields h2 { 5473 margin: 12px; } 7693 5474 7694 #nav-menu-theme-locations .button-controls { 7695 text-align: right; 7696 } 5475 #waiting { 5476 margin-top: 10px; 5477 overflow: hidden; } 5478 #waiting span { 5479 float: right; 5480 margin: 0 0 0 5px; } 5481 #waiting .spinner { 5482 display: block; } 7697 5483 7698 .add-menu-item-view-all { 7699 height: 400px; 7700 } 5484 #extra-fields .postbox { 5485 margin-bottom: 5px; } 7701 5486 7702 /* Button Primary Actions */ 7703 #menu-container .submit { 7704 margin: 0 0 10px; 7705 padding: 0; 7706 } 5487 #extra-fields .titlewrap { 5488 padding: 0; 5489 overflow: auto; 5490 height: 100px; } 7707 5491 7708 .nav-menus-php .add-new-menu-action { 7709 float: left; 7710 margin: 6px 0 0 6px; 7711 line-height: 15px; 7712 } 5492 #img_container a { 5493 display: block; 5494 float: left; 5495 overflow: hidden; } 5496 #img_container img, 5497 #img_container a { 5498 width: 68px; 5499 height: 68px; } 5500 #img_container img { 5501 border: none; 5502 background-color: #f4f4f4; 5503 cursor: pointer; } 5504 #img_container a, 5505 #img_container a:link, 5506 #img_container a:visited { 5507 border: 1px solid #ccc; 5508 display: block; 5509 position: relative; } 5510 #img_container a:hover, 5511 #img_container a:active { 5512 border-color: black; 5513 z-index: 1000; 5514 border-width: 2px; 5515 margin: -1px; } 7713 5516 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 } 5517 /* Video */ 5518 #embed-code { 5519 width: 100%; 5520 height: 98px; } 7722 5521 7723 .meta-sep { 7724 padding: 0 2px; 7725 } 5522 #TB_ajaxContent #options { 5523 position: absolute; 5524 top: 20px; 5525 right: 25px; 5526 padding: 5px; } 7726 5527 7727 #cancel-save { 7728 text-decoration: underline; 7729 font-size: 12px; 7730 margin-left: 20px; 7731 margin-top: 5px; 7732 } 5528 #TB_ajaxContent h3 { 5529 margin-bottom: .25em; } 7733 5530 7734 .button.right, .button-secondary.right, .button-primary.right { 7735 float: right; 7736 } 5531 .error a { 5532 text-decoration: underline; } 7737 5533 7738 /* Button Secondary Actions */ 7739 .list-controls { 7740 float: left; 7741 margin-top: 5px; 7742 } 5534 .updated a { 5535 text-decoration: none; 5536 padding-bottom: 2px; } 7743 5537 7744 .add-to-menu { 7745 float: right; 7746 } 5538 /* tag hints */ 5539 .taghint { 5540 color: #aaa; 5541 margin: -17px 0 0 7px; 5542 visibility: hidden; } 7747 5543 7748 .postbox .spinner { 7749 display: none; 7750 vertical-align: middle; 7751 } 5544 input.newtag ~ div.taghint { 5545 visibility: visible; } 7752 5546 7753 .button-controls { 7754 clear:both; 7755 margin: 10px 0; 7756 } 5547 input.newtag:focus ~ div.taghint { 5548 visibility: hidden; } 7757 5549 7758 .show-all, 7759 .hide-all { 7760 cursor: pointer; 7761 } 5550 /* TinyMCE */ 5551 #mce_fullscreen_container { 5552 background: #fff; } 7762 5553 7763 .hide-all { 7764 display: none; 7765 } 5554 #photo-add-url-div input[type="text"] { 5555 width: 300px; } 7766 5556 7767 /* Create Menu */ 7768 #menu-name { 7769 width: 270px; 7770 } 5557 /* theme-editor */ 5558 .alignleft h3 { 5559 margin: 0; } 7771 5560 7772 #manage-menu .inside { 7773 padding: 0px 0px; 7774 } 5561 h3 span { 5562 font-weight: normal; } 7775 5563 7776 /* Custom Links */ 7777 #available-links dt { 7778 display: block; 7779 } 5564 #template textarea { 5565 font-family: Consolas, Monaco, monospace; 5566 font-size: 12px; 5567 width: 97%; 5568 background: #f9f9f9; 5569 outline: none; } 7780 5570 7781 #add-custom-link .howto { 7782 font-size: 12px; 7783 } 5571 #template p { 5572 width: 97%; } 7784 5573 7785 #add-custom-link label span { 7786 display: block; 7787 float: left; 7788 margin-top: 5px; 7789 padding-right: 5px; 7790 } 5574 #templateside { 5575 float: right; 5576 width: 190px; 5577 word-wrap: break-word; } 7791 5578 7792 .menu-item-textbox { 7793 width: 180px; 7794 }5579 #templateside h3, 5580 #postcustomstuff p.submit { 5581 margin: 0; } 7795 5582 7796 .nav-menus-php .howto span { 7797 margin-top: 4px; 7798 display: block; 7799 float: left; 7800 } 5583 #templateside h4 { 5584 margin: 1em 0 0; } 7801 5585 7802 /* Menu item types */ 7803 .quick-search{7804 width: 190px;7805 }5586 #templateside ol, 5587 #templateside ul { 5588 margin: .5em; 5589 padding: 0; } 7806 5590 7807 .nav-menus-php .list-wrap { 7808 display: none; 7809 clear: both; 7810 margin-bottom: 10px; 7811 } 5591 #templateside li { 5592 margin: 4px 0; } 7812 5593 7813 .nav-menus-php .list-container { 7814 max-height: 200px; 7815 overflow-y: auto; 7816 padding: 10px 10px 5px; 7817 } 5594 #templateside ul li a span.highlight { 5595 display: block; } 7818 5596 7819 .nav-menus-php .postbox p.submit { 7820 margin-bottom: 0; 7821 } 5597 .nonessential { 5598 font-size: 11px; 5599 font-style: italic; 5600 padding-left: 12px; } 7822 5601 7823 /* Listings */ 7824 .nav-menus-php .list li { 7825 display: none; 7826 margin: 0; 7827 margin-bottom: 5px; 7828 } 5602 .highlight { 5603 padding: 3px 3px 3px 12px; 5604 margin-left: -12px; 5605 font-weight: bold; 5606 border: 0 none; } 7829 5607 7830 .nav-menus-php .list li .menu-item-title { 7831 cursor: pointer; 7832 display: block; 7833 } 5608 #documentation { 5609 margin-top: 10px; } 7834 5610 7835 .nav-menus-php .list li .menu-item-title input{7836 margin-right: 3px;7837 margin-top: -3px;7838 }5611 #documentation label { 5612 line-height: 22px; 5613 vertical-align: top; 5614 font-weight: bold; } 7839 5615 7840 /* Nav Menu */ 7841 #menu-container .inside { 7842 padding-bottom: 10px; 7843 } 5616 .fileedit-sub { 5617 padding: 10px 0 8px; 5618 line-height: 180%; } 7844 5619 7845 .menu { 7846 padding-top:1em; 7847 } 5620 #filter-box { 5621 clear: both; } 7848 5622 7849 #menu-to-edit { 7850 margin: 0; 7851 padding: 0.1em 0; 7852 } 5623 .feature-filter { 5624 padding: 8px 12px 0; } 7853 5625 7854 . menu ul{7855 width: 100%;7856 }5626 .feature-filter .feature-group { 5627 float: left; 5628 margin: 5px 10px 10px; } 7857 5629 7858 .menu li { 7859 margin-bottom: 0; 7860 position:relative; 7861 } 5630 .feature-filter .feature-group li { 5631 display: inline-block; 5632 vertical-align: top; 5633 list-style-type: none; 5634 padding-right: 25px; 5635 width: 150px; } 7862 5636 7863 .menu-item-bar { 7864 clear:both; 7865 line-height:1.5em; 7866 position:relative; 7867 margin: 9px 0 0; 7868 } 5637 .feature-container { 5638 width: 100%; 5639 overflow: auto; 5640 margin-bottom: 10px; } 7869 5641 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 } 5642 /* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */ 5643 .ui-sortable, 5644 .ui-draggable { 5645 -ms-touch-action: none; } 7881 5646 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 } 5647 /* login */ 5648 .login * { 5649 margin: 0; 5650 padding: 0; } 5651 .login h1 a { 5652 background-image: url("../images/wordpress-logo.png?ver=20120216"); 5653 background-size: 274px 63px; 5654 background-position: top center; 5655 background-repeat: no-repeat; 5656 width: 326px; 5657 height: 67px; 5658 text-indent: -9999px; 5659 outline: none; 5660 overflow: hidden; 5661 padding-bottom: 15px; 5662 display: block; } 5663 .login form { 5664 margin-left: 8px; 5665 padding: 26px 24px 46px; 5666 font-weight: normal; 5667 background: #fff; 5668 border: 1px solid #e5e5e5; 5669 -webkit-box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px; 5670 box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px; } 5671 .login form .forgetmenot { 5672 float: left; 5673 margin-bottom: 0; } 5674 .login form .forgetmenot label { 5675 font-size: 12px; 5676 font-weight: normal; 5677 line-height: 19px; } 5678 .login .button-primary { 5679 float: right; } 5680 .login label { 5681 color: #777; 5682 font-size: 14px; } 5683 .login #nav, 5684 .login #backtoblog { 5685 text-shadow: #fff 0 1px 0; 5686 margin: 0 0 0 16px; 5687 padding: 16px 16px 0; } 5688 .login form .input, 5689 .login input[type="text"] { 5690 color: #555; 5691 font-weight: 200; 5692 font-size: 24px; 5693 line-height: 1; 5694 width: 100%; 5695 padding: 3px; 5696 margin-top: 2px; 5697 margin-right: 6px; 5698 margin-bottom: 16px; 5699 border: 1px solid #e5e5e5; 5700 background: #fbfbfb; 5701 outline: none; 5702 -webkit-box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2); 5703 box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2); } 5704 .login #pass-strength-result { 5705 width: 250px; 5706 font-weight: bold; 5707 border-style: solid; 5708 border-width: 1px; 5709 margin: 12px 0 6px; 5710 padding: 6px 5px; 5711 text-align: center; } 7890 5712 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 } 5713 #login { 5714 width: 320px; 5715 padding: 114px 0 0; 5716 margin: auto; } 5717 #login form p { 5718 margin-bottom: 0; } 5719 #login form p.submit { 5720 padding: 0; } 7897 5721 7898 .no-js .menu-item-edit-active .item-edit { 7899 display: none; 7900 } 5722 #login_error, 5723 .login .message { 5724 margin: 0 0 16px 8px; 5725 padding: 12px; } 7901 5726 7902 .js .menu-item-handle { 7903 cursor: move; 7904 } 5727 #backtoblog { 5728 padding: 12px 16px 0; } 7905 5729 7906 .menu li.deleting .menu-item-handle { 7907 background-image: none; 7908 text-shadow: 0 0 0; 7909 } 5730 .mobile #login { 5731 padding: 20px 0; } 5732 .mobile #login #nav, 5733 .mobile #login #backtoblog { 5734 margin-left: 8px; } 5735 .mobile #login h1 a { 5736 width: auto; } 7910 5737 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 } 5738 .mobile #login form, 5739 .mobile #login .message, 5740 .mobile #login_error { 5741 margin-left: 0; } 7919 5742 7920 /* Sortables */ 7921 li.menu-item.ui-sortable-helper dl { 7922 margin-top: 0; 7923 } 5743 body.interim-login { 5744 height: auto; } 7924 5745 7925 li.menu-item.ui-sortable-helper .menu-item-transport dl { 7926 margin-top: 13px; 7927 } 5746 .interim-login #login { 5747 padding: 0; 5748 margin: 5px auto 20px; } 5749 .interim-login.login h1 a { 5750 width: auto; } 5751 .interim-login #login_error, .interim-login.login .message { 5752 margin: 0 0 16px; } 5753 .interim-login.login form { 5754 margin: 0; } 7928 5755 7929 .menu .sortable-placeholder { 7930 height: 35px; 7931 width: 410px; 7932 margin-top: 13px; 7933 } 5756 .pressthis { 5757 margin: 20px 0; 5758 /* Header */ 5759 /* Editor/Main Column */ 5760 /* Categories */ 5761 /* Tags */ 5762 /* Submit */ } 5763 .pressthis a, 5764 .pressthis a:hover, 5765 .pressthis a:focus, 5766 .pressthis a:active { 5767 display: inline-block; 5768 position: relative; 5769 cursor: move; 5770 color: #333; 5771 background: #d8d8d8; 5772 background-image: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #e6e6e6), color-stop(77%, #d8d8d8)); 5773 background-image: -webkit-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%); 5774 background-image: -moz-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%); 5775 background-image: -o-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%); 5776 background-image: linear-gradient(to top, #e6e6e6 7%, #d8d8d8); 5777 border-radius: 5px; 5778 -moz-border-radius: 5px; 5779 -webkit-border-radius: 5px; 5780 border: 1px solid #b4b4b4; 5781 font-style: normal; 5782 line-height: 16px; 5783 font-size: 14px; 5784 text-decoration: none; 5785 text-shadow: 0 1px 0px #fff; } 5786 .pressthis a:active { 5787 outline: none; } 5788 .pressthis a:hover:after { 5789 -webkit-transform: skew(20deg) rotate(9deg); 5790 -moz-transform: skew(20deg) rotate(9deg); 5791 transform: skew(20deg) rotate(9deg); 5792 -moz-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); 5793 -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); 5794 box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); } 5795 .pressthis a span { 5796 background: url(../images/press-this.png?v=20120502) no-repeat 0px 5px; 5797 background-size: 24px 20px; 5798 padding: 8px 11px 8px 27px; 5799 margin: 0 5px; 5800 display: inline-block; } 5801 .pressthis a:after { 5802 content: ''; 5803 width: 70%; 5804 height: 55%; 5805 z-index: -1; 5806 position: absolute; 5807 right: 10px; 5808 bottom: 9px; 5809 background: transparent; 5810 -webkit-transform: skew(20deg) rotate(6deg); 5811 -moz-transform: skew(20deg) rotate(6deg); 5812 transform: skew(20deg) rotate(6deg); 5813 -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6); 5814 box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6); } 5815 .pressthis #wphead { 5816 height: 32px; 5817 margin-left: 0; 5818 margin-right: 0; 5819 margin-bottom: 5px; } 5820 .pressthis #wphead h1 { 5821 font-size: 16px; 5822 font-weight: normal; 5823 line-height: 32px; 5824 margin: 0; 5825 float: left; } 5826 .pressthis #wphead h1 a { 5827 text-decoration: none; } 5828 .pressthis #wphead h1 a:hover { 5829 text-decoration: underline; } 5830 .pressthis #header-logo { 5831 float: left; 5832 margin: 7px 7px 0; 5833 -webkit-user-select: none; 5834 -moz-user-select: none; 5835 user-select: none; } 5836 .pressthis #message { 5837 margin: 10px 0; } 5838 .pressthis #title { 5839 margin-left: 0; 5840 margin-right: 0; 5841 -moz-box-sizing: border-box; 5842 -webkit-box-sizing: border-box; 5843 -ms-box-sizing: border-box; 5844 box-sizing: border-box; } 5845 .pressthis .tagchecklist span a { 5846 background: transparent url(../images/xit.gif) no-repeat 0 0; } 5847 .pressthis #titlediv { 5848 margin: 0; } 5849 .pressthis .wp-media-buttons { 5850 cursor: default; 5851 padding: 8px 8px 0; } 5852 .pressthis .howto { 5853 margin-top: 2px; 5854 margin-bottom: 3px; 5855 font-size: 12px; 5856 font-style: italic; 5857 display: block; } 5858 .pressthis #poststuff { 5859 margin: 0 10px 10px; 5860 padding: 0; } 5861 .pressthis #photo-add-url-div input[type="text"] { 5862 width: 220px; } 5863 .pressthis .inner-sidebar { 5864 width: 200px; } 5865 .pressthis .inner-sidebar .sleeve { 5866 padding-top: 5px; } 5867 .pressthis #submitdiv p { 5868 margin: 0; 5869 padding: 6px; } 5870 .pressthis #submitdiv #publishing-actions { 5871 border-bottom: 1px solid #dfdfdf; } 5872 .pressthis #publish { 5873 float: right; } 5874 .pressthis #poststuff h2, 5875 .pressthis #poststuff h3 { 5876 font-size: 14px; 5877 line-height: 1; } 5878 .pressthis #tagsdiv-post_tag h3, 5879 .pressthis #categorydiv h3 { 5880 cursor: pointer; } 5881 .pressthis #submitdiv h3 { 5882 cursor: default; } 5883 .pressthis .postbox, 5884 .pressthis .stuffbox { 5885 margin-bottom: 10px; 5886 min-width: 0; } 5887 .pressthis .actions { 5888 float: right; 5889 margin: -19px 0 0; } 5890 #extra-fields .pressthis .actions { 5891 margin: -32px -7px 0 0; } 5892 .pressthis .actions li { 5893 float: left; 5894 list-style: none; 5895 margin-right: 10px; } 5896 .pressthis .categorydiv div.tabs-panel { 5897 height: 100px; } 5898 .pressthis .tagsdiv .newtag { 5899 width: 120px; } 5900 .pressthis #content { 5901 margin: 5px 0; 5902 padding: 0 5px; 5903 border: 0 none; 5904 height: 345px; 5905 font-family: Consolas, Monaco, monospace; 5906 font-size: 13px; 5907 line-height: 19px; 5908 background: transparent; } 5909 .pressthis #publishing-actions .spinner { 5910 display: inline; 5911 vertical-align: middle; } 7934 5912 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; } 5913 /* press-this */ 5914 body.press-this { 5915 color: #333; 5916 margin: 0; 5917 padding: 0; 5918 min-width: 675px; 5919 min-height: 400px; } 7974 5920 7975 /* Menu item controls */ 7976 .item-type { 7977 font-size: 12px; 7978 padding-right: 10px; 7979 } 5921 .press-this-sidebar { 5922 float: right; 5923 width: 200px; 5924 padding-top: 10px; } 7980 5925 7981 .item-controls { 7982 font-size: 12px; 7983 position: absolute; 7984 right: 20px; 7985 top: -1px; 7986 } 5926 /* nav-menu */ 5927 .no-js #message { 5928 display: block; } 7987 5929 7988 .item-controls a { 7989 text-decoration: none; 7990 } 5930 #nav-menu-meta ul.outer-border { 5931 border-radius: 3px; 5932 -moz-border-radius: 3px; 5933 -webkit-border-radius: 3px; } 7991 5934 7992 .item-controls a:hover { 7993 cursor: pointer; 7994 } 5935 .accordion-section ul.category-tabs, 5936 .accordion-section ul.add-menu-item-tabs, 5937 .accordion-section ul.wp-tab-bar { 5938 margin: 0; } 7995 5939 7996 .item-controls .item-order { 7997 padding-right: 10px; 7998 } 5940 .accordion-section .categorychecklist { 5941 margin: 13px 0; } 7999 5942 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 } 5943 #nav-menu-meta .accordion-section-content { 5944 padding: 18px 13px; } 8013 5945 8014 /* Menu editing */ 8015 .menu-instructions-inactive { 8016 display: none; 8017 } 5946 #nav-menu-meta .button-controls { 5947 margin-bottom: 0; } 8018 5948 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 } 5949 #nav-menus-frame { 5950 margin-left: 300px; 5951 margin-top: 23px; } 8030 5952 8031 .menu-item-settings .field-move a { 8032 display: none; 8033 margin: 0 2px; 8034 } 5953 #wpbody-content #menu-settings-column { 5954 display: inline; 5955 width: 281px; 5956 margin-left: -300px; 5957 clear: both; 5958 float: left; 5959 padding-top: 0; } 8035 5960 8036 .menu-item-edit-active .menu-item-settings{8037 display: block;8038 }5961 #menu-settings-column .inside { 5962 clear: both; 5963 margin: 10px 0 0; } 8039 5964 8040 .menu-item-edit-inactive .menu-item-settings { 8041 display: none; 8042 } 5965 .metabox-holder-disabled .postbox, 5966 .metabox-holder-disabled .accordion-section-content { 5967 opacity: 0.5; 5968 filter: alpha(opacity=50); } 8043 5969 8044 .add-menu-item-pagelinks { 8045 margin: .5em auto; 8046 text-align: center; 8047 } 5970 .metabox-holder-disabled .button-controls .select-all { 5971 display: none; } 8048 5972 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 } 5973 #wpbody { 5974 position: relative; } 8056 5975 8057 .link-to-original a { 8058 padding-left: 4px; 8059 font-style: normal; 8060 } 5976 .blank-slate .menu-name { 5977 height: 2em; } 8061 5978 8062 .hidden-field { 8063 display: none; 8064 } 5979 .blank-slate .menu-settings { 5980 border: none; 5981 margin-top: 0; 5982 padding-top: 0; 5983 overflow: hidden; } 8065 5984 8066 .menu-item-settings .description-thin, 8067 .menu-item-settings .description-wide { 8068 margin-right: 10px; 8069 float: left; 8070 } 5985 .is-submenu { 5986 font-style: italic; 5987 font-weight: normal; 5988 margin-left: 4px; } 8071 5989 8072 .description-thin { 8073 width: 190px; 8074 height: 40px; 8075 } 5990 .manage-menus { 5991 margin-top: 23px; 5992 padding: 10px; 5993 overflow: hidden; 5994 border-radius: 3px; 5995 -moz-border-radius: 3px; 5996 -webkit-border-radius: 3px; } 5997 .manage-menus select { 5998 float: left; 5999 margin-right: 6px; } 6000 .manage-menus .selected-menu { 6001 float: left; 6002 margin: 5px 6px 0 0; } 6003 .manage-menus .submit-btn { 6004 float: left; 6005 margin-top: 1px; } 8076 6006 8077 .description-wide { 8078 width: 390px; 8079 } 6007 .menu-edit p { 6008 margin: .3em 0 .6em; } 6009 .menu-edit #post-body-content h3 { 6010 margin: 0 0 10px; } 6011 .menu-edit .checkbox-input { 6012 margin-top: 4px; } 8080 6013 8081 .menu-item-actions { 8082 padding-top: 15px; 8083 } 6014 .menu-settings { 6015 margin-top: 2em; 6016 overflow: hidden; } 6017 .menu-settings dl { 6018 margin: 0 0 10px; 6019 overflow: hidden; 6020 position: relative; } 6021 .menu-settings dd { 6022 float: left; 6023 margin: 0; 6024 width: 60%; } 8084 6025 8085 #cancel-save { 8086 cursor: pointer; 8087 } 6026 .theme-location-set { 6027 font-size: 11px; } 8088 6028 8089 /* M ajor/minor publishing actions (classes)*/8090 .nav-menus-php .major-publishing-actions{8091 clear: both;8092 padding: 3px 0 5px;8093 }6029 /* Menu Container */ 6030 #menu-management-liquid { 6031 float: left; 6032 min-width: 100%; 6033 margin-top: 3px; } 8094 6034 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; 8100 } 6035 #menu-management { 6036 position: relative; 6037 margin-right: 20px; 6038 margin-top: -3px; 6039 width: 100%; } 6040 #menu-management .menu-edit { 6041 margin-bottom: 20px; } 8101 6042 8102 .nav-menus-php .blank-slate .menu-settings { 8103 display: none; 8104 } 6043 .nav-menus-php #post-body { 6044 padding: 0 10px 10px; 6045 border-width: 1px 0; 6046 border-style: solid; } 8105 6047 8106 .nav-menus-php .delete-action { 8107 float: left; 8108 margin-top: 2px; 8109 } 6048 #nav-menu-header, 6049 #nav-menu-footer { 6050 padding: 0 10px; } 8110 6051 8111 .nav-menus-php .submitbox .submitcancel{8112 8113 padding: 1px 2px; 8114 text-decoration: none; 8115 }6052 #nav-menu-header { 6053 border-bottom: 1px solid; 6054 margin-bottom: 13px; } 6055 #nav-menu-header .menu-name-label { 6056 margin-top: 2px; } 8116 6057 8117 .nav-menus-php .major-publishing-actions .form-invalid { 8118 padding-left: 4px; 8119 margin-left: -4px; 8120 border: 0 none; 8121 } 6058 #nav-menu-footer { 6059 border-top: 1px solid; } 8122 6060 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; 8138 } 6061 .nav-menus-php #post-body div.updated, 6062 .nav-menus-php #post-body div.error { 6063 margin: 0; } 8139 6064 8140 #nav-menus-frame, 8141 .button-controls, 8142 #menu-item-url-wrap, 8143 #menu-item-name-wrap { 8144 display: block; 8145 } 6065 .nav-menus-php #post-body-content { 6066 position: relative; 6067 float: none; } 8146 6068 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; 8153 } 6069 #menu-management .menu-add-new abbr { 6070 font-weight: bold; } 8154 6071 8155 div.star-holder .star-rating { 8156 background: url('../images/stars.png?ver=20121108') repeat-x top left; 8157 height: 17px; 8158 float: left; 8159 } 6072 #select-nav-menu-container { 6073 text-align: right; 6074 padding: 0 10px 3px 10px; 6075 margin-bottom: 5px; } 8160 6076 8161 div.action-links { 8162 font-weight: normal; 8163 margin: 6px 0 0; 8164 } 6077 #select-nav-menu { 6078 width: 100px; 6079 display: inline; } 8165 6080 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; 8175 } 8176 #plugin-information ul#sidemenu { 8177 font-weight: normal; 8178 margin: 0 5px; 8179 position: absolute; 8180 left: 0; 8181 bottom: -1px; 8182 } 6081 #menu-name-label { 6082 margin-top: -2px; } 8183 6083 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; 8194 } 6084 .widefat td.menu-location-menus { 6085 padding-bottom: 5px; } 8195 6086 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; 8202 } 6087 .menu-location-menus select { 6088 float: left; } 8203 6089 8204 #plugin-information h2 { 8205 clear: none !important; 8206 margin-right: 200px; 8207 } 6090 #locations-nav-menu-wrapper { 6091 padding: 5px 0; } 8208 6092 8209 #plugin-information .fyi{8210 margin: 0 10px 50px;8211 width: 210px;8212 }6093 .locations-nav-menu-select select { 6094 float: left; 6095 width: 160px; 6096 margin-right: 5px; } 8213 6097 8214 #plugin-information .fyi h2 { 8215 font-size: 0.9em; 8216 margin-bottom: 0; 8217 margin-right: 0; 8218 } 6098 .locations-row-links { 6099 float: left; 6100 margin: 6px 0 0 6px; } 8219 6101 8220 #plugin-information .fyi h2.mainheader { 8221 padding: 5px; 8222 -webkit-border-top-left-radius: 3px; 8223 border-top-left-radius: 3px; 8224 } 6102 .locations-edit-menu-link, 6103 .locations-add-menu-link { 6104 margin: 0 3px; } 8225 6105 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; 8232 } 6106 .locations-edit-menu-link { 6107 padding-right: 3px; 6108 border-right: 1px solid #ccc; } 8233 6109 8234 # plugin-information .fyi li{8235 margin-right: 0;8236 }6110 #wpbody .open-label { 6111 display: block; 6112 float: left; } 8237 6113 8238 #plugin-information #section-holder { 8239 padding: 10px; 8240 } 6114 #wpbody .open-label span { 6115 padding-right: 10px; } 8241 6116 8242 #plugin-information .section ul, 8243 #plugin-information .section ol { 8244 margin-left: 16px; 8245 list-style-type: square; 8246 list-style-image: none; 8247 } 6117 .js .input-with-default-title { 6118 font-style: italic; } 8248 6119 8249 #plugin-information #section-screenshots ol { 8250 list-style: none; 8251 margin: 0; 8252 } 6120 #menu-management .inside { 6121 padding: 0 10px; } 8253 6122 8254 #plugin-information #section-screenshots li img { 8255 vertical-align: text-top; 8256 max-width: 100%; 8257 width: auto; 8258 height: auto; 8259 } 6123 /* Add Menu Item Boxes */ 6124 .postbox .howto input, 6125 .accordion-container .howto input { 6126 width: 180px; 6127 float: right; } 8260 6128 8261 #plugin-information #section-screenshots li p { 8262 font-style: italic; 8263 padding-left: 20px; 8264 padding-bottom: 2em; 8265 } 6129 .accordion-container .outer-border { 6130 margin: 0; } 8266 6131 8267 #plugin-information #section-screenshots ol, 8268 #plugin-information .updated, 8269 #plugin-information pre { 8270 margin-right: 215px; 8271 } 6132 #nav-menu-meta .accordion-container .top { 6133 border-top: 1px solid #dfdfdf; } 6134 #nav-menu-meta .accordion-container .accordion-section:first-child, 6135 #nav-menu-meta .accordion-container .accordion-section:first-child h3, 6136 #nav-menu-meta .accordion-container .top, 6137 #nav-menu-meta .accordion-container .top h3 { 6138 border-top-left-radius: 3px; 6139 border-top-right-radius: 3px; 6140 -moz-border-top-left-radius: 3px; 6141 -moz-border-top-right-radius: 3px; 6142 -webkit-border-top-left-radius: 3px; 6143 -webkit-border-top-right-radius: 3px; } 6144 #nav-menu-meta .accordion-container .accordion-section:last-child, 6145 #nav-menu-meta .accordion-container .accordion-section:last-child .accordion-section-content, 6146 #nav-menu-meta .accordion-container .bottom, 6147 #nav-menu-meta .accordion-container .bottom:not(.open) h3 { 6148 border-bottom-left-radius: 3px; 6149 border-bottom-right-radius: 3px; 6150 -moz-border-bottom-left-radius: 3px; 6151 -moz-border-bottom-right-radius: 3px; 6152 -webkit-border-bottom-left-radius: 3px; 6153 -webkit-border-bottom-right-radius: 3px; } 8272 6154 8273 #plugin-information pre { 8274 padding: 7px; 8275 overflow: auto; 8276 } 6155 .customlinkdiv .howto input { 6156 width: 180px; } 8277 6157 8278 /* press-this */ 8279 body.press-this { 8280 color: #333; 8281 margin: 0; 8282 padding: 0; 8283 min-width: 675px; 8284 min-height: 400px; 8285 } 6158 .customlinkdiv p { 6159 margin-top: 0; } 8286 6160 8287 img { 8288 border: none; 8289 } 6161 #nav-menu-theme-locations .howto select { 6162 width: 100%; } 6163 #nav-menu-theme-locations .button-controls { 6164 text-align: right; } 8290 6165 8291 /* Header */ 8292 .press-this #wphead { 8293 height: 32px; 8294 margin-left: 0; 8295 margin-right: 0; 8296 margin-bottom: 5px; 8297 } 6166 .add-menu-item-view-all { 6167 height: 400px; } 8298 6168 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; 8305 } 6169 /* Button Primary Actions */ 6170 #menu-container .submit { 6171 margin: 0 0 10px; 6172 padding: 0; } 8306 6173 8307 .press-this #wphead h1 { 8308 font-weight: normal; 8309 font-size: 16px; 8310 line-height: 32px; 8311 margin: 0; 8312 float: left; 8313 } 6174 .nav-menus-php .add-new-menu-action { 6175 float: left; 6176 margin: 6px 0 0 6px; 6177 line-height: 15px; } 6178 .nav-menus-php .meta-sep, 6179 .nav-menus-php .submitdelete, 6180 .nav-menus-php .submitcancel { 6181 display: block; 6182 float: left; 6183 margin: 4px 0; 6184 line-height: 15px; } 8314 6185 8315 .press-this #wphead h1 a { 8316 text-decoration: none; 8317 } 6186 .meta-sep { 6187 padding: 0 2px; } 8318 6188 8319 .press-this #wphead h1 a:hover { 8320 text-decoration: underline; 8321 } 6189 #cancel-save { 6190 text-decoration: underline; 6191 font-size: 12px; 6192 margin-left: 20px; 6193 margin-top: 5px; } 8322 6194 8323 .press-this #message { 8324 margin: 10px 0; 8325 } 6195 .button.right, .button-secondary.right, .button-primary.right { 6196 float: right; } 8326 6197 8327 .press-this-sidebar { 8328 float: right; 8329 width: 200px; 8330 padding-top: 10px; 8331 } 6198 /* Button Secondary Actions */ 6199 .list-controls { 6200 float: left; 6201 margin-top: 5px; } 8332 6202 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; 8340 } 6203 .add-to-menu { 6204 float: right; } 8341 6205 8342 .press-this .tagchecklist span a { 8343 background: transparent url(../images/xit.gif) no-repeat 0 0; 8344 }6206 /* Create Menu */ 6207 #menu-name { 6208 width: 270px; } 8345 6209 8346 .press-this #titlediv { 8347 margin: 0; 8348 } 6210 #manage-menu .inside { 6211 padding: 0px 0px; } 8349 6212 8350 .press-this .wp-media-buttons { 8351 cursor: default; 8352 padding: 8px 8px 0; 8353 } 6213 /* Custom Links */ 6214 #available-links dt { 6215 display: block; } 8354 6216 8355 .press-this .howto { 8356 margin-top: 2px; 8357 margin-bottom: 3px; 8358 font-size: 12px; 8359 font-style: italic; 8360 display: block; 8361 } 6217 #add-custom-link .howto { 6218 font-size: 12px; } 8362 6219 8363 /* Editor/Main Column */ 8364 .press-this #poststuff { 8365 margin: 0 10px 10px;8366 padding: 0;8367 }6220 #add-custom-link label span { 6221 display: block; 6222 float: left; 6223 margin-top: 5px; 6224 padding-right: 5px; } 8368 6225 8369 .press-this #photo-add-url-div input[type="text"] { 8370 width: 220px; 8371 } 6226 .menu-item-textbox { 6227 width: 180px; } 8372 6228 8373 #poststuff #editor-toolbar { 8374 height: 30px; 8375 } 6229 .nav-menus-php .howto span { 6230 margin-top: 4px; 6231 display: block; 6232 float: left; } 8376 6233 8377 div.zerosize { 8378 border: 0 none; 8379 height: 0; 8380 margin: 0; 8381 overflow: hidden; 8382 padding: 0; 8383 width: 0; 8384 } 6234 /* Menu item types */ 6235 .quick-search { 6236 width: 190px; } 8385 6237 8386 .posting { 8387 margin-right: 212px; 8388 position: relative; 8389 } 6238 .nav-menus-php .list-wrap { 6239 display: none; 6240 clear: both; 6241 margin-bottom: 10px; } 6242 .nav-menus-php .list-container { 6243 max-height: 200px; 6244 overflow-y: auto; 6245 padding: 10px 10px 5px; } 6246 .nav-menus-php .postbox p.submit { 6247 margin-bottom: 0; } 8390 6248 8391 .press-this .inner-sidebar { 8392 width: 200px; 8393 } 6249 /* Listings */ 6250 .nav-menus-php .list li { 6251 display: none; 6252 margin: 0; 6253 margin-bottom: 5px; } 6254 .nav-menus-php .list li .menu-item-title { 6255 cursor: pointer; 6256 display: block; } 6257 .nav-menus-php .list li .menu-item-title input { 6258 margin-right: 3px; 6259 margin-top: -3px; } 8394 6260 8395 .press-this .inner-sidebar .sleeve { 8396 padding-top: 5px; 8397 }6261 /* Nav Menu */ 6262 #menu-container .inside { 6263 padding-bottom: 10px; } 8398 6264 8399 .press-this #submitdiv p { 8400 margin: 0; 8401 padding: 6px; 8402 } 6265 .menu { 6266 padding-top: 1em; } 6267 .menu ul { 6268 width: 100%; } 6269 .menu li { 6270 margin-bottom: 0; 6271 position: relative; } 8403 6272 8404 .press-this #submitdiv #publishing-actions{8405 border-bottom: 1px solid #dfdfdf;8406 }6273 #menu-to-edit { 6274 margin: 0; 6275 padding: 0.1em 0; } 8407 6276 8408 .press-this #publish { 8409 float: right; 8410 } 6277 .menu-item-bar { 6278 clear: both; 6279 line-height: 1.5em; 6280 position: relative; 6281 margin: 9px 0 0; } 8411 6282 8412 .press-this #poststuff h2, 8413 .press-this #poststuff h3 { 8414 font-size: 14px; 8415 line-height: 1; 8416 } 6283 .menu-item-handle { 6284 border: 1px solid #dfdfdf; 6285 position: relative; 6286 padding-left: 10px; 6287 height: auto; 6288 width: 400px; 6289 line-height: 35px; 6290 text-shadow: 0 1px 0 #FFFFFF; 6291 overflow: hidden; 6292 word-wrap: break-word; } 8417 6293 8418 .press-this #tagsdiv-post_tag h3, 8419 .press-this #categorydiv h3 { 8420 cursor: pointer; 8421 } 6294 #menu-to-edit .menu-item-invalid .menu-item-handle { 6295 background: #fdf8ff; 6296 background-image: -webkit-gradient(linear, left bottom, left top, from(#f6c9cc), to(#fdf8ff)); 6297 background-image: -webkit-linear-gradient(bottom, #f6c9cc, #fdf8ff); 6298 background-image: -moz-linear-gradient(bottom, #f6c9cc, #fdf8ff); 6299 background-image: -o-linear-gradient(bottom, #f6c9cc, #fdf8ff); 6300 background-image: linear-gradient(to top, #f6c9cc, #fdf8ff); } 8422 6301 8423 .press-this #submitdiv h3 { 8424 cursor: default; 8425 } 6302 .menu-item-edit-active .menu-item-handle { 6303 border-bottom-left-radius: 0; 6304 border-bottom-right-radius: 0; 6305 -moz-border-bottom-left-radius: 0; 6306 -moz-border-bottom-right-radius: 0; 6307 -webkit-border-bottom-left-radius: 0; 6308 -webkit-border-bottom-right-radius: 0; } 8426 6309 8427 h3.tb { 8428 text-shadow: 0 1px 0 #fff; 8429 font-weight: bold; 8430 font-size: 12px; 8431 margin-left: 5px; 8432 } 6310 .no-js .menu-item-edit-active .item-edit { 6311 display: none; } 8433 6312 8434 #TB_window { 8435 border: 1px solid #333; 8436 } 6313 .js .menu-item-handle { 6314 cursor: move; } 8437 6315 8438 .press-this .postbox, 8439 .press-this .stuffbox { 8440 margin-bottom: 10px; 8441 min-width: 0; 8442 } 6316 .menu li.deleting .menu-item-handle { 6317 background-image: none; 6318 text-shadow: 0 0 0; } 8443 6319 8444 .js .postbox:hover .handlediv, 8445 .js .stuffbox:hover .handlediv { 8446 background: transparent url(../images/arrows.png) no-repeat 6px 7px; 8447 } 6320 .menu-item-handle .item-title { 6321 font-size: 12px; 6322 font-weight: bold; 6323 padding: 7px 0; 6324 line-height: 20px; 6325 display: block; 6326 margin-right: 13em; } 8448 6327 8449 .press-this #submitdiv:hover .handlediv { 8450 background: none; 8451 }6328 /* Sortables */ 6329 li.menu-item.ui-sortable-helper dl { 6330 margin-top: 0; } 8452 6331 8453 .tbtitle { 8454 font-size: 1.7em; 8455 outline: none; 8456 padding: 3px 4px; 8457 border-color: #dfdfdf; 8458 } 6332 li.menu-item.ui-sortable-helper .menu-item-transport dl { 6333 margin-top: 13px; } 8459 6334 8460 . press-this .actions{8461 float: right;8462 margin: -19px 0 0;8463 }6335 .menu .sortable-placeholder { 6336 height: 35px; 6337 width: 410px; 6338 margin-top: 13px; } 8464 6339 8465 .press-this #extra-fields .actions { 8466 margin: -32px -7px 0 0; 8467 }6340 /* WARNING: The factor of 30px is hardcoded into the nav-menus javascript. */ 6341 .menu-item-depth-0 { 6342 margin-left: 0px; } 8468 6343 8469 .press-this .actions li { 8470 float: left; 8471 list-style: none; 8472 margin-right: 10px; 8473 } 6344 .menu-item-depth-1 { 6345 margin-left: 30px; } 8474 6346 8475 #extra-fields .button { 8476 margin-right: 5px; 8477 } 6347 .menu-item-depth-2 { 6348 margin-left: 60px; } 8478 6349 8479 /* Photo Styles */ 8480 #photo_saving { 8481 margin: 0 8px 8px; 8482 vertical-align: middle; 8483 } 6350 .menu-item-depth-3 { 6351 margin-left: 90px; } 8484 6352 8485 #img_container_container { 8486 overflow: auto; 8487 } 6353 .menu-item-depth-4 { 6354 margin-left: 120px; } 8488 6355 8489 #extra-fields { 8490 margin-top: 10px; 8491 position: relative; 8492 } 6356 .menu-item-depth-5 { 6357 margin-left: 150px; } 8493 6358 8494 #extra-fields h2 { 8495 margin: 12px; 8496 } 6359 .menu-item-depth-6 { 6360 margin-left: 180px; } 8497 6361 8498 #waiting { 8499 margin-top: 10px; 8500 overflow: hidden; 8501 } 6362 .menu-item-depth-7 { 6363 margin-left: 210px; } 8502 6364 8503 #waiting span { 8504 float: right; 8505 margin: 0 0 0 5px; 8506 } 6365 .menu-item-depth-8 { 6366 margin-left: 240px; } 8507 6367 8508 #waiting .spinner { 8509 display: block; 8510 } 6368 .menu-item-depth-9 { 6369 margin-left: 270px; } 8511 6370 8512 #extra-fields .postbox { 8513 margin-bottom: 5px; 8514 } 6371 .menu-item-depth-10 { 6372 margin-left: 300px; } 8515 6373 8516 #extra-fields .titlewrap { 8517 padding: 0; 8518 overflow: auto; 8519 height: 100px; 8520 } 6374 .menu-item-depth-11 { 6375 margin-left: 330px; } 8521 6376 8522 #img_container a { 8523 display: block; 8524 float: left; 8525 overflow: hidden; 8526 } 6377 .menu-item-depth-0 .menu-item-transport { 6378 margin-left: 0px; } 8527 6379 8528 #img_container img, 8529 #img_container a { 8530 width: 68px; 8531 height: 68px; 8532 } 6380 .menu-item-depth-1 .menu-item-transport { 6381 margin-left: -30px; } 8533 6382 8534 #img_container img { 8535 border: none; 8536 background-color: #f4f4f4; 8537 cursor: pointer; 8538 } 6383 .menu-item-depth-2 .menu-item-transport { 6384 margin-left: -60px; } 8539 6385 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; 8546 } 6386 .menu-item-depth-3 .menu-item-transport { 6387 margin-left: -90px; } 8547 6388 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; 8554 } 6389 .menu-item-depth-4 .menu-item-transport { 6390 margin-left: -120px; } 8555 6391 8556 /* Video */ 8557 #embed-code { 8558 width: 100%; 8559 height: 98px; 8560 } 6392 .menu-item-depth-5 .menu-item-transport { 6393 margin-left: -150px; } 8561 6394 8562 /* Categories */ 8563 .press-this .categorydiv div.tabs-panel { 8564 height: 100px; 8565 } 6395 .menu-item-depth-6 .menu-item-transport { 6396 margin-left: -180px; } 8566 6397 8567 /* Tags */ 8568 .press-this .tagsdiv .newtag { 8569 width: 120px; 8570 } 6398 .menu-item-depth-7 .menu-item-transport { 6399 margin-left: -210px; } 8571 6400 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; 8581 } 6401 .menu-item-depth-8 .menu-item-transport { 6402 margin-left: -240px; } 8582 6403 8583 /* Submit */ 8584 .press-this #publishing-actions .spinner { 8585 display: inline; 8586 vertical-align: middle; 8587 } 6404 .menu-item-depth-9 .menu-item-transport { 6405 margin-left: -270px; } 8588 6406 8589 #TB_ajaxContent #options { 8590 position: absolute; 8591 top: 20px; 8592 right: 25px; 8593 padding: 5px; 8594 } 6407 .menu-item-depth-10 .menu-item-transport { 6408 margin-left: -300px; } 8595 6409 8596 #TB_ajaxContent h3 { 8597 margin-bottom: .25em; 8598 } 6410 .menu-item-depth-11 .menu-item-transport { 6411 margin-left: -330px; } 8599 6412 8600 .error a { 8601 text-decoration: underline; 8602 } 6413 body.menu-max-depth-0 { 6414 min-width: 950px !important; } 8603 6415 8604 .updated a { 8605 text-decoration: none; 8606 padding-bottom: 2px; 8607 } 6416 body.menu-max-depth-1 { 6417 min-width: 980px !important; } 8608 6418 8609 /* tag hints */ 8610 .taghint { 8611 color: #aaa; 8612 margin: -17px 0 0 7px; 8613 visibility: hidden; 8614 } 6419 body.menu-max-depth-2 { 6420 min-width: 1010px !important; } 8615 6421 8616 input.newtag ~ div.taghint { 8617 visibility: visible; 8618 } 6422 body.menu-max-depth-3 { 6423 min-width: 1040px !important; } 8619 6424 8620 input.newtag:focus ~ div.taghint { 8621 visibility: hidden; 8622 } 6425 body.menu-max-depth-4 { 6426 min-width: 1070px !important; } 8623 6427 8624 /* TinyMCE */ 8625 #mce_fullscreen_container { 8626 background: #fff; 8627 } 6428 body.menu-max-depth-5 { 6429 min-width: 1100px !important; } 8628 6430 8629 #photo-add-url-div input[type="text"] { 8630 width: 300px; 8631 } 6431 body.menu-max-depth-6 { 6432 min-width: 1130px !important; } 8632 6433 8633 /* theme-editor */ 8634 .alignleft h3 { 8635 margin: 0; 8636 } 6434 body.menu-max-depth-7 { 6435 min-width: 1160px !important; } 8637 6436 8638 h3 span { 8639 font-weight: normal; 8640 } 6437 body.menu-max-depth-8 { 6438 min-width: 1190px !important; } 8641 6439 8642 #template textarea { 8643 font-family: Consolas, Monaco, monospace; 8644 font-size: 12px; 8645 width: 97%; 8646 background: #f9f9f9; 8647 outline: none; 8648 } 6440 body.menu-max-depth-9 { 6441 min-width: 1220px !important; } 8649 6442 8650 #template p { 8651 width: 97%; 8652 } 6443 body.menu-max-depth-10 { 6444 min-width: 1250px !important; } 8653 6445 8654 #templateside { 8655 float: right; 8656 width: 190px; 8657 word-wrap: break-word; 8658 } 6446 body.menu-max-depth-11 { 6447 min-width: 1280px !important; } 8659 6448 8660 #templateside h3, 8661 #postcustomstuff p.submit{8662 margin: 0;8663 }6449 /* Menu item controls */ 6450 .item-type { 6451 font-size: 12px; 6452 padding-right: 10px; } 8664 6453 8665 #templateside h4 { 8666 margin: 1em 0 0; 8667 } 6454 .item-controls { 6455 font-size: 12px; 6456 position: absolute; 6457 right: 20px; 6458 top: -1px; } 6459 .item-controls a { 6460 text-decoration: none; } 6461 .item-controls a:hover { 6462 cursor: pointer; } 6463 .item-controls .item-order { 6464 padding-right: 10px; } 8668 6465 8669 #templateside ol, 8670 #templateside ul { 8671 margin: .5em; 8672 padding: 0; 8673 } 6466 .nav-menus-php .item-edit { 6467 position: absolute; 6468 right: -20px; 6469 top: 0; 6470 display: block; 6471 width: 30px; 6472 height: 36px; 6473 overflow: hidden; 6474 text-indent: -999em; 6475 border-bottom: 1px solid; 6476 -moz-border-bottom-left-radius: 3px; 6477 -webkit-border-bottom-left-radius: 3px; 6478 border-bottom-left-radius: 3px; } 8674 6479 8675 #templateside li { 8676 margin: 4px 0; 8677 }6480 /* Menu editing */ 6481 .menu-instructions-inactive { 6482 display: none; } 8678 6483 8679 #templateside ul li a span.highlight { 8680 display:block; 8681 } 6484 .menu-item-settings { 6485 display: block; 6486 width: 400px; 6487 padding: 10px 0 10px 10px; 6488 border: solid; 6489 border-width: 0 1px 1px 1px; 6490 border-bottom-left-radius: 3px; 6491 border-bottom-right-radius: 3px; 6492 -moz-border-bottom-left-radius: 3px; 6493 -moz-border-bottom-right-radius: 3px; 6494 -webkit-border-bottom-left-radius: 3px; 6495 -webkit-border-bottom-right-radius: 3px; } 6496 .menu-item-settings .field-move a { 6497 display: none; 6498 margin: 0 2px; } 6499 .menu-item-edit-active .menu-item-settings { 6500 display: block; } 6501 .menu-item-edit-inactive .menu-item-settings { 6502 display: none; } 6503 .menu-item-settings .description-thin, 6504 .menu-item-settings .description-wide { 6505 margin-right: 10px; 6506 float: left; } 8682 6507 8683 .nonessential { 8684 font-size: 11px; 8685 font-style: italic; 8686 padding-left: 12px; 8687 } 6508 .add-menu-item-pagelinks { 6509 margin: .5em auto; 6510 text-align: center; } 8688 6511 8689 .highlight { 8690 padding: 3px 3px 3px 12px; 8691 margin-left: -12px; 8692 font-weight: bold; 8693 border: 0 none; 8694 } 6512 .link-to-original { 6513 display: block; 6514 margin: 0 0 10px; 6515 padding: 3px 5px 5px; 6516 font-size: 12px; 6517 font-style: italic; } 6518 .link-to-original a { 6519 padding-left: 4px; 6520 font-style: normal; } 8695 6521 8696 #documentation { 8697 margin-top: 10px; 8698 } 8699 #documentation label { 8700 line-height: 22px; 8701 vertical-align: top; 8702 font-weight: bold; 8703 } 6522 .hidden-field { 6523 display: none; } 8704 6524 8705 .fileedit-sub { 8706 padding: 10px 0 8px; 8707 line-height: 180%; 8708 } 6525 .description-thin { 6526 width: 190px; 6527 height: 40px; } 8709 6528 8710 #filter-box { 8711 clear: both; 8712 } 6529 .description-wide { 6530 width: 390px; } 8713 6531 8714 .feature-filter { 8715 padding: 8px 12px 0; 8716 } 6532 .menu-item-actions { 6533 padding-top: 15px; } 8717 6534 8718 .feature-filter .feature-group { 8719 float: left; 8720 margin: 5px 10px 10px; 8721 } 6535 #cancel-save { 6536 cursor: pointer; } 8722 6537 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; 8729 } 6538 /* Major/minor publishing actions (classes) */ 6539 .nav-menus-php .major-publishing-actions { 6540 clear: both; 6541 padding: 3px 0 5px; } 6542 .nav-menus-php .major-publishing-actions .publishing-action { 6543 text-align: right; 6544 float: right; 6545 line-height: 23px; 6546 margin: 2px 0 1px; } 6547 .nav-menus-php .major-publishing-actions .form-invalid { 6548 padding-left: 4px; 6549 margin-left: -4px; 6550 border: 0 none; } 6551 .nav-menus-php .blank-slate .menu-settings { 6552 display: none; } 6553 .nav-menus-php .delete-action { 6554 float: left; 6555 margin-top: 2px; } 6556 .nav-menus-php .submitbox .submitcancel { 6557 border-bottom: 1px solid; 6558 padding: 1px 2px; 6559 text-decoration: none; } 8730 6560 8731 .feature-container { 8732 width: 100%; 8733 overflow: auto; 8734 margin-bottom: 10px; 8735 } 6561 /* Clearfix */ 6562 #menu-item-name-wrap:after, 6563 #menu-item-url-wrap:after, 6564 #menu-name-label:after, 6565 #menu-settings-column .inside:after, 6566 #nav-menus-frame:after, 6567 .nav-menus-php #post-body-content:after, 6568 .nav-menus-php .button-controls:after, 6569 .nav-menus-php .major-publishing-actions:after, 6570 .nav-menus-php .menu-item-settings:after { 6571 clear: both; 6572 content: "."; 6573 display: block; 6574 height: 0; 6575 visibility: hidden; } 8736 6576 8737 /* widgets */ 6577 #nav-menus-frame, 6578 .button-controls, 6579 #menu-item-url-wrap, 6580 #menu-item-name-wrap { 6581 display: block; } 8738 6582 6583 /* widgets */ 8739 6584 /* 2 column liquid layout */ 8740 6585 div.widget-liquid-left { 8741 float: left; 8742 clear: left; 8743 width: 100%; 8744 margin-right: -325px; 8745 } 6586 float: left; 6587 clear: left; 6588 width: 100%; 6589 margin-right: -325px; } 8746 6590 8747 6591 div#widgets-left { 8748 margin-left: 5px; 8749 margin-right: 325px; 8750 } 6592 margin-left: 5px; 6593 margin-right: 325px; } 8751 6594 8752 6595 div#widgets-right { 8753 width: 285px; 8754 margin: 0 auto; 8755 } 6596 width: 285px; 6597 margin: 0 auto; } 8756 6598 8757 6599 div.widget-liquid-right { 8758 float: right; 8759 clear: right; 8760 width: 300px; 8761 } 6600 float: right; 6601 clear: right; 6602 width: 300px; } 8762 6603 8763 6604 .widget-liquid-right .widget, 8764 6605 .inactive-sidebar .widget, 8765 6606 .widget-liquid-right .sidebar-description { 8766 width: 250px; 8767 margin: 0 auto 20px; 8768 overflow: hidden; 8769 } 6607 width: 250px; 6608 margin: 0 auto 20px; 6609 overflow: hidden; } 8770 6610 8771 6611 .widget-liquid-right .sidebar-description { 8772 margin-bottom: 10px; 8773 } 6612 margin-bottom: 10px; } 8774 6613 8775 6614 .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; 8787 } 6615 margin: 0 10px 20px; 6616 display: inline-block; } 8788 6617 8789 6618 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; 8797 } 6619 font-size: 13px; 6620 border-width: 1px; 6621 border-style: solid; 6622 border-top-left-radius: 3px; 6623 border-top-right-radius: 3px; 6624 -moz-border-top-left-radius: 3px; 6625 -moz-border-top-right-radius: 3px; 6626 -webkit-border-top-left-radius: 3px; 6627 -webkit-border-top-right-radius: 3px; } 6628 div.sidebar-name h3 { 6629 font-weight: normal; 6630 font-size: 15px; 6631 margin: 0; 6632 padding: 8px 10px; 6633 overflow: hidden; 6634 white-space: nowrap; } 8798 6635 8799 6636 .js .sidebar-name { 8800 cursor: pointer; 8801 } 6637 cursor: pointer; } 8802 6638 8803 6639 .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; 8808 } 6640 border-bottom-left-radius: 3px; 6641 border-bottom-right-radius: 3px; 6642 -moz-border-bottom-left-radius: 3px; 6643 -moz-border-bottom-right-radius: 3px; 6644 -webkit-border-bottom-left-radius: 3px; 6645 -webkit-border-bottom-right-radius: 3px; } 8809 6646 8810 6647 .widget-liquid-right .widgets-sortables, 8811 6648 #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; 8818 } 6649 border-width: 0 1px 1px; 6650 border-style: none solid solid; 6651 border-bottom-left-radius: 3px; 6652 border-bottom-right-radius: 3px; 6653 -moz-border-bottom-left-radius: 3px; 6654 -moz-border-bottom-right-radius: 3px; 6655 -webkit-border-bottom-left-radius: 3px; 6656 -webkit-border-bottom-right-radius: 3px; } 8819 6657 8820 6658 .js .closed .widgets-sortables, 8821 6659 .js .closed .widget-holder { 8822 display: none; 8823 } 6660 display: none; } 8824 6661 8825 6662 .widget-liquid-right .widgets-sortables { 8826 padding: 15px 0 0; 8827 } 6663 padding: 15px 0 0; } 8828 6664 8829 6665 #available-widgets .widget-holder { 8830 padding: 7px 5px 0; 8831 } 6666 padding: 7px 5px 0; } 8832 6667 8833 6668 #available-widgets .widget { 8834 -webkit-box-shadow: none;8835 8836 }6669 -moz-box-shadow: none; 6670 -webkit-box-shadow: none; 6671 box-shadow: none; } 8837 6672 8838 6673 .inactive-sidebar { 8839 padding: 5px 5px 0; 8840 } 6674 padding: 5px 5px 0; } 8841 6675 8842 6676 #widget-list .widget { 8843 width: 250px; 8844 margin: 0 10px 15px; 8845 border: 0 none; 8846 background: transparent; 8847 display: inline-block; 8848 vertical-align: top; 8849 } 6677 width: 250px; 6678 margin: 0 10px 15px; 6679 border: 0 none; 6680 background: transparent; 6681 display: inline-block; 6682 vertical-align: top; } 8850 6683 8851 6684 #widget-list .widget-description { 8852 padding: 5px 8px; 8853 } 6685 padding: 5px 8px; } 8854 6686 8855 6687 .widget-placeholder { 8856 border-width: 1px; 8857 border-style: dashed; 8858 margin: 0 auto 20px; 8859 height: 27px; 8860 width: 250px; 8861 } 8862 8863 .inactive-sidebar .widget-placeholder { 8864 margin: 0 10px 20px; 8865 float: left; 8866 } 6688 border-width: 1px; 6689 border-style: dashed; 6690 margin: 0 auto 20px; 6691 height: 27px; 6692 width: 250px; } 6693 .inactive-sidebar .widget-placeholder { 6694 margin: 0 10px 20px; 6695 float: left; } 8867 6696 8868 6697 div.widgets-holder-wrap { 8869 padding: 0; 8870 margin: 10px 0 20px; 8871 } 6698 padding: 0; 6699 margin: 10px 0 20px; } 8872 6700 8873 6701 #widgets-left #available-widgets { 8874 background-color: transparent; 8875 border: 0 none; 8876 } 6702 background-color: transparent; 6703 border: 0 none; } 8877 6704 8878 6705 ul#widget-list { 8879 list-style: none; 8880 margin: 0; 8881 padding: 0; 8882 min-height: 100px; 8883 } 6706 list-style: none; 6707 margin: 0; 6708 padding: 0; 6709 min-height: 100px; } 8884 6710 8885 6711 .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; 8899 } 6712 margin-bottom: -1px; 6713 font-size: 12px; 6714 font-weight: bold; 6715 line-height: 26px; 6716 overflow: hidden; } 8900 6717 8901 6718 a.widget-action { 8902 display: block; 8903 width: 24px; 8904 height: 26px; 8905 } 6719 display: block; 6720 width: 24px; 6721 height: 26px; } 8906 6722 8907 6723 #available-widgets a.widget-action { 8908 display: none; 8909 } 6724 display: none; } 8910 6725 6726 .widget-top .widget-title { 6727 padding: 7px 9px; } 6728 .widget-top .widget-title-action { 6729 float: right; } 8911 6730 .widget-top a.widget-action { 8912 background: transparent url(../images/arrows.png) no-repeat 4px 6px; 8913 } 8914 8915 .widget-top a.widget-action:hover { 8916 background: transparent url(../images/arrows-dark.png) no-repeat 4px 6px; 8917 } 6731 background: transparent url(../images/arrows.png) no-repeat 4px 6px; } 6732 .widget-top a.widget-action:hover { 6733 background: transparent url(../images/arrows-dark.png) no-repeat 4px 6px; } 8918 6734 8919 6735 .widget .widget-inside, 8920 6736 .widget .widget-description { 8921 padding: 12px 12px 10px; 8922 font-size: 12px; 8923 line-height: 16px; 8924 } 6737 padding: 12px 12px 10px; 6738 font-size: 12px; 6739 line-height: 16px; } 8925 6740 8926 6741 .widget-inside, 8927 6742 .widget-description { 8928 display: none; 8929 } 6743 display: none; } 8930 6744 8931 6745 #available-widgets .widget-description { 8932 display: block; 8933 } 6746 display: block; } 8934 6747 8935 6748 .widget .widget-inside p { 8936 margin: 0 0 1em; 8937 padding: 0; 8938 } 6749 margin: 0 0 1em; 6750 padding: 0; } 8939 6751 8940 6752 .widget-title h4 { 8941 margin: 0; 8942 padding-bottom: 0.2em; 8943 line-height: 1; 8944 overflow: hidden; 8945 white-space: nowrap; 8946 } 6753 margin: 0; 6754 padding-bottom: 0.2em; 6755 line-height: 1; 6756 overflow: hidden; 6757 white-space: nowrap; } 8947 6758 8948 6759 .widgets-sortables { 8949 min-height: 90px; 8950 } 6760 min-height: 90px; } 8951 6761 8952 6762 .widget-control-actions { 8953 margin-top: 8px; 8954 } 8955 8956 .widget-control-actions a { 8957 text-decoration: none; 8958 } 8959 8960 .widget-control-actions a:hover { 8961 text-decoration: underline; 8962 } 8963 8964 .widget-control-actions div.alignleft { 8965 margin-top: 6px; 8966 } 6763 margin-top: 8px; } 6764 .widget-control-actions a { 6765 text-decoration: none; } 6766 .widget-control-actions a:hover { 6767 text-decoration: underline; } 6768 .widget-control-actions div.alignleft { 6769 margin-top: 6px; } 8967 6770 8968 6771 div#sidebar-info { 8969 padding: 0 1em; 8970 margin-bottom: 1em; 8971 font-size: 12px; 8972 } 6772 padding: 0 1em; 6773 margin-bottom: 1em; 6774 font-size: 12px; } 8973 6775 8974 6776 .widget-title a, 8975 6777 .widget-title a:hover { 8976 text-decoration: none; 8977 border-bottom: none; 8978 } 6778 text-decoration: none; 6779 border-bottom: none; } 8979 6780 8980 6781 .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 } 6782 display: block; 6783 font-size: 12px; 6784 font-weight: normal; 6785 line-height: 26px; 6786 padding: 0 8px 0 0; } 6787 .widget-control-edit .add, 6788 .widget-control-edit .edit { 6789 display: none; } 8987 6790 8988 6791 a.widget-control-edit { 8989 text-decoration: none; 8990 } 8991 8992 .widget-control-edit .add, 8993 .widget-control-edit .edit { 8994 display: none; 8995 } 6792 text-decoration: none; } 8996 6793 8997 6794 #available-widgets .widget-control-edit .add, 8998 6795 #widgets-right .widget-control-edit .edit, 8999 6796 .inactive-sidebar .widget-control-edit .edit { 9000 display: inline; 9001 } 6797 display: inline; } 9002 6798 9003 6799 .editwidget { 9004 margin: 0 auto 15px; 9005 } 9006 9007 .editwidget .widget-inside { 9008 display: block; 9009 padding: 10px; 9010 } 6800 margin: 0 auto 15px; } 6801 .editwidget .widget-inside { 6802 display: block; 6803 padding: 10px; } 9011 6804 9012 6805 .inactive p.description { 9013 margin: 5px 15px 10px; 9014 } 6806 margin: 5px 15px 10px; } 9015 6807 9016 6808 #available-widgets p.description { 9017 margin: 0 12px 12px; 9018 } 6809 margin: 0 12px 12px; } 9019 6810 9020 6811 .widget-position { 9021 margin-top: 8px; 9022 } 6812 margin-top: 8px; } 9023 6813 9024 6814 .inactive { 9025 padding-top: 2px; 9026 } 6815 padding-top: 2px; } 9027 6816 9028 6817 .sidebar-name .spinner { 9029 float: none; 9030 margin: 0 3px -3px; 9031 } 6818 float: none; 6819 margin: 0 3px -3px; } 9032 6820 9033 6821 .sidebar-name-arrow { 9034 float: right; 9035 height: 29px; 9036 width: 26px; 9037 } 6822 float: right; 6823 height: 29px; 6824 width: 26px; } 9038 6825 9039 6826 .widget-title .in-widget-title { 9040 font-size: 12px; 9041 white-space: nowrap; 9042 } 6827 font-size: 12px; 6828 white-space: nowrap; } 9043 6829 9044 6830 #removing-widget { 9045 display: none; 9046 font-weight: normal; 9047 padding-left: 15px; 9048 font-size: 12px; 9049 line-height: 1; 9050 } 6831 display: none; 6832 padding-left: 15px; 6833 font-size: 12px; 6834 font-weight: normal; 6835 line-height: 1; } 9051 6836 9052 6837 .widget-control-noform, 9053 6838 #access-off, … … a.widget-control-edit { 9055 6840 .widgets_access .sidebar-name-arrow, 9056 6841 .widgets_access #access-on, 9057 6842 .widgets_access .widget-holder .description { 9058 display: none; 9059 } 6843 display: none; } 9060 6844 9061 6845 .widgets_access .widget-holder, 9062 6846 .widgets_access #widget-list { 9063 padding-top: 10px; 9064 } 9065 6847 padding-top: 10px; } 9066 6848 .widgets_access #access-off { 9067 display: inline; 9068 } 9069 6849 display: inline; } 9070 6850 .widgets_access #wpbody-content .widget-title-action, 9071 6851 .widgets_access #wpbody-content .widget-control-edit, 9072 6852 .widgets_access .closed .widgets-sortables, 9073 6853 .widgets_access .closed .widget-holder { 9074 display: block; 9075 } 9076 6854 display: block; } 9077 6855 .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;9082 } 9083 6856 border-bottom-left-radius: 3px; 6857 border-bottom-right-radius: 3px; 6858 -moz-border-bottom-left-radius: 3px; 6859 -moz-border-bottom-right-radius: 3px; 6860 -webkit-border-bottom-left-radius: 3px; 6861 -webkit-border-bottom-right-radius: 3px; } 9084 6862 .widgets_access .sidebar-name, 9085 6863 .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; 9093 } 6864 cursor: default; } 9094 6865 9095 6866 /* Accordion */ 9096 9097 6867 .accordion-section { 9098 border-top: 1px solid #fff; 9099 border-bottom: 1px solid #dfdfdf; 9100 margin: 0; 9101 } 9102 9103 .accordion-section:first-child { 9104 border-top: 1px solid #dfdfdf; 9105 } 9106 9107 .accordion-section:last-child { 9108 box-shadow: 0 1px 0 0px #fff; 9109 } 9110 9111 .accordion-section.open .accordion-section-content, 9112 .no-js .accordion-section .accordion-section-content { 9113 display: block; 9114 } 9115 9116 .accordion-section.open:hover { 9117 border-bottom-color: #dfdfdf; 9118 } 6868 border-top: 1px solid #fff; 6869 border-bottom: 1px solid #dfdfdf; 6870 margin: 0; } 6871 .accordion-section:first-child { 6872 border-top: 1px solid #dfdfdf; } 6873 .accordion-section:last-child { 6874 box-shadow: 0 1px 0 0px #fff; } 6875 .accordion-section.open .accordion-section-content, .no-js .accordion-section .accordion-section-content { 6876 display: block; } 6877 .accordion-section.open:hover { 6878 border-bottom-color: #dfdfdf; } 9119 6879 9120 6880 .accordion-section-content { 9121 display: none; 9122 padding: 10px 20px 15px; 9123 overflow: hidden; 9124 background: #fdfdfd; 9125 border-left: 1px solid #dfdfdf; 9126 border-right: 1px solid #dfdfdf; 9127 } 6881 display: none; 6882 padding: 10px 20px 15px; 6883 overflow: hidden; 6884 background: #fdfdfd; 6885 border-left: 1px solid #dfdfdf; 6886 border-right: 1px solid #dfdfdf; } 9128 6887 9129 6888 .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; 9139 } 9140 9141 .js .accordion-section-title { 9142 cursor: pointer; 9143 } 9144 9145 .js .accordion-section-title:after { 9146 content: ''; 9147 width: 0; 9148 height: 0; 9149 border-color: #ccc transparent; 9150 border-style: solid; 9151 border-width: 6px 6px 0; 9152 position: absolute; 9153 top: 25px; 9154 right: 20px; 9155 z-index: 1; 9156 } 9157 9158 .accordion-section-title:focus { 9159 outline: none; 9160 } 9161 9162 .accordion-section-title:hover:after, 9163 .accordion-section-title:focus:after { 9164 border-color: #aaa transparent; 9165 } 9166 9167 .cannot-expand .accordion-section-title { 9168 cursor: auto; 9169 } 9170 9171 .cannot-expand .accordion-section-title:after { 9172 display: none; 9173 } 9174 9175 .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); 9188 } 9189 9190 .control-section .accordion-section-title:after { 9191 top: 15px; 9192 } 9193 9194 .js .control-section:hover .accordion-section-title, 9195 .js .control-section .accordion-section-title:hover, 9196 .js .control-section.open .accordion-section-title, 9197 .js .control-section .accordion-section-title:focus { 9198 color: #000; 9199 background: #f9f9f9; 9200 background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9)); 9201 background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9); 9202 background-image: -moz-linear-gradient(bottom, #ececec, #f9f9f9); 9203 background-image: -o-linear-gradient(bottom, #ececec, #f9f9f9); 9204 background-image: linear-gradient(to top, #ececec, #f9f9f9); 9205 } 9206 9207 .control-section.open .accordion-section-title { 9208 border-bottom: 1px solid #dfdfdf; 9209 } 6889 margin: 0; 6890 padding: 15px 20px; 6891 position: relative; 6892 border-left: 1px solid #dfdfdf; 6893 border-right: 1px solid #dfdfdf; 6894 -webkit-user-select: none; 6895 -moz-user-select: none; 6896 user-select: none; } 6897 .js .accordion-section-title { 6898 cursor: pointer; } 6899 .js .accordion-section-title:after { 6900 content: ''; 6901 width: 0; 6902 height: 0; 6903 border-color: #ccc transparent; 6904 border-style: solid; 6905 border-width: 6px 6px 0; 6906 position: absolute; 6907 top: 25px; 6908 right: 20px; 6909 z-index: 1; } 6910 .accordion-section-title:focus { 6911 outline: none; } 6912 .accordion-section-title:hover:after, .accordion-section-title:focus:after { 6913 border-color: #aaa transparent; } 6914 .cannot-expand .accordion-section-title { 6915 cursor: auto; } 6916 .cannot-expand .accordion-section-title:after { 6917 display: none; } 6918 .control-section .accordion-section-title { 6919 padding: 10px 20px; 6920 color: #464646; 6921 font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; 6922 font-size: 15px; 6923 font-weight: normal; 6924 line-height: 1; 6925 text-shadow: 0 1px 0 #fff; 6926 background: whitesmoke; 6927 background-image: -webkit-gradient(linear, left bottom, left top, from(#eeeeee), to(whitesmoke)); 6928 background-image: -webkit-linear-gradient(bottom, #eeeeee, whitesmoke); 6929 background-image: -moz-linear-gradient(bottom, #eeeeee, whitesmoke); 6930 background-image: -o-linear-gradient(bottom, #eeeeee, whitesmoke); 6931 background-image: linear-gradient(to top, #eeeeee, whitesmoke); } 6932 .control-section .accordion-section-title:after { 6933 top: 15px; } 6934 .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 { 6935 color: black; 6936 background: #f9f9f9; 6937 background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9)); 6938 background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9); 6939 background-image: -moz-linear-gradient(bottom, #ececec, #f9f9f9); 6940 background-image: -o-linear-gradient(bottom, #ececec, #f9f9f9); 6941 background-image: linear-gradient(to top, #ececec, #f9f9f9); } 6942 .control-section.open .accordion-section-title { 6943 border-bottom: 1px solid #dfdfdf; } 9210 6944 9211 6945 /* =Media Queries 9212 6946 -------------------------------------------------------------- */ 9213 9214 6947 @media only screen and (max-width: 768px) { 9215 /* categories */ 9216 #col-left { 9217 width: 100%; 9218 } 9219 9220 #col-right { 9221 width: 100%; 9222 } 9223 } 6948 /* categories */ 6949 #col-left { 6950 width: 100%; } 9224 6951 6952 #col-right { 6953 width: 100%; } } 9225 6954 @media only screen and (min-width: 769px) { 9226 /* categories */ 9227 #col-left { 9228 width: 35%; 9229 } 9230 9231 #col-right { 9232 width: 65%; 9233 } 9234 } 6955 /* categories */ 6956 #col-left { 6957 width: 35%; } 9235 6958 6959 #col-right { 6960 width: 65%; } } 9236 6961 @media only screen and (max-width: 860px) { 6962 /* categories */ 6963 #col-left { 6964 width: 35%; } 9237 6965 9238 /* categories */ 9239 #col-left { 9240 width: 35%; 9241 } 9242 9243 #col-right { 9244 width: 65%; 9245 } 9246 } 9247 6966 #col-right { 6967 width: 65%; } } 9248 6968 @media only screen and (min-width: 980px) { 6969 /* categories */ 6970 #col-left { 6971 width: 35%; } 9249 6972 9250 /* categories */ 9251 #col-left { 9252 width: 35%; 9253 } 6973 #col-right { 6974 width: 65%; } } 6975 @media only screen and (max-width: 768px) { 6976 /* categories */ 6977 #col-left { 6978 width: 100%; } 9254 6979 9255 #col-right { 9256 width: 65%; 9257 } 9258 } 6980 #col-right { 6981 width: 100%; } 9259 6982 9260 @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 } 9284 } 6983 .form-field input, 6984 .form-field textarea { 6985 width: 99%; } 6986 6987 .form-wrap .form-field { 6988 padding: 0; } 9285 6989 6990 /* users */ 6991 #profile-page .form-table textarea { 6992 max-width: 400px; 6993 width: auto; } } 9286 6994 /** 9287 6995 * HiDPI Displays 9288 6996 */ 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 9397 } 9398 6997 @media print, (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) { 6998 .press-this .tagchecklist span a { 6999 background-image: url("../images/xit-2x.gif"); 7000 background-size: 20px auto; } 7001 7002 .js .postbox:hover .handlediv, 7003 .js .stuffbox:hover .handlediv, 7004 .widget-top a.widget-action { 7005 background-image: url("../images/arrows-2x.png"); 7006 background-size: 15px 123px; } 7007 7008 .widget-top a.widget-action:hover { 7009 background-image: url("../images/arrows-dark-2x.png"); 7010 background-size: 15px 123px; } 7011 7012 .post-com-count { 7013 background-image: url("../images/bubble_bg-2x.gif"); 7014 background-size: 18px 100px; } 7015 7016 tr.wp-locked .locked-indicator { 7017 background-image: url("../images/lock-2x.png"); 7018 background-size: 16px 16px; } 7019 7020 th .comment-grey-bubble { 7021 background-image: url("../images/comment-grey-bubble-2x.png"); 7022 background-size: 12px 12px; } 7023 7024 .sorting-indicator { 7025 background-image: url("../images/sort-2x.gif?ver=20130102"); 7026 background-size: 14px 4px; } 7027 7028 #content-resize-handle, 7029 #post-body .wp_themeSkin .mceStatusbar a.mceResize { 7030 background: transparent url("../images/resize-2x.gif") no-repeat scroll right bottom; 7031 background-size: 11px 11px; } 7032 7033 div.star-holder { 7034 background: url("../images/stars-2x.png?ver=20121108") repeat-x bottom left; 7035 background-size: 21px 37px; } 7036 7037 div.star-holder .star-rating { 7038 background: url("../images/stars-2x.png?ver=20121108") repeat-x top left; 7039 background-size: 21px 37px; } 7040 7041 .welcome-panel .welcome-panel-close:before { 7042 background-image: url("../images/xit-2x.gif"); 7043 background-size: 20px auto; } 7044 7045 .welcome-panel .welcome-icon { 7046 background-image: url("../images/welcome-icons-2x.png"); } 7047 7048 .login h1 a { 7049 background-image: url("../images/wordpress-logo-2x.png?ver=20120412"); 7050 background-size: 274px 63px; } 7051 7052 .wp-badge { 7053 background-image: url("../images/wp-badge-2x.png?ver=20120516"); 7054 background-size: 173px 194px; } 7055 7056 .wp-full-overlay .collapse-sidebar-arrow { 7057 background-image: url("../images/arrows-2x.png"); 7058 background-size: 15px 123px; } 7059 7060 .pressthis a span { 7061 background-image: url(../images/press-this-2x.png?v=20121105); } 7062 7063 .imgedit-crop, 7064 .imgedit-rleft, 7065 .imgedit-rright, 7066 .imgedit-flipv, 7067 .imgedit-fliph, 7068 .imgedit-undo, 7069 .imgedit-redo { 7070 background-image: url("../images/imgedit-icons-2x.png"); 7071 background-size: 260px 64px; } 7072 7073 .spinner, 7074 .imgedit-wait, 7075 .customize-loading #customize-container { 7076 background-image: url(../images/wpspin_light-2x.gif); } 7077 7078 .wp-slider .ui-slider-handle:before { 7079 background-image: url(../images/arrows-pr-2x.png); 7080 background-size: 16px 102px; } } 9399 7081 /* =Localized CSS 9400 7082 -------------------------------------------------------------- */ 9401 9402 7083 /* zh_CN: Remove italic properties. */ 9403 7084 .locale-zh-cn .howto, 9404 7085 .locale-zh-cn .tablenav .displaying-num, … … a.widget-control-edit { 9413 7094 .locale-zh-cn p.description, 9414 7095 .locale-zh-cn span.description, 9415 7096 .locale-zh-cn .form-wrap p { 9416 font-style: normal; 9417 } 7097 font-style: normal; } 9418 7098 9419 7099 /* zh_CN: Enlarge dashboard widget 'Configure' link */ 9420 .locale-zh-cn .hdnle a { font-size: 12px; } 7100 .locale-zh-cn .hdnle a { 7101 font-size: 12px; } 9421 7102 9422 7103 /* zn_CH: Enlarge font size, set font-size: normal */ 9423 .locale-zh-cn form.upgrade .hint { font-style: normal; font-size: 100%; } 7104 .locale-zh-cn form.upgrade .hint { 7105 font-style: normal; 7106 font-size: 100%; } 9424 7107 9425 7108 /* Zn_CH: Distraction free writing. 9426 7109 * More beautiful font for "Just write." 9427 7110 * Larger text for HTML/Visual mode. 9428 7111 */ 9429 .locale-zh-cn #wp-fullscreen-tagline { font-family: KaiTi, "楷体", sans-serif; } 9430 .locale-zh-cn #wp-fullscreen-modes a { font-size: 12px; } 7112 .locale-zh-cn #wp-fullscreen-tagline { 7113 font-family: KaiTi, "楷体", sans-serif; } 7114 7115 .locale-zh-cn #wp-fullscreen-modes a { 7116 font-size: 12px; } 9431 7117 9432 7118 /* zh_CN: Enlarge font-size. */ 9433 .locale-zh-cn #sort-buttons { font-size: 1em !important; } 7119 .locale-zh-cn #sort-buttons { 7120 font-size: 1em !important; } 9434 7121 9435 7122 /* ru_RU: Text needs more room to breathe. */ 9436 7123 .locale-ru-ru .inline-edit-row fieldset label span.title { 9437 width: auto; /* default 5em */ 9438 min-width: 5em; 9439 } 7124 width: auto; 7125 /* default 5em */ 7126 min-width: 5em; } 7127 9440 7128 .locale-ru-ru.press-this .posting { 9441 margin-right: 257px; /* default 212px + 45px */ 9442 } 9443 .locale-ru-ru.press-this #photo-add-url-div input[type="text"] { 9444 width: 255px; /* default 300px - 45px */ 9445 } 7129 margin-right: 257px; 7130 /* default 212px + 45px */ } 7131 7132 .locale-ru-ru.press-this #photo-add-url-div input[type="text"] { 7133 width: 255px; 7134 /* default 300px - 45px */ } 7135 9446 7136 .locale-ru-ru.press-this #side-sortables { 9447 width: 245px; /* default 200px + 45px */ 9448 } 7137 width: 245px; 7138 /* default 200px + 45px */ } 7139 9449 7140 .locale-ru-ru #customize-header-actions .button { 9450 padding: 0 8px 1px; /* default 0 10px 1px; */ 9451 }7141 padding: 0 8px 1px; 7142 /* default 0 10px 1px; */ } 9452 7143 9453 7144 /* lt_LT: QuickEdit */ 9454 7145 .locale-lt-lt .inline-edit-row fieldset label span.title { 9455 width: 8em; 9456 } 7146 width: 8em; } 7147 9457 7148 .locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap { 9458 margin-left: 8em; 9459 } 7149 margin-left: 8em; } -
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..69a2f38 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:none}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:0.83em;margin:1.67em 0}h6{font-size:0.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 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:none}.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:none}.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 0.6em;margin:5px 15px 2px}div.updated p,div.error p{margin:0.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:none}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:none}#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:0.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:0.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 0.8em}.widefat .column-comment p{margin:0.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:none;-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:0.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:0.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:none}#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:none}#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:none}#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:none}#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:none}#title-wrap #title-prompt-text{font-size:1.3em;padding:5px 8px}#tags-input-wrap #tags-input{outline:none}#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 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:0.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:0.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 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:0.5em;margin:0.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:0.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:0.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:0.2em 0.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:none;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:none}#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:0.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:0.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 0.5s;-moz-transition:opacity 0.5s;-ms-transition:opacity 0.5s;-o-transition:opacity 0.5s;transition:opacity 0.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 0.5s;-moz-transition:opacity 0.5s;-ms-transition:opacity 0.5s;-o-transition:opacity 0.5s;transition:opacity 0.5s}.revisions.loading .diff{opacity:0.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:-.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}.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 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:0.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:0.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 #DDDDDD;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:0.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:0.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:0.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:0.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:none}#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:none}#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:0.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:0.6em}.about-wrap .feature-section p{margin-top:0.6em}.about-wrap .feature-section img,.about-wrap .feature-section .video{border:none;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:0.5em 0 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 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:0.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 0px #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 0px #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:0.2s;-moz-transition-duration:0.2s;-ms-transition-duration:0.2s;-o-transition-duration:0.2s;transition-duration:0.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 0.3s;-moz-transition:opacity 0.3s;-ms-transition:opacity 0.3s;-o-transition:opacity 0.3s;transition:opacity 0.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 0pt 0pt -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:none;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:none}#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:0.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:none}.tbtitle{font-size:1.7em;outline:none;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:none;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:none}#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:none;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) 0px 4px 10px -1px;box-shadow:rgba(200,200,200,0.7) 0px 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:none;-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 0px #fff}.pressthis a:active{outline:none}.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 0px 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:0.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:none;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:0px 0px}#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:0.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 #FFFFFF;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 0 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:0px}.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:0px}.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:0.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:none}.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: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}.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 0px #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:none}.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}