@panoramax/web-viewer 4.0.3-develop-503c9f25 → 4.0.3-develop-03accd6d
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -26,18 +26,16 @@ export default class PictureLegend extends LitElement {
|
|
|
26
26
|
/** @private */
|
|
27
27
|
static styles = [placeholder, panel, hidden, css`
|
|
28
28
|
:host {
|
|
29
|
-
overflow-y: auto;
|
|
30
|
-
overflow-x: hidden;
|
|
31
29
|
display: flex;
|
|
32
30
|
flex-direction: column;
|
|
33
31
|
margin: 0;
|
|
34
32
|
font-family: var(--font-family);
|
|
33
|
+
flex-wrap: nowrap;
|
|
35
34
|
}
|
|
36
35
|
|
|
37
36
|
@media screen and (min-width: 576px) {
|
|
38
37
|
:host {
|
|
39
38
|
max-height: 70vh;
|
|
40
|
-
width: 30vw;
|
|
41
39
|
}
|
|
42
40
|
}
|
|
43
41
|
|
|
@@ -48,6 +46,7 @@ export default class PictureLegend extends LitElement {
|
|
|
48
46
|
align-items: center;
|
|
49
47
|
margin: 10px 10px 5px 10px;
|
|
50
48
|
justify-content: space-between;
|
|
49
|
+
flex: 1;
|
|
51
50
|
}
|
|
52
51
|
|
|
53
52
|
.headline-buttons {
|
|
@@ -95,6 +94,7 @@ export default class PictureLegend extends LitElement {
|
|
|
95
94
|
display: block;
|
|
96
95
|
margin-top: 5px;
|
|
97
96
|
max-width: 100%;
|
|
97
|
+
flex: 1;
|
|
98
98
|
}
|
|
99
99
|
#pic-legend-expand::part(btn) {
|
|
100
100
|
border-radius: 10px;
|
|
@@ -104,9 +104,11 @@ export default class PictureLegend extends LitElement {
|
|
|
104
104
|
|
|
105
105
|
/* Details block */
|
|
106
106
|
pnx-picture-metadata {
|
|
107
|
-
margin: 5px 10px
|
|
107
|
+
margin: 5px 10px;
|
|
108
108
|
display: block;
|
|
109
109
|
box-sizing: border-box;
|
|
110
|
+
flex: 1;
|
|
111
|
+
overflow-y: auto;
|
|
110
112
|
}
|
|
111
113
|
|
|
112
114
|
/* Details actions */
|
|
@@ -117,6 +119,7 @@ export default class PictureLegend extends LitElement {
|
|
|
117
119
|
border-bottom-right-radius: 10px;
|
|
118
120
|
gap: 5px;
|
|
119
121
|
flex-wrap: wrap;
|
|
122
|
+
flex: 1;
|
|
120
123
|
}
|
|
121
124
|
|
|
122
125
|
/* More options menu */
|