Я пытаюсь заставить Blueprint (SCSS-синтаксис) работать с моим проектом Rails (3.1).
Для простоты сначала я установил простой HTML-файл (вне моего проекта rails) с некоторым базовым синтаксическим планом, после установки компаса и создания основных файлов scss с помощью:
compass install blueprint .
Создает каталог sass с screen.scss, который содержит:
@import blueprint
среди прочего, но stylesheets / screen.css не содержит инструкций span-x, как я и ожидал после просмотра Compass: Real Framework Stylesheet Framework от Chris Eppstein (http://vimeo.com/4335944) и, самое главное, мой HTML выглядит скучно как всегда.
<html>
<head>
<link href="stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" />
<link href="stylesheets/print.css" media="print" rel="stylesheet" type="text/css" />
<!--[if lt IE 8]>
<link href="/stylesheets/ie.css" media="screen, projection" rel="stylesheet" type="text/css" />
<![endif]-->
</head>
<body>
<div class="container">
<div class="span-24">
<center>
<h1 class="alt box">asdfhlakshf sdfgs dgf sdf sdfg fsd g</h1>
</center>
</div>
<div class="pre">
asdfhlakshf
</div>
<div class="span-4 success colborder">
WOW
</div>
</div>
</body>
</html>
Мой screen.css выглядит так (небольшая выдержка):
/* line 44, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_form.scss */
form.bp input.text, form.bp input.title, form.bp input[type=email], form.bp input[type=text], form.bp input[type=password] {
width: 300px;
}
/* line 46, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_form.scss */
form.bp textarea {
width: 390px;
height: 250px;
}
/* line 39, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss */
form.bp .box {
padding: 1.5em;
margin-bottom: 1.5em;
background: #e5ecf9;
}
/* line 42, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss */
form.bp .border {
padding-right: 4px;
margin-right: 5px;
border-right: 1px solid #dddddd;
}
/* line 45, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss */
form.bp .colborder {
padding-right: 24px;
margin-right: 25px;
border-right: 1px solid #dddddd;
}
/* line 47, ../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss */
form.bp hr {
background: #dddddd;
color: #dddddd;
clear: both;
float: none;
width: 100%;
height: 0.1em;
margin: 0 0 1.45em;
border: none;
}
Calling
compass compile
Просто говорит мне, что все остается без изменений. Но он делает что-то, как только я добавляю
@import "blueprint/grid"
например. Тем не менее, не очень красивый HTML.
Во-вторых, я копирую предварительно скомпилированный файл screen.css (загруженный с веб-сайта проекта) в папку стилей, и все работает как чудо. То же самое внутри моего проекта рельсов. Я могу использовать скомпилированный CSS там без проблем.
Полагаю, мне не хватает чего-то базового, что мне нужно сделать для того, чтобы сработала магия компиляции компаса, но я не могу понять, что это такое.
Заранее спасибо за любые идеи!
Версия
- компас 0.11.5 (Antares)
- ruby 1.8.7 (вне проекта рельсов)
- ruby 1.9.2 (с проектом rails)
- с использованием rvm 1.6.21
Установлен хамл 3.1.2 и sass 3.1.4. Хотя я думаю, что это не должно быть актуально, так как я использовал html и scss, верно?
Может быть, я должен был включить больше моего экрана.scss:
// This import applies a global reset to any page that imports this stylesheet.
@import "blueprint/reset";
// To configure blueprint, edit the partials/base.sass file.
@import "partials/base";
@import "blueprint/grid";
// Import all the default blueprint modules so that we can access their mixins.
@import "blueprint";
// Import the non-default scaffolding module.
@import "blueprint/scaffolding";
// To generate css equivalent to the blueprint css but with your
// configuration applied, uncomment:
// @include blueprint
// If you are doing a lot of stylesheet concatenation, it is suggested
// that you scope your blueprint styles, so that you can better control
// what pages use blueprint when stylesheets are concatenated together.
body.bp {
@include blueprint-typography(true);
@include blueprint-utilities;
@include blueprint-debug;
@include blueprint-interaction;
// Remove the scaffolding when you're ready to start doing visual design.
// Or leave it in if you're happy with how blueprint looks out-of-the-box
}
form.bp {
@include blueprint-form;
// You'll probably want to remove the scaffolding once you start styling your site.
@include blueprint-scaffolding; }
// Page layout can be done using mixins applied to your semantic classes and IDs:
body.two-col {
#container {
@include container; }
#header, #footer {
@include column($blueprint-grid-columns); }
#sidebar {
// One third of the grid columns, rounding down. With 24 cols, this is 8.
$sidebar-columns: floor($blueprint-grid-columns / 3);
@include column($sidebar-columns); }
#content {
// Two thirds of the grid columns, rounding up.
// With 24 cols, this is 16.
$content-columns: ceil(2 * $blueprint-grid-columns / 3);
// true means it's the last column in the row
@include column($content-columns, true); } }
Я также попытался изменить версию ruby и переименовать папку sass в scss. У меня заканчиваются идеи здесь ...