diff options
| -rw-r--r-- | pages/assets/redmine/application.css | 66 | 
1 files changed, 50 insertions, 16 deletions
diff --git a/pages/assets/redmine/application.css b/pages/assets/redmine/application.css index ba88448..9ee5356 100644 --- a/pages/assets/redmine/application.css +++ b/pages/assets/redmine/application.css @@ -58,7 +58,7 @@ body, #wrapper {    left: 120px;  }  #main-menu li { -  margin: 0px; /* remove space between tabs */ +  margin: 0px;  }  #main-menu li a {    background-color: #2b2b2b; @@ -75,6 +75,23 @@ body, #wrapper {  }  /* + * HOME PAGE + */ +#content > .splitcontentleft {width: 100%;} +#content > .splitcontentright {display: none;} + +p.button { +  border-radius: 4px; +  padding: 10px; +  display: inline-block; +  margin-right: 8px; +  background: #eee; +} +p.button:hover { +  background: #ddd; +} + +/*   * TABLES   */  table.list tbody tr td, table.list tbody tr:hover td { @@ -98,25 +115,42 @@ table.list thead th {  .subject h3 {    font-size: 24px;  } - -/* - * HOME PAGE - */ -#content > .splitcontentleft {width: 100%;} -#content > .splitcontentright {display: none;} - -p.button { -  border-radius: 4px; -  padding: 10px; -  display: inline-block; -  margin-right: 8px; +div.issue { +  padding: 15px; +  background-color: #def1f4; +  border: none; +} +#history h4 { +  border: none; +  padding: 8px 15px 8px 0px;    background: #eee; +  display: inline-block;  } -p.button:hover { -  background: #ddd; +#history h4 a.journal-link { +  float: none; +  padding: 8px; +  background: #999; +  color: white; +  margin-right: 5px; +} +#history .journal { +  margin: 10px 0; +  padding: 5px 0; +} +div.wiki pre { +  margin: 1em 0px; +  border: 1px solid #eee;  }  /*   * MISC   */ -.box { background-color: #fcfcfc; } +.box { +  background-color: #fff; +  border: none; +} + +h3.version { +  margin-top: 30px; +} +  | 
