Bootstrap4 :: Issues updated
This commit is contained in:
@@ -533,7 +533,7 @@ return [
|
||||
'priority' => 'Priority',
|
||||
'last_updated' => 'Last updated',
|
||||
'create_help_topic' => 'Create help topic',
|
||||
'action' => 'Action',
|
||||
'action' => 'Actions',
|
||||
/*
|
||||
|--------------------------------------
|
||||
| Help Topic Create Page
|
||||
|
@@ -511,7 +511,7 @@
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="text-center text-sm">{!! Lang::get('lang.notification') !!}</div>
|
||||
<div class="text-center text-sm">{!! Lang::get('lang.notifications') !!}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@@ -75,14 +75,14 @@ class="nav-link active"
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="form-group {{ $errors->has('client_id') ? 'has-error' : '' }}">
|
||||
{!! Form::label('client_id',Lang::get('lang.client_id')) !!}
|
||||
{!! Form::label('client_id',Lang::get('lang.client_id')) !!}<spam class="help-block"> *</spam>
|
||||
{!! Form::text('client_id',$social->getvalueByKey($provider,'client_id'),['class' => 'form-control']) !!}
|
||||
{!! $errors->first('client_id', '<spam class="help-block">:message</spam>') !!}
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="form-group {{ $errors->has('client_secret') ? 'has-error' : '' }}">
|
||||
{!! Form::label('client_secret',Lang::get('lang.client_secret')) !!}
|
||||
{!! Form::label('client_secret',Lang::get('lang.client_secret')) !!}<spam class="help-block"> *</spam>
|
||||
{!! Form::text('client_secret',$social->getvalueByKey($provider,'client_secret'),['class' => 'form-control']) !!}
|
||||
{!! $errors->first('client_secret', '<spam class="help-block">:message</spam>') !!}
|
||||
</div>
|
||||
|
@@ -66,6 +66,22 @@
|
||||
.nav-sidebar .nav-header:not(:first-of-type) {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
||||
.has-error label {
|
||||
color: #dd4b39 !important;
|
||||
}
|
||||
|
||||
.has-error .form-control {
|
||||
border-color: #dd4b39 !important;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
|
||||
box-shadow: none;
|
||||
cursor: not-allowed;
|
||||
opacity: 0.65;
|
||||
pointer-events: none;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body class="skin-yellow sidebar-mini layout-fixed layout-navbar-fixed text-sm">
|
||||
@@ -370,7 +386,7 @@
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{ url('groups') }}" @yield('groups') class="nav-link">
|
||||
<i class="nav-icon fas fa-users"></i>
|
||||
<i class="nav-icon fas fa-object-group"></i>
|
||||
<p>{!! Lang::get('lang.groups') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
@@ -593,6 +609,13 @@
|
||||
<p>{!! Lang::get('lang.notifications') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="nav-item">
|
||||
<a href="{{url('storage')}}" @yield('storage') class="nav-link">
|
||||
<i class="nav-icon fas fa-save"></i>
|
||||
<p>{!! Lang::get('storage::lang.storage') !!}</p>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
|
@@ -102,7 +102,7 @@ class="nav-link active"
|
||||
|
||||
<label>{!! Lang::get('lang.address') !!}</label>
|
||||
<br>
|
||||
<center>{!! $orgs->address !!}</center>
|
||||
{!! $orgs->address !!}
|
||||
</li>
|
||||
@endif
|
||||
|
||||
@@ -111,7 +111,7 @@ class="nav-link active"
|
||||
|
||||
<label>{!! Lang::get('lang.internal_notes') !!}</label>
|
||||
<br>
|
||||
<center>{!! $orgs->internal_notes !!}</center>
|
||||
{!! $orgs->internal_notes !!}
|
||||
</li>
|
||||
@endif
|
||||
</ul>
|
||||
|
@@ -71,6 +71,22 @@
|
||||
.nav-sidebar .nav-header:not(:first-of-type) {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
||||
.has-error label {
|
||||
color: #dd4b39 !important;
|
||||
}
|
||||
|
||||
.has-error .form-control {
|
||||
border-color: #dd4b39 !important;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
|
||||
box-shadow: none;
|
||||
cursor: not-allowed;
|
||||
opacity: 0.65;
|
||||
pointer-events: none;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
<table id="{!! $id !!}" class="{!! $class !!}" style="width:100%">
|
||||
<table id="{!! $id !!}" class="{!! $class !!}" style="width:100%;display:block !important;">
|
||||
<colgroup>
|
||||
@for ($i = 0; $i < count($columns); $i++)
|
||||
<col class="con{!! $i !!}" />
|
||||
|
Reference in New Issue
Block a user