Add a comment to show adaptations which have been made to foliage.

Comments

jean-bernard.addor’s picture

Title: Exemples of adaptation of foliage to particular web sites » Alimentsdici.info
jean-bernard.addor’s picture

Title: Alimentsdici.info » Exemples of adaptation of foliage to particular web sites

Some adaptations which have been made for http://alimentsdici.info

New feature: coloring of em and strong

em and strong are now colored in the same way as the titles h2 and h3. To do this, the following code has been added to the file style.css.

strong { color: #690; }
em { color: #d72; }

Note that if color email created with the contribution module Mime Mail, bodyshould not been specified in front of both lines, otherwise the result will be black.

This is also reported in the following issue:
#445276: Coloring of em and strong

Color of link in mission space on main page

The following lines have been commented in file style.css:

/*
.mission a:link, .mission a:visited {
  color: #9cf;
}
*/

This is also reported in the following issue:
#445254: Color of link in mission space on main page

Mime Mail and print.css compatibility issue

The following lines have been commented in file print.css:

/*
* {
color: #000 !important;
background: #fff;
}
a, a:link, a:visited {
text-decoration: none;
font-weight: normal;
}
*/

It is reported in the following issue:
#443970: Mime Mail and print.css compatibility issue

Thanks for those who helped!

nardberjean’s picture

/* hide errror message to anonymous */
body.not-logged-in .messages.error {
display:none;
}

nardberjean’s picture

Calendar module adaptation

.view-calendar .calendar-calendar  .view-field.node-title {font-weight:bold;font-size:2em;}
a:link,
  .calendar-calendar td .inner .view-field a {
  color: #379;
}
a:visited,
  .calendar-calendar td .inner .view-field a {
  color: #157;
}

/* formatting for the full day view calendar.css l. 231*/  
.calendar-calendar td.calendar-agenda-hour {
  font-family:sans;
/*  text-align:right;
  border:none;
  border-top:1px #333 dotted;
  padding-top:.25em;
  width:1%; */
}
.calendar-calendar td.calendar-agenda-hour .calendar-hour {
  font-size:0.85em;
  /* font-weight:bold; */
}

.calendar-calendar td span.date-display-single, /* calendar.css  l. 350 */
.calendar-calendar td span.date-display-start,
.calendar-calendar td span.date-display-end,
.calendar-calendar td span.date-display-separator {
  font-weight:bold;
  font-size: 1.4em;
  color:#d72;
}

div#calpopup { width:67%; font-size: 0.85em; }