所以我已经在我的Rails应用程序中安装了Bootstrap,我在Rails中使用了materialize gem,以便为我的应用添加一些物化组件。实际上我只想添加实体化表单和按钮组件。
然而,当我包括:
@import "materialize";
与materialize组件一起,在我的application.scss文件中,一些引导组件现在只是从页面中消失。
这是我的application.scss文件:
// These both need to be imported before bootstrap:
@import 'globals/fonts';
@import 'globals/variables';
// --------------Bootstrap-----------------------------
@import 'bootstrap-sprockets';
@import 'bootstrap';
// --------------Global definitions--------------------
// For example (add your own!!):
@import 'globals/mixins';
// --------------Shared styles-------------------------
// Common base CSS modifications. For example:
@import 'shared/buttons';
@import 'shared/grid';
// --------------Components----------------------------
// Create your own and modify/extend Bootstrap's. For example:
@import 'components/panel';
// --------------Sections------------------------------
// Page-specific styles. These should *only* be used as a last
// resort if you really truly can't style your content more generally.
@import 'sections/profile_page';
@import "materialize";
我的猜测是,物化正在将每个代码转移给他的竞争对手......是否有可能以某种方式停止转换某些元素(或页面)的引导组件?