css fix for home and seat map
This commit is contained in:
parent
1fd1d5dddd
commit
5809a366ad
@ -33,7 +33,7 @@
|
||||
.seatCharts-cell {
|
||||
width: 120px!important;
|
||||
height: 120px!important;
|
||||
line-height: 60px!important;
|
||||
line-height: 55px!important;
|
||||
}
|
||||
.preview-name {
|
||||
color: rgba(0,0,0,0.7);
|
||||
|
@ -32,7 +32,7 @@
|
||||
Dane dotyczące obecności znajdziesz także w zakładce <b>Obecności</b>.
|
||||
</p>
|
||||
|
||||
@stop
|
||||
@endsection
|
||||
@yield('user_content')
|
||||
</div>
|
||||
</div>
|
||||
|
@ -16,15 +16,15 @@
|
||||
<input type="text" name="classes_code" id="classes_code" value="{{ $classes_code }}" required>
|
||||
</div>
|
||||
<div>
|
||||
<label for="student_id_number"> ID studenta: </label>
|
||||
<label for="student_id_number"> Nr indeksu: </label>
|
||||
<input type="number" name="student_id_number" id="student_id_number" required>
|
||||
</div>
|
||||
<div>
|
||||
<label for="student_name"> Imię studenta: </label>
|
||||
<label for="student_name"> Imię: </label>
|
||||
<input type="text" name="student_name" id="student_name" required>
|
||||
</div>
|
||||
<div>
|
||||
<label for="student_surname"> Nazwisko studenta: </label>
|
||||
<label for="student_surname"> Nazwisko: </label>
|
||||
<input type="text" name="student_surname" id="student_surname" required>
|
||||
</div>
|
||||
<button type="submit" class="checkout-button"> Dodaj studenta </button>
|
||||
|
@ -37,7 +37,7 @@
|
||||
</div>
|
||||
|
||||
<div class="form-group row">
|
||||
<label for="student_id" class="col-md-4 col-form-label text-md-right">{{ __('Nr indeksu studenta') }}</label>
|
||||
<label for="student_id" class="col-md-4 col-form-label text-md-right">{{ __('Nr indeksu') }}</label>
|
||||
|
||||
<div class="col-md-6">
|
||||
<input id="student_id" type="number" class="form-control @error('student_id') is-invalid @enderror" name="student_id" value="{{ old('student_id') }}" required autocomplete="student_id" autofocus>
|
||||
@ -51,7 +51,7 @@
|
||||
</div>
|
||||
|
||||
<div class="form-group row">
|
||||
<label for="student_name" class="col-md-4 col-form-label text-md-right">{{ __('Imię studenta') }}</label>
|
||||
<label for="student_name" class="col-md-4 col-form-label text-md-right">{{ __('Imię') }}</label>
|
||||
|
||||
<div class="col-md-6">
|
||||
<input id="student_name" type="text" class="form-control @error('student_name') is-invalid @enderror" name="student_name" value="{{ old('student_name') }}" required autocomplete="student_name">
|
||||
@ -65,7 +65,7 @@
|
||||
</div>
|
||||
|
||||
<div class="form-group row">
|
||||
<label for="student_surname" class="col-md-4 col-form-label text-md-right">{{ __('Nazwisko studenta') }}</label>
|
||||
<label for="student_surname" class="col-md-4 col-form-label text-md-right">{{ __('Nazwisko') }}</label>
|
||||
|
||||
<div class="col-md-6">
|
||||
<input id="student_surname" type="text" class="form-control @error('student_surname') is-invalid @enderror" name="student_surname" value="{{ old('student_surname') }}" required autocomplete="student_surname">
|
||||
@ -127,8 +127,8 @@
|
||||
<tr class="thead-dark">
|
||||
<th> Nazwa zajęć </th>
|
||||
<th> Nr indeksu </th>
|
||||
<th> Imię studenta </th>
|
||||
<th> Nazwisko studenta </th>
|
||||
<th> Imię </th>
|
||||
<th> Nazwisko </th>
|
||||
<th> Nr miejsca </th>
|
||||
<th></th>
|
||||
<th></th>
|
||||
|
@ -27,8 +27,8 @@
|
||||
<table class="table subjects-table">
|
||||
<tr class="thead-light">
|
||||
<th> Nr indeksu </th>
|
||||
<th> Imię studenta </th>
|
||||
<th> Nazwisko studenta </th>
|
||||
<th> Imię </th>
|
||||
<th> Nazwisko </th>
|
||||
<th> Nr miejsca </th>
|
||||
</tr>
|
||||
@foreach ($attendances as $attendance)
|
||||
|
Loading…
Reference in New Issue
Block a user