Make WordPress Core

Ticket #22862: 22862-sass.diff

File 22862-sass.diff, 718.8 KB (added by wonderboymusic, 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
     102td.action-links,
     103th.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
     48div.tabs-panel-active {
     49        display: block;
     50}
     51
     52div.tabs-panel-inactive {
     53        display: none;
     54}
     55
     56#front-page-warning,
     57#front-static-pages ul,
     58ul.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
     67ul.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
     111p.description,
     112.form-wrap p {
     113        margin: 2px 0 5px;
     114}
     115
     116p.help,
     117p.description,
     118span.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
     584a.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
     78input#link_description,
     79input#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,
     178ul.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
     225ul.category-tabs,
     226ul.add-menu-item-tabs,
     227ul.wp-tab-bar {
     228        margin-top: 12px;
     229}
     230
     231ul.category-tabs li {
     232        border-style: solid;
     233        border-width: 1px;
     234        position: relative;
     235}
     236
     237ul.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
     249ul.category-tabs li,
     250ul.add-menu-item-tabs li,
     251ul.wp-tab-bar li {
     252        padding: 3px 5px 5px;
     253        @include rounded-top(3px);
     254}
     255
     256/* positioning etc. */
     257form#tags-filter {
     258        position: relative;
     259}
     260
     261/* Edit posts */
     262td.post-title strong,
     263td.plugin-title strong {
     264        display: block;
     265        margin-bottom: .2em;
     266}
     267
     268td.post-title p,
     269td.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
     725table.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
     871div.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
     993a.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
     21form 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
     31textarea.all-options,
     32input.all-options {
     33        width: 250px;
     34}
     35
     36input.large-text,
     37textarea.large-text {
     38        width: 99%;
     39}
     40
     41input.regular-text,
     42#adduser .form-field input {
     43        width: 25em;
     44}
     45
     46input.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
     86label,
     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
     109p.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
     122input[type="text"].ui-autocomplete-loading {
     123        background: transparent url('../images/loading.gif') no-repeat right center;
     124        visibility: visible;
     125}
     126
     127ul#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
     5body.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 */
     190input[type="text"],
     191input[type="password"],
     192input[type="number"],
     193input[type="search"],
     194input[type="email"],
     195input[type="url"],
     196textarea {
     197        @include border-box();
     198}
     199
     200input[type="checkbox"],
     201input[type="radio"] {
     202        vertical-align: text-top;
     203        padding: 0;
     204        margin: 1px 0 0;
     205}
     206
     207input[type="search"] {
     208        -webkit-appearance: textfield;
     209}
     210
     211input[type="search"]::-webkit-search-decoration {
     212        display: none;
     213}
     214
     215/* general */
     216html,
     217body {
     218        height: 100%;
     219        margin: 0;
     220        padding: 0;
     221}
     222
     223body {
     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
     240iframe,
     241img {
     242        border: 0;
     243}
     244
     245td,
     246textarea,
     247input,
     248select,
     249button {
     250        font-family: inherit;
     251        font-size: inherit;
     252        font-weight: inherit;
     253}
     254
     255td,
     256textarea {
     257        line-height: inherit;
     258}
     259
     260input,
     261select {
     262        line-height: 15px;
     263}
     264
     265a,
     266input[type="text"],
     267input[type="password"],
     268input[type="number"],
     269input[type="search"],
     270input[type="email"],
     271input[type="url"],
     272select,
     273textarea,
     274div {
     275        outline: 0;
     276}
     277
     278a:focus,
     279a: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
     289blockquote,
     290q {
     291        quotes: none;
     292}
     293
     294blockquote:before,
     295blockquote:after,
     296q:before,
     297q:after {
     298        content: '';
     299        content: none;
     300}
     301
     302p {
     303        margin: 1em 0;
     304}
     305
     306blockquote {
     307        margin: 1em;
     308}
     309
     310label {
     311        cursor: pointer;
     312}
     313
     314li,
     315dd {
     316        margin-bottom: 6px;
     317}
     318
     319textarea,
     320input,
     321select {
     322        margin: 1px;
     323        padding: 3px;
     324}
     325
     326h1,
     327h2,
     328h3,
     329h4,
     330h5,
     331h6 {
     332        display: block;
     333        font-weight: bold;
     334}
     335
     336h1 {
     337        font-size: 2em;
     338        margin: .67em 0;
     339}
     340
     341h2 {
     342        font-size: 1.5em;
     343        margin: .83em 0;
     344}
     345
     346h3 {
     347        font-size: 1.17em;
     348        margin: 1em 0;
     349}
     350
     351h4 {
     352        font-size: 1em;
     353        margin: 1.33em 0;
     354}
     355
     356h5 {
     357        font-size: 0.83em;
     358        margin: 1.67em 0;
     359}
     360
     361h6 {
     362        font-size: 0.67em;
     363        margin: 2.33em 0;
     364}
     365
     366ul,
     367ol {
     368        padding: 0;
     369}
     370
     371ul {
     372        list-style: none;
     373}
     374
     375ol {
     376        list-style-type: decimal;
     377        margin-left: 2em;
     378}
     379
     380ul.ul-disc {
     381        list-style: disc outside;
     382}
     383
     384ul.ul-square {
     385        list-style: square outside;
     386}
     387
     388ol.ol-decimal {
     389        list-style: decimal outside;
     390}
     391
     392ul.ul-disc,
     393ul.ul-square,
     394ol.ol-decimal {
     395        margin-left: 1.8em;
     396}
     397
     398ul.ul-disc > li,
     399ul.ul-square > li,
     400ol.ol-decimal > li {
     401        margin: 0 0 0.5em;
     402}
     403
     404.code,
     405code {
     406        font-family: Consolas, Monaco, monospace;
     407}
     408
     409kbd,
     410code {
     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,
     449div.updated,
     450div.error,
     451.wrap .add-new-h2,
     452textarea,
     453input[type="text"],
     454input[type="password"],
     455input[type="file"],
     456input[type="email"],
     457input[type="number"],
     458input[type="search"],
     459input[type="tel"],
     460input[type="url"],
     461select,
     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
     606div.updated,
     607div.error {
     608        padding: 0 0.6em;
     609        margin: 5px 15px 2px;
     610}
     611
     612div.updated p,
     613div.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
     657html,
     658.wp-dialog {
     659        background-color: white;
     660}
     661
     662textarea,
     663input[type="text"],
     664input[type="password"],
     665input[type="file"],
     666input[type="email"],
     667input[type="number"],
     668input[type="search"],
     669input[type="tel"],
     670input[type="url"],
     671select {
     672        background-color: white;
     673        color: #333;
     674}
     675
     676select {
     677        color: black;
     678}
     679
     680select[disabled] {
     681        color: #7f7f7f;
     682}
     683
     684select:focus {
     685        border-color: #aaa;
     686}
     687
     688textarea:focus,
     689input[type="text"]:focus,
     690input[type="password"]:focus,
     691input[type="file"]:focus,
     692input[type="email"]:focus,
     693input[type="number"]:focus,
     694input[type="search"]:focus,
     695input[type="tel"]:focus,
     696input[type="url"]:focus,
     697select: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
     702input[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
     730img {
     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
     5html.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
     5table.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
     125tr.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
     132tr.wp-locked .check-column label,
     133tr.wp-locked .check-column input[type="checkbox"],
     134tr.wp-locked .row-actions .inline,
     135tr.wp-locked .row-actions .trash {
     136        display: none;
     137}
     138
     139tr .locked-info {
     140        height: 0;
     141        opacity: 0;
     142}
     143
     144tr.wp-locked .locked-info {
     145        height: auto;
     146        opacity: 1;
     147}
     148
     149tr.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
     170th.sortable a,
     171th.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
     182th.sortable a span,
     183th.sorted a span {
     184        float: left;
     185        cursor: pointer;
     186}
     187
     188th.sorted.asc .sorting-indicator,
     189th.desc:hover span.sorting-indicator {
     190        display: block;
     191        background-position: 0 0;
     192}
     193
     194th.sorted.desc .sorting-indicator,
     195th.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
     375tr.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
     534ul.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
     130body.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
     166abbr.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
     328ul#dismissed-updates {
     329        display: none;
     330}
     331
     332form.upgrade {
     333        margin-top: 8px;
     334}
     335
     336form.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}
     386borger 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
     430td.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
     614a.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
     634span.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
     16p.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
     46tr:hover .row-actions,
     47div.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
     60table.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
     203table .vers,
     204table .column-visible,
     205table .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 */
     215body.iframe {
     216        height: 98%;
     217}
     218
     219
     220/* - Only used once or twice in all of WP - deprecate for global style
     221------------------------------------------------------------------------------*/
     222td.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
     283br.clear {
     284        height: 2px;
     285        line-height: 2px;
     286}
     287
     288.checkbox {
     289        border: none;
     290        margin: 0;
     291        padding: 0;
     292}
     293
     294fieldset {
     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 */
     360div.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
     373div.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
     496div.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
     512h3.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
     655input.newtag ~ div.taghint {
     656        visibility: visible;
     657}
     658
     659input.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
     677h3 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 */
     506li.menu-item.ui-sortable-helper dl {
     507        margin-top: 0;
     508}
     509
     510li.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
     547body.menu-max-depth-0 { min-width: 950px !important; }
     548body.menu-max-depth-1 { min-width: 980px !important; }
     549body.menu-max-depth-2 { min-width: 1010px !important; }
     550body.menu-max-depth-3 { min-width: 1040px !important; }
     551body.menu-max-depth-4 { min-width: 1070px !important; }
     552body.menu-max-depth-5 { min-width: 1100px !important; }
     553body.menu-max-depth-6 { min-width: 1130px !important; }
     554body.menu-max-depth-7 { min-width: 1160px !important; }
     555body.menu-max-depth-8 { min-width: 1190px !important; }
     556body.menu-max-depth-9 { min-width: 1220px !important; }
     557body.menu-max-depth-10 { min-width: 1250px !important; }
     558body.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
     512th .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
     26ul#dismissed-updates {
     27        display: none;
     28}
     29
     30form.upgrade {
     31        margin-top: 8px;
     32}
     33
     34form.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 */
     215body.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
     37p.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 */
     87table.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
    - +  
     1div.sidebar-name h3,
     2#menu-management .nav-tab,
     3#dashboard_plugins h5,
     4a.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
     21h2 .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
     64p.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
     15h3.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
     330div#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
     371h2.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 */
     4div.widget-liquid-left {
     5        float: left;
     6        clear: left;
     7        width: 100%;
     8        margin-right: -325px;
     9}
     10
     11div#widgets-left {
     12        margin-left: 5px;
     13        margin-right: 325px;
     14}
     15
     16div#widgets-right {
     17        width: 285px;
     18        margin: 0 auto;
     19}
     20
     21div.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
     44div.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
     122div.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
     132ul#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
     145a.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
     222div#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
     245a.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/*
     5Hello, this is the main WordPress admin CSS file.
     6All the important stuff is in here.
     7
     8TABLE 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
     2110.0 - List Posts
     22        10.1 - Inline Editing
     2311.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
     2812.0 - Categories
     2913.0 - Tags
     3014.0 - Media Screen
     31        14.1 - Media Library
     32        14.2 - Image Editor
     3315.0 - Comments Screen
     3416.0 - Themes
     35        16.1 - Custom Header
     36        16.2 - Custom Background
     37        16.3 - Tabbed Admin Screen Interface
     3817.0 - Plugins
     3918.0 - Users
     4019.0 - Tools (deprecated)
     4120.0 - Settings
     4221.0 - Admin Footer
     4322.0 - About Pages
     4423.0 - Full Overlay w/ Sidebar
     4524.0 - Customize Loader
     4625.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/*
    42Hello, this is the main WordPress admin CSS file.
    53All the important stuff is in here.
    64
    7 
    85TABLE OF CONTENTS:
    96------------------
    107 1.0 - Text Elements
    TABLE OF CONTENTS: 
    3734        16.3 - Tabbed Admin Screen Interface
    383517.0 - Plugins
    393618.0 - Users
    40 19.0 - Tools
     3719.0 - Tools (deprecated)
    413820.0 - Settings
    423921.0 - Admin Footer
    434022.0 - About Pages
    444123.0 - Full Overlay w/ Sidebar
    454224.0 - Customize Loader
    464325.0 - Misc
    47 
    48 ------------------------------------------------------------------------*/
    49 
     44*/
    5045/* 2 column liquid layout */
    5146#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; }
    5751
    5852#wpcontent {
    59         height: 100%;
    60 }
     53  height: 100%; }
    6154
    6255#wpcontent,
    6356#wpfooter {
    64         margin-left: 165px;
    65 }
     57  margin-left: 165px; }
    6658
    6759.folded #wpcontent,
    6860.folded #wpfooter {
    69         margin-left: 52px;
    70 }
     61  margin-left: 52px; }
    7162
    7263#wpbody-content {
    73         padding-bottom: 65px;
    74         float: left;
    75         width: 100%;
    76 }
     64  padding-bottom: 65px;
     65  float: left;
     66  width: 100%; }
    7767
    7868#adminmenuback,
    7969#adminmenuwrap,
    8070#adminmenu,
    8171#adminmenu .wp-submenu {
    82         width: 145px;
    83 }
     72  width: 145px; }
    8473
    8574#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; }
    9179
    9280#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; }
    9885
    9986.folded #adminmenuback,
    10087.folded #adminmenuwrap,
    10188.folded #adminmenu,
    10289.folded #adminmenu li.menu-top {
    103         width: 32px;
    104 }
     90  width: 32px; }
    10591
    10692/* inner 2 column liquid layout */
    107 
    10893.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; }
    132109
    133110.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; }
    140115.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; }
    145119
    146120/* 2 columns main area */
    147 
    148121#col-container,
    149122#col-left,
    150123#col-right {
    151         overflow: hidden;
    152         padding: 0;
    153         margin: 0;
    154 }
     124  overflow: hidden;
     125  padding: 0;
     126  margin: 0; }
    155127
    156128#col-left {
    157         width: 35%;
    158 }
     129  width: 35%; }
    159130
    160131#col-right {
    161         float: right;
    162         clear: right;
    163         width: 65%;
    164 }
     132  float: right;
     133  clear: right;
     134  width: 65%; }
    165135
    166136.col-wrap {
    167         padding: 0 7px;
    168 }
     137  padding: 0 7px; }
    169138
    170139/* utility classes */
    171140.alignleft {
    172         float: left;
    173 }
     141  float: left; }
    174142
    175143.alignright {
    176         float: right;
    177 }
     144  float: right; }
    178145
    179146.textleft {
    180         text-align: left;
    181 }
     147  text-align: left; }
    182148
    183149.textright {
    184         text-align: right;
    185 }
     150  text-align: right; }
    186151
    187152.clear {
    188         clear: both;
    189 }
     153  clear: both; }
    190154
    191155/* Hide visually but not from screen readers */
    192156.screen-reader-text,
    193157.screen-reader-text span,
    194158.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; }
    202165
    203166.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; }
    226188
    227189.hidden,
    228190.js .closed .inside,
    TABLE OF CONTENTS: 
    232194.js .wp-core-ui .hide-if-js,
    233195.no-js.wp-core-ui .hide-if-no-js,
    234196.no-js .wp-core-ui .hide-if-no-js {
    235         display: none;
    236 }
     197  display: none; }
    237198
    238199/* include margin and padding in the width calculation of input and textarea */
    239200input[type="text"],
    input[type="search"], 
    243204input[type="email"],
    244205input[type="url"],
    245206textarea {
    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; }
    251211
    252212input[type="checkbox"],
    253213input[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; }
    258217
    259218input[type="search"] {
    260         -webkit-appearance: textfield;
    261 }
     219  -webkit-appearance: textfield; }
    262220
    263221input[type="search"]::-webkit-search-decoration {
    264         display: none;
    265 }
     222  display: none; }
    266223
    267224/* general */
    268225html,
    269226body {
    270         height: 100%;
    271         margin: 0;
    272         padding: 0;
    273 }
     227  height: 100%;
     228  margin: 0;
     229  padding: 0; }
    274230
    275231body {
    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; }
    291242
    292243iframe,
    293244img {
    294         border: 0;
    295 }
     245  border: 0; }
    296246
    297247td,
    298248textarea,
    299249input,
    300250select,
    301251button {
    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; }
    306255
    307256td,
    308257textarea {
    309         line-height: inherit;
    310 }
     258  line-height: inherit; }
    311259
    312260input,
    313261select {
    314         line-height: 15px;
    315 }
     262  line-height: 15px; }
    316263
    317264a,
    318265input[type="text"],
    input[type="url"], 
    324271select,
    325272textarea,
    326273div {
    327         outline: 0;
    328 }
     274  outline: 0; }
    329275
    330276a:focus,
    331277a:active {
    332         outline: thin dotted;
    333 }
     278  outline: thin dotted; }
    334279
    335280#adminmenu a:focus,
    336281#adminmenu a:active,
    337282.screen-reader-text:focus {
    338         outline: none;
    339 }
     283  outline: none; }
    340284
    341285blockquote,
    342286q {
    343         quotes: none;
    344 }
     287  quotes: none; }
    345288
    346289blockquote:before,
    347290blockquote:after,
    348291q:before,
    349292q:after {
    350         content: '';
    351         content: none;
    352 }
     293  content: '';
     294  content: none; }
    353295
    354296p {
    355         margin: 1em 0;
    356 }
     297  margin: 1em 0; }
    357298
    358299blockquote {
    359         margin: 1em;
    360 }
     300  margin: 1em; }
    361301
    362302label {
    363         cursor: pointer;
    364 }
     303  cursor: pointer; }
    365304
    366305li,
    367306dd {
    368         margin-bottom: 6px;
    369 }
     307  margin-bottom: 6px; }
    370308
    371309textarea,
    372310input,
    373311select {
    374         margin: 1px;
    375         padding: 3px;
    376 }
     312  margin: 1px;
     313  padding: 3px; }
    377314
    378315h1,
    379316h2,
    h3, 
    381318h4,
    382319h5,
    383320h6 {
    384         display: block;
    385         font-weight: bold;
    386 }
     321  display: block;
     322  font-weight: bold; }
    387323
    388324h1 {
    389         font-size: 2em;
    390         margin: .67em 0;
    391 }
     325  font-size: 2em;
     326  margin: .67em 0; }
    392327
    393328h2 {
    394         font-size: 1.5em;
    395         margin: .83em 0;
    396 }
     329  font-size: 1.5em;
     330  margin: .83em 0; }
    397331
    398332h3 {
    399         font-size: 1.17em;
    400         margin: 1em 0;
    401 }
     333  font-size: 1.17em;
     334  margin: 1em 0; }
    402335
    403336h4 {
    404         font-size: 1em;
    405         margin: 1.33em 0;
    406 }
     337  font-size: 1em;
     338  margin: 1.33em 0; }
    407339
    408340h5 {
    409         font-size: 0.83em;
    410         margin: 1.67em 0;
    411 }
     341  font-size: 0.83em;
     342  margin: 1.67em 0; }
    412343
    413344h6 {
    414         font-size: 0.67em;
    415         margin: 2.33em 0;
    416 }
     345  font-size: 0.67em;
     346  margin: 2.33em 0; }
    417347
    418348ul,
    419349ol {
    420         padding: 0;
    421 }
     350  padding: 0; }
    422351
    423352ul {
    424         list-style: none;
    425 }
     353  list-style: none; }
    426354
    427355ol {
    428         list-style-type: decimal;
    429         margin-left: 2em;
    430 }
     356  list-style-type: decimal;
     357  margin-left: 2em; }
    431358
    432359ul.ul-disc {
    433         list-style: disc outside;
    434 }
     360  list-style: disc outside; }
    435361
    436362ul.ul-square {
    437         list-style: square outside;
    438 }
     363  list-style: square outside; }
    439364
    440365ol.ol-decimal {
    441         list-style: decimal outside;
    442 }
     366  list-style: decimal outside; }
    443367
    444368ul.ul-disc,
    445369ul.ul-square,
    446370ol.ol-decimal {
    447         margin-left: 1.8em;
    448 }
     371  margin-left: 1.8em; }
    449372
    450373ul.ul-disc > li,
    451374ul.ul-square > li,
    452375ol.ol-decimal > li {
    453         margin: 0 0 0.5em;
    454 }
     376  margin: 0 0 0.5em; }
    455377
    456378.code,
    457379code {
    458         font-family: Consolas, Monaco, monospace;
    459 }
     380  font-family: Consolas, Monaco, monospace; }
    460381
    461382kbd,
    462383code {
    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; }
    467387
    468388.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; }
    499410
    500411.widefat,
    501412div.updated,
    select, 
    536447.feature-filter,
    537448#widget-list .widget-top,
    538449.editwidget .widget-inside {
    539         -webkit-border-radius: 3px;
    540         border-radius: 3px;
    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; }
    544455
    545456/* .widefat - main style for tables */
    546457.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; }
    639520
    640521.widefat .num,
    641522.column-comments,
    642523.column-links,
    643524.column-posts {
    644         text-align: center;
    645 }
     525  text-align: center; }
    646526
    647527.widefat th#comments {
    648         vertical-align: middle;
    649 }
     528  vertical-align: middle; }
    650529
    651530.wrap {
    652         margin: 4px 15px 0 0;
    653 }
     531  margin: 4px 15px 0 0; }
    654532
    655533div.updated,
    656534div.error {
    657         padding: 0 0.6em;
    658         margin: 5px 15px 2px;
    659 }
     535  padding: 0 0.6em;
     536  margin: 5px 15px 2px; }
    660537
    661538div.updated p,
    662539div.error p {
    663         margin: 0.5em 0;
    664         padding: 2px;
    665 }
     540  margin: 0.5em 0;
     541  padding: 2px; }
    666542
    667543.wrap div.updated,
    668544.wrap div.error,
    669545.media-upload-form div.error {
    670         margin: 5px 0 15px;
    671 }
     546  margin: 5px 0 15px; }
    672547
    673548.wrap h2,
    674549.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; }
    679553
    680554.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; }
    685558
    686559.subtitle {
    687         font-size: 14px;
    688         padding-left: 25px;
    689 }
     560  font-size: 14px;
     561  padding-left: 25px; }
    690562
    691563.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; }
    701572
    702573.wrap h2.long-header {
    703         padding-right: 0;
    704 }
     574  padding-right: 0; }
    705575
    706576html,
    707577.wp-dialog {
    708         background-color: #fff;
    709 }
     578  background-color: white; }
    710579
    711580textarea,
    712581input[type="text"],
    input[type="search"], 
    718587input[type="tel"],
    719588input[type="url"],
    720589select {
    721         background-color: #fff;
    722         color: #333;
    723 }
     590  background-color: white;
     591  color: #333; }
    724592
    725593select {
    726         color: #000;
    727 }
     594  color: black; }
    728595
    729596select[disabled] {
    730         color: #7f7f7f;
    731 }
     597  color: #7f7f7f; }
    732598
    733599select:focus {
    734         border-color: #aaa;
    735 }
     600  border-color: #aaa; }
    736601
    737602textarea:focus,
    738603input[type="text"]:focus,
    input[type="search"]:focus, 
    744609input[type="tel"]:focus,
    745610input[type="url"]:focus,
    746611select: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); }
    750614
    751615input[readonly] {
    752         background-color: #eee;
    753 }
     616  background-color: #eee; }
    754617
    755618:-moz-placeholder,
    756619.wp-core-ui :-moz-placeholder {
    757    color: #a9a9a9;
    758 }
     620  color: #a9a9a9; }
    759621
    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
     637img {
     638  border: none; }
    763639
    764640div.sidebar-name h3,
    765641#menu-management .nav-tab,
    a.rsswidget, 
    778654.widefat th,
    779655.quicktags,
    780656.search {
    781         font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
    782 }
     657  font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; }
    783658
    784659h2 .nav-tab,
    785660.wrap h2,
    786661.subtitle,
    787662.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; }
    790664
    791665.quicktags,
    792666.search {
    793         font-size: 12px;
    794 }
     667  font-size: 12px; }
    795668
    796669.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; }
    802674
    803675.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; }
    810681
    811682.key-labels label {
    812         line-height: 24px;
    813 }
     683  line-height: 24px; }
    814684
    815685.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 */ }
    820691
    821692.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; }
    826696
    827697p.install-help {
    828         margin: 8px 0;
    829         font-style: italic;
    830 }
     698  margin: 8px 0;
     699  font-style: italic; }
    831700
    832701.no-break {
    833         white-space: nowrap;
    834 }
     702  white-space: nowrap; }
    835703
    836704/*------------------------------------------------------------------------------
    837705  2.0 - Forms
    838706------------------------------------------------------------------------------*/
    839 
    840 
    841707.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; }
    849712
    850713.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; }
    858722
    859723form p.submit a.cancel:hover {
    860         text-decoration: none;
    861 }
     724  text-decoration: none; }
    862725
    863726#minor-publishing-actions input,
    864727#major-publishing-actions input,
    865728#minor-publishing-actions .preview {
    866         text-align: center;
    867 }
     729  text-align: center; }
    868730
    869731textarea.all-options,
    870732input.all-options {
    871         width: 250px;
    872 }
     733  width: 250px; }
    873734
    874735input.large-text,
    875736textarea.large-text {
    876         width: 99%;
    877 }
     737  width: 99%; }
    878738
    879739input.regular-text,
    880740#adduser .form-field input {
    881         width: 25em;
    882 }
     741  width: 25em; }
    883742
    884743input.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; }
    891747
    892748#doaction,
    893749#doaction2,
    894750#post-query-submit {
    895         margin: 1px 8px 0 0;
    896 }
     751  margin: 1px 8px 0 0; }
    897752
    898753.tablenav #changeit,
    899754.tablenav #delete_all,
    900755.tablenav #clear-recent-list {
    901         margin-top: 1px;
    902 }
    903 
     756  margin-top: 1px; }
    904757.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; }
    910761.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; }
    917765
    918766#timezone_string option {
    919         margin-left: 1em;
    920 }
     767  margin-left: 1em; }
    921768
    922769label,
    923770#your-profile label + a {
    924         vertical-align: middle;
    925 }
     771  vertical-align: middle; }
    926772
    927773#misc-publishing-actions label {
    928         vertical-align: baseline;
    929 }
     774  vertical-align: baseline; }
    930775
    931776#pass-strength-result {
    932         border-style: solid;
    933         border-width: 1px;
    934         float: left;
    935         margin: 13px 5px 5px 1px;
    936         padding: 3px 5px;
    937         text-align: center;
    938         width: 200px;
    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
    941786.indicator-hint {
    942         padding-top: 8px;
    943 }
     787  padding-top: 8px; }
    944788
    945789p.search-box {
    946         float: right;
    947         margin: 0;
    948 }
     790  float: right;
     791  margin: 0; }
    949792
    950793.search-box input[name="s"],
    951794#search-plugins input[name="s"],
    952795.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; }
    957799
    958800input[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; }
    962803
    963804ul#add-to-blog-users {
    964         margin: 0 0 0 14px;
    965 }
     805  margin: 0 0 0 14px; }
    966806
    967807.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; }
    971810
    972811.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; }
    999831
    1000832/*------------------------------------------------------------------------------
    1001833  3.0 - Actions
    1002834------------------------------------------------------------------------------*/
    1003 
    1004835#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; }
    1010840
    1011841#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; }
    1017846
    1018847#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; }
    1027853
    1028854#misc-publishing-actions {
    1029         padding: 6px 0 0;
    1030 }
     855  padding: 6px 0 0; }
    1031856
    1032857.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; }
    1041863
    1042864.misc-pub-section-last {
    1043         border-bottom-width: 0;
    1044 }
     865  border-bottom-width: 0; }
    1045866
    1046867#minor-publishing-actions {
    1047         padding: 10px 10px 2px 8px;
    1048         text-align: right;
    1049 }
     868  padding: 10px 10px 2px 8px;
     869  text-align: right; }
    1050870
    1051871#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; }
    1057876
    1058877#save-post {
    1059         float: left;
    1060 }
     878  float: left; }
    1061879
    1062880.preview {
    1063         float: right;
    1064 }
     881  float: right; }
    1065882
    1066883#sticky-span {
    1067         margin-left: 18px;
    1068 }
     884  margin-left: 18px; }
    1069885
    1070886.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; }
    1089900
    1090901.approve,
    1091902.unapproved .unapprove {
    1092         display: none;
    1093 }
     903  display: none; }
    1094904
    1095905.unapproved .approve,
    1096906.spam .approve,
    1097907.trash .approve {
    1098         display: inline;
    1099 }
     908  display: inline; }
    1100909
    1101910td.action-links,
    1102911th.action-links {
    1103         text-align: right;
    1104 }
    1105 
     912  text-align: right; }
    1106913
    1107914/*------------------------------------------------------------------------------
    1108915  4.0 - Notifications
    1109916------------------------------------------------------------------------------*/
    1110 
    1111917#update-nag,
    1112918.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; }
    1125932
    1126933.plugins .plugin-update {
    1127         padding: 0;
    1128 }
     934  padding: 0; }
    1129935
    1130936.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; }
    1134939
    1135940ul#dismissed-updates {
    1136         display: none;
    1137 }
     941  display: none; }
    1138942
    1139943form.upgrade {
    1140         margin-top: 8px;
    1141 }
     944  margin-top: 8px; }
    1142945
    1143946form.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; }
    1148950
    1149951.update-php .spinner {
    1150         float: none;
    1151         margin: -4px 0;
    1152 }
     952  float: none;
     953  margin: -4px 0; }
    1153954
    1154955#ajax-loading,
    1155956.ajax-loading,
    1156957.ajax-feedback,
    1157958.imgedit-wait-spin,
    1158 .list-ajax-loading { /* deprecated */
    1159         visibility: hidden;
    1160 }
     959.list-ajax-loading {
     960  /* deprecated */
     961  visibility: hidden; }
    1161962
    1162963#ajax-response.alignleft {
    1163         margin-left: 2em;
    1164 }
    1165 
     964  margin-left: 2em; }
    1166965
    1167966/*------------------------------------------------------------------------------
    1168967  6.0 - Admin Header
    form.upgrade .hint { 
    1171970#sidemenu a,
    1172971#taglist a,
    1173972#catlist a {
    1174         text-decoration: none;
    1175 }
     973  text-decoration: none; }
    1176974
    1177975/*------------------------------------------------------------------------------
    1178976  6.1 - Screen Options Tabs
    1179977------------------------------------------------------------------------------*/
    1180 
    1181978#screen-options-wrap,
    1182979#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; }
    1187983
    1188984#contextual-help-wrap {
    1189         overflow: auto;
    1190 }
    1191 
    1192 #screen-meta .screen-reader-text {
    1193         visibility: hidden;
    1194 }
     985  overflow: auto; }
    1195986
    1196987#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; }
    12051007
    12061008/* screen options and help tabs revert */
    12071009#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; }
    12141017
    12151018#screen-options-link-wrap,
    12161019#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; }
    12231025
    12241026#screen-options-link-wrap,
    12251027#contextual-help-link-wrap,
    12261028#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; }
    12481035
    1249 #screen-meta-links a.show-settings:hover {
    1250         text-decoration: none;
    1251 }
    12521036/* end screen options and help tabs */
    1253 
    12541037.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; }
    12621044
    12631045.toggle-arrow-active {
    1264         background-position: bottom left;
    1265 }
     1046  background-position: bottom left; }
    12661047
    12671048#screen-options-wrap h5,
    12681049#contextual-help-wrap h5 {
    1269         margin: 8px 0;
    1270         font-size: 13px;
    1271 }
     1050  margin: 8px 0;
     1051  font-size: 13px; }
    12721052
    12731053.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; }
    12841062.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; }
    12911064
    12921065/*------------------------------------------------------------------------------
    12931066  6.2 - Help Menu
    12941067------------------------------------------------------------------------------*/
    1295 
    12961068#contextual-help-wrap {
    1297         padding: 0;
    1298         margin-left: -4px;
    1299 }
     1069  padding: 0;
     1070  margin-left: -4px; }
    13001071
    13011072#contextual-help-columns {
    1302         position: relative;
    1303 }
     1073  position: relative; }
    13041074
    13051075#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; }
    13221089
    13231090.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; }
    13541112
    13551113.contextual-help-tabs-wrap {
    1356         padding: 0 20px;
    1357         overflow: auto;
    1358 }
     1114  padding: 0 20px;
     1115  overflow: auto; }
    13591116
    13601117.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; }
    13741126
    13751127.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; }
    13821132
    13831133/*------------------------------------------------------------------------------
    13841134  7.0 - Main Navigation (Left Menu)
    13851135------------------------------------------------------------------------------*/
    1386 
    13871136#adminmenuback,
    13881137#adminmenuwrap {
    1389         border-width: 0 1px 0 0;
    1390         border-style: solid;
    1391 }
     1138  border-width: 0 1px 0 0;
     1139  border-style: solid; }
    13921140
    13931141#adminmenuwrap {
    1394         position: relative;
    1395         float: left;
    1396 }
     1142  position: relative;
     1143  float: left; }
    13971144
    13981145#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; }
    14061152
    14071153/* side admin menu */
    14081154#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; }
    14141158#adminmenu li {
    1415         margin: 0;
    1416         padding: 0;
    1417         cursor: pointer;
    1418 }
    1419 
     1159  margin: 0;
     1160  padding: 0;
     1161  cursor: pointer; }
    14201162#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; }
    14261166#adminmenu li.menu-top {
    1427         min-height: 28px;
    1428         position: relative;
    1429 }
    1430 
     1167  min-height: 28px;
     1168  position: relative; }
    14311169#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,
    14571190#adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
    14581191#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
    14591192#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; }
    14911211#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; }
    14981216#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; }
    15071220#adminmenu a.menu-top,
    15081221#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; }
    15201228.folded #adminmenu .wp-submenu-head {
    1521         display: block;
    1522 }
    1523 
     1229  display: block; }
    15241230#adminmenu .wp-submenu li {
    1525         padding: 0;
    1526         margin: 0;
    1527         overflow: hidden;
    1528 }
    1529 
     1231  padding: 0;
     1232  margin: 0;
     1233  overflow: hidden; }
    15301234#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; }
    15351237#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); }
    15411241#adminmenu div.wp-menu-name {
    1542         padding: 5px;
    1543 }
    1544 
     1242  padding: 5px; }
    15451243#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; }
    15511247.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; }
    15571251.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; }
    15761253#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); }
    15911265#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; }
    16031275.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); }
    16111281#adminmenu li.current .wp-menu-arrow,
    16121282#adminmenu li.wp-has-current-submenu .wp-menu-arrow,
    16131283#adminmenu li.wp-has-current-submenu .wp-menu-arrow div,
    16141284#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,
    16171286#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,
    16181287#adminmenu a.wp-has-submenu:focus .wp-menu-arrow,
    16191288#adminmenu a:hover .wp-menu-arrow {
    1620         display: block;
    1621 }
    1622 
     1289  display: block; }
    16231290#adminmenu li.current .wp-menu-arrow,
    16241291#adminmenu li.wp-menu-open .wp-menu-arrow {
    1625         top: 0;
    1626 }
    1627 
     1292  top: 0; }
    16281293.no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow,
    16291294#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,
    16301295#adminmenu a.wp-has-submenu:focus .wp-menu-arrow {
    1631         z-index: 1001;
    1632 }
    1633 
     1296  z-index: 1001; }
    16341297.ie8 #adminmenu li.menu-top:hover .wp-menu-arrow {
    1635         display: none;
    1636 }
    1637 
     1298  display: none; }
    16381299#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; }
    16591308#adminmenu li.menu-top:hover .wp-menu-image img,
    16601309#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); }
    16651312#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; }
    16741319#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; }
    16811324#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; }
    16901332#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; }
    17001337.folded #adminmenu li.wp-has-current-submenu {
    1701         margin-bottom: 1px;
    1702 }
    1703 
     1338  margin-bottom: 1px; }
    17041339.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); }
    17071354
    17081355#adminmenu .awaiting-mod,
    17091356#adminmenu span.update-plugins,
    17101357#sidemenu li a span.update-plugins {
    1711         position: absolute;
    1712         font-family: sans-serif;
    1713         font-size: 9px;
    1714         line-height: 17px;
    1715         font-weight: bold;
    1716         margin-top: 1px;
    1717         margin-left: 7px;
    1718         -webkit-border-radius: 10px;
    1719         border-radius: 10px;
    1720         z-index: 26;
    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; }
    17221369
    17231370#adminmenu li .awaiting-mod span,
    17241371#adminmenu li span.update-plugins span,
    17251372#sidemenu li a span.update-plugins span {
    1726         display: block;
    1727         padding: 0 6px;
    1728 }
     1373  display: block;
     1374  padding: 0 6px; }
    17291375
    17301376#adminmenu li span.count-0,
    17311377#sidemenu li a .count-0 {
    1732         display: none;
    1733 }
     1378  display: none; }
    17341379
    17351380#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; }
    17411385
    17421386.folded #collapse-menu span {
    1743         display: none;
    1744 }
     1387  display: none; }
    17451388
    17461389#collapse-button,
    17471390#collapse-button div {
    1748         width: 15px;
    1749         height: 15px;
    1750 }
     1391  width: 15px;
     1392  height: 15px; }
    17511393
    17521394#collapse-button {
    1753         float: left;
    1754         margin: 8px 6px;
    1755         border-width: 1px;
    1756         border-style: solid;
    1757         -webkit-border-radius: 10px;
    1758         border-radius: 10px;
    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; }
    17601402
    17611403/* Auto-folding of the admin menu */
    17621404@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; } }
    18531476/* List table styles */
    18541477.post-com-count-wrapper {
    1855         min-width: 22px;
    1856         font-family: sans-serif;
    1857 }
     1478  min-width: 22px;
     1479  font-family: sans-serif; }
    18581480
    18591481.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; }
    18961510
    18971511.response-links {
    1898         float: left;
    1899 }
     1512  float: left; }
    19001513
    19011514#the-comment-list .attachment-80x60 {
    1902         padding: 4px 8px;
    1903 }
     1515  padding: 4px 8px; }
    19041516
    19051517th .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; }
    19111522
    19121523/*------------------------------------------------------------------------------
    19131524  8.0 - Layout Blocks
    19141525------------------------------------------------------------------------------*/
    1915 
    19161526html.wp-toolbar {
    1917         padding-top: 28px;
    1918         -webkit-box-sizing: border-box;
    1919         -moz-box-sizing: border-box;
    1920         box-sizing: border-box;
    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; }
    19221532
    19231533.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%; }
    19311538
    19321539.widefat th,
    19331540.widefat td {
    1934         overflow: hidden;
    1935 }
    1936 
     1541  overflow: hidden; }
    19371542.widefat th {
    1938         font-weight: normal;
    1939 }
    1940 
     1543  font-weight: normal; }
    19411544.widefat td p {
    1942         margin: 2px 0 0.8em;
    1943 }
    1944 
     1545  margin: 2px 0 0.8em; }
    19451546.widefat .column-comment p {
    1946         margin: 0.6em 0;
    1947 }
     1547  margin: 0.6em 0; }
    19481548
    19491549/* Screens with postboxes */
    19501550.postbox-container {
    1951         float: left;
    1952 }
     1551  float: left; }
    19531552
    19541553#dashboard-widgets.columns-1 .postbox-container {
    1955         width: 100%;
    1956 }
    1957 
     1554  width: 100%; }
    19581555#dashboard-widgets.columns-2 .postbox-container {
    1959         width: 49.5%;
    1960 }
    1961 
     1556  width: 49.5%; }
    19621557#dashboard-widgets.columns-2 #postbox-container-2,
    19631558#dashboard-widgets.columns-2 #postbox-container-3,
    19641559#dashboard-widgets.columns-2 #postbox-container-4 {
    1965         float: right;
    1966         width: 50.5%;
    1967 }
    1968 
     1560  float: right;
     1561  width: 50.5%; }
    19691562#dashboard-widgets.columns-3 .postbox-container {
    1970         width: 33.5%;
    1971 }
    1972 
     1563  width: 33.5%; }
    19731564#dashboard-widgets.columns-3 #postbox-container-1 {
    1974         width: 33%;
    1975 }
    1976 
     1565  width: 33%; }
    19771566#dashboard-widgets.columns-3 #postbox-container-3,
    19781567#dashboard-widgets.columns-3 #postbox-container-4 {
    1979         float: right;
    1980 }
    1981 
     1568  float: right; }
    19821569#dashboard-widgets.columns-4 .postbox-container {
    1983         width: 25%;
    1984 }
     1570  width: 25%; }
    19851571
    19861572.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; }
    19921577
    19931578.metabox-holder .postbox-container .empty-container {
    1994         border: 3px dashed #CCCCCC;
    1995         height: 250px;
    1996 }
     1579  border: 3px dashed #ccc;
     1580  height: 250px; }
    19971581
    19981582.metabox-holder.columns-1 .postbox-container .empty-container,
    19991583.columns-2 #postbox-container-3 .empty-container,
    20001584.columns-2 #postbox-container-4 .empty-container,
    20011585.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; }
    20061589
    20071590#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; }
    20141598
    20151599#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; }
    20271602
    20281603#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; }
    20331607
    20341608#post-body.columns-2 #side-sortables {
    2035         min-height: 250px;
    2036 }
     1609  min-height: 250px; }
    20371610
    20381611/* one column on the dash */
    20391612@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%; }
    20501615
     1616  #wpbody-content .metabox-holder .postbox-container .empty-container {
     1617    border: 0 none;
     1618    height: 0;
     1619    min-height: 0; } }
    20511620/* two columns on the dash, but keep the setting if one is selected */
    20521621@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; } }
    20931653/* one column on the post write/edit screen */
    20941654@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; } }
    21221675.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; }
    21281682
    21291683.js .postbox .hndle {
    2130         cursor: move;
    2131 }
     1684  cursor: move; }
    21321685
    21331686.postbox.closed .hndle {
    2134         -webkit-border-radius: 3px;
    2135         border-radius: 3px;
    2136 }
     1687  border-radius: 3px;
     1688  -moz-border-radius: 3px;
     1689  -webkit-border-radius: 3px; }
    21371690
    21381691.hndle a {
    2139         font-size: 11px;
    2140         font-weight: normal;
    2141 }
     1692  font-size: 11px;
     1693  font-weight: normal; }
    21421694
    21431695.postbox .handlediv {
    2144         float: right;
    2145         width: 27px;
    2146         height: 30px;
    2147 }
     1696  float: right;
     1697  width: 27px;
     1698  height: 30px; }
    21481699
    21491700.js .postbox .handlediv {
    2150         cursor: pointer;
    2151 }
     1701  cursor: pointer; }
    21521702
    21531703.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; }
    21581707
    21591708.widget,
    21601709.postbox,
    21611710.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; }
    21681716
    21691717.widget .widget-top,
    21701718.postbox h3,
    21711719.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; }
    21791726
    21801727.js .widget .widget-top,
    21811728.js .postbox h3 {
    2182         cursor: move;
    2183 }
     1729  cursor: move; }
    21841730
    21851731.postbox .inside,
    21861732.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; }
    21901735
    21911736.postbox .inside {
    2192         margin: 10px 0;
    2193         position: relative;
    2194 }
     1737  margin: 10px 0;
     1738  position: relative; }
    21951739
    21961740.postbox.closed h3 {
    2197         border: none;
    2198         -webkit-box-shadow: none;
    2199         box-shadow: none;
    2200 }
     1741  border: none;
     1742  -moz-box-shadow: none;
     1743  -webkit-box-shadow: none;
     1744  box-shadow: none; }
    22011745
    22021746.postbox table.form-table {
    2203         margin-bottom: 0;
    2204 }
     1747  margin-bottom: 0; }
    22051748
    22061749.temp-border {
    2207         border: 1px dotted #ccc;
    2208 }
     1750  border: 1px dotted #ccc; }
    22091751
    22101752.columns-prefs label {
    2211         padding: 0 5px;
    2212 }
    2213 
     1753  padding: 0 5px; }
    22141754
    22151755/*------------------------------------------------------------------------------
    22161756  9.0 - Dashboard
    22171757------------------------------------------------------------------------------*/
    2218 
    22191758#dashboard-widgets-wrap {
    2220         margin: 0 -8px;
    2221 }
     1759  margin: 0 -8px; }
    22221760
    22231761#wpbody-content .metabox-holder {
    2224         padding-top: 10px;
    2225 }
     1762  padding-top: 10px; }
    22261763
    22271764#dashboard-widgets .meta-box-sortables {
    2228         margin: 0 8px;
    2229 }
     1765  margin: 0 8px; }
    22301766
    22311767#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; }
    22601773
    22611774/* Welcome Panel */
    22621775.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; }
    23171856
    23181857.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; }
    23221862
    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; }
    23381881
    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; }
    23421910
    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; }
    23461974
    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; }
    23541987
    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; }
    23582033
    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; }
    23622038
    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; }
    23662047
    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; }
    23702053
    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; }
    23742083
    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; }
    23792103
    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'; }
    23832123
    2384 .welcome-panel .welcome-panel-column ul {
    2385         margin: 0.8em 1em 1em 0;
    2386 }
     2124a.rsswidget {
     2125  font-size: 13px;
     2126  line-height: 1.7em; }
    23872127
    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; }
    23922145
    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; }
    24142188
    24152189/*------------------------------------------------------------------------------
    24162190  10.0 - List Posts (/Pages/etc)
    24172191------------------------------------------------------------------------------*/
    2418 
    24192192table.fixed {
    2420         table-layout: fixed;
    2421 }
     2193  table-layout: fixed; }
    24222194
    24232195.fixed .column-rating,
    24242196.fixed .column-visible {
    2425         width: 8%;
    2426 }
    2427 
     2197  width: 8%; }
    24282198.fixed .column-posts,
    24292199.fixed .column-date,
    24302200.fixed .column-parent,
    24312201.fixed .column-links,
    24322202.fixed .column-author,
    24332203.fixed .column-format {
    2434         width: 10%;
    2435 }
    2436 
     2204  width: 10%; }
    24372205.fixed .column-response,
    24382206.fixed .column-categories,
    24392207.fixed .column-tags,
    24402208.fixed .column-rel,
    24412209.fixed .column-role {
    2442         width: 15%;
    2443 }
    2444 
     2210  width: 15%; }
    24452211.fixed .column-slug {
    2446         width: 25%;
    2447 }
    2448 
     2212  width: 25%; }
    24492213.fixed .column-locations {
    2450         width: 35%;
    2451 }
    2452 
     2214  width: 35%; }
    24532215.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; }
    24672223.fixed .column-icon {
    2468         width: 80px;
    2469 }
    2470 
     2224  width: 80px; }
    24712225#comments-form .fixed .column-author {
    2472         width: 20%;
    2473 }
     2226  width: 20%; }
    24742227
    24752228#commentsdiv.postbox .inside {
    2476         margin: 0;
    2477         padding: 0;
    2478 }
    2479 
     2229  margin: 0;
     2230  padding: 0; }
    24802231#commentsdiv .inside .row-actions {
    2481         line-height:18px;
    2482 }
    2483 
     2232  line-height: 18px; }
    24842233#commentsdiv .inside .column-author {
    2485         width: 25%;
    2486 }
    2487 
     2234  width: 25%; }
    24882235#commentsdiv .column-comment p {
    2489         margin: 0.6em 0;
    2490         padding: 0;
    2491 }
    2492 
     2236  margin: 0.6em 0;
     2237  padding: 0; }
    24932238#commentsdiv #replyrow td {
    2494         padding: 0;
    2495 }
    2496 
     2239  padding: 0; }
    24972240#commentsdiv p {
    2498         padding: 8px 10px;
    2499         margin: 0;
    2500 }
    2501 
     2241  padding: 8px 10px;
     2242  margin: 0; }
    25022243#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; }
    25072246#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; }
    25212254#commentsdiv .spinner {
    2522         padding-left: 5px;
    2523 }
     2255  padding-left: 5px; }
    25242256
    25252257.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; }
    25342265
    25352266tr.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; }
    25412271
    25422272tr.wp-locked .check-column label,
    25432273tr.wp-locked .check-column input[type="checkbox"],
    25442274tr.wp-locked .row-actions .inline,
    25452275tr.wp-locked .row-actions .trash {
    2546         display: none;
    2547 }
     2276  display: none; }
    25482277
    25492278tr .locked-info {
    2550         height: 0;
    2551         opacity: 0;
    2552 }
     2279  height: 0;
     2280  opacity: 0; }
    25532281
    25542282tr.wp-locked .locked-info {
    2555         height: auto;
    2556         opacity: 1;
    2557 }
     2283  height: auto;
     2284  opacity: 1; }
    25582285
    25592286tr.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; }
    25662292
    25672293.fixed .column-comments .sorting-indicator {
    2568         margin-top: 3px;
    2569 }
     2294  margin-top: 3px; }
    25702295
    25712296#menu-locations-wrap .widefat {
    2572         width: 60%;
    2573 }
     2297  width: 60%; }
    25742298
    25752299.widefat th.sortable,
    25762300.widefat th.sorted {
    2577         padding: 0;
    2578 }
     2301  padding: 0; }
    25792302
    25802303th.sortable a,
    25812304th.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; }
    25862308
    25872309.fixed .column-comments.sortable a,
    25882310.fixed .column-comments.sorted a {
    2589         padding: 8px 0;
    2590 }
     2311  padding: 8px 0; }
    25912312
    25922313th.sortable a span,
    25932314th.sorted a span {
    2594         float: left;
    2595         cursor: pointer;
    2596 }
     2315  float: left;
     2316  cursor: pointer; }
    25972317
    25982318th.sorted.asc .sorting-indicator,
    25992319th.desc:hover span.sorting-indicator {
    2600         display: block;
    2601         background-position: 0 0;
    2602 }
     2320  display: block;
     2321  background-position: 0 0; }
    26032322
    26042323th.sorted.desc .sorting-indicator,
    26052324th.asc:hover span.sorting-indicator {
    2606         display: block;
    2607         background-position: -7px 0;
    2608 }
     2325  display: block;
     2326  background-position: -7px 0; }
    26092327
    26102328/* Bulk Actions */
    26112329.tablenav-pages a {
    2612         border-bottom-style: solid;
    2613         border-bottom-width: 2px;
    2614         font-weight: bold;
    2615         margin-right: 1px;
    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
    26182336.tablenav-pages .current-page {
    2619         text-align: center;
    2620 }
    2621 .tablenav-pages .next-page {
    2622         margin-left: 2px;
    2623 }
     2337  text-align: center; }
    26242338
    2625 .tablenav a.button-secondary {
    2626         display: block;
    2627         margin: 3px 8px 0 0;
    2628 }
     2339.tablenav-pages .next-page {
     2340  margin-left: 2px; }
    26292341
    26302342.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; }
    26542374
    26552375.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; }
    26802379
    26812380.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; }
    26892385
    26902386.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; }
    26942392
    2695 .filter .subsubsub {
    2696         margin-left: -10px;
    2697         margin-top: 13px;
    2698 }
    26992393.screen-per-page {
    2700         width: 4em;
    2701 }
     2394  width: 4em; }
    27022395
    27032396#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; }
    27082400
    27092401#posts-filter fieldset legend {
    2710         padding: 0 0 .2em 1px;
    2711 }
    2712 
     2402  padding: 0 0 .2em 1px; }
    27132403
    27142404/*------------------------------------------------------------------------------
    27152405  10.1 - Inline Editing
    27162406------------------------------------------------------------------------------*/
    2717 
    27182407/*
    27192408.quick-edit* is for Quick Edit
    27202409.bulk-edit* is for Bulk Edit
    27212410.inline-edit* is for everything
    27222411*/
    2723 
    27242412/*      Layout */
    2725 
    27262413#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%; }
    27442419#wpbody-content .quick-edit-row-post .inline-edit-col-left {
    2745         width: 40%;
    2746 }
    2747 
     2420  width: 40%; }
    27482421#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; }
    27562426#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%; }
    27602430#wpbody-content .quick-edit-row-page .inline-edit-col-right,
    27612431#wpbody-content .bulk-edit-row-post .inline-edit-col-right {
    2762         width: 49%;
    2763 }
    2764 
     2432  width: 49%; }
    27652433#wpbody-content .bulk-edit-row .inline-edit-col-left {
    2766         width: 30%;
    2767 }
    2768 
     2434  width: 30%; }
    27692435#wpbody-content .bulk-edit-row-page .inline-edit-col-right {
    2770         width: 69%;
    2771 }
    2772 
     2436  width: 69%; }
    27732437#wpbody-content .bulk-edit-row .inline-edit-col-bottom {
    2774         float: right;
    2775         width: 69%;
    2776 }
    2777 
     2438  float: right;
     2439  width: 69%; }
    27782440#wpbody-content .inline-edit-row-page .inline-edit-col-right {
    2779         margin-top: 27px;
    2780 }
     2441  margin-top: 27px; }
    27812442
    2782 .inline-edit-row fieldset .inline-edit-group {
    2783         clear: both;
    2784 }
     2443tr.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; }
    27852530
    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; }
    27932534
    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%; }
    27992537
    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; }
    28052540
    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; }
    28182543
    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; }
    28242548
    2825 .inline-edit-row fieldset label.inline-edit-tags {
    2826         margin-top: 0;
    2827 }
     2549ul.cat-checklist {
     2550  height: 12em;
     2551  border-style: solid;
     2552  border-width: 1px;
     2553  overflow-y: scroll;
     2554  padding: 0 5px;
     2555  margin: 0; }
    28282556
    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; }
    28332565
    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; }
    28392568
    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; }
    28442583
    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; }
    28492589
    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; }
    28532594
    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; }
    28572599
    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; }
    28622603
    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; }
    28662619
    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; }
    30342623
    30352624#titlediv #title-prompt-text,
    30362625#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; }
    30422630
    30432631#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; }
    30482635
    30492636#wp-fullscreen-title-prompt-text {
    3050         padding: 11px;
    3051 }
     2637  padding: 11px; }
    30522638
    30532639#poststuff .inside-submitbox,
    30542640#side-sortables .inside-submitbox {
    3055         margin: 0 3px;
    3056         font-size: 11px;
    3057 }
     2641  margin: 0 3px;
     2642  font-size: 11px; }
    30582643
    30592644input#link_description,
    30602645input#link_url {
    3061         width: 98%;
    3062 }
     2646  width: 98%; }
    30632647
    30642648#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; }
    30712654
    30722655#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; }
    30832664
    30842665#editable-post-name-full {
    3085         display: none;
    3086 }
     2666  display: none; }
    30872667
    30882668#editable-post-name input {
    3089         width: 16em;
    3090 }
     2669  width: 16em; }
    30912670
    30922671.postarea h3 label {
    3093         float: left;
    3094 }
     2672  float: left; }
    30952673
    30962674.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; }
    31022678.submitbox .submitdelete {
    3103         text-decoration: none;
    3104         padding: 1px 2px;
    3105 }
    3106 
     2679  text-decoration: none;
     2680  padding: 1px 2px; }
    31072681.submitbox .submitdelete,
    31082682.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; }
    31132685.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; }
    31182689
    31192690.inside-submitbox #post_status {
    3120         margin: 2px 0 2px -2px;
    3121 }
     2691  margin: 2px 0 2px -2px; }
    31222692
    31232693#post-status-select {
    3124         line-height: 2.5em;
    3125         margin-top: 3px;
    3126 }
     2694  line-height: 2.5em;
     2695  margin-top: 3px; }
    31272696
    31282697/* Post Screen */
    31292698#post-body #normal-sortables {
    3130         min-height: 50px;
    3131 }
     2699  min-height: 50px; }
    31322700
    31332701.postbox {
    3134         position: relative;
    3135         min-width: 255px;
    3136 }
     2702  position: relative;
     2703  min-width: 255px; }
    31372704
    31382705#trackback_url {
    3139         width: 99%;
    3140 }
     2706  width: 99%; }
    31412707
    31422708#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; }
    31492714
    31502715.category-add input[type="text"],
    31512716.category-add select {
    3152         width: 100%;
    3153         max-width: 260px;
    3154 }
     2717  width: 100%;
     2718  max-width: 260px; }
    31552719
    31562720.press-this #side-sortables .category-tabs li,
    31572721ul.category-tabs li,
    31582722#side-sortables .add-menu-item-tabs li,
    31592723.wp-tab-bar li {
    3160         display: inline;
    3161         line-height: 1.35em;
    3162 }
     2724  display: inline;
     2725  line-height: 1.35em; }
    31632726
    31642727.no-js .category-tabs li.hide-if-no-js {
    3165         display: none;
    3166 }
     2728  display: none; }
    31672729
    31682730.category-tabs a,
    31692731#side-sortables .add-menu-item-tabs a,
    31702732.wp-tab-bar a {
    3171         text-decoration: none;
    3172 }
     2733  text-decoration: none; }
    31732734
    31742735.category-tabs {
    3175         margin: 8px 0 3px;
    3176 }
     2736  margin: 8px 0 3px; }
    31772737
    31782738#category-adder h4 {
    3179         margin: 10px 0;
    3180 }
     2739  margin: 10px 0; }
    31812740
    31822741#side-sortables .add-menu-item-tabs,
    31832742.wp-tab-bar {
    3184         margin-bottom: 3px;
    3185 }
     2743  margin-bottom: 3px; }
    31862744
    31872745#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; }
    31922749
    31932750#side-sortables .submitbox .submit input,
    31942751#side-sortables .submitbox .submit .preview,
    31952752#side-sortables .submitbox .submit a.preview:hover {
    3196         border: 0 none;
    3197 }
     2753  border: 0 none; }
    31982754
    31992755#side-sortables .inside-submitbox .insidebox,
    32002756.stuffbox .insidebox {
    3201         margin: 11px 0;
    3202 }
     2757  margin: 11px 0; }
    32032758
    32042759ul.category-tabs,
    32052760ul.add-menu-item-tabs,
    32062761ul.wp-tab-bar {
    3207         margin-top: 12px;
    3208 }
     2762  margin-top: 12px; }
    32092763
    32102764ul.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; }
    32152768
    32162769ul.add-menu-item-tabs li.tabs,
    32172770.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; }
    32212773
    32222774#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; }
    32272778
    32282779ul.category-tabs li,
    32292780ul.add-menu-item-tabs li,
    32302781ul.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; }
    32372789
    32382790/* positioning etc. */
    32392791form#tags-filter {
    3240         position: relative;
    3241 }
     2792  position: relative; }
    32422793
    32432794/* Edit posts */
    32442795td.post-title strong,
    32452796td.plugin-title strong {
    3246         display: block;
    3247         margin-bottom: .2em;
    3248 }
     2797  display: block;
     2798  margin-bottom: .2em; }
    32492799
    32502800td.post-title p,
    32512801td.plugin-title p {
    3252         margin: 6px 0;
    3253 }
     2802  margin: 6px 0; }
    32542803
    32552804/* Global classes */
    32562805.wp-hidden-children .wp-hidden-child,
    32572806.ui-tabs-hide {
    3258         display: none;
    3259 }
     2807  display: none; }
    32602808
    32612809.commentlist .avatar {
    3262         vertical-align: text-top;
    3263 }
     2810  vertical-align: text-top; }
    32642811
    32652812#post-body .tagsdiv #newtag {
    3266         margin-right: 5px;
    3267         width: 16em;
    3268 }
     2813  margin-right: 5px;
     2814  width: 16em; }
    32692815
    32702816#side-sortables input#post_password {
    3271         width: 94%
    3272 }
     2817  width: 94%; }
    32732818
    32742819#side-sortables .tagsdiv #newtag {
    3275         width: 68%;
    3276 }
     2820  width: 68%; }
    32772821
    32782822#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; }
    32872832
    32882833#post-status-info td {
    3289         font-size: 12px;
    3290 }
     2834  font-size: 12px; }
    32912835
    32922836.autosave-info {
    3293         padding: 2px 15px;
    3294         text-align: right;
    3295 }
     2837  padding: 2px 15px;
     2838  text-align: right; }
    32962839
    32972840#editorcontent #post-status-info {
    3298         border: none;
    3299 }
     2841  border: none; }
    33002842
    33012843#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; }
    33102851
    33112852#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize {
    3312         top: 20px;
    3313 }
     2853  top: 20px; }
    33142854
    33152855#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; }
    33312866
    33322867#wp-word-count {
    3333         display: block;
    3334         padding: 2px 10px;
    3335 }
     2868  display: block;
     2869  padding: 2px 10px; }
    33362870
    33372871#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; }
    33432876
    33442877#aa, #jj, #hh, #mn {
    3345         padding: 1px;
    3346         font-size: 12px;
    3347 }
     2878  padding: 1px;
     2879  font-size: 12px; }
    33482880
    33492881#jj, #hh, #mn {
    3350         width: 2em;
    3351 }
     2882  width: 2em; }
    33522883
    33532884#aa {
    3354         width: 3.4em;
    3355 }
     2885  width: 3.4em; }
    33562886
    33572887.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; }
    33622891
    33632892#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; }
    33762900
    33772901.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; }
    33872910
    33882911.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; }
    33992921
    34002922#post-lock-dialog .post-locked-message,
    34012923#post-lock-dialog .post-taken-over {
    3402         margin: 25px;
    3403 }
    3404 
     2924  margin: 25px; }
    34052925#post-lock-dialog .post-locked-message a.button {
    3406         margin-right: 10px;
    3407 }
    3408 
     2926  margin-right: 10px; }
    34092927#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; }
    34142930#post-lock-dialog .wp-tab-first {
    3415         outline: 0;
    3416 }
    3417 
     2931  outline: 0; }
    34182932#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; }
    34272937
    34282938/*------------------------------------------------------------------------------
    34292939  11.1 - Custom Fields
    34302940------------------------------------------------------------------------------*/
    3431 
    34322941#postcustomstuff thead th {
    3433         padding: 5px 8px 8px;
    3434 }
    3435 
     2942  padding: 5px 8px 8px; }
    34362943#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; }
    34422947#side-sortables #postcustom #postcustomstuff .submit {
    3443         margin: 0;
    3444         padding: 0;
    3445 }
    3446 
     2948  margin: 0;
     2949  padding: 0; }
    34472950#side-sortables #postcustom #postcustomstuff #the-list textarea {
    3448         height: 85px;
    3449 }
    3450 
     2951  height: 85px; }
    34512952#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; }
    34532955#side-sortables #postcustomstuff #newmetaleft a {
    3454         margin: 3px 3px 0;
    3455 }
    3456 
     2956  margin: 3px 3px 0; }
    34572957#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; }
    34652963#postcustomstuff tr {
    3466         vertical-align: top;
    3467 }
    3468 
     2964  vertical-align: top; }
    34692965#postcustomstuff table input,
    34702966#postcustomstuff table select,
    34712967#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; }
    34822972#postcustomstuff th.left,
    34832973#postcustomstuff td.left {
    3484         width: 38%;
    3485 }
    3486 
     2974  width: 38%; }
    34872975#postcustomstuff .submit input {
    3488         margin: 0;
    3489         width: auto;
    3490 }
    3491 
     2976  margin: 0;
     2977  width: auto; }
    34922978#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; }
    34982982.no-js #postcustomstuff #enternew {
    3499         display: none;
    3500 }
     2983  display: none; }
    35012984
    35022985#post-body-content .compat-attachment-fields {
    3503         margin-bottom: 20px;
    3504 }
     2986  margin-bottom: 20px; }
    35052987
    35062988.compat-attachment-fields th {
    3507         padding-top: 5px;
    3508         padding-right: 10px;
    3509 }
     2989  padding-top: 5px;
     2990  padding-right: 10px; }
    35102991
    35112992/*------------------------------------------------------------------------------
    35122993  11.2 - Post Revisions
    35132994------------------------------------------------------------------------------*/
    35142995.revisions-control-frame,
    35152996.revisions-diff-frame {
    3516         position: relative;
    3517 }
     2997  position: relative; }
    35182998
    35192999.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; }
    35363031
    35373032.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; }
    35613053
    35623054.comparing-two-revisions .revisions-controls {
    3563         height: 140px;
    3564 }
     3055  height: 140px; }
    35653056
    35663057.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; }
    35733063
    35743064.revisions.diff-error .diff-error {
    3575         display: block;
    3576 }
     3065  display: block; }
    35773066
    35783067.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 */ }
    35933081body.folded .revisions .loading-indicator {
    3594         margin-left: -32px;
    3595 }
    3596 
     3082  margin-left: -32px; }
    35973083.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; }
    36033087.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 */ }
    36083091.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; }
    36163097.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 */ }
    36213101.revisions.diff-error .diff {
    3622         visibility: hidden;
    3623 }
     3102  visibility: hidden; }
    36243103
    36253104.revisions-meta {
    3626         margin-top: 15px;
    3627 }
     3105  margin-top: 15px; }
    36283106
    36293107.revision-toggle-compare-mode {
    3630         position: absolute;
    3631         top: 0;
    3632         right: 0;
    3633 }
     3108  position: absolute;
     3109  top: 0;
     3110  right: 0; }
    36343111
    36353112.comparing-two-revisions .revisions-previous,
    36363113.comparing-two-revisions .revisions-next,
    36373114.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; }
    36523116
    36533117.comparing-two-revisions .diff-meta-to strong {
    3654         display: block;
    3655 }
     3118  display: block; }
    36563119
    36573120.revisions-previous,
    36583121.revisions-next {
    3659         position: relative;
    3660         z-index: 1;
    3661 }
     3122  position: relative;
     3123  z-index: 1; }
    36623124
    36633125.revisions-previous {
    3664         float: left;
    3665 }
     3126  float: left; }
    36663127
    36673128.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; }
    36763130
    36773131/* Revision meta box */
    36783132.post-revisions li img,
    36793133#revisions-meta-restored img {
    3680         vertical-align: middle;
    3681 }
     3134  vertical-align: middle; }
    36823135
    36833136table.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; }
    37203158
    37213159.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; }
    37283171
    37293172.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; }
    37363178
    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; }
    37433183
    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; }
    37483209
    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)"; }
    37523237
    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; }
    37593242
    3760 .diff-meta-from {
    3761         display: none;
    3762 }
     3243div.revisions-controls > .wp-slider > .ui-slider-handle {
     3244  margin-left: -10px; }
    37633245
    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 */
    38513247.wp-slider.ui-slider {
    3852         position: relative;
    3853         border-width: 1px;
    3854         border-style: solid;
    3855         border-radius: 3px;
    3856         text-align: left;
    3857         cursor: pointer;
    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; }
    38603256.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; }
    38973284.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; }
    39063291.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; }
    39283303
    39293304/*------------------------------------------------------------------------------
    39303305  11.3 - Featured Images
    39313306------------------------------------------------------------------------------*/
    3932 
    39333307#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; }
    39613324
    39623325/*------------------------------------------------------------------------------
    39633326  11.4 - Post formats
    39643327------------------------------------------------------------------------------*/
    3965 
    39663328a.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; }
    39763337
    39773338#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; }
    40263365
    40273366/*------------------------------------------------------------------------------
    40283367  12.0 - Categories
    40293368------------------------------------------------------------------------------*/
    4030 
    40313369.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; }
    40433376
    40443377#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; }
    40633393
    40643394.wp-tab-panel,
    40653395.categorydiv div.tabs-panel,
    40663396.customlinkdiv div.tabs-panel,
    40673397.posttypediv div.tabs-panel,
    40683398.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; }
    40763405
    40773406div.tabs-panel-active {
    4078         display:block;
    4079 }
     3407  display: block; }
    40803408
    40813409div.tabs-panel-inactive {
    4082         display:none;
    4083 }
     3410  display: none; }
    40843411
    40853412#front-page-warning,
    40863413#front-static-pages ul,
    ul.export-filters, 
    40903417.customlinkdiv ul.categorychecklist ul,
    40913418.posttypediv ul.categorychecklist ul,
    40923419.taxonomydiv ul.categorychecklist ul {
    4093         margin-left: 18px;
    4094 }
     3420  margin-left: 18px; }
    40953421
    40963422ul.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; }
    41023427
    41033428.categorydiv .tabs-panel,
    41043429.customlinkdiv .tabs-panel,
    41053430.posttypediv .tabs-panel,
    41063431.taxonomydiv .tabs-panel {
    4107         border-width: 3px;
    4108         border-style: solid;
    4109 }
     3432  border-width: 3px;
     3433  border-style: solid; }
    41103434
    41113435.form-wrap p,
    41123436.form-wrap label {
    4113         font-size: 11px;
    4114 }
    4115 
     3437  font-size: 11px; }
    41163438.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%; }
    41213447
    41223448.form-field input,
    41233449.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%; }
    41283453
    41293454p.description,
    41303455.form-wrap p {
    4131         margin: 2px 0 5px;
    4132 }
     3456  margin: 2px 0 5px; }
    41333457
    41343458p.help,
    41353459p.description,
    41363460span.description,
    41373461.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; }
    41513465
    41523466.col-wrap h3 {
    4153         margin: 12px 0;
    4154         font-size: 1.1em;
    4155 }
    4156 
     3467  margin: 12px 0;
     3468  font-size: 1.1em; }
    41573469.col-wrap p.submit {
    4158         margin-top: -10px;
    4159 }
    4160 
     3470  margin-top: -10px; }
    41613471
    41623472/*------------------------------------------------------------------------------
    41633473  13.0 - Tags
    41643474------------------------------------------------------------------------------*/
    4165 
    41663475#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; }
    41743478
    41753479.ajaxtag .newtag {
    4176         position: relative;
    4177 }
     3480  position: relative; }
    41783481
    41793482.tagsdiv .newtag {
    4180         width: 180px;
    4181 }
    4182 
     3483  width: 180px; }
    41833484.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; }
    41943494
    41953495p.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; }
    42093507
    42103508.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; }
    42193514
    42203515.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; }
    42363528
    42373529.ac_over {
    4238         cursor: pointer;
    4239 }
     3530  cursor: pointer; }
    42403531
    42413532.ac_match {
    4242         text-decoration: underline;
    4243 }
     3533  text-decoration: underline; }
    42443534
    42453535/* links tables */
    42463536table.links-table {
    4247         width: 100%;
    4248 }
     3537  width: 100%; }
    42493538
    42503539.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; }
    42593546.links-table th,
    42603547.links-table td {
    4261         padding: 5px 0;
    4262 }
    4263 
     3548  padding: 5px 0; }
    42643549.links-table td label {
    4265         margin-right: 8px;
    4266 }
    4267 
     3550  margin-right: 8px; }
    42683551.links-table td input[type="text"],
    42693552.links-table td textarea {
    4270         width: 100%;
    4271 }
    4272 
     3553  width: 100%; }
    42733554.links-table #link_rel {
    4274         max-width: 280px;
    4275 }
     3555  max-width: 280px; }
    42763556
    42773557/*------------------------------------------------------------------------------
    42783558  14.0 - Media Screen
    42793559------------------------------------------------------------------------------*/
    4280 
    42813560.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; }
    42903583.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; }
    43053585.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; }
    43143587.media-item thead.media-item-info td {
    4315         padding: 4px 10px 0;
    4316 }
    4317 
     3588  padding: 4px 10px 0; }
    43183589.media-item .media-item-info .A1B1 {
    4319         padding: 0 0 0 10px;
    4320 }
    4321 
     3590  padding: 0 0 0 10px; }
    43223591.media-item td.savesend {
    4323         padding-bottom: 15px;
    4324 }
    4325 
     3592  padding-bottom: 15px; }
    43263593.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); }
    43303659
    43313660#wpbody-content #async-upload-wrap a {
    4332         display: none;
    4333 }
     3661  display: none; }
    43343662
    43353663.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; }
    43653683
    43663684abbr.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; }
    43803687
    43813688.media-item .edit-attachment,
    43823689.describe-toggle-on,
    43833690.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; }
    43893695
    43903696.media-item .describe-toggle-off,
    43913697.media-item.open .describe-toggle-on {
    4392         display: none;
    4393 }
     3698  display: none; }
    43943699
    43953700.media-item.open .describe-toggle-off {
    4396         display: block;
    4397 }
     3701  display: block; }
    43983702
    43993703#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%; }
    44073710
    44083711#media-items {
    4409         width: 623px;
    4410 }
     3712  width: 623px; }
    44113713
    44123714.media-new-php #media-items {
    4413         margin: 1em 0;
    4414 }
     3715  margin: 1em 0; }
    44153716
    44163717#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; }
    44943719
    44953720.upload-php .fixed .column-parent {
    4496         width: 15%;
    4497 }
     3721  width: 15%; }
    44983722
    44993723.js .html-uploader #plupload-upload-ui {
    4500         display: none;
    4501 }
     3724  display: none; }
    45023725
    45033726.js .html-uploader #html-upload-ui {
    4504         display: block;
    4505 }
     3727  display: block; }
    45063728
    45073729.media-upload-form .media-item.error {
    4508         margin: 0;
    4509         padding: 0;
    4510 }
     3730  margin: 0;
     3731  padding: 0; }
    45113732
    45123733.media-upload-form .media-item.error p,
    45133734.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; }
    45183738
    45193739.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; }
    45243743
    45253744/*------------------------------------------------------------------------------
    45263745  14.1 - Media Library
    45273746------------------------------------------------------------------------------*/
    4528 
    45293747.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; }
    45373754
    45383755.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%; }
    45483764
    45493765.find-box-inside {
    4550         overflow: auto;
    4551         padding: 6px;
    4552         height: 100%;
    4553 }
     3766  overflow: auto;
     3767  padding: 6px;
     3768  height: 100%; }
    45543769
    45553770.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; }
    45673779
    45683780#find-posts-input {
    4569         float: left;
    4570         width: 140px;
    4571         height: 24px;
    4572 }
     3781  float: left;
     3782  width: 140px;
     3783  height: 24px; }
    45733784
    45743785#find-posts-search {
    4575         float: left;
    4576         margin: 1px 4px 0 3px;
    4577 }
     3786  float: left;
     3787  margin: 1px 4px 0 3px; }
    45783788
    45793789#find-posts-response {
    4580         margin: 8px 0;
    4581         padding: 0 1px 6px;
    4582 }
     3790  margin: 8px 0;
     3791  padding: 0 1px 6px; }
    45833792
    45843793#find-posts-response table {
    4585         width: 100%;
    4586 }
     3794  width: 100%; }
    45873795
    45883796#find-posts-response .found-radio {
    4589         padding: 3px 0 0 8px;
    4590         width: 15px;
    4591 }
     3797  padding: 3px 0 0 8px;
     3798  width: 15px; }
    45923799
    45933800.find-box-buttons {
    4594         padding: 8px;
    4595         overflow: hidden;
    4596 }
     3801  padding: 8px;
     3802  overflow: hidden; }
    45973803
    45983804.find-box #resize-se {
    4599         position: absolute;
    4600         right: 1px;
    4601         bottom: 1px;
    4602 }
     3805  position: absolute;
     3806  right: 1px;
     3807  bottom: 1px; }
    46033808
    46043809.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); }
    46123816
    46133817ul#dismissed-updates {
    4614         display: none;
    4615 }
     3818  display: none; }
    46163819
    46173820form.upgrade {
    4618         margin-top: 8px;
    4619 }
     3821  margin-top: 8px; }
    46203822
    46213823form.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; }
    46263827
    46273828#poststuff .inside .the-tagcloud {
    4628         margin: 5px 0 10px;
    4629         padding: 8px;
    4630         border-width: 1px;
    4631         border-style: solid;
    4632         line-height: 1.8em;
    4633         word-spacing: 3px;
    4634         -webkit-border-radius: 6px;
    4635         border-radius: 6px;
    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; }
    46373838
    46383839.drag-drop #drag-drop-area {
    4639         border: 4px dashed #DDDDDD;
    4640         height: 200px;
    4641 }
     3840  border: 4px dashed #DDDDDD;
     3841  height: 200px; }
    46423842
    46433843.drag-drop .drag-drop-inside {
    4644         margin: 70px auto 0;
    4645         width: 250px;
    4646 }
     3844  margin: 70px auto 0;
     3845  width: 250px; }
    46473846
    46483847.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; }
    46543852
    46553853.drag-drop .drag-drop-inside p {
    4656         text-align: center;
    4657 }
     3854  text-align: center; }
    46583855
    46593856.drag-drop-inside p.drag-drop-info {
    4660         font-size: 20px;
    4661 }
     3857  font-size: 20px; }
    46623858
    46633859.drag-drop .drag-drop-inside p,
    46643860.drag-drop-inside p.drag-drop-buttons {
    4665         display: block;
    4666 }
     3861  display: block; }
    46673862
    46683863/*
    46693864#drag-drop-area:-moz-drag-over {
    form.upgrade .hint { 
    46713866}
    46723867borger color while dragging a file over the uploader drop area */
    46733868.drag-drop.drag-over #drag-drop-area {
    4674         border-color: #83b4d8;
    4675 }
     3869  border-color: #83b4d8; }
    46763870
    46773871#plupload-upload-ui {
    4678         position: relative;
    4679 }
    4680 
     3872  position: relative; }
    46813873
    46823874/*------------------------------------------------------------------------------
    46833875  14.2 - Image Editor
    46843876------------------------------------------------------------------------------*/
    4685 
    46863877.describe .image-editor {
    4687         vertical-align: top;
    4688 }
     3878  vertical-align: top; }
    46893879
    46903880.imgedit-wrap {
    4691         position: relative;
    4692 }
     3881  position: relative; }
    46933882
    46943883.imgedit-settings p {
    4695         margin: 8px 0;
    4696 }
     3884  margin: 8px 0; }
    46973885
    46983886.post-php .imgedit-wrap table {
    4699         width: 100%;
    4700 }
     3887  width: 100%; }
    47013888
    47023889.describe .imgedit-wrap table td,
    47033890.wp_attachment_holder .imgedit-wrap table td {
    4704         vertical-align: top;
    4705         padding-top: 0;
    4706 }
     3891  vertical-align: top;
     3892  padding-top: 0; }
    47073893
    47083894.describe .imgedit-wrap table td.imgedit-settings {
    4709         padding: 0 5px;
    4710 }
     3895  padding: 0 5px; }
    47113896
    47123897.wp_attachment_holder .imgedit-wrap table td.imgedit-settings {
    4713         width: 250px;
    4714 }
     3898  width: 250px; }
    47153899
    47163900td.imgedit-settings input {
    4717         margin-top: 0;
    4718         vertical-align: middle;
    4719 }
     3901  margin-top: 0;
     3902  vertical-align: middle; }
    47203903
    47213904.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; }
    47323914
    47333915.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; }
    47443925
    47453926.no-float {
    4746         float: none;
    4747 }
     3927  float: none; }
    47483928
    47493929.media-disabled,
    4750 .imgedit-settings .disabled  {
    4751         color: grey;
    4752 }
     3930.imgedit-settings .disabled {
     3931  color: grey; }
    47533932
    47543933.wp_attachment_image,
    47553934.A1B1 {
    4756         overflow: hidden;
    4757 }
     3935  overflow: hidden; }
    47583936
    47593937.wp_attachment_image .button,
    47603938.A1B1 .button {
    4761         float: left;
    4762 }
     3939  float: left; }
    47633940
    47643941.no-js .wp_attachment_image .button {
    4765         display: none;
    4766 }
     3942  display: none; }
    47673943
    47683944.wp_attachment_image .spinner,
    47693945.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; }
    47743949
    47753950.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; }
    47853957
    47863958.imgedit-crop-wrap {
    4787         position: relative;
    4788 }
     3959  position: relative; }
    47893960
    47903961.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; }
    48023968
    48033969.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; }
    48153976
    48163977.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; }
    48283984
    48293985.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; }
    48413992
    48423993.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; }
    48544000
    48554001.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; }
    48674008
    48684009.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; }
    48804016
    48814017.imgedit-applyto img {
    4882         margin: 0 8px 0 0;
    4883 }
     4018  margin: 0 8px 0 0; }
    48844019
    48854020.imgedit-group-top {
    4886         margin: 5px 0;
    4887 }
     4021  margin: 5px 0; }
    48884022
    48894023.imgedit-applyto .imgedit-label {
    4890         padding: 2px 0 0;
    4891         display: block;
    4892 }
     4024  padding: 2px 0 0;
     4025  display: block; }
    48934026
    48944027.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; }
    48994031
    49004032a.imgedit-help-toggle {
    4901         text-decoration: none;
    4902 }
     4033  text-decoration: none; }
    49034034
    49044035.form-table td.imgedit-response {
    4905         padding: 0;
    4906 }
     4036  padding: 0; }
    49074037
    49084038.imgedit-submit {
    4909         margin: 8px 0;
    4910 }
     4039  margin: 8px 0; }
    49114040
    49124041.imgedit-submit-btn {
    4913         margin-left: 20px;
    4914 }
     4042  margin-left: 20px; }
    49154043
    49164044.imgedit-wrap .nowrap {
    4917         white-space: nowrap;
    4918 }
     4045  white-space: nowrap; }
    49194046
    49204047span.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; }
    49274053
    49284054.imgedit-group {
    4929         border-width: 1px;
    4930         border-style: solid;
    4931         -webkit-border-radius: 3px;
    4932         border-radius: 3px;
    4933         margin-bottom: 8px;
    4934         padding: 2px 10px;
    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; }
    49364062
    49374063/*------------------------------------------------------------------------------
    49384064  15.0 - Comments Screen
    49394065------------------------------------------------------------------------------*/
    4940 
    49414066.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; }
    49554104
    49564105.form-table th,
    49574106.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; }
    50024109
    50034110.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; }
    50154118.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; }
    50194123
    50204124/* reply to comments */
    50214125#replyrow input {
    5022         border-width: 1px;
    5023         border-style: solid;
    5024 }
    5025 
     4126  border-width: 1px;
     4127  border-style: solid; }
    50264128#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; }
    50294135
    50304136#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; }
    50584150
    50594151#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; }
    50704158#edithead label {
    5071         padding: 2px 0;
    5072 }
     4159  padding: 2px 0; }
    50734160
    50744161#replycontainer {
    5075         padding: 5px;
    5076 }
     4162  padding: 5px; }
    50774163
    50784164#replycontent {
    5079         height: 120px;
    5080         -webkit-box-shadow: none;
    5081         box-shadow: none;
    5082 }
     4165  height: 120px;
     4166  -moz-box-shadow: none;
     4167  -webkit-box-shadow: none;
     4168  box-shadow: none; }
    50834169
    50844170.comment-php .wp-editor-area {
    5085         height: 200px;
    5086 }
     4171  height: 200px; }
    50874172
    50884173.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; }
    50984180
    50994181.trash-undo-inside,
    51004182.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; }
    51124191
    51134192.stuffbox .editcomment {
    5114         clear: none;
    5115 }
     4193  clear: none; }
    51164194
    51174195#comment-status-radio p {
    5118         margin: 3px 0 5px;
    5119 }
    5120 
     4196  margin: 3px 0 5px; }
    51214197#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; }
    51264200#comment-status-radio label {
    5127         padding: 5px 0;
    5128 }
    5129 
    5130 .commentlist .avatar {
    5131         vertical-align: text-top;
    5132 }
    5133 
     4201  padding: 5px 0; }
    51344202
    51354203/*------------------------------------------------------------------------------
    51364204  16.0 - Themes
    51374205------------------------------------------------------------------------------*/
    5138 
    51394206.theme-install-php .tablenav {
    5140         height: auto;
    5141 }
    5142 
     4207  height: auto; }
    51434208.theme-install-php .spinner {
    5144         margin-top: 9px;
    5145 }
     4209  margin-top: 9px; }
    51464210
    51474211h3.available-themes {
    5148         margin: 0.3em 0 1em;
    5149         float: left;
    5150 }
     4212  margin: 0.3em 0 1em;
     4213  float: left; }
    51514214
    51524215.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; }
    51914241
    51924242#current-theme .theme-info li,
    51934243.theme-options li,
    51944244.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; }
    52004255
    52014256.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; }
    52194262.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; }
    52364273.available-theme .action-links p {
    5237         float: left;
    5238 }
     4274  float: left; }
    52394275
    52404276#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; }
    52934311
    52944312.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; }
    53184329
    53194330/* Allow for three-up in small windows when sidebar is collapsed */
    53204331@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; } }
    53434342/* Adjust three-up display in smaller windows when sidebar is collapsed */
    53444343@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; } }
    53674354/* Allow for three-up on 1024px wide screens, e.g. tablets */
    53684355@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; } }
    53924370#post-body ul.add-menu-item-tabs li.tabs a,
    53934371#TB_window #TB_title a.tb-theme-preview-link,
    53944372#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; }
    53984375
    53994376#TB_window #TB_title {
    5400         background-color: #222;
    5401         color: #cfcfcf;
    5402 }
     4377  background-color: #222;
     4378  color: #cfcfcf; }
    54034379
    54044380#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; }
    54104385
    54114386.theme-install-php h4 {
    5412         margin: 2.5em 0 8px;
    5413 }
    5414 
     4387  margin: 2.5em 0 8px; }
    54154388
    54164389/*------------------------------------------------------------------------------
    54174390  16.1 - Custom Header Screen
    54184391------------------------------------------------------------------------------*/
    5419 
    54204392.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%; }
    54264396.appearance_page_custom-header #upload-form p label {
    5427         font-size: 12px;
    5428 }
    5429 
     4397  font-size: 12px; }
    54304398.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; }
    54354401.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; }
    54414405.appearance_page_custom-header .available-headers label input,
    54424406.appearance_page_custom-header .random-header label input {
    5443         margin-right: 10px;
    5444 }
    5445 
     4407  margin-right: 10px; }
    54464408.appearance_page_custom-header .available-headers label img {
    5447         vertical-align: middle;
    5448 }
    5449 
     4409  vertical-align: middle; }
    54504410
    54514411/*------------------------------------------------------------------------------
    54524412  16.2 - Custom Background Screen
    54534413------------------------------------------------------------------------------*/
    5454 
    54554414div#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; }
    54654420
    54664421/*------------------------------------------------------------------------------
    54674422  16.3 - Tabbed Admin Screen Interface (Experimental)
    54684423------------------------------------------------------------------------------*/
    5469 
    54704424.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; }
    54864446
    54874447.nav-tab-active {
    5488         border-width: 1px;
    5489         color: #464646;
    5490 }
     4448  border-width: 1px;
     4449  color: #464646; }
    54914450
    54924451h2.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; }
    55064455
    55074456/*------------------------------------------------------------------------------
    55084457  17.0 - Plugins
    55094458------------------------------------------------------------------------------*/
    5510 
    55114459#dashboard_right_now .versions .b,
    55124460#post-status-display,
    55134461#post-visibility-display,
    h2 .nav-tab { 
    55214469#ed_reply_toolbar #ed_reply_strong,
    55224470.item-controls .item-order a,
    55234471.feature-filter .feature-name {
    5524         font-weight: bold;
    5525 }
     4472  font-weight: bold; }
    55264473
    55274474.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; }
    55364479.plugins td.desc {
    5537         line-height: 1.5em;
    5538 }
    5539 
     4480  line-height: 1.5em; }
    55404481.plugins .desc ul,
    55414482.plugins .desc ol {
    5542         margin: 0 0 0 2em;
    5543 }
    5544 
     4483  margin: 0 0 0 2em; }
    55454484.plugins .desc ul {
    5546         list-style-type: disc;
    5547 }
    5548 
     4485  list-style-type: disc; }
    55494486.plugins .row-actions-visible {
    5550         padding: 0;
    5551 }
    5552 
     4487  padding: 0; }
    55534488.plugins tbody th.check-column {
    5554         padding: 7px 0;
    5555 }
    5556 
     4489  padding: 7px 0; }
    55574490.plugins .inactive td,
    55584491.plugins .inactive th,
    55594492.plugins .active td,
    55604493.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; }
    55664497.plugins .update th,
    55674498.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; }
    55804503.plugins .second,
    55814504.plugins .row-actions-visible {
    5582         padding: 0 0 5px;
    5583 }
    5584 
     4505  padding: 0 0 5px; }
    55854506.plugins .update .second,
    55864507.plugins .update .row-actions-visible {
    5587         padding-bottom: 0;
    5588 }
     4508  padding-bottom: 0; }
     4509
     4510.plugin-update-tr td {
     4511  border-top: 0; }
    55894512
    55904513.plugins-php .widefat tfoot th,
    55914514.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; }
    55954517
    55964518.plugin-update-tr .update-message {
    5597         margin: 5px;
    5598         padding: 3px 5px;
    5599 }
     4519  margin: 5px;
     4520  padding: 3px 5px; }
    56004521
    56014522.plugin-install-php h4 {
    5602         margin: 2.5em 0 8px;
    5603 }
    5604 
     4523  margin: 2.5em 0 8px; }
    56054524
    56064525/*------------------------------------------------------------------------------
    56074526  18.0 - Users
    56084527------------------------------------------------------------------------------*/
    5609 
    56104528#profile-page .form-table textarea {
    5611         width: 500px;
    5612         margin-bottom: 6px;
    5613 }
    5614 
     4529  width: 500px;
     4530  margin-bottom: 6px; }
    56154531#profile-page .form-table #rich_editing {
    5616         margin-right: 5px
    5617 }
     4532  margin-right: 5px; }
    56184533
    56194534#your-profile legend {
    5620         font-size: 22px;
    5621 }
    5622 
     4535  font-size: 22px; }
    56234536#your-profile #rich_editing {
    5624         border: none;
    5625 }
     4537  border: none; }
    56264538
    56274539#display_name {
    5628         width: 15em;
    5629 }
     4540  width: 15em; }
    56304541
    56314542#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; }
    57034544
    57044545/*------------------------------------------------------------------------------
    57054546  20.0 - Settings
    57064547------------------------------------------------------------------------------*/
    5707 
    57084548#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; }
    57134552
    57144553.defaultavatarpicker .avatar {
    5715         margin: 2px 0;
    5716         vertical-align: middle;
    5717 }
     4554  margin: 2px 0;
     4555  vertical-align: middle; }
    57184556
    57194557.options-general-php .spinner {
    5720         float: none;
    5721         margin: -3px 3px;
    5722 }
     4558  float: none;
     4559  margin: -3px 3px; }
    57234560
    57244561/*------------------------------------------------------------------------------
    57254562  21.0 - Admin Footer
    57264563------------------------------------------------------------------------------*/
    5727 
    57284564#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; }
    57514580
    57524581/*------------------------------------------------------------------------------
    57534582  22.0 - About Pages
    57544583------------------------------------------------------------------------------*/
     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; }
    57554595
    57564596.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; }
    57604774
    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; }
    57634781
    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; }
    57684789
    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------------------------------------------------------------------------------*/
     4813body.full-overlay-active {
     4814  overflow: hidden; }
    57704815
    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; }
    57744870
    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; }
    57814927
    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; }
    57904931
    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%; }
    57944939
    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; }
    58004955
    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; }
    58064961
    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; }
    58104964
    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; }
    58144985
    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; }
    58184996
    5819 .about-wrap code {
    5820         font-size: 14px;
    5821 }
     4997#theme-installer {
     4998  display: none; }
     4999  #theme-installer.single-theme {
     5000    display: block; }
    58225001
    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; }
    58245022
    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; }
    58285033
    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%; }
    58325042
    5833 .about-wrap .changelog.point-releases h3:first-child {
    5834         padding-top: 7px;
    5835 }
     5043#template div {
     5044  margin-right: 190px; }
    58365045
    5837 /* WordPress Version Badge */
     5046p.pagenav {
     5047  margin: 0;
     5048  display: inline; }
    58385049
    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; }
    58495053
    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; }
    58555057
    5856 /* Tabs */
     5058.column-author img, .column-username img {
     5059  float: left;
     5060  margin-right: 10px;
     5061  margin-top: 1px; }
    58575062
    5858 .about-wrap h2.nav-tab-wrapper {
    5859         padding-left: 6px;
    5860 }
     5063.row-actions {
     5064  visibility: hidden;
     5065  padding: 2px 0 0; }
    58615066
    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; }
    58685069
    5869 .about-wrap h2 .nav-tab-active {
    5870         font-weight: bold;
    5871         padding-top: 3px;
    5872 }
     5070tr:hover .row-actions,
     5071div.comment-item:hover .row-actions {
     5072  visibility: visible; }
    58735073
    5874 /* Changelog / Update screen */
     5074.row-actions-visible {
     5075  padding: 2px 0 0; }
    58755076
    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; }
    58835080
    5884 .about-wrap .feature-section .video video {
    5885         max-width: 100%;
    5886 }
     5081table.form-table td .updated {
     5082  font-size: 13px; }
    58875083
    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; }
    58935109
    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; }
    58975116
    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; }
    59035124
    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; }
    59085127
    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%; }
    59135131
    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%; }
    59175135
    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; }
    59215141
    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; }
    59255145
    5926 .about-wrap .feature-section img.image-30 {
    5927         max-width: 31.2381%;
    5928 }
     5146#poststuff #submitdiv .inside {
     5147  margin: 0;
     5148  padding: 0; }
    59295149
    5930 .ie8 .about-wrap .feature-section img {
    5931         border-width: 1px;
    5932         border-style: solid;
    5933 }
     5150.edit-form-section {
     5151  margin-bottom: 20px; }
    59345152
    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; }
    59385155
    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; }
    59425161
    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; }
    59465200
    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%; }
    59505204
    5951 .about-wrap .feature-section.two-col div {
    5952         width: 47%;
    5953         margin-right: 4.999999999%;
    5954         float: left;
    5955 }
     5205table .vers,
     5206table .column-visible,
     5207table .column-rating {
     5208  text-align: left; }
    59565209
    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; }
    59625213
    5963 .about-wrap .three-col-images {
    5964         text-align: center;
    5965 }
     5214/* Scrollbar fix for bulk upgrade iframe */
     5215body.iframe {
     5216  height: 98%; }
    59665217
    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------------------------------------------------------------------------------*/
     5220td.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; }
    59705228
    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; }
    59745233
    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; }
    59785239
    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; }
    59825249
    5983 .about-wrap .changelog li {
    5984         list-style-type: disc;
    5985         margin-left: 3em;
    5986 }
     5250#submitdiv h3 {
     5251  margin-bottom: 0 !important; }
    59875252
    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; }
    60055263
    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 }
     5264br.clear {
     5265  height: 2px;
     5266  line-height: 2px; }
    60215267
    6022 /* Return to Dashboard Home link */
     5268.checkbox {
     5269  border: none;
     5270  margin: 0;
     5271  padding: 0; }
    60235272
    6024 .about-wrap .return-to-dashboard {
    6025         margin: 30px 0 0 -5px;
    6026         font-size: 14px;
    6027         font-weight: bold;
    6028 }
     5273fieldset {
     5274  border: 0;
     5275  padding: 0;
     5276  margin: 0; }
    60295277
    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; }
    60345282
    6035 /* Credits */
     5283.post-categories li {
     5284  display: inline; }
    60365285
    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; }
    60415305
    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; }
    60475309
    6048 .about-wrap ul.compact {
    6049         margin-bottom: 0
    6050 }
     5310.wp-list-table .site-spammed {
     5311  background: #faafaa; }
    60515312
    6052 .about-wrap li.wp-person {
    6053         float: left;
    6054         margin-right: 10px;
    6055 }
     5313.wp-list-table .site-archived {
     5314  background: #ffebe8; }
    60565315
    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; }
    60645318
    6065 .about-wrap ul.compact li.wp-person img.gravatar {
    6066         width: 30px;
    6067         height: 30px;
    6068 }
     5319/* Star ratings */
     5320div.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; }
    60695329
    6070 .about-wrap li.wp-person {
    6071         height: 70px;
    6072         width: 280px;
    6073         padding-bottom: 15px;
    6074 }
     5330div.action-links {
     5331  font-weight: normal;
     5332  margin: 6px 0 0; }
    60755333
    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; }
    60825419
    6083 .about-wrap #wp-people-group-validators + p.wp-credits-list {
    6084         margin-top: 0;
    6085 }
     5420#poststuff #editor-toolbar {
     5421  height: 30px; }
    60865422
    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 }
     5423div.zerosize {
     5424  border: 0 none;
     5425  height: 0;
     5426  margin: 0;
     5427  overflow: hidden;
     5428  padding: 0;
     5429  width: 0; }
    60935430
    6094 .about-wrap p.wp-credits-list a {
    6095         white-space: nowrap;
    6096 }
     5431.posting {
     5432  margin-right: 212px;
     5433  position: relative; }
    60975434
    6098 /* Freedoms */
     5435h3.tb {
     5436  text-shadow: 0 1px 0 #fff;
     5437  font-size: 12px;
     5438  font-weight: bold;
     5439  line-height: normal;
     5440  margin-left: 5px; }
    60995441
    6100 .freedoms-php .about-wrap ol {
    6101         margin: 40px 60px;
    6102 }
     5442#TB_window {
     5443  border: 1px solid #333; }
    61035444
    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; }
    61085448
    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; }
    61135451
    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; }
    61175457
    6118 body.full-overlay-active {
    6119         overflow: hidden;
    6120 }
     5458#extra-fields .button {
     5459  margin-right: 5px; }
    61215460
    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; }
    61345465
    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; }
    76895468
    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; }
    76935474
    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; }
    76975483
    7698 .add-menu-item-view-all {
    7699         height: 400px;
    7700 }
     5484#extra-fields .postbox {
     5485  margin-bottom: 5px; }
    77015486
    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; }
    77075491
    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; }
    77135516
    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; }
    77225521
    7723 .meta-sep {
    7724         padding: 0 2px;
    7725 }
     5522#TB_ajaxContent #options {
     5523  position: absolute;
     5524  top: 20px;
     5525  right: 25px;
     5526  padding: 5px; }
    77265527
    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; }
    77335530
    7734 .button.right, .button-secondary.right, .button-primary.right {
    7735         float: right;
    7736 }
     5531.error a {
     5532  text-decoration: underline; }
    77375533
    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; }
    77435537
    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; }
    77475543
    7748 .postbox .spinner {
    7749         display: none;
    7750         vertical-align: middle;
    7751 }
     5544input.newtag ~ div.taghint {
     5545  visibility: visible; }
    77525546
    7753 .button-controls {
    7754         clear:both;
    7755         margin: 10px 0;
    7756 }
     5547input.newtag:focus ~ div.taghint {
     5548  visibility: hidden; }
    77575549
    7758 .show-all,
    7759 .hide-all {
    7760         cursor: pointer;
    7761 }
     5550/* TinyMCE */
     5551#mce_fullscreen_container {
     5552  background: #fff; }
    77625553
    7763 .hide-all {
    7764         display: none;
    7765 }
     5554#photo-add-url-div input[type="text"] {
     5555  width: 300px; }
    77665556
    7767 /* Create Menu */
    7768 #menu-name {
    7769         width: 270px;
    7770 }
     5557/* theme-editor */
     5558.alignleft h3 {
     5559  margin: 0; }
    77715560
    7772 #manage-menu .inside {
    7773         padding: 0px 0px;
    7774 }
     5561h3 span {
     5562  font-weight: normal; }
    77755563
    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; }
    77805570
    7781 #add-custom-link .howto {
    7782         font-size: 12px;
    7783 }
     5571#template p {
     5572  width: 97%; }
    77845573
    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; }
    77915578
    7792 .menu-item-textbox {
    7793         width: 180px;
    7794 }
     5579#templateside h3,
     5580#postcustomstuff p.submit {
     5581  margin: 0; }
    77955582
    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; }
    78015585
    7802 /* Menu item types */
    7803 .quick-search {
    7804         width: 190px;
    7805 }
     5586#templateside ol,
     5587#templateside ul {
     5588  margin: .5em;
     5589  padding: 0; }
    78065590
    7807 .nav-menus-php .list-wrap {
    7808         display: none;
    7809         clear: both;
    7810         margin-bottom: 10px;
    7811 }
     5591#templateside li {
     5592  margin: 4px 0; }
    78125593
    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; }
    78185596
    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; }
    78225601
    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; }
    78295607
    7830 .nav-menus-php .list li .menu-item-title {
    7831         cursor: pointer;
    7832         display: block;
    7833 }
     5608#documentation {
     5609  margin-top: 10px; }
    78345610
    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; }
    78395615
    7840 /* Nav Menu */
    7841 #menu-container .inside {
    7842         padding-bottom: 10px;
    7843 }
     5616.fileedit-sub {
     5617  padding: 10px 0 8px;
     5618  line-height: 180%; }
    78445619
    7845 .menu {
    7846         padding-top:1em;
    7847 }
     5620#filter-box {
     5621  clear: both; }
    78485622
    7849 #menu-to-edit {
    7850         margin: 0;
    7851         padding: 0.1em 0;
    7852 }
     5623.feature-filter {
     5624  padding: 8px 12px 0; }
    78535625
    7854 .menu ul {
    7855         width: 100%;
    7856 }
     5626.feature-filter .feature-group {
     5627  float: left;
     5628  margin: 5px 10px 10px; }
    78575629
    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; }
    78625636
    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; }
    78695641
    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; }
    78815646
    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; }
    78905712
    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; }
    78975721
    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; }
    79015726
    7902 .js .menu-item-handle {
    7903         cursor: move;
    7904 }
     5727#backtoblog {
     5728  padding: 12px 16px 0; }
    79055729
    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; }
    79105737
    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; }
    79195742
    7920 /* Sortables */
    7921 li.menu-item.ui-sortable-helper dl {
    7922         margin-top: 0;
    7923 }
     5743body.interim-login {
     5744  height: auto; }
    79245745
    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; }
    79285755
    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; }
    79345912
    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 */
     5914body.press-this {
     5915  color: #333;
     5916  margin: 0;
     5917  padding: 0;
     5918  min-width: 675px;
     5919  min-height: 400px; }
    79745920
    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; }
    79805925
    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; }
    79875929
    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; }
    79915934
    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; }
    79955939
    7996 .item-controls .item-order {
    7997         padding-right: 10px;
    7998 }
     5940.accordion-section .categorychecklist {
     5941  margin: 13px 0; }
    79995942
    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; }
    80135945
    8014 /* Menu editing */
    8015 .menu-instructions-inactive {
    8016         display: none;
    8017 }
     5946#nav-menu-meta .button-controls {
     5947  margin-bottom: 0; }
    80185948
    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; }
    80305952
    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; }
    80355960
    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; }
    80395964
    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); }
    80435969
    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; }
    80485972
    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; }
    80565975
    8057 .link-to-original a {
    8058         padding-left: 4px;
    8059         font-style: normal;
    8060 }
     5976.blank-slate .menu-name {
     5977  height: 2em; }
    80615978
    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; }
    80655984
    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; }
    80715989
    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; }
    80766006
    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; }
    80806013
    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%; }
    80846025
    8085 #cancel-save {
    8086         cursor: pointer;
    8087 }
     6026.theme-location-set {
     6027  font-size: 11px; }
    80886028
    8089 /* Major/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; }
    80946034
    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; }
    81016042
    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; }
    81056047
    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; }
    81106051
    8111 .nav-menus-php .submitbox .submitcancel {
    8112         border-bottom: 1px solid;
    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; }
    81166057
    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; }
    81226060
    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; }
    81396064
    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; }
    81466068
    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; }
    81546071
    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; }
    81606076
    8161 div.action-links {
    8162         font-weight: normal;
    8163         margin: 6px 0 0;
    8164 }
     6077#select-nav-menu {
     6078  width: 100px;
     6079  display: inline; }
    81656080
    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; }
    81836083
    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; }
    81956086
    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; }
    82036089
    8204 #plugin-information h2 {
    8205         clear: none !important;
    8206         margin-right: 200px;
    8207 }
     6090#locations-nav-menu-wrapper {
     6091  padding: 5px 0; }
    82086092
    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; }
    82136097
    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; }
    82196101
    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; }
    82256105
    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; }
    82336109
    8234 #plugin-information .fyi li {
    8235         margin-right: 0;
    8236 }
     6110#wpbody .open-label {
     6111  display: block;
     6112  float: left; }
    82376113
    8238 #plugin-information #section-holder {
    8239         padding: 10px;
    8240 }
     6114#wpbody .open-label span {
     6115  padding-right: 10px; }
    82416116
    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; }
    82486119
    8249 #plugin-information #section-screenshots ol {
    8250         list-style: none;
    8251         margin: 0;
    8252 }
     6120#menu-management .inside {
     6121  padding: 0 10px; }
    82536122
    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; }
    82606128
    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; }
    82666131
    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; }
    82726154
    8273 #plugin-information pre {
    8274         padding: 7px;
    8275         overflow: auto;
    8276 }
     6155.customlinkdiv .howto input {
     6156  width: 180px; }
    82776157
    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; }
    82866160
    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; }
    82906165
    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; }
    82986168
    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; }
    83066173
    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; }
    83146185
    8315 .press-this #wphead h1 a {
    8316         text-decoration: none;
    8317 }
     6186.meta-sep {
     6187  padding: 0 2px; }
    83186188
    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; }
    83226194
    8323 .press-this #message {
    8324         margin: 10px 0;
    8325 }
     6195.button.right, .button-secondary.right, .button-primary.right {
     6196  float: right; }
    83266197
    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; }
    83326202
    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; }
    83416205
    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; }
    83456209
    8346 .press-this #titlediv {
    8347         margin: 0;
    8348 }
     6210#manage-menu .inside {
     6211  padding: 0px 0px; }
    83496212
    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; }
    83546216
    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; }
    83626219
    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; }
    83686225
    8369 .press-this #photo-add-url-div input[type="text"] {
    8370         width: 220px;
    8371 }
     6226.menu-item-textbox {
     6227  width: 180px; }
    83726228
    8373 #poststuff #editor-toolbar {
    8374         height: 30px;
    8375 }
     6229.nav-menus-php .howto span {
     6230  margin-top: 4px;
     6231  display: block;
     6232  float: left; }
    83766233
    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; }
    83856237
    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; }
    83906248
    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; }
    83946260
    8395 .press-this .inner-sidebar .sleeve {
    8396         padding-top: 5px;
    8397 }
     6261/* Nav Menu */
     6262#menu-container .inside {
     6263  padding-bottom: 10px; }
    83986264
    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; }
    84036272
    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; }
    84076276
    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; }
    84116282
    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; }
    84176293
    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); }
    84226301
    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; }
    84266309
    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; }
    84336312
    8434 #TB_window {
    8435         border: 1px solid #333;
    8436 }
     6313.js .menu-item-handle {
     6314  cursor: move; }
    84376315
    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; }
    84436319
    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; }
    84486327
    8449 .press-this #submitdiv:hover .handlediv {
    8450         background: none;
    8451 }
     6328/* Sortables */
     6329li.menu-item.ui-sortable-helper dl {
     6330  margin-top: 0; }
    84526331
    8453 .tbtitle {
    8454         font-size: 1.7em;
    8455         outline: none;
    8456         padding: 3px 4px;
    8457         border-color: #dfdfdf;
    8458 }
     6332li.menu-item.ui-sortable-helper .menu-item-transport dl {
     6333  margin-top: 13px; }
    84596334
    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; }
    84646339
    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; }
    84686343
    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; }
    84746346
    8475 #extra-fields .button {
    8476         margin-right: 5px;
    8477 }
     6347.menu-item-depth-2 {
     6348  margin-left: 60px; }
    84786349
    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; }
    84846352
    8485 #img_container_container {
    8486         overflow: auto;
    8487 }
     6353.menu-item-depth-4 {
     6354  margin-left: 120px; }
    84886355
    8489 #extra-fields {
    8490         margin-top: 10px;
    8491         position: relative;
    8492 }
     6356.menu-item-depth-5 {
     6357  margin-left: 150px; }
    84936358
    8494 #extra-fields h2 {
    8495         margin: 12px;
    8496 }
     6359.menu-item-depth-6 {
     6360  margin-left: 180px; }
    84976361
    8498 #waiting {
    8499         margin-top: 10px;
    8500         overflow: hidden;
    8501 }
     6362.menu-item-depth-7 {
     6363  margin-left: 210px; }
    85026364
    8503 #waiting span {
    8504         float: right;
    8505         margin: 0 0 0 5px;
    8506 }
     6365.menu-item-depth-8 {
     6366  margin-left: 240px; }
    85076367
    8508 #waiting .spinner {
    8509         display: block;
    8510 }
     6368.menu-item-depth-9 {
     6369  margin-left: 270px; }
    85116370
    8512 #extra-fields .postbox {
    8513         margin-bottom: 5px;
    8514 }
     6371.menu-item-depth-10 {
     6372  margin-left: 300px; }
    85156373
    8516 #extra-fields .titlewrap {
    8517         padding: 0;
    8518         overflow: auto;
    8519         height: 100px;
    8520 }
     6374.menu-item-depth-11 {
     6375  margin-left: 330px; }
    85216376
    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; }
    85276379
    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; }
    85336382
    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; }
    85396385
    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; }
    85476388
    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; }
    85556391
    8556 /* Video */
    8557 #embed-code {
    8558         width: 100%;
    8559         height: 98px;
    8560 }
     6392.menu-item-depth-5 .menu-item-transport {
     6393  margin-left: -150px; }
    85616394
    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; }
    85666397
    8567 /* Tags */
    8568 .press-this .tagsdiv .newtag {
    8569         width: 120px;
    8570 }
     6398.menu-item-depth-7 .menu-item-transport {
     6399  margin-left: -210px; }
    85716400
    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; }
    85826403
    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; }
    85886406
    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; }
    85956409
    8596 #TB_ajaxContent h3 {
    8597         margin-bottom: .25em;
    8598 }
     6410.menu-item-depth-11 .menu-item-transport {
     6411  margin-left: -330px; }
    85996412
    8600 .error a {
    8601         text-decoration: underline;
    8602 }
     6413body.menu-max-depth-0 {
     6414  min-width: 950px !important; }
    86036415
    8604 .updated a {
    8605         text-decoration: none;
    8606         padding-bottom: 2px;
    8607 }
     6416body.menu-max-depth-1 {
     6417  min-width: 980px !important; }
    86086418
    8609 /* tag hints */
    8610 .taghint {
    8611         color: #aaa;
    8612         margin: -17px 0 0 7px;
    8613         visibility: hidden;
    8614 }
     6419body.menu-max-depth-2 {
     6420  min-width: 1010px !important; }
    86156421
    8616 input.newtag ~ div.taghint {
    8617         visibility: visible;
    8618 }
     6422body.menu-max-depth-3 {
     6423  min-width: 1040px !important; }
    86196424
    8620 input.newtag:focus ~ div.taghint {
    8621         visibility: hidden;
    8622 }
     6425body.menu-max-depth-4 {
     6426  min-width: 1070px !important; }
    86236427
    8624 /* TinyMCE */
    8625 #mce_fullscreen_container {
    8626         background: #fff;
    8627 }
     6428body.menu-max-depth-5 {
     6429  min-width: 1100px !important; }
    86286430
    8629 #photo-add-url-div input[type="text"] {
    8630         width: 300px;
    8631 }
     6431body.menu-max-depth-6 {
     6432  min-width: 1130px !important; }
    86326433
    8633 /* theme-editor */
    8634 .alignleft h3 {
    8635         margin: 0;
    8636 }
     6434body.menu-max-depth-7 {
     6435  min-width: 1160px !important; }
    86376436
    8638 h3 span {
    8639         font-weight: normal;
    8640 }
     6437body.menu-max-depth-8 {
     6438  min-width: 1190px !important; }
    86416439
    8642 #template textarea {
    8643         font-family: Consolas, Monaco, monospace;
    8644         font-size: 12px;
    8645         width: 97%;
    8646         background: #f9f9f9;
    8647         outline: none;
    8648 }
     6440body.menu-max-depth-9 {
     6441  min-width: 1220px !important; }
    86496442
    8650 #template p {
    8651         width: 97%;
    8652 }
     6443body.menu-max-depth-10 {
     6444  min-width: 1250px !important; }
    86536445
    8654 #templateside {
    8655         float: right;
    8656         width: 190px;
    8657         word-wrap: break-word;
    8658 }
     6446body.menu-max-depth-11 {
     6447  min-width: 1280px !important; }
    86596448
    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; }
    86646453
    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; }
    86686465
    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; }
    86746479
    8675 #templateside li {
    8676         margin: 4px 0;
    8677 }
     6480/* Menu editing */
     6481.menu-instructions-inactive {
     6482  display: none; }
    86786483
    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; }
    86826507
    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; }
    86886511
    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; }
    86956521
    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; }
    87046524
    8705 .fileedit-sub {
    8706         padding: 10px 0 8px;
    8707         line-height: 180%;
    8708 }
     6525.description-thin {
     6526  width: 190px;
     6527  height: 40px; }
    87096528
    8710 #filter-box {
    8711         clear: both;
    8712 }
     6529.description-wide {
     6530  width: 390px; }
    87136531
    8714 .feature-filter {
    8715         padding: 8px 12px 0;
    8716 }
     6532.menu-item-actions {
     6533  padding-top: 15px; }
    87176534
    8718 .feature-filter .feature-group {
    8719         float: left;
    8720         margin: 5px 10px 10px;
    8721 }
     6535#cancel-save {
     6536  cursor: pointer; }
    87226537
    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; }
    87306560
    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; }
    87366576
    8737 /* widgets */
     6577#nav-menus-frame,
     6578.button-controls,
     6579#menu-item-url-wrap,
     6580#menu-item-name-wrap {
     6581  display: block; }
    87386582
     6583/* widgets */
    87396584/* 2 column liquid layout */
    87406585div.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; }
    87466590
    87476591div#widgets-left {
    8748         margin-left: 5px;
    8749         margin-right: 325px;
    8750 }
     6592  margin-left: 5px;
     6593  margin-right: 325px; }
    87516594
    87526595div#widgets-right {
    8753         width: 285px;
    8754         margin: 0 auto;
    8755 }
     6596  width: 285px;
     6597  margin: 0 auto; }
    87566598
    87576599div.widget-liquid-right {
    8758         float: right;
    8759         clear: right;
    8760         width: 300px;
    8761 }
     6600  float: right;
     6601  clear: right;
     6602  width: 300px; }
    87626603
    87636604.widget-liquid-right .widget,
    87646605.inactive-sidebar .widget,
    87656606.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; }
    87706610
    87716611.widget-liquid-right .sidebar-description {
    8772         margin-bottom: 10px;
    8773 }
     6612  margin-bottom: 10px; }
    87746613
    87756614.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; }
    87886617
    87896618div.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; }
    87986635
    87996636.js .sidebar-name {
    8800         cursor: pointer;
    8801 }
     6637  cursor: pointer; }
    88026638
    88036639.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; }
    88096646
    88106647.widget-liquid-right .widgets-sortables,
    88116648#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; }
    88196657
    88206658.js .closed .widgets-sortables,
    88216659.js .closed .widget-holder {
    8822         display: none;
    8823 }
     6660  display: none; }
    88246661
    88256662.widget-liquid-right .widgets-sortables {
    8826         padding: 15px 0 0;
    8827 }
     6663  padding: 15px 0 0; }
    88286664
    88296665#available-widgets .widget-holder {
    8830         padding: 7px 5px 0;
    8831 }
     6666  padding: 7px 5px 0; }
    88326667
    88336668#available-widgets .widget {
    8834         -webkit-box-shadow: none;
    8835         box-shadow: none;
    8836 }
     6669  -moz-box-shadow: none;
     6670  -webkit-box-shadow: none;
     6671  box-shadow: none; }
    88376672
    88386673.inactive-sidebar {
    8839         padding: 5px 5px 0;
    8840 }
     6674  padding: 5px 5px 0; }
    88416675
    88426676#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; }
    88506683
    88516684#widget-list .widget-description {
    8852         padding: 5px 8px;
    8853 }
     6685  padding: 5px 8px; }
    88546686
    88556687.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; }
    88676696
    88686697div.widgets-holder-wrap {
    8869         padding: 0;
    8870         margin: 10px 0 20px;
    8871 }
     6698  padding: 0;
     6699  margin: 10px 0 20px; }
    88726700
    88736701#widgets-left #available-widgets {
    8874         background-color: transparent;
    8875         border: 0 none;
    8876 }
     6702  background-color: transparent;
     6703  border: 0 none; }
    88776704
    88786705ul#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; }
    88846710
    88856711.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; }
    89006717
    89016718a.widget-action {
    8902         display: block;
    8903         width: 24px;
    8904         height: 26px;
    8905 }
     6719  display: block;
     6720  width: 24px;
     6721  height: 26px; }
    89066722
    89076723#available-widgets a.widget-action {
    8908         display: none;
    8909 }
     6724  display: none; }
    89106725
     6726.widget-top .widget-title {
     6727  padding: 7px 9px; }
     6728.widget-top .widget-title-action {
     6729  float: right; }
    89116730.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; }
    89186734
    89196735.widget .widget-inside,
    89206736.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; }
    89256740
    89266741.widget-inside,
    89276742.widget-description {
    8928         display: none;
    8929 }
     6743  display: none; }
    89306744
    89316745#available-widgets .widget-description {
    8932         display: block;
    8933 }
     6746  display: block; }
    89346747
    89356748.widget .widget-inside p {
    8936         margin: 0 0 1em;
    8937         padding: 0;
    8938 }
     6749  margin: 0 0 1em;
     6750  padding: 0; }
    89396751
    89406752.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; }
    89476758
    89486759.widgets-sortables {
    8949         min-height: 90px;
    8950 }
     6760  min-height: 90px; }
    89516761
    89526762.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; }
    89676770
    89686771div#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; }
    89736775
    89746776.widget-title a,
    89756777.widget-title a:hover {
    8976         text-decoration: none;
    8977         border-bottom: none;
    8978 }
     6778  text-decoration: none;
     6779  border-bottom: none; }
    89796780
    89806781.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; }
    89876790
    89886791a.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; }
    89966793
    89976794#available-widgets .widget-control-edit .add,
    89986795#widgets-right .widget-control-edit .edit,
    89996796.inactive-sidebar .widget-control-edit .edit {
    9000         display: inline;
    9001 }
     6797  display: inline; }
    90026798
    90036799.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; }
    90116804
    90126805.inactive p.description {
    9013         margin: 5px 15px 10px;
    9014 }
     6806  margin: 5px 15px 10px; }
    90156807
    90166808#available-widgets p.description {
    9017         margin: 0 12px 12px;
    9018 }
     6809  margin: 0 12px 12px; }
    90196810
    90206811.widget-position {
    9021         margin-top: 8px;
    9022 }
     6812  margin-top: 8px; }
    90236813
    90246814.inactive {
    9025         padding-top: 2px;
    9026 }
     6815  padding-top: 2px; }
    90276816
    90286817.sidebar-name .spinner {
    9029         float: none;
    9030         margin: 0 3px -3px;
    9031 }
     6818  float: none;
     6819  margin: 0 3px -3px; }
    90326820
    90336821.sidebar-name-arrow {
    9034         float: right;
    9035         height: 29px;
    9036         width: 26px;
    9037 }
     6822  float: right;
     6823  height: 29px;
     6824  width: 26px; }
    90386825
    90396826.widget-title .in-widget-title {
    9040         font-size: 12px;
    9041         white-space: nowrap;
    9042 }
     6827  font-size: 12px;
     6828  white-space: nowrap; }
    90436829
    90446830#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; }
    90516836
    90526837.widget-control-noform,
    90536838#access-off,
    a.widget-control-edit { 
    90556840.widgets_access .sidebar-name-arrow,
    90566841.widgets_access #access-on,
    90576842.widgets_access .widget-holder .description {
    9058         display: none;
    9059 }
     6843  display: none; }
    90606844
    90616845.widgets_access .widget-holder,
    90626846.widgets_access #widget-list {
    9063         padding-top: 10px;
    9064 }
    9065 
     6847  padding-top: 10px; }
    90666848.widgets_access #access-off {
    9067         display: inline;
    9068 }
    9069 
     6849  display: inline; }
    90706850.widgets_access #wpbody-content .widget-title-action,
    90716851.widgets_access #wpbody-content .widget-control-edit,
    90726852.widgets_access .closed .widgets-sortables,
    90736853.widgets_access .closed .widget-holder {
    9074         display: block;
    9075 }
    9076 
     6854  display: block; }
    90776855.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; }
    90846862.widgets_access .sidebar-name,
    90856863.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; }
    90946865
    90956866/* Accordion */
    9096 
    90976867.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; }
    91196879
    91206880.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; }
    91286887
    91296888.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; }
    92106944
    92116945/* =Media Queries
    92126946-------------------------------------------------------------- */
    9213 
    92146947@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%; }
    92246951
     6952  #col-right {
     6953    width: 100%; } }
    92256954@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%; }
    92356958
     6959  #col-right {
     6960    width: 65%; } }
    92366961@media only screen and (max-width: 860px) {
     6962  /* categories */
     6963  #col-left {
     6964    width: 35%; }
    92376965
    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%; } }
    92486968@media only screen and (min-width: 980px) {
     6969  /* categories */
     6970  #col-left {
     6971    width: 35%; }
    92496972
    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%; }
    92546979
    9255         #col-right {
    9256                 width: 65%;
    9257         }
    9258 }
     6980  #col-right {
     6981    width: 100%; }
    92596982
    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; }
    92856989
     6990  /* users */
     6991  #profile-page .form-table textarea {
     6992    max-width: 400px;
     6993    width: auto; } }
    92866994/**
    92876995 * HiDPI Displays
    92886996 */
    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; } }
    93997081/* =Localized CSS
    94007082-------------------------------------------------------------- */
    9401 
    94027083/* zh_CN: Remove italic properties. */
    94037084.locale-zh-cn .howto,
    94047085.locale-zh-cn .tablenav .displaying-num,
    a.widget-control-edit { 
    94137094.locale-zh-cn p.description,
    94147095.locale-zh-cn span.description,
    94157096.locale-zh-cn .form-wrap p {
    9416         font-style: normal;
    9417 }
     7097  font-style: normal; }
    94187098
    94197099/* 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; }
    94217102
    94227103/* 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%; }
    94247107
    94257108/* Zn_CH: Distraction free writing.
    94267109 *  More beautiful font for "Just write."
    94277110 *  Larger text for HTML/Visual mode.
    94287111 */
    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; }
    94317117
    94327118/* 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; }
    94347121
    94357122/* ru_RU: Text needs more room to breathe. */
    94367123.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
    94407128.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
    94467136.locale-ru-ru.press-this #side-sortables {
    9447         width: 245px; /* default 200px + 45px */
    9448 }
     7137  width: 245px;
     7138  /* default 200px + 45px */ }
     7139
    94497140.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; */ }
    94527143
    94537144/* lt_LT: QuickEdit */
    94547145.locale-lt-lt .inline-edit-row fieldset label span.title {
    9455         width: 8em;
    9456 }
     7146  width: 8em; }
     7147
    94577148.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}