Skip to content

Commit

Permalink
Vertically center device icons
Browse files Browse the repository at this point in the history
  • Loading branch information
murrant committed Sep 28, 2023
1 parent 35406b4 commit 69b5876
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions html/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -2203,11 +2203,10 @@ label {
}

.device-table-icon {
padding-left:7px;
display: inline-block;
width: 64px;
height: 32px;
line-height: 32px;
display: flex;
align-items: center;
width: 32px;
height: 32px;
}

.device-table-icon img {
Expand Down
2 changes: 1 addition & 1 deletion resources/views/layouts/librenmsv1.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<link href="{{ asset('css/query-builder.default.min.css') }}" rel="stylesheet">
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
<link href="{{ asset('css/bootstrap.min.css') }}" rel="stylesheet">
<link href="{{ asset(LibreNMS\Config::get('stylesheet', 'css/styles.css')) }}?ver=20220910" rel="stylesheet">
<link href="{{ asset(LibreNMS\Config::get('stylesheet', 'css/styles.css')) }}?ver=20230928" rel="stylesheet">
<link href="{{ asset('css/' . LibreNMS\Config::get('applied_site_style', 'light') . '.css?ver=632417643') }}" rel="stylesheet">
@foreach(LibreNMS\Config::get('webui.custom_css', []) as $custom_css)
<link href="{{ $custom_css }}" rel="stylesheet">
Expand Down

0 comments on commit 69b5876

Please sign in to comment.