When I created a graph widget on the dashboard, no matter the zoom setting or how wide the widget is, the widget always shows a horizontal and vertical scroll bar (as if the graph is too big to fit in the widget). Is there a way to disable it?
Ad Widget
Collapse
Disable graph widget scroll bar
Collapse
X
-
Tags: None
-
Найди в файле style.css в различных темах эту строчку (.sysmap-scroll-container ) и добавь в нее width: max-content; Пример внизу.
Find in the style file.css in a variety of topics that line (.sys map-scroll-container ) and add width: max-content; Example below.
.sysmap-scroll-container{- overflow-x: auto;
- overflow-y: hidden;
- position: relative;
- width: calc(100% - 20px);
- border: 10px solid #2b2b2b;
- background: #2b2b2b;
- display: block;
- margin: 4px 0;
- width: max-content;
Comment