Commit 753a1501 authored by Jürgen Haas's avatar Jürgen Haas
Browse files

Issue #3270739 by jurgenhaas, rkoller: The bottom of the property panel is transparent

parent 940269a2
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -9,15 +9,18 @@
#bpmn-io .property-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 310px;
  max-width: 90vw;
  padding-left: 4px;
  overflow: scroll;
}
#bpmn-io .property-panel .bio-properties-panel-container::after {
#bpmn-io .property-panel .bio-properties-panel-scroll-container {
  padding-bottom: 0;
}
#bpmn-io .property-panel .bio-properties-panel::after {
  content: '';
  background-color: #ccc;
  background-color: var(--group-bottom-border-color);
  position: absolute;
  top: 0;
  left: 0;
@@ -25,6 +28,9 @@
  height: 100%;
  cursor: ew-resize;
}
#bpmn-io .bio-properties-panel-header {
  margin-bottom: 0;
}
#bpmn-io .property-panel input {
  padding-right: unset;
}
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
                        .css('left', offset.left)
                        .css('width', width);
                    $('#bpmn-io .property-panel')
                        .css('height', $(window).height() - offset.top);
                        .css('max-height', $(window).height() - offset.top);
                }, false);
                window.dispatchEvent(new Event("resize"));