Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/drupal/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
960-fluid-rtl.css在哪里?_Css_Drupal_Right To Left_960.gs - Fatal编程技术网

960-fluid-rtl.css在哪里?

960-fluid-rtl.css在哪里?,css,drupal,right-to-left,960.gs,Css,Drupal,Right To Left,960.gs,我将Drupal Omega主题配置为fluid和rtl,但960 GS不支持fluid mod中的rtl布局 在哪里可以找到960 fluid rtl.css?有一个类似于您所描述的。也许这一点现在已经被打破了?只需复制/超过960-fluid.css并重命名为960-fluid-rtl.css,清除除推拉样式和交换.push和.pull样式之外的样式 find and replace: .push->.xxxx .pull->.push .xxxx->.pull 还有一些

我将Drupal Omega主题配置为fluid和rtl,但960 GS不支持fluid mod中的rtl布局


在哪里可以找到960 fluid rtl.css?

有一个类似于您所描述的。也许这一点现在已经被打破了?

只需复制/超过960-fluid.css并重命名为960-fluid-rtl.css,清除除推拉样式和交换.push和.pull样式之外的样式

find and replace:
.push->.xxxx
.pull->.push
.xxxx->.pull
还有一些对template.php的攻击

function omega_css_alter(&$css) {
    // fluid width option
    if (theme_get_setting('omega_fixed_fluid') == 'fluid') {
        $css_960 = drupal_get_path('theme', 'omega') . '/css/960.css';
        $css_960_rtl = drupal_get_path('theme', 'omega') . '/css/960-rtl.css';
        if (isset($css[$css_960])) {
            $css[$css_960]['data'] = drupal_get_path('theme', 'omega') . '/css/960-fluid.css';
        }
        if (isset($css[$css_960_rtl])) {
            $css[$css_960_rtl]['data'] = drupal_get_path('theme', 'omega') . '/css/960-fluid-rtl.css';
        }
    }  
}