Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ gem 'jbuilder', '~> 2.5'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'tzinfo-data'
gem 'levenshtein-ffi', :require => 'levenshtein'
#gem 'levenshtein-ffi', :require => 'levenshtein'
gem 'mail'
gem 'mime-types'
gem 'mysql2'
Expand Down Expand Up @@ -65,7 +65,7 @@ group :doc do
end

group :development, :test, :production do
gem 'blurrily', git: 'https://github.com/calonsot/blurrily.git', :ref => 'c0cbbd1e9961774a6b8e2546285d38095b4d1bfa', :require => 'blurrily/server.rb' # Forza a blurrily a usar rails 5
#gem 'blurrily', git: 'https://github.com/calonsot/blurrily.git', :ref => 'c0cbbd1e9961774a6b8e2546285d38095b4d1bfa', :require => 'blurrily/server.rb' # Forza a blurrily a usar rails 5
end

group :development, :development_mac, :test do
Expand Down
51 changes: 51 additions & 0 deletions app/assets/stylesheets/plantid/plantid.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,54 @@
.show thead{
display:inline-block;
}
.ui-autocomplete {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
float: left;
min-width: 160px;
padding: 5px 0;
margin: 2px 0 0;
list-style: none;
font-size: 14px;
text-align: left;
background-color: #ffffff;
border: 1px solid #cccccc;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 4px;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
background-clip: padding-box;
}

.ui-autocomplete > li > div {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 1.42857143;
color: #333333;
white-space: nowrap;
}

.ui-state-hover,
.ui-state-active,
.ui-state-focus {
text-decoration: none;
color: #262626;
background-color: #f5f5f5;
cursor: pointer;
}

.ui-helper-hidden-accessible {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
1 change: 1 addition & 0 deletions app/views/layouts/plantid.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<%= stylesheet_link_tag 'plantid/plantid', 'data-turbolinks-track' => true %>



<%= csrf_meta_tags %>
<%= yield :extrahead %>
<%= yield :extracss %>
Expand Down