Skip to content

Commit f26226e

Browse files
committed
Fix table search bar not rendering properly across browsers
1 parent 4082f9e commit f26226e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

resources/views/admin/nodes/index.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828
<div class="box box-primary">
2929
<div class="box-header with-border">
3030
<h3 class="box-title">Node List</h3>
31-
<div class="box-tools">
31+
<div class="box-tools search01">
3232
<form action="{{ route('admin.nodes') }}" method="GET">
3333
<div class="input-group input-group-sm">
34-
<input type="text" name="query" class="form-control pull-right" style="width:30%;" value="{{ request()->input('query') }}" placeholder="Search Nodes">
34+
<input type="text" name="query" class="form-control pull-right" value="{{ request()->input('query') }}" placeholder="Search Nodes">
3535
<div class="input-group-btn">
3636
<button type="submit" class="btn btn-default"><i class="fa fa-search"></i></button>
3737
<a href="{{ route('admin.nodes.new') }}"><button type="button" class="btn btn-sm btn-primary" style="border-radius: 0 3px 3px 0;margin-left:-1px;">Create New</button></a>

resources/views/admin/servers/index.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
<div class="box box-primary">
2424
<div class="box-header with-border">
2525
<h3 class="box-title">Server List</h3>
26-
<div class="box-tools">
26+
<div class="box-tools search01">
2727
<form action="{{ route('admin.servers') }}" method="GET">
2828
<div class="input-group input-group-sm">
29-
<input type="text" name="query" class="form-control pull-right" style="width:30%;" value="{{ request()->input('query') }}" placeholder="Search Servers">
29+
<input type="text" name="query" class="form-control pull-right" value="{{ request()->input('query') }}" placeholder="Search Servers">
3030
<div class="input-group-btn">
3131
<button type="submit" class="btn btn-default"><i class="fa fa-search"></i></button>
3232
<a href="{{ route('admin.servers.new') }}"><button type="button" class="btn btn-sm btn-primary" style="border-radius: 0 3px 3px 0;margin-left:-1px;">Create New</button></a>

resources/views/admin/users/index.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
<div class="box box-primary">
2424
<div class="box-header with-border">
2525
<h3 class="box-title">User List</h3>
26-
<div class="box-tools">
26+
<div class="box-tools search01">
2727
<form action="{{ route('admin.users') }}" method="GET">
2828
<div class="input-group input-group-sm">
29-
<input type="text" name="query" class="form-control pull-right" style="width:30%;" value="{{ request()->input('query') }}" placeholder="Search">
29+
<input type="text" name="query" class="form-control pull-right" value="{{ request()->input('query') }}" placeholder="Search">
3030
<div class="input-group-btn">
3131
<button type="submit" class="btn btn-default"><i class="fa fa-search"></i></button>
3232
<a href="{{ route('admin.users.new') }}"><button type="button" class="btn btn-sm btn-primary" style="border-radius: 0 3px 3px 0;margin-left:-1px;">Create New</button></a>

0 commit comments

Comments
 (0)