diff --git a/css/background-colors.css b/css/background-colors.css index 9c27f93..f3b57b4 100644 --- a/css/background-colors.css +++ b/css/background-colors.css @@ -1,20 +1,21 @@ /* ======================================================================= * Styles for components * ======================================================================= */ -.bgc-bg1 { background-color: #888888 } +.bgc-bg1 { background-color: #888888 } /* ======================================================================= */ /* ======================================================================= * Styles for logical groups. A group is defined by a bounding box "grp*" * containing one or more header lines "head*" and content-boxes "box*" * ======================================================================= */ -.bgc-grp1 { background-color: #aaaaaa } -.bgc-box1 { background-color: #ffb400 } -.bgc-head1 { background-color: #e5a200 } +.bgc-grp1 { background-color: #aaaaaa } +.bgc-box1 { background-color: #ffb400 } +.bgc-grp-head1 { background-color: #e5a200 } +.bgc-box-head1 { background-color: #ffc434 } /* ======================================================================= */ /* ======================================================================= * Styles for tooltips * ======================================================================= */ -.bgc-tt1 { background-color: #eeeeee } +.bgc-tt1 { background-color: #eeeeee } /* ======================================================================= */ diff --git a/css/displays.css b/css/displays.css index fc3bae2..66de8ef 100644 --- a/css/displays.css +++ b/css/displays.css @@ -20,11 +20,16 @@ margin-top: 1px; margin-bottom: 1px } -.d-head1 { +.d-grp-head1 { padding: 3px; margin-top: 1px; margin-bottom: 1px } +.d-box-head1 { + padding: 3px; + margin-top: 1px; + margin-bottom: 3px +} /* ======================================================================= */ /* ======================================================================= diff --git a/css/fonts.css b/css/fonts.css index 9ded16a..7b9f064 100644 --- a/css/fonts.css +++ b/css/fonts.css @@ -19,12 +19,18 @@ font-weight: normal; color: #000000 } -.f-head1 { +.f-grp-head1 { font-family: verdana, sans-serif; font-size: 10pt; font-weight: bold; color: #000000 } +.f-box-head1 { + font-family: verdana, sans-serif; + font-size: 10pt; + font-weight: normal; + color: #000000 +} /* ======================================================================= */ /* ======================================================================= diff --git a/js/personAdmin/person.js b/js/personAdmin/person.js index 75dd7b9..02113bb 100644 --- a/js/personAdmin/person.js +++ b/js/personAdmin/person.js @@ -1,19 +1,19 @@ function c_person (personId, photographerId, ownerId, firstname, surname, company, email, url, cameraId, wmWidth, wmHeight, wmXPos, wmYPos) { - this.personId = personId; - this.photographerId = photographerId; - this.ownerId = ownerId; - this.firstname = firstname; - this.surname = surname; - this.company = company; - this.email = email; - this.url = url; - this.cameraId = cameraId; - this.wmWidth = wmWidth; - this.wmHeight = wmHeight; - this.wmXPos = wmXPos; - this.wmYPos = wmYPos; + this.personId = this._personId = personId; + this.photographerId = this._photographerId = photographerId; + this.ownerId = this._ownerId = ownerId; + this.firstname = this._firstname = firstname; + this.surname = this._surname = surname; + this.company = this._company = company; + this.email = this._company = email; + this.url = this._url = url; + this.cameraId = this._cameraId = cameraId; + this.wmWidth = this._wmWidth = wmWidth; + this.wmHeight = this._wmHeight = wmHeight; + this.wmXPos = this._wmXPos = wmXPos; + this.wmYPos = this._wmYPos = wmYPos; this.personForm = null; diff --git a/js/personAdmin/personInUp.js b/js/personAdmin/personInUp.js index 7ec65e6..08d0464 100644 --- a/js/personAdmin/personInUp.js +++ b/js/personAdmin/personInUp.js @@ -77,11 +77,13 @@ function personInUp ( { case 'photographerId': this.un_fold (person[p], - document.getElementById ('cameraId').parentNode.parentNode); + document.getElementById ( + 'cameraId').parentNode.parentNode.parentNode); break; case 'ownerId': this.un_fold (person[p], - document.getElementById ('wmWidth').parentNode.parentNode); + document.getElementById ( + 'wmWidth').parentNode.parentNode.parentNode); } } } diff --git a/templates/personAdmin/personInUp.tpl.php b/templates/personAdmin/personInUp.tpl.php index bdf8424..b287f21 100644 --- a/templates/personAdmin/personInUp.tpl.php +++ b/templates/personAdmin/personInUp.tpl.php @@ -59,55 +59,59 @@