我怎样才能符合 4 巢规则?

How can I conform to a 4 nest rule?

我正在处理一些 CSS,并且正在使用 GRUNT.js 来检查我的代码。 linting 规则有 4 个嵌套限制,我如何更改下面的代码以符合此规则?

.footer {
    .footer-tools {
        a {
            padding-left: 10px;
            padding-right: 10px;
            color: $color-alpha;
            font-weight: bold;
            margin-left: 48px;

            &:hover {
                text-decoration: none;
            }

            &.fill {
                .icon {
                    color: $color-horizon;
                }

                .cart-qty {
                    display: inline;
                }
            }
        }
    }
}

特别是 .icon 和 .cart-qty 规则违反了规则。如果尝试将这些 类 分解成一个名为 a.fill 的单独规则,但 linting 工具要求我将其与原始规则合并,这让我回到方块 1 :/

如有任何帮助,我们将不胜感激

.footer.footer-toolsa 只有一个 child,因此您可以将其写在一个选择器 .footer .footer-tools a 中,您的嵌套级别将是3 而不是 5