You are here

entity_browser_enhanced.multiselect.css in Entity Browser Enhance(d|r) 8

nav ul {
  border-bottom-color: #d0d0d0;
}

nav ul li a {
  border-radius: 1em 1em 0 0;
}

nav ul li.active {
  border-bottom-width: 0;
}

nav.eb-tabs ul li.active a {
  background-color: #d6d6d6;
}

.view .views-exposed-form {
  padding: 1.5em;
  background-color: #efefef;
}

.view .views-exposed-form .form--inline .form-item,
.view .views-exposed-form .form--inline .form-actions {
  margin-top: 0;
  margin-bottom: 0;
  display: inline-block;
}

.view .view-content {
  margin: 2em 0;
}

.view .views-col {
  position: relative;
  width: 100%;
}

.view .views-col img {
  border: 2px solid #cccccc;
  max-width: 95%;
  max-height: 100%;
  height: auto;
}

.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;
  z-index: 10;
}

.view .views-col .field--name-name {
  display: none;
  position: absolute;
  bottom: 8px;
  width: 95%;
  box-sizing: border-box;
  z-index: 4;
  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 {
  position: absolute !important;
  clip: rect(1px,1px,1px,1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  word-wrap: normal;
}

File

enhancers/multiselect/css/entity_browser_enhanced.multiselect.css
View source
  1. nav ul {
  2. border-bottom-color: #d0d0d0;
  3. }
  4. nav ul li a {
  5. border-radius: 1em 1em 0 0;
  6. }
  7. nav ul li.active {
  8. border-bottom-width: 0;
  9. }
  10. nav.eb-tabs ul li.active a {
  11. background-color: #d6d6d6;
  12. }
  13. .view .views-exposed-form {
  14. padding: 1.5em;
  15. background-color: #efefef;
  16. }
  17. .view .views-exposed-form .form--inline .form-item,
  18. .view .views-exposed-form .form--inline .form-actions {
  19. margin-top: 0;
  20. margin-bottom: 0;
  21. display: inline-block;
  22. }
  23. .view .view-content {
  24. margin: 2em 0;
  25. }
  26. .view .views-col {
  27. position: relative;
  28. width: 100%;
  29. }
  30. .view .views-col img {
  31. border: 2px solid #cccccc;
  32. max-width: 95%;
  33. max-height: 100%;
  34. height: auto;
  35. }
  36. .view .views-col.selected img {
  37. border: 2px solid #37802f;
  38. }
  39. .view .views-col.selected::before {
  40. content: " ";
  41. width: 100%;
  42. height: 100%;
  43. top: 0;
  44. bottom: 0;
  45. right: 0;
  46. left: 0;
  47. position: absolute;
  48. background: transparent url(../images/check.svg) no-repeat center center;
  49. background-size: 40%;
  50. -webkit-transition: all 0.2s;
  51. transition: all 0.2s;
  52. display: block;
  53. z-index: 10;
  54. }
  55. .view .views-col .field--name-name {
  56. display: none;
  57. position: absolute;
  58. bottom: 8px;
  59. width: 95%;
  60. box-sizing: border-box;
  61. z-index: 4;
  62. background-color: rgba(0,0,0,.8);
  63. padding: 5px;
  64. margin: 0 2px;
  65. color: #fff;
  66. font-size: 9px;
  67. word-wrap: break-word;
  68. }
  69. .view .views-col:hover .field--name-name {
  70. display: block;
  71. }
  72. .view .views-col .js-form-item {
  73. position: absolute !important;
  74. clip: rect(1px,1px,1px,1px);
  75. overflow: hidden;
  76. height: 1px;
  77. width: 1px;
  78. word-wrap: normal;
  79. }