覆盖特定宽度的媒体查询 - CSS

时间:2015-06-28 09:12:28

标签: html css css3 drupal drupal-theming

我创建了一个响应Bartik的子主题,我需要减少侧边栏的宽度而不触及原始主题:

原件:

@media all and (min-width: 851px) {
.
.
.
  #sidebar-first {
    width: 25%;
    margin-left: -100%; /* LTR */
  }
  #sidebar-second {
    width: 25%;
    margin-left: -25%; /* LTR */
    clear: none;
  }
.
.
.
}

子主题中的CSS:

/* Raj: To reduce the width of the sidebar: */
@media all and (min-width: 851px)
{
    #sidebar-first {
        width: 18% !important;
        margin-left: -92% !important; /* LTR */
    }
    #sidebar-second {
        width: 18%;
        margin-left: -32%; /* LTR */
        clear: none;
    }
}

令我惊讶的是原来的CSS正在生效。除了媒体查询任何其他css属性,我能够覆盖。如果我在原始css文件本身中将25%更改为18%并将-100%更改为-92%,我将获得所需的结果,但我无法弄清楚如何在另一个css文件中覆盖这些值。

我试图谷歌,但我得到的只是关于媒体查询的优先级,但没有关于覆盖。

修改 我已经使用子主题的.info文件添加了新的CSS文件。以下是各个.info文件的内容。我已经按照drupal文档创建了子主题。但是,我真的不觉得这是Drupal架构中的一个问题,但是覆盖CSS Media查询必须以不同的方式完成,这个结论的原因是因为custom.css文件中的任何其他css属性都被渲染,但是覆盖媒体查询。

原件:

name = Responsive Bartik Tiles
description = Tile based flexible, recolorable theme with many regions and a responsive, mobile-first layout.
version = VERSION
core = 7.x

stylesheets[all][] = css/layout.css
stylesheets[all][] = css/style.css
stylesheets[all][] = css/colors.css
stylesheets[print][] = css/print.css

scripts[] = js/collapsible-menu.js

regions[header] = Header
regions[help] = Help
regions[page_top] = Page top
regions[page_bottom] = Page bottom
regions[highlighted] = Highlighted

regions[featured] = Featured
regions[content] = Content
regions[sidebar_first] = Sidebar first
regions[sidebar_second] = Sidebar second

regions[triptych_first] = Triptych first
regions[triptych_middle] = Triptych middle
regions[triptych_last] = Triptych last

regions[footer_firstcolumn] = Footer first column
regions[footer_secondcolumn] = Footer second column
regions[footer_thirdcolumn] = Footer third column
regions[footer_fourthcolumn] = Footer fourth column
regions[footer] = Footer

settings[shortcut_module_link] = 0

; Information added by Drupal.org packaging script on 2014-10-15
version = "7.x-1.0"
core = "7.x"
project = "responsive_bartik_tiles"
datestamp = "1413392482"

分主题:

name = Indian Snakes Responsive Bartik Tiles
description = Indian Snakes Tile based flexible, recolorable theme with many regions and a responsive, mobile-first layout.
version = VERSION
core = 7.x

base theme = responsive_bartik_tiles

stylesheets[all][] = css/layout.css
stylesheets[all][] = css/style.css
stylesheets[all][] = css/colors.css
stylesheets[print][] = css/print.css
stylesheets[all][] = css/custom.css

scripts[] = js/collapsible-menu.js

regions[header] = Header
regions[help] = Help
regions[page_top] = Page top
regions[page_bottom] = Page bottom
regions[highlighted] = Highlighted

regions[featured] = Featured
regions[content] = Content
regions[sidebar_first] = Sidebar first
regions[sidebar_second] = Sidebar second

regions[triptych_first] = Triptych first
regions[triptych_middle] = Triptych middle
regions[triptych_last] = Triptych last

regions[footer_firstcolumn] = Footer first column
regions[footer_secondcolumn] = Footer second column
regions[footer_thirdcolumn] = Footer third column
regions[footer_fourthcolumn] = Footer fourth column
regions[footer] = Footer

settings[shortcut_module_link] = 0

; Information added by Drupal.org packaging script on 2014-10-15
version = "7.x-1.0"
core = "7.x"
project = "responsive_bartik_tiles"
datestamp = "1413392482"

唯一的区别是添加了行 -

stylesheets[all][] = css/custom.css

在子主题的.info文件中。

3 个答案:

答案 0 :(得分:1)

  1. 如果您通过 drupal_add_css

    添加此css

    drupal_add_css(       ' /path/to/css.css' ;,       阵列(         '重量' => ' 9999&#39 ;,       ) );

  2. 保持css文件与父主题完全相同。

  3. 如果问题仍然存在,请禁用CSS缓存 - 清除缓存并再次检查。

  4. 另一个选项 看看您是否在子主题的 .info 文件或各种导入语句中提及子主题路径。

答案 1 :(得分:1)

有一个技巧,你可以使用这种覆盖。

EG。您有一个基本主题,文件base/css/donotwant.css,在您的子主题.info文件中,您必须指定stylesheets[all][] = donotwant.css,它将被神奇地排除。

之后,您可以在子主题中以您想要的方式对样式进行编码。

答案 2 :(得分:0)

我的坏!还有一个额外的&#39 ;;'在媒体查询的开头。由于这个原因,只有媒体查询覆盖没有被执行。显然是额外的&#39 ;;'可能意味着css的结束我猜,不知道为什么css的其余部分从未被考虑过!