Changeset 11133


Ignore:
Timestamp:
2006-01-27T12:57:27+13:00 (18 years ago)
Author:
jrm21
Message:

updated for document buttons and warning message/continue button

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/images/style.css

    r11116 r11133  
    132132span.textselect { white-space: nowrap; }
    133133
    134 div.document div.heading {}
    135 /* wide enough for 2 buttons side-by-side */
     134div.document {
     135  padding-top: 5px;
     136}
     137
     138div.warning { /* eg expanding more than 10 sections in table of contents */
     139}
     140div.warning div.buttons { float: right; } /* continue button */
     141
     142div.heading { float: left; } /* optional cover image */
    136143div.document div.buttons {
    137   width: 200px;
     144   /* anything that holds buttons... toc_buttons but also continue button */
     145   width: 100px; /* each button (inside its own div) can overflow this */
     146}
     147div#toc_buttons { /* expand/contract etc "buttons" */
     148  clear: left; /* don't put next to another float on our left-hand side */
    138149  float: left;
     150  margin-right: 5px;
    139151}
    140152div.button {
    141153  font-size: 11px;
    142154  font-weight: bold;
    143   width: 100px; height: 30px;
     155  height: 30px; /* for IE6, it will stretch if needed */
    144156  text-align: center;
    145157  line-height: 1.2em;
    146   float: left;
     158  background: #ffeecc;
     159  margin: 1px;
     160  border: 1px solid #eeddbb;
    147161}
     162*>div.button { /* for other browsers - IE6 doesn't apply this */
     163  height: auto;
     164  min-height: 30px;
     165}
     166span.button { vertical-align: middle; }
    148167span.button a { text-decoration: none; color: black; }
     168span.button a:hover { /* IE6 doesn't do :hover for things that aren't <A> */
     169  background: #eeddbb;
     170}
    149171
    150172div.section p {
Note: See TracChangeset for help on using the changeset viewer.