-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #266 from DasunThathsara/sohani
Update View Parking Request Table Styles
- Loading branch information
Showing
11 changed files
with
189 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<?php require APPROOT.'/views/inc/header.php'; ?> | ||
|
||
<!-- TOP NAVIGATION --> | ||
<?php require APPROOT.'/views/inc/components/topnavbar.php'; ?> | ||
|
||
<!-- SIDE NAVIGATION --> | ||
<?php | ||
$section = 'reports'; | ||
require APPROOT.'/views/inc/components/sidenavbar.php'; | ||
?> | ||
|
||
<main class="page-container"> | ||
<section class="section" id="main"> | ||
<div class="container"> | ||
|
||
<div class="generate-reports"> | ||
|
||
<div class="form-container" style="margin-top: 5vh"><!--change margin-top to 5vh--> | ||
<h1>Report Type Selection</h1> <!--newly added--> | ||
<?php if (!empty($data['err'])){?> | ||
<div class="error-msg"> | ||
<span class="form-invalid"><?php echo $data["err"] ?></span> | ||
</div> | ||
<?php } ?> | ||
|
||
<div class="type-select"> | ||
<a href="<?php echo URLROOT ?>/parkingowner/report"> | ||
<div class="type-select-btn"> | ||
Occupancy Summary Report | ||
</div> | ||
</a> | ||
|
||
<a href="<?php echo URLROOT ?>/parkingowner/report"> | ||
<div class="type-select-btn"> | ||
Revenue Report | ||
</div> | ||
</a> | ||
|
||
<a href="<?php echo URLROOT ?>/parkingowner/report"> | ||
<div class="type-select-btn"> | ||
Type 03 | ||
</div> | ||
</a> | ||
|
||
<a href="<?php echo URLROOT ?>/parkingowner/report"> | ||
<div class="type-select-btn"> | ||
Type 04 | ||
</div> | ||
</a> | ||
|
||
<a href="<?php echo URLROOT ?>/parkingowner/report"> | ||
<div class="type-select-btn"> | ||
Type 05 | ||
</div> | ||
</a> | ||
</div> | ||
|
||
|
||
</div> | ||
|
||
|
||
</div> | ||
</section> | ||
</main> | ||
|
||
|
||
<?php require APPROOT.'/views/inc/footer.php'; ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
#requestheader{ | ||
color:#ffc32d; | ||
transform: translateY(15px) | ||
} | ||
|
||
|
||
|
||
#theader{ | ||
display:flex; | ||
} | ||
|
||
#content{ | ||
padding-right: 0%; | ||
} | ||
|
||
/* Style for the table headers */ | ||
.table-container { | ||
margin-top: 20px; | ||
|
||
} | ||
|
||
.requesttable { | ||
width: 100%; | ||
border-collapse: collapse; | ||
|
||
} | ||
|
||
.requesttable th { | ||
background-color: #f2f2f2; | ||
border: 1px solid #ddd; | ||
padding: 8px; | ||
width: 60px; | ||
|
||
|
||
} | ||
|
||
.requesttable td { | ||
border: 1px solid #ddd; | ||
padding: 8px; | ||
} | ||
|
||
/* Style for the "Unassigned" and "Assigned" headings */ | ||
#ttitle { | ||
margin-top: 20px; | ||
font-size: 24px; | ||
color: #615f5f; | ||
text-align: left; | ||
margin-left: 40px; | ||
} | ||
|
||
#bttn{ | ||
background-color: #fcd426; | ||
padding: 5px 10px; | ||
border-radius: 10px; | ||
cursor: pointer; | ||
} | ||
|
||
#tcontainer{ | ||
background-color: white; | ||
padding: 30px; | ||
border-radius: 20px; | ||
box-shadow: 0 0 15px 0.1px rgba(0, 0, 0, 0.12); | ||
|
||
margin-bottom: 15px; | ||
|
||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.