Make WordPress Core

Ticket #7482: ie-rtl.css.diff

File ie-rtl.css.diff, 1.4 KB (added by RanYanivHartstein, 17 years ago)

Fixes for admin RTL styles in IE

  • ie-rtl.css

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