|
1 | 1 | .folderPaneInstancePane { |
2 | 2 | box-sizing: border-box; |
| 3 | + align-self: stretch; |
| 4 | + text-align: left; |
3 | 5 | width: 100%; |
4 | | - max-width: 100%; |
5 | | - border-top: solid 1px #777; |
6 | | - border-bottom: solid 1px #777; |
| 6 | + max-width: none; |
| 7 | + margin-left: 0; |
| 8 | + margin-right: 0; |
7 | 9 | margin-top: var(--spacing-xs, 0.5em); |
8 | 10 | margin-bottom: var(--spacing-xs, 0.5em); |
9 | 11 | overflow-x: auto; |
10 | 12 | -webkit-overflow-scrolling: touch; |
11 | 13 | } |
12 | 14 |
|
13 | 15 | .folderPanePackageDiv { |
| 16 | + display: block; |
| 17 | + text-align: left; |
14 | 18 | width: 100%; |
15 | | - max-width: 100%; |
| 19 | + max-width: none; |
| 20 | + margin-left: 0; |
| 21 | + margin-right: 0; |
16 | 22 | border-top: 0.2em solid #ccc; |
17 | 23 | overflow-x: auto; |
18 | 24 | } |
19 | 25 |
|
20 | 26 | .folderPaneMainTable { |
| 27 | + display: table; |
21 | 28 | width: 100%; |
22 | | - max-width: 100%; |
| 29 | + max-width: none; |
23 | 30 | table-layout: auto; |
24 | 31 | text-align: left; |
| 32 | + margin-left: 0; |
| 33 | + margin-right: auto; |
| 34 | + margin-bottom: var(--spacing-lg, 1.5625rem); |
25 | 35 | } |
26 | 36 |
|
27 | 37 | .folderPaneMainTable td, |
|
32 | 42 | word-break: break-word; |
33 | 43 | } |
34 | 44 |
|
| 45 | +/* manager.js sets inline padding:0 on object cells; use an important override here */ |
| 46 | +.folderPaneMainTable > tr > td.obj, |
| 47 | +.folderPaneMainTable > tbody > tr > td.obj { |
| 48 | + padding-left: var(--spacing-lg, 1.5625rem) !important; |
| 49 | +} |
| 50 | + |
35 | 51 | .folderPanePredicateCell { |
36 | | - min-width: 0.1em; |
| 52 | + width: 0; |
| 53 | + min-width: 0; |
| 54 | + max-width: 0; |
| 55 | + padding: 0 !important; |
| 56 | + margin: 0 !important; |
| 57 | + border: 0 !important; |
| 58 | + overflow: hidden; |
37 | 59 | } |
38 | 60 |
|
39 | 61 | .folderPaneCreationDiv { |
| 62 | + display: flex; |
| 63 | + align-items: flex-start; |
| 64 | + justify-content: flex-start; |
| 65 | + text-align: left; |
40 | 66 | width: 100%; |
41 | | - max-width: 100%; |
| 67 | + max-width: none; |
| 68 | + margin-left: 0; |
| 69 | + margin-right: 0; |
42 | 70 | } |
43 | 71 |
|
44 | 72 | .folderPaneDropTarget { |
45 | | - max-width: 100%; |
| 73 | + display: inline-block; |
| 74 | + width: var(--icon-base, 2em); |
| 75 | + min-width: var(--icon-base, 2em); |
| 76 | + max-width: var(--icon-base, 2em); |
| 77 | + height: var(--icon-base, 2em); |
| 78 | + min-height: var(--icon-base, 2em); |
| 79 | + max-height: var(--icon-base, 2em); |
| 80 | + padding: 0 !important; |
| 81 | + margin: 0 !important; |
| 82 | + box-sizing: content-box; |
| 83 | + flex: 0 0 var(--icon-base, 2em); |
46 | 84 | } |
47 | 85 |
|
48 | 86 | .folderPaneExplicitDropIcon { |
|
0 commit comments