mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-27 14:25:32 +00:00
HTML composition, take 2
Monotone-Parent: dbd490c81ea6cac4c12b2e17661e2fef43219e68 Monotone-Revision: 0801dc9f1e4fdc49ea44fc0450fb025c2639ed26 Monotone-Author: crobert@inverse.ca Monotone-Date: 2009-06-25T19:18:02 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -0,0 +1,81 @@
|
||||
/*
|
||||
Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
body
|
||||
{
|
||||
margin:10px;
|
||||
}
|
||||
|
||||
#testLogger
|
||||
{
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
left: 10px;
|
||||
top: 10px;
|
||||
font-family: Monospace;
|
||||
border: solid 2px black;
|
||||
background: #ffffff;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
/* IE6 */
|
||||
* html #testLogger
|
||||
{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#testLogger.testAll
|
||||
{
|
||||
position: static;
|
||||
}
|
||||
|
||||
#testLogger pre
|
||||
{
|
||||
margin: 0 0 0 40px;
|
||||
background-color: #f0f0f0;
|
||||
padding: 1px 4px 1px 4px;
|
||||
}
|
||||
|
||||
#testLogger div
|
||||
{
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
#testLogger div div
|
||||
{
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.testEntry
|
||||
{
|
||||
padding: 5px;
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
.testEntry:hover
|
||||
{
|
||||
background-color: #ffff99;
|
||||
}
|
||||
|
||||
.testFail, .testPass, .testIgnore
|
||||
{
|
||||
padding-left: 3px;
|
||||
padding-right: 3px;
|
||||
}
|
||||
|
||||
.testFail
|
||||
{
|
||||
background-color: #ff0000;
|
||||
}
|
||||
|
||||
.testPass
|
||||
{
|
||||
background-color: #00ff00;
|
||||
}
|
||||
|
||||
.testIgnore
|
||||
{
|
||||
background-color: #f1f100;
|
||||
}
|
||||
Reference in New Issue
Block a user