Skip to content
Snippets Groups Projects
Commit 72d15cc7 authored by gitlabhq's avatar gitlabhq
Browse files

error fields highlight

parent 1a9531c9
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -638,3 +638,12 @@ tbody tr:nth-child(2n) td, tbody tr.even td {
display:none;
}
}
.field_with_errors {
input[type="text"],
input[type="password"],
textarea
{
background: none repeat scroll 0 0 #FFBBBB
}
}
Loading
Loading
@@ -35,7 +35,6 @@ class Project < ActiveRecord::Base
:presence => true
 
validate :check_limit
validate :repo_name
 
after_destroy :destroy_gitosis_project
Loading
Loading
@@ -172,7 +171,7 @@ class Project < ActiveRecord::Base
 
def repo_name
if path == "gitosis-admin"
errors.add(:path, "Project path like 'gitosis-admin' is not allowed")
errors.add(:path, " like 'gitosis-admin' is not allowed")
end
end
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment