diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2010-02-18 23:00:58 -0700 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2010-02-18 23:00:58 -0700 |
commit | 2846d81171c7101e5015995f848d4cc3a9ddebf6 (patch) | |
tree | 8a9b2f4e7eaebe6c6b299b5eb8049777d5cd2c0f /modules/gallery/css | |
parent | 934cc8d7eebf926fb6c1cc8f27a611a41e915dc6 (diff) |
First pass at user profile formatting updates. Moved buttons to the top, simplified HTML and CSS.
Diffstat (limited to 'modules/gallery/css')
-rw-r--r-- | modules/gallery/css/gallery.css | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/modules/gallery/css/gallery.css b/modules/gallery/css/gallery.css index e06c4dd9..f3e5ec6d 100644 --- a/modules/gallery/css/gallery.css +++ b/modules/gallery/css/gallery.css @@ -55,6 +55,34 @@ margin: 0; } +/* User profile ~~~~~~~~~~~~~~~~~~~~~~~~~ */ + +#g-user-profile h1 { + margin: 1em 0; +} + +#g-user-profile .g-avatar { + margin-right: .6em; +} + +#g-user-profile .g-block { + margin-top: 0; +} + +#g-user-profile .g-block-content { + margin-top: 0; +} + +#g-user-profile th, +#g-user-profile td { + border: none; +} + +#g-user-profile th { + white-space: nowrap; + width: 1%; +} + /** ******************************************************************* * 2) Admin **********************************************************************/ @@ -96,4 +124,8 @@ .rtl #g-block-admin .g-left { margin-left: 1em; margin-right: 0; -}
\ No newline at end of file +} + +.rtl #g-user-profile .g-avatar { + margin-left: .6em; +} |