web-dev-qa-db-ja.com

.info.ymlファイルに含まれているCSSスタイルが機能しない

なぜか私のテーマはDrupal 8.でcss/style.cssを見つけることができません。

これは.info.ymlです:

name: Adminimal
type: theme
description: Drupal Administration Simplified.
# version: VERSION
# core: 8.x
base theme: seven

# Include CSS.
 stylesheets:
  all:
   - css/style.css

# Information added by Drupal.org packaging script on 2014-10-23
version: '8.x-1.x-dev'
core: '8.x'
project: 'adminimal_theme'
datestamp: 1414059738

これはフォルダがどのように見えるかです:

Theme/adminimal.info.yml
Theme/css/style.css

Style.cssファイルのCSS:

html{
    background-color: blue !important;
}

私のGoogle Chromeコンソールのスタイルセクションにも表示されないので、ファイルが見つからないと思いますが、なぜですか?

DrupalのjQueryについては、これをうまく機能させることができません。 https://www.drupal.org/node/154186 使用するには://ajax.googleapis.com/ajax/ libs/jquery/2.1.1/jquery.min.jsどうすればよいですか?

2
Stefan

Bartikテーマをベーステーマとしてdrupal8テーマを作成するために働いています。カスタムテーマにあるcssファイルを正常に呼び出します。これがお役に立てば幸いです。

name: Smart
type: theme
description: 'Smart business templates'
core: '8.x'
package: Custom
base theme: bartik
project: 'drupal'
stylesheets-remove:
 - colors.css
stylesheets-override:
 - css/colors.css
regions:
 header: Header
 primary_menu: 'Primary menu'
 help: Help
 featured: Featured
 content: Content
 sidebar_first: 'First sidebar'  
 sidebar_second: 'Second sidebar'
 triptych_first: 'Triptych first'
 triptych_middle: 'Triptych middle'
 triptych_last: 'Triptych last'
 footer_firstcolumn: 'Footer first column'
 footer_secondcolumn: 'Footer second column'
 footer_thirdcolumn: 'Footer third column'
 footer_fourthcolumn: 'Footer fourth column'
 footer: Footer

settings:
 shortcut_module_link: false

https://www.drupal.org/node/18766 からも参照してください

1
DRUPWAY