myk%mozilla.org a31ee7773a lots of changes, including WYSIWYG editing, a new UI, and a partial implementation of a database-backed patch queue
git-svn-id: svn://10.0.0.236/trunk@155364 18797224-902f-48f8-a5cc-f745e15eee43
2004-04-23 01:36:27 +00:00

47 lines
899 B
CSS

#panels { width: 98%; height: 84%; }
.panel {
border: 2px inset black;
position: absolute;
width: 98%;
height: 84%;
visibility: hidden;
overflow: scroll;
}
#editPanel { overflow: visible; }
#modifiedPanel { padding: 8px; }
#savePanel { overflow: visible; border: 0px; }
#content { width: 100%; height: 100%; }
/*
* Tab styles
*/
/* Hide the "Edit" tab unless the page can be edited in WYSIWYG mode. */
button.tab#editTab { display: none; }
button.tab.wysiwyg#editTab { display: inline; }
button.tab {
background-color: #fofofo;
color: #000000;
border: 1px solid #000000;
border-bottom-width: 0px;
padding: 2px 1em 2px 1em;
text-decoration: none;
}
button.tab[disabled] {
color: #c0c0c0;
}
button.tab:hover {
background-color: #d0d0d0;
}
button.tab.active, button.tab[disabled].active, button.tab:hover.active {
background-color: #b0b0b0;
color: #000000;
}