diff --git a/library/Graphite/Web/Widget/Graphs.php b/library/Graphite/Web/Widget/Graphs.php
index 1514aa8..68c066d 100644
--- a/library/Graphite/Web/Widget/Graphs.php
+++ b/library/Graphite/Web/Widget/Graphs.php
@@ -193,12 +193,12 @@ abstract class Graphs extends AbstractWidget
$result[] = $div;
} elseif ($limit && $renderedGraphs === $limit) {
$result[] = sprintf(
- ''
+ ''
. ''
- . '
',
+ . '
',
$view->protectId($this->getMonitoredObjectIdentifier()),
$view->translate('Show More'),
$view->translate('Show Less')
diff --git a/public/css/module.less b/public/css/module.less
index c661a89..f42f6f3 100644
--- a/public/css/module.less
+++ b/public/css/module.less
@@ -10,55 +10,6 @@ div.images {
}
-.collapsible {
- clear: right; // Because the label is floating right
-
- height: 0;
- opacity: 0;
- visibility: hidden;
-
- -webkit-transition: opacity 0.2s linear, visibility 0.2s;
- -moz-transition: opacity 0.2s linear, visibility 0.2s;
- -o-transition: opacity 0.2s linear, visibility 0.2s;
- transition: opacity 0.2s linear, visibility 0.2s;
-}
-
-input[type="checkbox"].collapsible-toggle {
- display: none;
-
- & + label {
- float: right;
- margin-right: 1em;
-
- cursor: pointer;
- user-select: none;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- }
-
- &:checked ~ .collapsible {
- height: auto;
- opacity: 1;
- visibility: visible;
-
- -webkit-transition: opacity 0.2s linear;
- -moz-transition: opacity 0.2s linear;
- -o-transition: opacity 0.2s linear;
- transition: opacity 0.2s linear;
- }
- & ~ label span.collapsible-hide {
- display: none;
- }
-
- &:checked ~ label span.collapsible-show {
- display: none;
- }
- &:checked ~ label span.collapsible-hide {
- display: inline;
- }
-}
-
div.images.monitored-object-detail-view {
display: block;