Make WordPress Core

Changeset 8591


Ignore:
Timestamp:
08/08/2008 05:24:16 PM (16 years ago)
Author:
ryan
Message:

RTL fixes from RanYanivHartstein. see #7482

Location:
branches/2.6/wp-admin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.6/wp-admin/css/ie-rtl.css

    r7552 r8591  
    5252    text-align: left;
    5353}
     54
     55/* IE6 */
     56
     57/* Search box gets stuck to the right, hidden outside view */
     58* html #post-search, * html #widget-search {
     59    height: 1% !important;
     60    right: 600px !important;
     61}
     62
     63/* Sidemenu tends to disapear, widget filter area tends to jump around when adding filters - Peek-A-Boo! */
     64* html #sidemenu, * html #widgets-filter {
     65    height: 1% !important;
     66}
     67
     68/* Media upload window gets stuck to the right, hidden outside view */
     69* html #TB_window {
     70    left: 100px !important;
     71}
     72
     73/* Bad floating in the sub-sub-sub menu makes links un-clickable */
     74* html .subsubsub li {
     75    display: block; float: right; margin: 0 2px;
     76}
     77
     78/* Fixing floats on sub-sub-sub menu skewes the view-switch menu on comments management page */
     79* html .wrap .view-switch {
     80    margin-top: 1px;
     81}
     82
     83/* Theme selector on theme edit page gets stuck to the left, hidden outside view */
     84* html #themeselector {
     85    position: static;
     86}
     87
     88/* Template edit area floats beneath template list, gets RTLed */
     89* html #template {
     90    float: right;
     91    overflow: hidden;
     92    width: 755px !important;
     93}
     94* html #template #newcontent {
     95    direction: ltr;
     96}
     97
     98/* Editor */
     99
     100.mceToolbar {
     101    direction: ltr;
     102    text-align: left;
     103}
  • branches/2.6/wp-admin/rtl.css

    r8327 r8591  
    1111.code, #quicktags #ed_code {
    1212    font-family: monospace !important;
     13}
     14
     15/* Clears update nag, so it doesn't hide the submenu */
     16#update-nag {
     17    clear: both;
     18    margin-bottom: 1em;
    1319}
    1420
     
    114120}
    115121
    116 .tablenav div
    117 {
    118     float:right!important
     122.tablenav div
     123{
     124    float:right !important;
     125    direction: rtl;
    119126}
    120127
     
    323330    clear: both;
    324331}
     332
     333/* WPH - TinyMCE */
     334
     335#media-items th.label {
     336    width: 120px;
     337}
     338#media-items th.label .alignleft {
     339    width: 100px;
     340}
     341
     342#media-items th.label .alignright {
     343    width: 16px;
     344    height: 16px;
     345}
     346
     347/* LTRs some url- and code-only form fields */
     348input#href, input#src, input#class_name {
     349    direction: ltr;
     350    text-align: left;
     351}
     352
     353#sidemenu a {
     354    float: right;
     355}
     356
     357thead.media-item-info {
     358    float: left;
     359    margin-bottom: 18px;
     360    width: 100%;
     361}
     362
     363thead.media-item-info td {
     364    width: 100%;
     365    text-align: left;
     366}
     367
     368thead.media-item-info td.A1B1 {
     369    width: 150px;
     370}
     371
     372#gallery-form table.widefat th {
     373    float: left;
     374    width: 74%;
     375    text-align: center;
     376}
     377
     378#gallery-form table.widefat th.order-head {
     379    width: 18%;
     380}
     381
     382#media-upload tr.align td.field, #media-upload tr.image-size td.field {
     383    text-align: right !important;
     384}
     385
     386#media-upload tr.align td.field {
     387    float:right;
     388    margin-right:-15px;
     389}
     390
     391tr.image-size label {
     392    display:inline;
     393    margin:0 0 0 1em !important;
     394}
     395
     396#library-form {
     397    float: right;
     398}
     399
     400#filter .subsubsub {
     401    direction: rtl;
     402    text-align: right;
     403}
     404
     405#media-upload form#filter {
     406    margin-right: -20px;
     407}
Note: See TracChangeset for help on using the changeset viewer.