Skip to content

Commit

Permalink
QSO Add fields Locator, IOTA, Sat (Mode/Name) now are uppercase autom…
Browse files Browse the repository at this point in the history
…atically
  • Loading branch information
magicbug committed Aug 18, 2012
1 parent 2af9cfc commit 7f83f2a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/views/qso/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
</tr>
<tr>
<td>IOTA</td>
<td><input type="text" name="iota_ref" value="" /> e.g: EU-005</td>
<td><input id="iota_ref" type="text" name="iota_ref" value="" /> e.g: EU-005</td>
</tr>
</table>
</div>
Expand All @@ -204,12 +204,12 @@
<table>
<tr>
<td>Sat Name</td>
<td><input type="text" name="sat_name" value="<?php echo $this->session->userdata('sat_name'); ?>" /></td>
<td><input id="sat_name" type="text" name="sat_name" value="<?php echo $this->session->userdata('sat_name'); ?>" /></td>
</tr>

<tr>
<td>Sat Mode</td>
<td><input type="text" name="sat_mode" value="<?php echo $this->session->userdata('sat_mode'); ?>" /></td>
<td><input id="sat_mode" type="text" name="sat_mode" value="<?php echo $this->session->userdata('sat_mode'); ?>" /></td>
</tr>
</table>
</div>
Expand Down
4 changes: 4 additions & 0 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ table .title { font-weight: bold; color: #439BF6; }
.band { width: 80px; }
.mode { width: 80px; }
#callsign { text-transform: uppercase; }
#locator { text-transform: uppercase; }
#sat_name { text-transform: uppercase; }
#sat_mode { text-transform: uppercase; }
#iota_ref { text-transform: uppercase; }

input[type="text"] {
color: #000000 !important;
Expand Down

0 comments on commit 7f83f2a

Please sign in to comment.