Skip to content

Commit

Permalink
refs 7123 modified background-color of form
Browse files Browse the repository at this point in the history
  • Loading branch information
Reiko Shinozuka committed May 2, 2014
1 parent 22bc291 commit f7832be
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app/assets/stylesheets/select2.css.erb
Original file line number Diff line number Diff line change
Expand Up @@ -240,23 +240,29 @@ Version: 3.4.5 Timestamp: Mon Nov 4 08:22:42 PST 2013
-webkit-box-shadow: none;
box-shadow: none;

background: url(<%= asset_path('select2.png') %>) no-repeat 100% -22px;
/* #7123
background: #fff url(<%= asset_path('select2.png') %>) no-repeat 100% -22px;
background: url(<%= asset_path('select2.png') %>) no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
background: url(<%= asset_path('select2.png') %>) no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url(<%= asset_path('select2.png') %>) no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url(<%= asset_path('select2.png') %>) no-repeat 100% -22px, linear-gradient(top, #fff 85%, #eee 99%);
*/
}

.select2-drop.select2-drop-above .select2-search input {
margin-top: 4px;
}

.select2-search input.select2-active {
background: url(<%= asset_path('select2-spinner.gif') %>) no-repeat 100%;
/* #7123
background: #fff url(<%= asset_path('select2-spinner.gif') %>) no-repeat 100%;
background: url(<%= asset_path('select2-spinner.gif') %>) no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
background: url(<%= asset_path('select2-spinner.gif') %>) no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url(<%= asset_path('select2-spinner.gif') %>) no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url(<%= asset_path('select2-spinner.gif') %>) no-repeat 100%, linear-gradient(top, #fff 85%, #eee 99%);
*/
}

.select2-container-active .select2-choice,
Expand Down

0 comments on commit f7832be

Please sign in to comment.