修改评论的button样式在禁用时更有效

This commit is contained in:
yafeilee 2014-04-03 20:28:49 +08:00
parent cb114f0777
commit 12a23429d6
2 changed files with 12 additions and 1 deletions

View File

@ -55,6 +55,17 @@
}
}
.comment-submit[disabled] {
opacity: 0.4;
cursor: not-allowed;
}
.comment-submit {
background-color: #008cba;
opacity: 0.8;
}
.comment-success {
color: #66FAB5;
}

View File

@ -8,7 +8,7 @@
.small-12.large-6.columns
= text_field_tag(:name, nil, placeholder: '你的名字', 'ng-model'=> 'name', 'ng-required'=> 'true')
= text_field_tag(:email, nil, placeholder: '你的邮箱', 'ng-model'=> 'email', 'ng-pattern'=>"/^.+@.+$/", 'ng-required'=>"true")
button ng-click="submit()" ng-disabled="form.$invalid" 发表
button.comment-submit ng-click="submit()" ng-disabled="form.$invalid" 发表
p.comment-success ng-show="publish_success" 发布成功
p.comment-fail ng-show="publish_success == false" 发布失败: {{ publish_fail_msg }}
.comment-diag ng-cloak=""