Update to use minified CSS files

This commit is contained in:
Hillel Coren 2016-08-22 16:45:34 +03:00
parent 59451112fe
commit c4c1ef26a4
3 changed files with 16 additions and 16 deletions

View File

@ -3,7 +3,7 @@
@section('head') @section('head')
<link href="{{ asset('css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/> <link href="{{ asset('css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('css/style.css') }}" rel="stylesheet" type="text/css"/> <link href="{{ asset('css/style.min.css') }}" rel="stylesheet" type="text/css"/>
<style type="text/css"> <style type="text/css">
body { body {

View File

@ -1,9 +1,9 @@
@extends('master') @extends('master')
@section('head') @section('head')
<link href="{{ asset('css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/> <link href="{{ asset('css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('css/style.css') }}" rel="stylesheet" type="text/css"/> <link href="{{ asset('css/style.min.css') }}" rel="stylesheet" type="text/css"/>
<style type="text/css"> <style type="text/css">
body { body {
@ -18,7 +18,7 @@
margin:0; margin:0;
} }
.modal-header img { .modal-header img {
float: left; float: left;
margin-right: 20px; margin-right: 20px;
} }
.form-signin { .form-signin {
@ -99,8 +99,8 @@
<script type="text/javascript"> <script type="text/javascript">
$(function() { $(function() {
$('#email').focus(); $('#email').focus();
}) })
</script> </script>
@stop @stop

View File

@ -1,9 +1,9 @@
@extends('master') @extends('master')
@section('head') @section('head')
<link href="{{ asset('css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/> <link href="{{ asset('css/bootstrap.min.css') }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('css/style.css') }}" rel="stylesheet" type="text/css"/> <link href="{{ asset('css/style.min.css') }}" rel="stylesheet" type="text/css"/>
<style type="text/css"> <style type="text/css">
body { body {
@ -18,7 +18,7 @@
margin:0; margin:0;
} }
.modal-header img { .modal-header img {
float: left; float: left;
margin-right: 20px; margin-right: 20px;
} }
.form-signin { .form-signin {
@ -55,7 +55,7 @@
{!! Former::open('/password/reset')->addClass('form-signin')->rules(array( {!! Former::open('/password/reset')->addClass('form-signin')->rules(array(
'password' => 'required', 'password' => 'required',
'password_confirmation' => 'required', 'password_confirmation' => 'required',
)) !!} )) !!}
<div class="modal-header"> <div class="modal-header">
@ -66,8 +66,8 @@
<input type="hidden" name="token" value="{{{ $token }}}"> <input type="hidden" name="token" value="{{{ $token }}}">
<p> <p>
{!! Former::text('email')->placeholder(trans('texts.email'))->raw() !!} {!! Former::text('email')->placeholder(trans('texts.email'))->raw() !!}
{!! Former::password('password')->placeholder(trans('texts.password'))->raw() !!} {!! Former::password('password')->placeholder(trans('texts.password'))->raw() !!}
{!! Former::password('password_confirmation')->placeholder(trans('texts.confirm_password'))->raw() !!} {!! Former::password('password_confirmation')->placeholder(trans('texts.confirm_password'))->raw() !!}
</p> </p>
@ -104,8 +104,8 @@
<script type="text/javascript"> <script type="text/javascript">
$(function() { $(function() {
$('#email').focus(); $('#email').focus();
}) })
</script> </script>
@stop @stop