As an anonymous user, you can only add new data. If you would like to also modify existing data, please create an account and indicate your languages on your user page.
Help:Customizing CSS
From OmegaWiki
Contents |
[edit] Changing the colors of the interface
[edit] Color of the language name
Put in your user css, and modify the color to your taste.
/* color for languages */
.collapsable-items h2
{
background-color: #ffe0eb;
}
[edit] Color of the definitions
Put in your user css, and modify the color to your taste.
/* color for definitions*/
.collapsable-items h3
{
background-color: #e0ffff;
margin-top:20px;
}
[edit] Hiding incoming relations
To hide incoming relations, the following should be added to your css:
/* do not display incoming relations */
li h4 .collapsable-exp-meanings-exact-dm-incomingRel
{
display: none;
}
div.expand-exp-meanings-exact-dm-incomingRel table
{
display: none;
}
[edit] Hiding the dataset panel
To hide the dataset panel which appears on the right (with links to ULMS, Swissprot, ...), add the following to your css:
/* do not display the dataset panel (on the right) */
.dataset-panel
{
display: none;
}