gpt4 book ai didi

css - Bootstrap 变量在 rails 中不可用

转载 作者:太空宇宙 更新时间:2023-11-04 03:52:54 26 4
gpt4 key购买 nike

如何让@screen-sm @screen-md @screen-lg 变量工作,而不给我错误?在 rails 中使用 bootstrap-sass gem?

当我删除 @screen-sm @screen-md @screen-lg 变量并用像素值替换它们时,浏览器中的错误消失了。但是当我使用这些变量时,浏览器 rails 错误提示这些参数无效。

我正在使用 bootstrap-sasts 3.0.3。

我的 application.js 文件中也有 //=require bootstrap。github 页面 https://github.com/twbs/bootstrap-sass说这样做会导致变量在其他文件中不可用,但即使我从我的 js 文件中删除了这一行,我仍然无法在我的 application.css.scss 文件中使用变量。

application.css.scss

*= require_self
*= require_tree .
*/
@import "bootstrap";

/* Small devices (tablets, 768px and up) */
@media only screen and (min-width: @screen-sm){

}

/* Medium devices (desktops, 992px and up) */
@media only screen and (min-width: @screen-md){

}

/* Large devices (large desktops, 1200px and up) */
@media only screen and (min-width: @screen-lg){

}

gem 文件

    source 'https://rubygems.org'
ruby "2.0.0"

gem 'rails', '4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jquery-turbolinks'
gem 'jbuilder', '~> 1.2'
gem 'sprockets-rails', :require => 'sprockets/railtie'

group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end

gem 'html2haml', '~> 1.0.1'
gem 'haml-rails', '0.5.1'
gem 'bootstrap-sass', '~> 3.0.3.0'

gem 'figaro', '~> 0.7.0'
gem 'nokogiri', '~> 1.6.0'
gem 'paperclip', '~> 3.0'
gem 'paperclip-dropbox', '>= 1.1.7'
gem 'devise'

group :development do
# erubis is already included in action pack
gem 'ruby_parser', '~> 3.1.1'
end

group :development, :test do
gem 'sqlite3'
end

group :production do
gem 'pg'
gem 'rails_12factor'

#gem 'aws-sdk', "~> 1.0"
end

# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'

# Use unicorn as the app server
# gem 'unicorn'

# Use Capistrano for deployment
# gem 'capistrano', group: :development

# Use debugger
# gem 'debugger', group: [:development, :test]

最佳答案

今天我遇到了同样的问题。我认为问题的根源在于您正在混合语法(Less 与 sass)。

如果您正在编写面向 Less 的样式表,则使用 @ 运算符引用变量。而使用 scass 编写样式表(我推断是因为文件 application.css.scss 的名称)变量是使用 $ 引用的。

所以,你的样式表必须写成如下:

...

@import "bootstrap";

/* Small devices (tablets, 768px and up) */
@media only screen and (min-width: $screen-sm){

}

...

关于css - Bootstrap 变量在 rails 中不可用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23191056/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com