mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Remove unnecessary horizontal scroll bars in allert widgets (#12464)
* Remove unneeded horizontal scroll bars for alert widgets Fixes #12454 * Always hide horizontal scroll bars Width of the widget_body class is set to 100% which hides them anyway, with correct css margins
This commit is contained in:
@@ -1962,6 +1962,7 @@ label {
|
||||
.widget_body {
|
||||
padding: 0.8em;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
width: 100%;
|
||||
height: calc(100% - 38px);
|
||||
cursor: auto;
|
||||
|
@@ -1,8 +1,3 @@
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<span id="message"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="table-responsive">
|
||||
<table id="alertlog_{{ $id }}" class="table table-hover table-condensed alerts">
|
||||
<thead>
|
||||
|
@@ -1,8 +1,3 @@
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<span id="message"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="table-responsive">
|
||||
<table id="alertlog-stats_{{ $id }}" class="table table-hover table-condensed table-striped">
|
||||
<thead>
|
||||
|
@@ -1,8 +1,3 @@
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<span id="message"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="table-responsive">
|
||||
<table id="alerts_{{ $id }}" class="table table-hover table-condensed alerts">
|
||||
<thead>
|
||||
|
Reference in New Issue
Block a user