-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentity_browser.css
67 lines (57 loc) · 1.28 KB
/
entity_browser.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
.entity-browser-modal > .ui-dialog-content {
padding: 0 !important;
}
/* .entity-browser-modal-iframe {
padding: 1rem 1rem 3rem 1rem;
} */
body.entity-browser {
overflow: hidden;
}
form.entity-browser-form {
max-height: 100vh;
}
form.entity-browser-form > div.view {
max-height: calc(100vh - 3.5rem);
display: flex;
flex-direction: column;
gap: 1rem;
padding: 0;
}
form.entity-browser-form > div.view > .view-filters {
padding: 0 1rem;
flex: 0;
background-color: var(--colorGinAppBackground);
}
form.entity-browser-form > div.view > .view-filters > div {
padding: 1rem;
border: 0;
border-radius: 0;
box-shadow: none;
background-color: transparent;
}
form.entity-browser-form > div.view > .view-content {
display: block;
flex: 1;
overflow-y: auto;
padding: 0 1rem;
margin: 0;
}
form.entity-browser-form > div.view > .view-content .entity-browser-selection-counter {
position: absolute;
bottom: 1rem;
z-index: 1;
}
form.entity-browser-form > div.view > nav {
margin: 0;
}
form.entity-browser-form > .form-actions {
position: fixed;
bottom: 0;
width: 100%;
background-color: white;
left: 0;
display: flex;
justify-content: flex-end;
border-top: 1px solid var(--colorGinLayerBorder);
background-color: var(--colorGinAppBackground);
}