diff options
author | Byron Jones <bjones@mozilla.com> | 2013-11-01 08:39:59 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-11-01 08:39:59 +0100 |
commit | e5d385374cb02e7d6b1b2013144135264ec5d29a (patch) | |
tree | 49e83687a3a08a749ac79ea41ea91bbc8acf2b50 /extensions/UserProfile/web/styles | |
parent | 682a16ef7a6bcd78cac1748f431ab3912269a929 (diff) | |
download | bugzilla-e5d385374cb02e7d6b1b2013144135264ec5d29a.tar.gz bugzilla-e5d385374cb02e7d6b1b2013144135264ec5d29a.tar.xz |
Bug 911812: make the user profile more discoverable
Diffstat (limited to 'extensions/UserProfile/web/styles')
-rw-r--r-- | extensions/UserProfile/web/styles/user_profile.css | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/extensions/UserProfile/web/styles/user_profile.css b/extensions/UserProfile/web/styles/user_profile.css new file mode 100644 index 000000000..c261c24b6 --- /dev/null +++ b/extensions/UserProfile/web/styles/user_profile.css @@ -0,0 +1,44 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This Source Code Form is "Incompatible With Secondary Licenses", as + * defined by the Mozilla Public License, v. 2.0. */ + +#login_autocomplete { + float: left; +} + +#user_profile_table th { + text-align: right; + padding-right: 1em; + vertical-align: middle; + white-space: nowrap; +} + +#user_profile_table .numeric { + text-align: right; +} + +#user_profile_table .product_span { + white-space: nowrap; +} + +#updated { + font-style: italic; + font-size: x-small; +} + +#gravatar-container { + text-align: center; + font-size: x-small; + vertical-align: top; + padding-right: 15px; +} + +#gravatar { + -moz-box-shadow: 2px 2px 5px #888; + -webkit-box-shadow: 2px 2px 5px #888; + box-shadow: 2px 2px 5px #888; + margin-bottom: 5px; +} |