Skip to content

Commit

Permalink
Added Placeholder Text to JSON Input
Browse files Browse the repository at this point in the history
  • Loading branch information
Emmennater committed Nov 17, 2023
1 parent a5ee35b commit 42331d9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,13 @@
<b>ACCRUE</b> - Hours accrued per day.<br>
<b>TIME OFF</b> - Hours deferred per day.<br>
<b>MAX PTO</b> - Maximum number of hours.<br>
<b>MIN PTO</b> - Minimum number of hours.<br>
<b>MAX CARRY</b> - Maximum number of hours carried over to the next year.<br>
<b>PAYROLL</b> - Scheduling of pay periods.<br>
<b>ON</b> - Day of pay period.<br>
<b>START DAY</b> - Day where payroll begins.<br>
<b>START PTO</b> - Initial number of hours on the starting day.

<h2>Settings</h2>
<b>Save Data</b> - Save the calendar and copy the json data to your clipboard.<br>
<b>Load Data</b> - Load the json data from the text box below into the calendar.<br>
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ <h2>File</h2>

<!-- JSON Data -->
<div class="line">
<input id="json-data">
<input type="text" id="json-data" placeholder="JSON Data">
</div>

<!-- Reset Button -->
Expand Down
5 changes: 5 additions & 0 deletions style/sidebar.css
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,8 @@
margin-right: 4px;
text-align: center;
}

.sidebar input::placeholder {
color: white;
opacity: 0.3;
}

0 comments on commit 42331d9

Please sign in to comment.