admin design
This commit is contained in:
@@ -59,7 +59,9 @@ h5, .h5 {
|
|||||||
font-size: 1.25em;
|
font-size: 1.25em;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
line-height: 1.4em;
|
line-height: 1.4em;
|
||||||
margin-bottom: 15px; }
|
margin-bottom: 15px;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
font-family: Roboto, 'Helvetica Neue', Arial, sans-serif; }
|
||||||
|
|
||||||
h6, .h6 {
|
h6, .h6 {
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
@@ -270,6 +272,9 @@ hr {
|
|||||||
padding-left: 25px;
|
padding-left: 25px;
|
||||||
padding-right: 25px;
|
padding-right: 25px;
|
||||||
opacity: .7; }
|
opacity: .7; }
|
||||||
|
.sidebar .nav li a h5,
|
||||||
|
.off-canvas-sidebar .nav li a h5 {
|
||||||
|
padding-left: 30px; }
|
||||||
.sidebar .nav li:hover > a,
|
.sidebar .nav li:hover > a,
|
||||||
.off-canvas-sidebar .nav li:hover > a {
|
.off-canvas-sidebar .nav li:hover > a {
|
||||||
opacity: 1; }
|
opacity: 1; }
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -60,12 +60,18 @@
|
|||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
|
|
||||||
li{
|
li{
|
||||||
|
|
||||||
> a{
|
> a{
|
||||||
margin: 10px 0px;
|
margin: 10px 0px;
|
||||||
padding-left: 25px;
|
padding-left: 25px;
|
||||||
padding-right: 25px;
|
padding-right: 25px;
|
||||||
|
|
||||||
opacity: .7;
|
opacity: .7;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
a h5 {
|
||||||
|
padding-left: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover > a{
|
&:hover > a{
|
||||||
|
|||||||
@@ -32,6 +32,8 @@ h5, .h5 {
|
|||||||
font-weight: $font-weight-light;
|
font-weight: $font-weight-light;
|
||||||
line-height: 1.4em;
|
line-height: 1.4em;
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
font-family: Roboto, 'Helvetica Neue', Arial, sans-serif;
|
||||||
}
|
}
|
||||||
h6, .h6{
|
h6, .h6{
|
||||||
font-size: $font-size-h6;
|
font-size: $font-size-h6;
|
||||||
|
|||||||
@@ -27,11 +27,6 @@
|
|||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
@yield('css')
|
@yield('css')
|
||||||
|
|
||||||
li h5 {
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
font-family: Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
||||||
padding-left: 10px;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
@@ -39,11 +39,9 @@
|
|||||||
</td>
|
</td>
|
||||||
<td style="text-align: right;">
|
<td style="text-align: right;">
|
||||||
{!! Form::open(['route' => ['admin.flights.destroy', $flight->id], 'method' => 'delete']) !!}
|
{!! Form::open(['route' => ['admin.flights.destroy', $flight->id], 'method' => 'delete']) !!}
|
||||||
<div class='btn-group'>
|
<a href="{!! route('admin.flights.show', [$flight->id]) !!}" class='btn btn-default btn-xs'><i class="glyphicon glyphicon-eye-open"></i></a>
|
||||||
<a href="{!! route('admin.flights.show', [$flight->id]) !!}" class='btn btn-default btn-xs'><i class="glyphicon glyphicon-eye-open"></i></a>
|
<a href="{!! route('admin.flights.edit', [$flight->id]) !!}" class='btn btn-default btn-xs'><i class="glyphicon glyphicon-edit"></i></a>
|
||||||
<a href="{!! route('admin.flights.edit', [$flight->id]) !!}" class='btn btn-default btn-xs'><i class="glyphicon glyphicon-edit"></i></a>
|
{!! Form::button('<i class="glyphicon glyphicon-trash"></i>', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
|
||||||
{!! Form::button('<i class="glyphicon glyphicon-trash"></i>', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
|
|
||||||
</div>
|
|
||||||
{!! Form::close() !!}
|
{!! Form::close() !!}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
Reference in New Issue
Block a user