Skip to content
This repository has been archived by the owner on Apr 2, 2021. It is now read-only.

Commit

Permalink
Updated example styles.css, as CSS parsing fixed by r588.
Browse files Browse the repository at this point in the history
  • Loading branch information
jfhovinne committed Apr 21, 2009
1 parent 8eb8965 commit a31398d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/examples/styles.css
Expand Up @@ -27,36 +27,36 @@ h1 {
/* WYMeditor */

/* PARA: Date */
.date p /* p */ {
p.date {
color: #ccf;
/* background-color: #ff9; border: 2px solid #ee9; */
}

/* PARA: Hidden note */
.hidden-note p /* p[@class!="important"] */ {
p.hidden-note /* p[@class!="important"] */ {
display: none;
/* color: #999; border: 2px solid #ccc; */
}

/* PARA: Important */
.important p /* p[@class!="hidden-note"] */ {
p.important /* p[@class!="hidden-note"] */ {
color: red; font-weight: bold;
/* color: red; font-weight: bold; border: 2px solid red; */
}

/* IMAGE: Border */
.border img /* img */ {
img.border {
border: 1px solid #ccc;
/* border: 4px solid #ccc; */
}

/* LIST: Special */
.special ul,
.special ol /* ul,ol */ {
ul.special,
ol.special {
color: green;
/* background-color: #fc9; border: 2px solid red; */
/** / background-color: #fc9; border: 2px solid red; /**/
}


/* /WYMeditor */
/* END EDITOR RELATED STYLES */

Expand Down

0 comments on commit a31398d

Please sign in to comment.