[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb:[4988] trunk/UI/Contact



Revision: 4988
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=4988&view=rev
Author:   einhverfr
Date:     2012-07-14 11:15:49 +0000 (Sat, 14 Jul 2012)
Log Message:
-----------
CSS fixes for employee screen

Modified Paths:
--------------
    trunk/UI/Contact/contact.css
    trunk/UI/Contact/divs/employee.html

Modified: trunk/UI/Contact/contact.css
===================================================================
--- trunk/UI/Contact/contact.css	2012-07-14 10:47:58 UTC (rev 4987)
+++ trunk/UI/Contact/contact.css	2012-07-14 11:15:49 UTC (rev 4988)
@@ -102,4 +102,19 @@
 	width: 6em;
 }
 
+#employee_div .g1 {
+        width: 27em;
+}
 
+#employee_div .g2 {
+        width: 25em;
+}
+
+#employee_div .g2 label {
+        width: 8em;
+}
+#employee_div .g1 label, #employee_div .solo label {
+        width: 10em;
+}
+
+

Modified: trunk/UI/Contact/divs/employee.html
===================================================================
--- trunk/UI/Contact/divs/employee.html	2012-07-14 10:47:58 UTC (rev 4987)
+++ trunk/UI/Contact/divs/employee.html	2012-07-14 11:15:49 UTC (rev 4988)
@@ -17,7 +17,7 @@
                value = entity_id
 } ?>	
 <div class="input_line" id="person_name_div"><?lsmb #text('Name:')?>&nbsp;
-<div class="input_group">
+<div class="input_group g1">
 <!-- TODO:  Add Saluatation -->
 <?lsmb PROCESS input element_data = {
 	label = text('First Name') #'
@@ -27,7 +27,7 @@
 	size = 20
 } ?>
 </div>
-<div class="input_group">
+<div class="input_group g2">
 <?lsmb PROCESS input element_data = {
 	label = text('Middle Name') #'
 	name = "middle_name"
@@ -38,7 +38,7 @@
 </div>
 </div>
 <div class="input_line" id='person_name2_div'>
-<div class="input_group">
+<div class="input_group g1">
 <?lsmb PROCESS input element_data = {
 	label = text('Last Name') #'
 	name = "last_name"
@@ -49,7 +49,7 @@
 </div>
 <!-- Note that the strange # ' constructs are only necessary to help VIM avoid
 problems with multi-word single-quoted constructs in PI tags. -CT  -->
-<div class="input_group">
+<div class="input_group g2">
 <?lsmb PROCESS input element_data = {
 	label = text('Job Title')
 	name = "role"
@@ -60,7 +60,7 @@
 </div>
 </div>
 <div class="input_line" id="person-role-div">
-<div class="input_group">
+<div class="input_group g1">
 <?lsmb PROCESS input element_data = {
 	label = text('Sales')
 	value = 1
@@ -69,7 +69,7 @@
 	name = "sales"
 } ?>
 </div>
-<div class="input_group">
+<div class="input_group g2">
 <?lsmb PROCESS input element_data = {
         label = text('Manager')
         value = 'manager'
@@ -80,7 +80,7 @@
 </div>
 </div>
 <div class="input_line" id="person-country-div">
-<div class="input_group">
+<div class="input_group solo">
        <?lsmb country_list.unshift({}) ?>
 		<?lsmb INCLUDE select element_data = {
 			text_attr = "name"
@@ -93,7 +93,7 @@
 </div>
 </div>
 <div id="employee_div" class="input_line">
-<div class="input_group">
+<div class="input_group g1">
 <?lsmb PROCESS input element_data = {
 	label = text('Employee Number') #'
 	value = employee.employeenumber
@@ -102,7 +102,7 @@
 	size = 20
 }  ?>
 </div>
-<div class="input_group">
+<div class="input_group g2">
 <?lsmb PROCESS select element_data = {
          label = text('Manager')
           name = 'manager_id'
@@ -112,7 +112,7 @@
     value_attr = 'id'
 } ?> 
 </div>
-<div class="input_group">
+<div class="input_group g3">
 <?lsmb PROCESS input element_data = {
         label = text('Tax ID/SSN') #'
          name = "ssn"
@@ -122,8 +122,9 @@
          size = "16"
 } ?>
 </div>
+</div>
 <div class="input_line" id="hr_dates_div">
-<div class="input_group">
+<div class="input_group g1">
 <?lsmb PROCESS input element_data = {
 	label = text('DOB')
 	name = "dob"
@@ -133,7 +134,7 @@
 	size = 10
 }  ?>
 </div>
-<div class="input_group">
+<div class="input_group g2">
 <?lsmb PROCESS input element_data = {
 	label = text('Start Date')
 	name = "start_date"
@@ -143,7 +144,7 @@
 	size = 10
 } # '  ?>
 </div>
-<div class="input_group">
+<div class="input_group g3">
 <?lsmb PROCESS input element_data = {
 	label = text('End Date')
 	name = "end_date"

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.