Hartl Rails教程第7章字段错误仍然是黑色

时间:2017-10-25 13:02:46

标签: css ruby-on-rails twitter-bootstrap twitter-bootstrap-3 ruby-on-rails-5

在7.3.3部分中,class="form_control"的所有输入字段都嵌套在带有class="field_with_errors" should be colored red的div中。但this is我得到了什么。

custom.scss包括:

#error_explanation {
  color: red;
  ul {
    color: red;
    margin: 0 0 30px 0;
  }
}

.field_with_errors {
  @extend .has-error;
  .form-control {
    color: $state-danger-text;
  }
}

正如您从screenshot #error_explanation中看到的那样,.field_with_errors没有效果。 它可能有什么问题?

链接到Heroku:https://daytonaraceway.herokuapp.com/signup

由于

1 个答案:

答案 0 :(得分:0)

html模板的代码中存在拼写错误,因此将输入字段class: 'form_control'更改为class: 'form-control'解决了问题