| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Alfresco
Revision: 2851
Author: mikeh
Date: 02 Sep 2008 14:16:08
Changes:Simplified and fixed My Profile dashlet CSS
Files:| ... | ...@@ -30,7 +30,7 @@ | |
| 30 | 30 | .dashlet .body |
| 31 | 31 | { |
| 32 | 32 | background-color: #f5f9fc; |
| 33 | padding: 9px; | |
| 33 | padding: 0.5em; | |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | .dashlet .scrollableList |
| ... | ...@@ -1,60 +1,48 @@ | |
| 1 | .profile .fieldlabelright | |
| 1 | .profile .photorow | |
| 2 | 2 | { |
| 3 | display: block; | |
| 4 | 3 | float: left; |
| 5 | padding-right: 0.8em; | |
| 6 | width: 4em; | |
| 7 | margin-left: 2em; | |
| 8 | text-align: right; | |
| 9 | font-weight: bold; | |
| 4 | padding-bottom: 0.5em; | |
| 10 | 5 | } |
| 11 | 6 | |
| 12 | .profile .fieldvalue | |
| 7 | .profile .photo | |
| 13 | 8 | { |
| 14 | display: block; | |
| 15 | margin-left: 6em; | |
| 16 | min-height: 1.2em; | |
| 17 | padding-left: 1.5em; | |
| 9 | float: left; | |
| 18 | 10 | } |
| 19 | 11 | |
| 20 | .profile .row | |
| 12 | .profile .namelabel | |
| 21 | 13 | { |
| 22 | padding: 0.333em; | |
| 14 | font-size: 123.1%; | |
| 15 | line-height: 1.7em; | |
| 16 | margin-left: 80px; | |
| 23 | 17 | } |
| 24 | 18 | |
| 25 | .profile .photorow | |
| 19 | .profile .fieldlabel | |
| 26 | 20 | { |
| 27 | margin-left: 2em; | |
| 28 | padding: 0.333em; | |
| 29 | height: 7em; | |
| 21 | line-height: 1.5em; | |
| 22 | margin-left: 80px; | |
| 30 | 23 | } |
| 31 | 24 | |
| 32 | .profile .photo | |
| 25 | .profile hr.clear | |
| 33 | 26 | { |
| 34 | padding: 0.5em; | |
| 35 | float: left; | |
| 27 | margin-bottom: 0.5em; | |
| 36 | 28 | } |
| 37 | 29 | |
| 38 | .profile .label | |
| 30 | .profile .row | |
| 39 | 31 | { |
| 40 | display: block; | |
| 41 | float: left; | |
| 42 | padding-right: 0.8em; | |
| 43 | padding-top: 0.3em; | |
| 44 | width: 10em; | |
| 45 | text-align: right; | |
| 46 | font-weight: bold; | |
| 32 | padding: 0.3em; | |
| 47 | 33 | } |
| 48 | 34 | |
| 49 | .profile .namelabel | |
| 35 | .profile .fieldlabelright | |
| 50 | 36 | { |
| 51 | margin-left: 96px; | |
| 52 | font-size: 123.1%; | |
| 53 | line-height: 1.7em; | |
| 37 | float: left; | |
| 38 | font-weight: bold; | |
| 39 | text-align: right; | |
| 40 | width: 4em; | |
| 54 | 41 | } |
| 55 | 42 | |
| 56 | .profile .fieldlabel | |
| 43 | .profile .fieldvalue | |
| 57 | 44 | { |
| 58 | margin-left: 96px; | |
| 59 | line-height: 1.5em; | |
| 45 | margin-left: 4.5em; | |
| 46 | min-height: 1.2em; | |
| 47 | overflow: hidden; | |
| 60 | 48 | } |
| ... | ...@@ -16,22 +16,22 @@ | |
| 16 | 16 | <div class="namelabel">${user.properties["firstName"]!""} ${user.properties["lastName"]!""}</div> |
| 17 | 17 | <div class="fieldlabel">${user.properties["jobtitle"]!""}</div> |
| 18 | 18 | </div> |
| 19 | <hr/> | |
| 19 | <hr class="clear"/> | |
| 20 | 20 | <div class="row"> |
| 21 | <span class="fieldlabelright">${msg("label.email")}:</span> | |
| 22 | <span class="fieldvalue"><#if user.properties["email"]??><a href="mailto:${user.properties["email"]!""}">${user.properties["email"]}</a></#if></span> | |
| 21 | <div class="fieldlabelright">${msg("label.email")}:</div> | |
| 22 | <div class="fieldvalue"><#if user.properties["email"]??><a href="mailto:${user.properties["email"]!""}">${user.properties["email"]}</a></#if></div> | |
| 23 | 23 | </div> |
| 24 | 24 | <div class="row"> |
| 25 | <span class="fieldlabelright">${msg("label.phone")}:</span> | |
| 26 | <span class="fieldvalue">${user.properties["telephone"]!""}</span> | |
| 25 | <div class="fieldlabelright">${msg("label.phone")}:</div> | |
| 26 | <div class="fieldvalue">${user.properties["telephone"]!""}</div> | |
| 27 | 27 | </div> |
| 28 | 28 | <div class="row"> |
| 29 | <span class="fieldlabelright">${msg("label.skype")}:</span> | |
| 30 | <span class="fieldvalue">${user.properties["skype"]!""}</span> | |
| 29 | <div class="fieldlabelright">${msg("label.skype")}:</div> | |
| 30 | <div class="fieldvalue">${user.properties["skype"]!""}</div> | |
| 31 | 31 | </div> |
| 32 | 32 | <div class="row"> |
| 33 | <span class="fieldlabelright">${msg("label.msn")}:</span> | |
| 34 | <span class="fieldvalue">${user.properties["msn"]!""}</span> | |
| 33 | <div class="fieldlabelright">${msg("label.msn")}:</div> | |
| 34 | <div class="fieldvalue">${user.properties["msn"]!""}</div> | |
| 35 | 35 | </div> |
| 36 | 36 | |
| 37 | 37 | </div> |
| ... | ...@@ -35,7 +35,7 @@ | |
| 35 | 35 | overflow-x: auto; |
| 36 | 36 | } |
| 37 | 37 | |
| 38 | div.clear | |
| 38 | .clear | |
| 39 | 39 | { |
| 40 | 40 | clear: both; |
| 41 | 41 | display: block; |