Skip to content

Commit

Permalink
reportform updates & comment1 fix (#84)
Browse files Browse the repository at this point in the history
* added .txt extention to Database_JobTables

* tried to remove commas from $typeofworkstring

* edit

* added files back to forlder

* added alice's part

* xxx

* Delete Database_JobTables.txt

* comma strip

* updated login page

not sure if it'll show up correctly because I couldn't get to run in on my computer... I tested it by changing it to html instead of php..

* minor change to login

* merge problems..

* userprofile.css small modification

* create.account ext rename

* updated createaccount.php

* error msg box added

* tooltip updates

* buttons for "text ok" added to forms

* volunteerform

* volunteerform textok

* removed <<<<<HEAD

* small change so add 1 to db if textok is checked

* Rename Database_JobTables.txt to Database_JobTables

* a

* Rename Database_JobTables to Database_JobTables.txt

* updateprofile.php

* able to submit update to profile

* auto populate city&county by zip

* restrict zip to CA

* Update reportform.php

* Update reportform.php

* fixed city problem

* city fix

* Update reportform.php

* display form on checkbox

* email tooltip

* minor form updates

* caregiver/feeder update

* Update script.js

* form update #2

* form update #3

* search.php: removed colony name & ear tipped

* db: removed colony name & ear tipped

* forgot to remove eartipped

* form updates #4

* minor changes

* found it

* added "are there any kittens"

* added friendly/pet

* combined first & last name

* found error with first/last name

* basic Custom Query Builder

* undo

* custom query builder

partially working

* forgot to remove

* again

* custom query builder v2

* custom query builder v2

* Update search.php

* Update search.php

* minor search.php update

* comments1 fix

* reportform updates

* moved css to sacferals folder
  • Loading branch information
vitadub authored and JustinLangshaw committed Nov 6, 2017
1 parent 1b26d76 commit 6b70f01
Show file tree
Hide file tree
Showing 3 changed files with 218 additions and 188 deletions.
102 changes: 102 additions & 0 deletions sacferals/css/reportform.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
body {
background-color: powderblue;
}
form {
margin: auto;
background-color: white;
padding: 1em;
border-color: #0b61a4;
border-style: solid;
border-width: 1px;
min-width: 580px;
width: 70%;
}
h2 {
margin: auto;
margin-top: 0px;
margin-bottom: 10px;
color: white;
background-color: #0b61a4;
margin-bottom: 0;
padding: 14;
border-color: #0b61a4;
border-style: solid;
border-width: 3px;

min-width: 580px;
width: 70%;
font-family: Arial,sans-serif;
}
img {
height: 14;
}
#formdiv {
padding: 0px 4vw;
}
.fieldset-auto-width {
display: inline-block;
}
.todisplay {
display:none;
}
.indent {
padding-left: 2em;
}

/*error msg*/
.alert {
padding: 20px;
background-color: #f44336; /* Red */
color: white;
margin-bottom: 15px;
}
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
.closebtn:hover {
color: black;
}

.tooltip {
position: relative;
display: inline-block;
margin: 0;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 160px;
/*white-space: nowrap;*/
background-color: gainsboro; /*very light gray*/
text-align: left;
border-radius: 5px;
padding: 10px 15px;
font-size: 13px;
font-family: verdana;

/* Position the tooltip */
position: absolute;
z-index: 1;
top: -50%;
left: 155%;

}
.tooltip .tooltiptext::after {
content: "";
position: absolute;
top: 8px;
right: 100%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent gainsboro transparent transparent;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
Loading

0 comments on commit 6b70f01

Please sign in to comment.