Added CSS for the token expiry notice + some minor source code / comments cosmetics HEAD
authorDirk Haun <dirk@haun-online.de>
Fri Oct 30 19:15:17 2009 +0100 (3 months ago)
branchHEAD
changeset 7408d1e9c15f5c60
parent 740762c4bd0f9743
child 7409c776e22f2de6
Added CSS for the token expiry notice + some minor source code / comments cosmetics
public_html/layout/professional/style.css
     1.1 --- a/public_html/layout/professional/style.css	Fri Oct 30 17:28:55 2009 +0100
     1.2 +++ b/public_html/layout/professional/style.css	Fri Oct 30 19:15:17 2009 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  /* STYLESHEET FORMAT GUIDE *****************************************************
     1.5  
     1.6 -  split the following sections:
     1.7 -  - semantics (direct formatting for <td>, <a > etc
     1.8 +  split into the following sections:
     1.9 +  - semantics (direct formatting for <td>, <a>, etc)
    1.10    - classes (.whatever)
    1.11    - common plugin CSS
    1.12    - navbar
    1.13 @@ -181,14 +181,17 @@
    1.14    float:left;
    1.15    padding:5px;
    1.16  }
    1.17 -.admin-menu { /* the box around the menu */
    1.18 +.admin-menu {
    1.19 +  /* the box around the menu */
    1.20    padding:5px;
    1.21    border:1px solid #EEEEEE;
    1.22  }
    1.23 -.admin-menu-text { /* the text below the links */
    1.24 +.admin-menu-text {
    1.25 +  /* the text below the links */
    1.26    padding:5px;
    1.27  }
    1.28 -.admin-menu-item { /* a single link in the menu */
    1.29 +.admin-menu-item {
    1.30 +  /* a single link in the menu */
    1.31    padding: 0px 5px 0px 5px;
    1.32  }
    1.33  .admin-list-smalltable {
    1.34 @@ -220,7 +223,7 @@
    1.35    padding-top:2px;
    1.36    padding-bottom:2px;
    1.37  }
    1.38 -/* Menus in blocks *****************************************************************/
    1.39 +/* Menus in blocks ************************************************************/
    1.40  .blocklist ul {
    1.41    list-style:none;
    1.42    padding:0px;
    1.43 @@ -264,7 +267,7 @@
    1.44  * html .clearfix {height: 1%;}
    1.45  .clearfix {display: block;}
    1.46  /* End hide from IE-mac */
    1.47 -/* general formatting classes **************************************************/
    1.48 +/* general formatting classes *************************************************/
    1.49  .b {
    1.50    font-weight:bold;
    1.51  }
    1.52 @@ -485,15 +488,18 @@
    1.53    padding-bottom:5px;
    1.54    margin-left:105px;
    1.55  }
    1.56 -.checkboxes-list {  /* this is used for example by COM_checkList */
    1.57 +.checkboxes-list {
    1.58 +  /* this is used for example by COM_checkList */
    1.59    list-style:none;
    1.60    padding:0px;
    1.61    margin:0px;
    1.62  }
    1.63 -.checkboxes-list span { /* space between the text and the checkbox */
    1.64 +.checkboxes-list span {
    1.65 +  /* space between the text and the checkbox */
    1.66    padding-left:5px;
    1.67  }
    1.68 -.checkboxes-list .gldefault { /* default blocks in the user settings block list */
    1.69 +.checkboxes-list .gldefault {
    1.70 +  /* default blocks in the user settings block list */
    1.71    font-weight:bold;
    1.72  }
    1.73  .missing-field {
    1.74 @@ -722,6 +728,14 @@
    1.75    margin:0px;
    1.76  }
    1.77  /******************************************************************************/
    1.78 +#token-expirynotice {
    1.79 +  padding:1em;
    1.80 +  border:1px solid #CCCCCC;
    1.81 +  background:#F7F7F7;
    1.82 +}
    1.83 +#token-expirytime {
    1.84 +  font-weight:bold;
    1.85 +}
    1.86  .topicoption,
    1.87  .topicoption-off {
    1.88  }
    1.89 @@ -994,7 +1008,7 @@
    1.90  
    1.91  /* Common CSS for on-hover tooltip feature */
    1.92  a.tooltip {
    1.93 -  position: relative; /*this is the key*/
    1.94 +  position: relative; /* this is the key */
    1.95    z-index:10;
    1.96    color:#000;
    1.97    text-decoration:none;
    1.98 @@ -1007,7 +1021,7 @@
    1.99    display: none;
   1.100  }
   1.101  a.tooltip:hover span {
   1.102 -  /*the span will display just on :hover state*/
   1.103 +  /* the span will display just on :hover state */
   1.104    z-index:100;
   1.105    color:#033666;
   1.106    font-style:normal;