diff options
| author | Chad Kieffer <chad@2tbsp.com> | 2009-01-03 01:11:20 +0000 | 
|---|---|---|
| committer | Chad Kieffer <chad@2tbsp.com> | 2009-01-03 01:11:20 +0000 | 
| commit | a57ede2f96babc216538f0115561c6e4f94eb79d (patch) | |
| tree | e1a93a052909aea4cbcb8f24f60ff0840c7acaa4 /themes/default/css | |
| parent | 7db1758e93775c3f59c4a874da36225585dcbab5 (diff) | |
Added default user avatar. Comment thread updates, including display of avatar. Sidebar block display white space updates. Combined gLoginMenu and gCredits css.
Diffstat (limited to 'themes/default/css')
| -rw-r--r-- | themes/default/css/screen.css | 52 | 
1 files changed, 33 insertions, 19 deletions
| diff --git a/themes/default/css/screen.css b/themes/default/css/screen.css index 5eb5f700..060f1c9e 100644 --- a/themes/default/css/screen.css +++ b/themes/default/css/screen.css @@ -14,7 +14,6 @@   * 8)  jQuery and jQuery UI   *   * @todo Default user icon (user w/ camera)  - * @todo Group Credits and gLoginMenu seperator styles   * @todo Apply :hover bg image to #gViewMenu (will clear fix correct this?)   * @todo Refactor form layout styles to reserve room for validation messages in default state. This   *       will eliminate layout shifts when validation messages are displayed. @@ -257,15 +256,12 @@ li.gError select {  }  .gBlock h2 { -  background: #e8e8e8; -  padding: .3em 1.4em; -  background-image: url('../images/ico-move-handle.png'); -  background-repeat: no-repeat; -  cursor: move; +  background-color: #e8e8e8; +  padding: .3em .8em;  }  .gBlockContent { -  padding: .5em 1em; +  margin-top: 1em;  }  /* Status messages ~~~~~~~~~~~~~~~~~~~~~~~ */ @@ -393,6 +389,15 @@ li.gError select {    margin-right: 20px;  } +#gContent .gBlock h2 { +  background-color: transparent; +  padding-left: 0; +} + +#gSidebar .gBlockContent { +	padding-left: 1em; +} +  /* Album/Photo information ~~~~~~~~~~~~~~~ */  #gContent #gInfo { @@ -442,27 +447,34 @@ li.gError select {    margin: 1em 0;  } -#gContent #gComments ul li p { +#gContent #gComments .gAuthor {    background-color: #e8e8e8; -  margin-bottom: 2px; -  padding: 4px; +  height: 32px; +  line-height: 32px;  }  #gContent #gComments ul li div { -  padding: 8px; +  padding: 0 8px 8px 32px; +} + +#gContent #gComments .gAvatar { +	margin-right: .4em;  }  /* Footer content ~~~~~~~~~~~~~~~~~~~~~~~~ */ +#gHeader #gLoginMenu li,  #gFooter #gCredits li {    display: inline;  } +#gHeader #gLoginMenu li:before,  #gFooter #gCredits li:before { -  padding: 0 2px; +  padding: 0 .6em 0 .4em;    content: "|";  } +#gHeader #gLoginMenu li.first:before,  #gFooter #gCredits li.first:before {    content: "";  } @@ -479,14 +491,9 @@ li.gError select {  /* Login menu ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ -#gLoginMenu { +#gHeader #gLoginMenu {    float: right; -  margin-top: 7px; -} - -#gLoginMenu li { -  display: inline; -  margin-right: 20px; +  margin: 9px 20px 0 0;  }  /* Site Menu  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ @@ -747,6 +754,13 @@ li.gError select {    font-size: 0;  } +.gDraggable { +  background-image: url('../images/ico-move-handle.png'); +  background-repeat: no-repeat; +  cursor: move; +  padding: .3em 1.4em; +} +  /* jQuery UI Dialog ~~~~~~~~~~~~~~~~~~~~~~ */  #gDialog { | 
