94fb4df2ca24d62aed084ac5f65ba57c22ccde3c
[yaffs-website] / web / modules / contrib / entity_browser / css / entity_browser.entity_list.css
1 /**
2  * @file
3  * Styles for lists of entities display using FieldWidgetDisplayInterface plugins.
4  *
5  * Currently used on Entity browser entity reference field widget and Multi-step
6  * selection display plugin.
7  *
8  * These styles are compatible with Bartik, Seven, and Classy themes.
9  */
10
11 .entities-list .item-container {
12   display: inline-block;
13   margin: 10px 10px 15px;
14   vertical-align: text-bottom;
15 }
16
17 .entities-list .item-container > img,
18 .entities-list .item-container > input {
19   display: block;
20   margin: 5px auto 0;
21 }
22
23 .entities-list.sortable .item-container:hover {
24   cursor: move;
25   opacity: 0.6;
26 }
27
28 .entities-list .rendered-entity {
29   display: inline-block;
30   vertical-align: text-top;
31 }
32
33 .entities-list.hidden {
34   display: none;
35 }