Skip to content
This repository has been archived by the owner on Sep 12, 2018. It is now read-only.

Commit

Permalink
CreateProject: Fix Broken style for vcs selectbox with safari browser
Browse files Browse the repository at this point in the history
  • Loading branch information
insanehong committed May 20, 2015
1 parent 4d1e7f3 commit c42580f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/project/create.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
</div>
<div class="span10 cu-desc">
@defining(newProjectForm.field("vcs").value){ vcsFormField =>
<select id="vcs" name="vcs" data-toggle="select2" data-dropdown-css-class="select2-without-searchbox" class="mb10 mt5">
<select id="vcs" name="vcs" data-toggle="select2" data-dropdown-css-class="select2-without-searchbox" class="mb10 mt5" style="min-width: 220px;">
@RepositoryService.vcsTypes.map{ v =>
<option value="@v._1"
@if((vcsFormField == null && v._1 == "GIT") || (vcsFormField == v._1)){
Expand Down

0 comments on commit c42580f

Please sign in to comment.