Switched to h2 from h4

This commit is contained in:
snipe 2020-04-01 03:51:08 -07:00
parent fd642e95eb
commit 2d2cd68061
47 changed files with 62 additions and 62 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
public/js/dist/all.js vendored

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -1,5 +1,5 @@
{
"/js/build/vue.js": "/js/build/vue.js?id=132b1a18aae3d3f415b7",
"/js/build/vue.js": "/js/build/vue.js?id=0da7201f6beef8bf13d2",
"/css/AdminLTE.css": "/css/AdminLTE.css?id=56b8066cfbc70df10545",
"/css/app.css": "/css/app.css?id=407edb63cc6b6dc62405",
"/css/overrides.css": "/css/overrides.css?id=f4993c1ca8a18864253d",
@ -18,7 +18,7 @@
"/css/skins/skin-blue-dark.css": "/css/skins/skin-blue-dark.css?id=d25c77d9c6f4cfe2efd4",
"/css/skins/skin-orange-dark.css": "/css/skins/skin-orange-dark.css?id=abc219c1fed59cecb860",
"/css/skins/skin-orange.css": "/css/skins/skin-orange.css?id=d5d91824310f39239fc2",
"/js/build/vue.js.map": "/js/build/vue.js.map?id=26dad0c1f4360af04dca",
"/js/build/vue.js.map": "/js/build/vue.js.map?id=11c198d03a8d65edc99a",
"/css/AdminLTE.css.map": "/css/AdminLTE.css.map?id=5a2d6f3c59191ce716e2",
"/css/app.css.map": "/css/app.css.map?id=96b5c985e860716e6a16",
"/css/overrides.css.map": "/css/overrides.css.map?id=750ac6db3f6c3533777a",
@ -38,7 +38,7 @@
"/css/skins/skin-orange-dark.css.map": "/css/skins/skin-orange-dark.css.map?id=68b998638217fd08ef29",
"/css/skins/skin-orange.css.map": "/css/skins/skin-orange.css.map?id=5cb51f4917038fd753ce",
"/css/dist/all.css": "/css/dist/all.css?id=9c6b075989db098ee828",
"/js/dist/all.js": "/js/dist/all.js?id=67e4a9bf8c403850a6ec",
"/js/dist/all.js": "/js/dist/all.js?id=74de4bcf7f365a8c9fd9",
"/css/build/all.css": "/css/build/all.css?id=9c6b075989db098ee828",
"/js/build/all.js": "/js/build/all.js?id=67e4a9bf8c403850a6ec"
"/js/build/all.js": "/js/build/all.js?id=74de4bcf7f365a8c9fd9"
}

View file

@ -6,7 +6,7 @@
<div class="col-md-12" :class="alertType">
<div class="alert" :class="alertClassName">
<button type="button" class="close" @click="hideEvent">&times;</button>
<i class="fa fa-check faa-pulse animated" v-show="alertType == 'success'"></i>
<i class="fa fa-check faa-pulse animated" aria-hidden="true" v-show="alertType == 'success'"></i>
<strong>{{ title }} </strong>
<slot></slot>
</div>

View file

@ -12,7 +12,7 @@ tr {
<div class="col-md-8 col-md-offset-2 text-center" style="padding-top: 30px; margin: 0 auto;">
<div class="col-md-12 text-left">
<h4 class="modal-title">Import File:</h4>
<h2 class="modal-title">Import File:</h4>
<div class="dynamic-form-row">
<div class="col-md-5 col-xs-12">
<label for="import-type">Import Type:</label>

View file

@ -12,7 +12,7 @@
<div>
<div v-if="tokens.length > 0">
<div class="panel panel-default">
<div class="panel-heading">Authorized Applications</div>
<h2 class="panel-heading">Authorized Applications</h2>
<div class="panel-body">
<!-- Authorized Tokens -->
@ -21,7 +21,7 @@
<tr>
<th>Name</th>
<th>Scopes</th>
<th></th>
<th><span class="sr-only">Delete</span></th>
</tr>
</thead>

View file

@ -13,9 +13,9 @@
<div class="panel panel-default">
<div class="panel-heading">
<div style="display: flex; justify-content: space-between; align-items: center;">
<span>
<h2>
OAuth Clients
</span>
</h2>
<a class="action-link" @click="showCreateClientForm">
Create New Client
@ -35,8 +35,8 @@
<th>Client ID</th>
<th>Name</th>
<th>Secret</th>
<th></th>
<th></th>
<th><span class="sr-only">Edit</span></th>
<th><span class="sr-only">Delete</span></th>
</tr>
</thead>
@ -83,7 +83,7 @@
<div class="modal-header">
<button type="button " class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title">
<h2 class="modal-title">
Create Client
</h4>
</div>
@ -104,10 +104,10 @@
<form class="form-horizontal" role="form">
<!-- Name -->
<div class="form-group">
<label class="col-md-3 control-label">Name</label>
<label class="col-md-3 control-label" for="create-client-name">Name</label>
<div class="col-md-7">
<input id="create-client-name" type="text" class="form-control"
<input id="create-client-name" type="text" aria-label="create-client-name" class="form-control"
@keyup.enter="store" v-model="createForm.name">
<span class="help-block">
@ -118,10 +118,10 @@
<!-- Redirect URL -->
<div class="form-group">
<label class="col-md-3 control-label">Redirect URL</label>
<label class="col-md-3 control-label" for="redirect">Redirect URL</label>
<div class="col-md-7">
<input type="text" class="form-control" name="redirect"
<input type="text" class="form-control" aria-label="redirect" name="redirect"
@keyup.enter="store" v-model="createForm.redirect">
<span class="help-block">
@ -151,7 +151,7 @@
<div class="modal-header">
<button type="button " class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title">
<h2 class="modal-title">
Edit Client
</h4>
</div>
@ -172,10 +172,10 @@
<form class="form-horizontal" role="form">
<!-- Name -->
<div class="form-group">
<label class="col-md-3 control-label">Name</label>
<label class="col-md-3 control-label" for="edit-client-name">Name</label>
<div class="col-md-7">
<input id="edit-client-name" type="text" class="form-control"
<input id="edit-client-name" type="text" aria-label="edit-client-name" class="form-control"
@keyup.enter="update" v-model="editForm.name">
<span class="help-block">
@ -186,10 +186,10 @@
<!-- Redirect URL -->
<div class="form-group">
<label class="col-md-3 control-label">Redirect URL</label>
<label class="col-md-3 control-label" for="redirect">Redirect URL</label>
<div class="col-md-7">
<input type="text" class="form-control" name="redirect"
<input type="text" class="form-control" name="redirect" aria-label="redirect"
@keyup.enter="update" v-model="editForm.redirect">
<span class="help-block">

View file

@ -14,9 +14,9 @@
<div class="panel panel-default">
<div class="panel-heading">
<div style="display: flex; justify-content: space-between; align-items: center;">
<span>
<h2>
Personal Access Tokens
</span>
</h2>
<a class="action-link" @click="showCreateTokenForm">
Create New Token
@ -35,7 +35,7 @@
<thead>
<tr>
<th>Name</th>
<th></th>
<th><span class="sr-only">Delete</span></th>
</tr>
</thead>
@ -66,7 +66,7 @@
<div class="modal-header">
<button type="button " class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title">
<h2 class="modal-title">
Create Token
</h4>
</div>
@ -87,10 +87,10 @@
<form class="form-horizontal" role="form" @submit.prevent="store">
<!-- Name -->
<div class="form-group">
<label class="col-md-4 control-label">Name</label>
<label class="col-md-4 control-label" for="name">Name</label>
<div class="col-md-6">
<input id="create-token-name" type="text" class="form-control" name="name" v-model="form.name">
<input id="create-token-name" type="text" aria-label="name" class="form-control" name="name" v-model="form.name">
</div>
</div>
@ -117,7 +117,7 @@
<!-- Modal Actions -->
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn primary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary" @click="store">
Create
@ -134,7 +134,7 @@
<div class="modal-header">
<button type="button " class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title">
<h2 class="modal-title">
Personal Access Token
</h4>
</div>

View file

@ -22,7 +22,7 @@ License: https://github.com/ashleydw/lightbox/blob/master/LICENSE
this.$element = $(element);
content = '';
this.modal_id = this.options.modal_id ? this.options.modal_id : 'ekkoLightbox-' + Math.floor((Math.random() * 1000) + 1);
header = '<div class="modal-header"' + (this.options.title || this.options.always_show_close ? '' : ' style="display:none"') + '><button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button><h4 class="modal-title">' + (this.options.title || "&nbsp;") + '</h4></div>';
header = '<div class="modal-header"' + (this.options.title || this.options.always_show_close ? '' : ' style="display:none"') + '><button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button><h2 class="modal-title">' + (this.options.title || "&nbsp;") + '</h4></div>';
footer = '<div class="modal-footer"' + (this.options.footer ? '' : ' style="display:none"') + '>' + this.options.footer + '</div>';
$(document.body).append('<div id="' + this.modal_id + '" class="ekko-lightbox modal fade" tabindex="-1"><div class="modal-dialog"><div class="modal-content">' + header + '<div class="modal-body"><div class="ekko-lightbox-container"><div></div></div></div>' + footer + '</div></div></div>');
this.modal = $('#' + this.modal_id);

File diff suppressed because one or more lines are too long

View file

@ -102,7 +102,7 @@
</div>
<h4>{{ trans('admin/accessories/general.about_accessories_title') }}</h4>
<h2>{{ trans('admin/accessories/general.about_accessories_title') }}</h4>
<p>{{ trans('admin/accessories/general.about_accessories_text') }} </p>

View file

@ -38,9 +38,9 @@
<div class="form-group {{ $errors->has('password_confirmation') ? ' has-error' : '' }}">
<label for="password_confirm" class="col-md-3 control-label">New Password</label>
<label for="password_confirmation" class="col-md-3 control-label">New Password</label>
<div class="col-md-5 required">
<input class="form-control" type="password" name="password_confirmation" id="password_confirmation" {{ (config('app.lock_passwords') ? ' disabled' : '') }}>
<input class="form-control" type="password" name="password_confirmation" id="password_confirmation" {{ (config('app.lock_passwords') ? ' disabled' : '') }} aria-label="password_confirmation">
{!! $errors->first('password_confirmation', '<span class="alert-msg" aria-hidden="true"><i class="fa fa-times" aria-hidden="true"></i> :message</span>') !!}
@if (config('app.lock_passwords'))
<p class="help-block">{{ trans('admin/users/table.lock_passwords') }}</p>
@ -53,7 +53,7 @@
</div> <!-- .box-body -->
<div class="box-footer text-right">
<a class="btn btn-link" href="{{ URL::previous() }}">{{ trans('button.cancel') }}</a>
<button type="submit" class="btn btn-success"><i class="fa fa-check icon-white" aria-hidden="true"></i> {{ trans('general.save') }}</button>
<button type="submit" class="btn btn-primary"><i class="fa fa-check icon-white" aria-hidden="true"></i> {{ trans('general.save') }}</button>
</div>
</div> <!-- .box-default -->

View file

@ -146,7 +146,7 @@
</div> <!-- .box-body -->
<div class="box-footer text-right">
<a class="btn btn-link" href="{{ URL::previous() }}">{{ trans('button.cancel') }}</a>
<button type="submit" class="btn btn-success"><i class="fa fa-check icon-white" aria-hidden="true"></i> {{ trans('general.save') }}</button>
<button type="submit" class="btn btn-primary"><i class="fa fa-check icon-white" aria-hidden="true"></i> {{ trans('general.save') }}</button>
</div>
</div> <!-- .box-default -->
{{ Form::close() }}

View file

@ -72,7 +72,7 @@
<div class="col-md-12">
@if ($models->count() > 0)
<h4>Requestable Models</h4>
<h2>Requestable Models</h4>
<table
name="requested-assets"
data-toolbar="#toolbar"

View file

@ -107,7 +107,7 @@
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="eulaModalLabel">{{ trans('admin/settings/general.default_eula_text') }}</h4>
<h2 class="modal-title" id="eulaModalLabel">{{ trans('admin/settings/general.default_eula_text') }}</h4>
</div>
<div class="modal-body">
{{ \App\Models\Setting::getDefaultEula() }}

View file

@ -117,7 +117,7 @@
</div>
@endif
<div class="col-md-12" style="padding-bottom: 5px;">
<h4>{{ trans('admin/consumables/general.about_consumables_title') }}</h4>
<h2>{{ trans('admin/consumables/general.about_consumables_title') }}</h4>
<p>{{ trans('admin/consumables/general.about_consumables_text') }} </p>
</div>
</div> <!-- /.col-md-3-->

View file

@ -43,7 +43,7 @@
{{ Form::close() }}
</div>
<div class="col-md-3">
<h4>About Fieldsets</h4>
<h2>About Fieldsets</h4>
<p>Fieldsets work like containers of the custom fields you've created. This allows you to group commonly used custom attributes together for easy associations. </p>
</div>
</div>

View file

@ -56,7 +56,7 @@ Asset Depreciations
<!-- side address column -->
<div class="col-md-3">
<h4>{{ trans('admin/depreciations/general.about_asset_depreciations') }}</h4>
<h2>{{ trans('admin/depreciations/general.about_asset_depreciations') }}</h4>
<p>{{ trans('admin/depreciations/general.about_depreciations') }} </p>
</div>

View file

@ -412,7 +412,7 @@
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="uploadFileModalLabel">Upload File</h4>
<h2 class="modal-title" id="uploadFileModalLabel">Upload File</h4>
</div>
{{ Form::open([
'method' => 'POST',

View file

@ -71,7 +71,7 @@
@if (!$asset->model)
<div class="col-md-12">
<div class="callout callout-danger">
<h4>NO MODEL ASSOCIATED</h4>
<h2>NO MODEL ASSOCIATED</h4>
<p>This will break things in weird and horrible ways. Edit this asset now to assign it a model. </p>
</div>
</div>
@ -735,7 +735,7 @@
@endif
@if (($asset->assignedTo) && ($asset->deleted_at==''))
<h4>{{ trans('admin/hardware/form.checkedout_to') }}</h4>
<h2>{{ trans('admin/hardware/form.checkedout_to') }}</h4>
<p>
@if($asset->checkedOutToUser()) <!-- Only users have avatars currently-->
<img src="{{ $asset->assignedTo->present()->gravatar() }}" class="user-image-inline" alt="{{ $asset->assignedTo->present()->fullName() }}">

View file

@ -814,7 +814,7 @@
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title" id="myModalLabel">&nbps;</h4>
<h2 class="modal-title" id="myModalLabel">&nbps;</h4>
</div>
<div class="modal-body"></div>
<div class="modal-footer">

View file

@ -4,7 +4,7 @@
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">{{ trans('admin/categories/general.create') }}</h4>
<h2 class="modal-title">{{ trans('admin/categories/general.create') }}</h4>
</div>
<div class="modal-body">
<form action="{{ route('api.categories.store') }}" onsubmit="return false">

View file

@ -3,7 +3,7 @@
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">{{ trans('admin/locations/table.create') }}</h4>
<h2 class="modal-title">{{ trans('admin/locations/table.create') }}</h4>
</div>
<div class="modal-body">
<form action="{{ route('api.locations.store') }}" onsubmit="return false">

View file

@ -4,7 +4,7 @@
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">{{ trans('admin/manufacturers/table.create') }}</h4>
<h2 class="modal-title">{{ trans('admin/manufacturers/table.create') }}</h4>
</div>
<div class="modal-body">
<form action="{{ route('api.manufacturers.store') }}" onsubmit="return false">

View file

@ -3,7 +3,7 @@
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">{{ trans('admin/models/table.create') }}</h4>
<h2 class="modal-title">{{ trans('admin/models/table.create') }}</h4>
</div>
<div class="modal-body">
<form action="{{ route('api.models.store') }}" onsubmit="return false">

View file

@ -3,7 +3,7 @@
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">{{ trans('admin/statuslabels/table.create') }}</h4>
<h2 class="modal-title">{{ trans('admin/statuslabels/table.create') }}</h4>
</div>
<div class="modal-body">
<form action="{{ route('api.statuslabels.store') }}" onsubmit="return false">

View file

@ -3,7 +3,7 @@
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">{{ trans('admin/suppliers/table.create') }}</h4>
<h2 class="modal-title">{{ trans('admin/suppliers/table.create') }}</h4>
</div>
<div class="modal-body">
<form action="{{ route('api.suppliers.store') }}" onsubmit="return false">

View file

@ -4,7 +4,7 @@
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="uploadFileModalLabel">Upload File</h4>
<h2 class="modal-title" id="uploadFileModalLabel">Upload File</h4>
</div>
{{ Form::open([
'method' => 'POST',

View file

@ -23,7 +23,7 @@
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">{{ trans('admin/users/table.createuser') }}</h4>
<h2 class="modal-title">{{ trans('admin/users/table.createuser') }}</h4>
</div>
<div class="modal-body">
<form action="{{ route('api.users.store') }}" onsubmit="return false">

View file

@ -59,7 +59,7 @@
pageSize: {{ (($snipeSettings->per_page!='') && ($snipeSettings->per_page > 0)) ? $snipeSettings->per_page : 20 }},
paginationVAlign: 'both',
formatLoadingMessage: function () {
return '<h4><i class="fa fa-spinner fa-spin" aria-hidden="true"></i> Loading... please wait.... </h4>';
return '<h2><i class="fa fa-spinner fa-spin" aria-hidden="true"></i> Loading... please wait.... </h4>';
},
icons: {

View file

@ -3,7 +3,7 @@
{{ Form::label('location_id', $translated_name, array('class' => 'col-md-3 control-label')) }}
<div class="col-md-7">
<select class="js-data-ajax" data-endpoint="locations" data-placeholder="{{ trans('general.select_location') }}" name="location_id" style="width: 100%" id="location_id_location_select">
<select class="js-data-ajax" data-endpoint="locations" data-placeholder="{{ trans('general.select_location') }}" name="location_id" style="width: 100%" id="location_id_location_select" aria-label="location_id">
@if ($location_id = Input::old('location_id', (isset($user)) ? $user->location_id : ''))
<option value="{{ $location_id }}" selected="selected">
{{ (\App\Models\Location::find($location_id)) ? \App\Models\Location::find($location_id)->name : '' }}

View file

@ -199,7 +199,7 @@
<!-- User fields -->
<div class="checkbox col-md-12">
<h4>Checked Out To Fields:</h4>
<h2>Checked Out To Fields:</h4>
</div>
<div class="checkbox col-md-12">
<label>
@ -241,7 +241,7 @@
@if ($customfields->count() > 0)
<div class="checkbox col-md-12">
<h4>Custom Fields:</h4>
<h2>Custom Fields:</h4>
</div>
@foreach ($customfields as $customfield)
<div class="checkbox col-md-12">

View file

@ -31,7 +31,7 @@
<div class="panel box box-default">
<div class="box-header with-border">
<h4 class="box-title">
<h2 class="box-title">
<i class="fa fa-list-ol"></i> Asset Tags
</h4>
</div>

View file

@ -31,7 +31,7 @@
<div class="panel box box-default">
<div class="box-header with-border">
<h4 class="box-title">
<h2 class="box-title">
<i class="fa fa-tags"></i> Labels
</h4>
</div>

View file

@ -48,7 +48,7 @@
<div class="panel box box-default">
<div class="box-header with-border">
<h4 class="box-title">
<h2 class="box-title">
<i class="fa fa-sitemap"></i> LDAP/AD
</h4>
</div>

View file

@ -49,7 +49,7 @@
@endif
@endif
<h4>Assigned to {{ $show_user->present()->fullName() }}</h4>
<h2>Assigned to {{ $show_user->present()->fullName() }}</h4>
@if ($assets->count() > 0)
@php