From e0801e903ba7fa759d3ded374a333444bc68194a Mon Sep 17 00:00:00 2001 From: Mika Caldera Date: Wed, 3 Sep 2014 14:12:37 -0400 Subject: [PATCH] User Profile Fix Simple User profile fixes. --- style.css | 31 +++++++++++++++++++++++++++++++ style.scss | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+) diff --git a/style.css b/style.css index c8384bd..3ec07e6 100644 --- a/style.css +++ b/style.css @@ -7699,15 +7699,24 @@ q:before, table q:after { /* Profile Page */ +.uup-user { + padding: 1em; +} .uup-user > span { display: block; } +.uup-user .uup-image { + margin-bottom: 1em; +} .uup-user .uup-name { font-weight: bold; } .uup-user .uup-name .uup-first:after { content: ' '; } +.uup-user .uup-phones .uup-phone2 { + display: block; +} /* - - - - - - - - - - - - - - - - - - - == Calendar @@ -8180,3 +8189,25 @@ table .external .glyphicon-new-window { #events-grid-wrap th:first-child { width: auto; } + +/* + Profile Page +*/ +.uup-user { + padding: 2em; +} +.uup-user > span { + display: block; +} +.uup-user .uup-image { + margin: 20px 0px; +} +.uup-user .uup-name { + font-weight: bold; +} +.uup-user .uup-name .uup-first:after { + content: ' '; +} +.uup-user .uup-phones .uup-phone2 { + display: block; +} diff --git a/style.scss b/style.scss index bb81690..5bc2e85 100644 --- a/style.scss +++ b/style.scss @@ -364,4 +364,46 @@ table .external .glyphicon-new-window { th:first-child { width:auto; } +} + + +/* + Profile Page +*/ +.uup-user { + padding: 2em; + & > span { + display:block; + } + .uup-image{ + margin: 20px 0px; + } + .uup-name { + font-weight:bold; + + .uup-first { + &:after { + content:' '; + } + } + .uup-last {} + } + .uup-title { + } + .uup-phones { + .uup-phone1 {} + .uup-phone2 { + display:block; + } + } + .uup-email { + } + .uup-fax { + } + .uup-office-location { + } + .uup-office-hours { + } + .uup-mailing-address { + } } \ No newline at end of file