mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-24 21:24:13 -08:00
Converted table heading icons in People to CSS glyphs
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
5bb4f271aa
commit
e009fbe59f
|
@ -171,21 +171,22 @@ class UserPresenter extends Presenter
|
||||||
"formatter" => "usersLinkObjFormatter"
|
"formatter" => "usersLinkObjFormatter"
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"field" => "assets_count",
|
'field' => 'assets_count',
|
||||||
"searchable" => false,
|
'searchable' => false,
|
||||||
"sortable" => true,
|
'sortable' => true,
|
||||||
"switchable" => true,
|
'switchable' => true,
|
||||||
"title" => ' <span class="hidden-md hidden-lg">Assets</span>'
|
'escape' => true,
|
||||||
.'<span class="hidden-xs"><i class="fa fa-barcode fa-lg"></i></span>',
|
'class' => 'css-barcode',
|
||||||
"visible" => true,
|
'title' => 'Assets',
|
||||||
|
'visible' => true,
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"field" => "licenses_count",
|
"field" => "licenses_count",
|
||||||
"searchable" => false,
|
"searchable" => false,
|
||||||
"sortable" => true,
|
"sortable" => true,
|
||||||
"switchable" => true,
|
"switchable" => true,
|
||||||
"title" => ' <span class="hidden-md hidden-lg">Licenses</span>'
|
'class' => 'css-license',
|
||||||
.'<span class="hidden-xs"><i class="fa fa-floppy-o fa-lg"></i></span>',
|
"title" => 'License',
|
||||||
"visible" => true,
|
"visible" => true,
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
@ -193,8 +194,8 @@ class UserPresenter extends Presenter
|
||||||
"searchable" => false,
|
"searchable" => false,
|
||||||
"sortable" => true,
|
"sortable" => true,
|
||||||
"switchable" => true,
|
"switchable" => true,
|
||||||
"title" => ' <span class="hidden-md hidden-lg">Consumables</span>'
|
'class' => 'css-consumable',
|
||||||
.'<span class="hidden-xs"><i class="fa fa-tint fa-lg"></i></span>',
|
"title" => 'Consumables',
|
||||||
"visible" => true,
|
"visible" => true,
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
@ -202,8 +203,8 @@ class UserPresenter extends Presenter
|
||||||
"searchable" => false,
|
"searchable" => false,
|
||||||
"sortable" => true,
|
"sortable" => true,
|
||||||
"switchable" => true,
|
"switchable" => true,
|
||||||
"title" => ' <span class="hidden-md hidden-lg">Accessories</span>'
|
'class' => 'css-accessory',
|
||||||
.'<span class="hidden-xs"><i class="fa fa-keyboard-o fa-lg"></i></span>',
|
"title" => 'Accessories',
|
||||||
"visible" => true,
|
"visible" => true,
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
|
|
@ -14,6 +14,59 @@
|
||||||
@stop
|
@stop
|
||||||
|
|
||||||
@section('header_right')
|
@section('header_right')
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
th.css-barcode > .th-inner,
|
||||||
|
th.css-license > .th-inner,
|
||||||
|
th.css-consumable > .th-inner,
|
||||||
|
th.css-accessory > .th-inner
|
||||||
|
{
|
||||||
|
font-size: 0px;
|
||||||
|
line-height: 0;
|
||||||
|
line-height: 4!important;
|
||||||
|
text-align: center;
|
||||||
|
text-rendering: auto;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
th.css-barcode > .th-inner::before,
|
||||||
|
th.css-license > .th-inner::before,
|
||||||
|
th.css-consumable > .th-inner::before,
|
||||||
|
th.css-accessory > .th-inner::before
|
||||||
|
|
||||||
|
{
|
||||||
|
display: inline-block;
|
||||||
|
font: normal normal normal 14px/1 FontAwesome;
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
th.css-barcode > .th-inner::before
|
||||||
|
{
|
||||||
|
content: "\f02a";
|
||||||
|
}
|
||||||
|
|
||||||
|
th.css-license > .th-inner::before
|
||||||
|
{
|
||||||
|
content: "\f0c7";
|
||||||
|
}
|
||||||
|
|
||||||
|
th.css-consumable > .th-inner::before
|
||||||
|
{
|
||||||
|
content: "\f043";
|
||||||
|
}
|
||||||
|
|
||||||
|
th.css-accessory > .th-inner::before
|
||||||
|
{
|
||||||
|
content: "\f11c";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
@can('create', \App\Models\User::class)
|
@can('create', \App\Models\User::class)
|
||||||
@if ($snipeSettings->ldap_enabled == 1)
|
@if ($snipeSettings->ldap_enabled == 1)
|
||||||
<a href="{{ route('ldap/user') }}" class="btn btn-default pull-right"><span class="fa fa-sitemap"></span> LDAP Sync</a>
|
<a href="{{ route('ldap/user') }}" class="btn btn-default pull-right"><span class="fa fa-sitemap"></span> LDAP Sync</a>
|
||||||
|
@ -90,7 +143,9 @@
|
||||||
|
|
||||||
@stop
|
@stop
|
||||||
|
|
||||||
@section('moar_scripts')
|
@section('moar_scripts')val
|
||||||
|
|
||||||
|
|
||||||
@include ('partials.bootstrap-table')
|
@include ('partials.bootstrap-table')
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue