diff --git a/enhancers/multiselect/css/entity_browser_enhanced.multiselect.css b/enhancers/multiselect/css/entity_browser_enhanced.multiselect.css
index dd0cb84..c84e4a0 100755
--- a/enhancers/multiselect/css/entity_browser_enhanced.multiselect.css
+++ b/enhancers/multiselect/css/entity_browser_enhanced.multiselect.css
@@ -31,22 +31,54 @@
 }
 
 .view .views-col {
-  height: 100%;
-}
-
-.view .views-col.selected img {
-  box-shadow: 0 0 20px lime;
-}
-
-.view .views-col .views-field {
-  max-height: 240px;
-  padding: 2px;
+  position: relative;
+  width: 100%;
 }
 
 .view .views-col img {
-  height: 100%;
-  object-fit: cover;
+  border: 2px solid #cccccc;
+  max-width: 100%;
+  max-height: 100%;
+}
+
+.view .views-col.selected img {
+  border: 2px solid #37802f;
+}
+
+.view .views-col.selected::before {
+  content: " ";
   width: 100%;
+  height: 100%;
+  top: 0;
+  bottom: 0;
+  right: 0;
+  left: 0;
+  position: absolute;
+  background: transparent url(../images/check.svg) no-repeat center center;
+  background-size: 40%;
+  -webkit-transition: all 0.2s;
+  transition: all 0.2s;
+  display: block;
+}
+
+.view .views-col .field--name-name {
+  display: none;
+  position: absolute;
+  bottom: 8px;
+  width: 96%;
+  box-sizing: border-box;
+  position: absolute;
+  z-index: 1;
+  background-color: rgba(0,0,0,.8);
+  padding: 5px;
+  margin: 0 2px;
+  color: #fff;
+  font-size: 9px;
+  word-wrap: break-word;
+}
+
+.view .views-col:hover .field--name-name {
+  display: block;
 }
 
 .view .views-col .js-form-item {
diff --git a/enhancers/multiselect/images/check.svg b/enhancers/multiselect/images/check.svg
new file mode 100755
index 0000000..566cbc4
--- /dev/null
+++ b/enhancers/multiselect/images/check.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="#73b355"><path d="M6.464 13.676c-.194.194-.513.194-.707 0l-4.96-4.955c-.194-.193-.194-.513 0-.707l1.405-1.407c.194-.195.512-.195.707 0l2.849 2.848c.194.193.513.193.707 0l6.629-6.626c.195-.194.514-.194.707 0l1.404 1.404c.193.194.193.513 0 .707l-8.741 8.736z"/></svg>
\ No newline at end of file
