960-fluid-rtl.css 在哪里?

发布于 2024-11-03 03:07:00 字数 98 浏览 4 评论 0原文

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

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

I configure Drupal Omega theme to be fluid and rtl, but 960 GS dose not support rtl layout in fluid mod.

where can I find 960-fluid-rtl.css?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乱世争霸 2024-11-10 03:07:00

有一个旧的未解决问题听起来就像您所描述的那样。也许这实际上只是暂时被打破了?

There's an old open issue that sounds like what you're describing. Maybe this is actually just broken at the moment?

花之痕靓丽 2024-11-10 03:07:00

只需复制/过去 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';
        }
    }  
}

simply copy/past 960-fluid.css and rename to 960-fluid-rtl.css, clear styles except push and pull styles and swap .push and .pull styles.

find and replace:
.push->.xxxx
.pull->.push
.xxxx->.pull

and some hack to 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';
        }
    }  
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文