カスタムテーマを作成しています。チェックアウトページ専用のcssファイルを追加しました。
app / design / frontent / Amit / Customtheme / Magento_Checkout / layout /にあるdefault_head_block.xmlに よるcssファイルの呼び出し
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
<css src="Magento_Checkout::css/checkoutstyle.css" />
</head>
</page>
Cssファイルのcheckoutstyle.cssの場所はapp / design / frontent / Amit / Customtheme / Magento_Checkout / web / cssです。
今私がそのCSSファイルを使用して展開しようとすると php bin/magento setup:static-content:deploy
私はこのエラーを受け取ります:
Compilation from source:
frontend/Magento/blank/en_US/css/styles-l.less
variable @checkout-tooltip-icon__font-size is undefined in file /var/www/html/Amit/var/view_preprocessed/css/frontend/Magento/blank/en_US/css/source/_extends.less in _extends.less on line 1056, column 21
1054| input {
1055| .lib-css(margin-right, @indent__s);
1056| width: calc(~"100% - (@{checkout-tooltip-icon__font-size} + @{indent__s} + @{indent__xs})");
1057| }
1058| }
1059| >
注:現在のアプリケーションモード:開発者とシステムはUbuntuです。
誰が何が起こっているのか教えてもらえますか?