LoginSignup
0
0

More than 5 years have passed since last update.

ckanでlessを実行したらCommand failed: NameError

Posted at

ckan2.5でlessを実行したら下記のエラーが。

Command failed: NameError: #grid > .core > .span is undefined in 
/usr/lib/ckan/default/src/ckan/ckan/public/base/vendor/bootstrap/less/navbar.less on line 199, column 3:

え~、と思ったられbootstrap側で起きてるのね。Ckan側の問題では無いっす。

navbar.lessの199行目を

#grid > .core > .span(@gridColumns);

下に書き換えてあげましょう。

#grid {    
    .core  {
        .span(@gridColumns) {
            width: (@gridColumnWidth * @gridColumns) + (@gridGutterWidth * (@gridColumns - 1));
        }
    }
};

参考はこちら

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0