我正在尝试更改 scss 文件使用的一些颜色并放大图例的文本。我已经在 rickshawgraph.scss 文件中编辑了这些值,但是当我启动 dashing rickshaw graph 时它保持不变。
https://gist.github.com/jwalton/6614023 这是我的编辑块。
// ----------------------------------------------------------------------------
// Sass declarations
// ----------------------------------------------------------------------------
$background-color: #dc5945;
$title-color: rgba(126, 126, 126, 0.7);
$moreinfo-color: rgba(126, 126, 126, 0.5);
$tick-color: rgba(0, 0, 0, 0.4);
这是原始文件中的块。
// ----------------------------------------------------------------------------
// Sass declarations
// ----------------------------------------------------------------------------
$background-color: #dc5945;
$title-color: rgba(255, 255, 255, 0.7);
$moreinfo-color: rgba(255, 255, 255, 0.5);
$tick-color: rgba(0, 0, 0, 0.4);
任何帮助,将不胜感激。