unittests/qunit.css
author hamidouk
Wed, 26 Oct 2011 11:32:21 +0200
branchpopcorn-port
changeset 147 955119f901b4
parent 57 eabfc9a2eb35
permissions -rw-r--r--
added a function to search annotations to the json serializer.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
57
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
     1
/**
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
     2
 * QUnit - A JavaScript Unit Testing Framework
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
     3
 *
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
     4
 * http://docs.jquery.com/QUnit
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
     5
 *
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
     6
 * Copyright (c) 2011 John Resig, Jörn Zaefferer
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
     7
 * Dual licensed under the MIT (MIT-LICENSE.txt)
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
     8
 * or GPL (GPL-LICENSE.txt) licenses.
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
     9
 * Pulled Live from Git Thu Oct  6 09:15:01 UTC 2011
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    10
 * Last Commit: 3006fa77db4625c4293c368a8999ddb1abba7f48
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    11
 */
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    12
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    13
/** Font Family and Sizes */
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    14
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    15
#qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    16
	font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    17
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    18
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    19
#qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    20
#qunit-tests { font-size: smaller; }
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    21
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    22
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    23
/** Resets */
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    24
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    25
#qunit-tests, #qunit-tests ol, #qunit-header, #qunit-banner, #qunit-userAgent, #qunit-testresult {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    26
	margin: 0;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    27
	padding: 0;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    28
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    29
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    30
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    31
/** Header */
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    32
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    33
#qunit-header {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    34
	padding: 0.5em 0 0.5em 1em;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    35
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    36
	color: #8699a4;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    37
	background-color: #0d3349;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    38
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    39
	font-size: 1.5em;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    40
	line-height: 1em;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    41
	font-weight: normal;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    42
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    43
	border-radius: 15px 15px 0 0;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    44
	-moz-border-radius: 15px 15px 0 0;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    45
	-webkit-border-top-right-radius: 15px;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    46
	-webkit-border-top-left-radius: 15px;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    47
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    48
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    49
#qunit-header a {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    50
	text-decoration: none;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    51
	color: #c2ccd1;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    52
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    53
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    54
#qunit-header a:hover,
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    55
#qunit-header a:focus {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    56
	color: #fff;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    57
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    58
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    59
#qunit-banner {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    60
	height: 5px;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    61
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    62
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    63
#qunit-testrunner-toolbar {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    64
	padding: 0.5em 0 0.5em 2em;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    65
	color: #5E740B;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    66
	background-color: #eee;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    67
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    68
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    69
#qunit-userAgent {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    70
	padding: 0.5em 0 0.5em 2.5em;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    71
	background-color: #2b81af;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    72
	color: #fff;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    73
	text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    74
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    75
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    76
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    77
/** Tests: Pass/Fail */
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    78
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    79
#qunit-tests {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    80
	list-style-position: inside;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    81
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    82
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    83
#qunit-tests li {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    84
	padding: 0.4em 0.5em 0.4em 2.5em;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    85
	border-bottom: 1px solid #fff;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    86
	list-style-position: inside;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    87
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    88
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    89
#qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running  {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    90
	display: none;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    91
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    92
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    93
#qunit-tests li strong {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    94
	cursor: pointer;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    95
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    96
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    97
#qunit-tests li a {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    98
	padding: 0.5em;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
    99
	color: #c2ccd1;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   100
	text-decoration: none;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   101
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   102
#qunit-tests li a:hover,
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   103
#qunit-tests li a:focus {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   104
	color: #000;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   105
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   106
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   107
#qunit-tests ol {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   108
	margin-top: 0.5em;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   109
	padding: 0.5em;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   110
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   111
	background-color: #fff;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   112
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   113
	border-radius: 15px;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   114
	-moz-border-radius: 15px;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   115
	-webkit-border-radius: 15px;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   116
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   117
	box-shadow: inset 0px 2px 13px #999;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   118
	-moz-box-shadow: inset 0px 2px 13px #999;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   119
	-webkit-box-shadow: inset 0px 2px 13px #999;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   120
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   121
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   122
#qunit-tests table {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   123
	border-collapse: collapse;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   124
	margin-top: .2em;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   125
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   126
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   127
#qunit-tests th {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   128
	text-align: right;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   129
	vertical-align: top;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   130
	padding: 0 .5em 0 0;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   131
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   132
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   133
#qunit-tests td {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   134
	vertical-align: top;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   135
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   136
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   137
#qunit-tests pre {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   138
	margin: 0;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   139
	white-space: pre-wrap;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   140
	word-wrap: break-word;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   141
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   142
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   143
#qunit-tests del {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   144
	background-color: #e0f2be;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   145
	color: #374e0c;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   146
	text-decoration: none;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   147
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   148
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   149
#qunit-tests ins {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   150
	background-color: #ffcaca;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   151
	color: #500;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   152
	text-decoration: none;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   153
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   154
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   155
/*** Test Counts */
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   156
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   157
#qunit-tests b.counts                       { color: black; }
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   158
#qunit-tests b.passed                       { color: #5E740B; }
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   159
#qunit-tests b.failed                       { color: #710909; }
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   160
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   161
#qunit-tests li li {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   162
	margin: 0.5em;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   163
	padding: 0.4em 0.5em 0.4em 0.5em;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   164
	background-color: #fff;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   165
	border-bottom: none;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   166
	list-style-position: inside;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   167
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   168
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   169
/*** Passing Styles */
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   170
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   171
#qunit-tests li li.pass {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   172
	color: #5E740B;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   173
	background-color: #fff;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   174
	border-left: 26px solid #C6E746;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   175
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   176
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   177
#qunit-tests .pass                          { color: #528CE0; background-color: #D2E0E6; }
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   178
#qunit-tests .pass .test-name               { color: #366097; }
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   179
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   180
#qunit-tests .pass .test-actual,
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   181
#qunit-tests .pass .test-expected           { color: #999999; }
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   182
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   183
#qunit-banner.qunit-pass                    { background-color: #C6E746; }
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   184
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   185
/*** Failing Styles */
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   186
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   187
#qunit-tests li li.fail {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   188
	color: #710909;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   189
	background-color: #fff;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   190
	border-left: 26px solid #EE5757;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   191
	white-space: pre;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   192
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   193
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   194
#qunit-tests > li:last-child {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   195
	border-radius: 0 0 15px 15px;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   196
	-moz-border-radius: 0 0 15px 15px;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   197
	-webkit-border-bottom-right-radius: 15px;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   198
	-webkit-border-bottom-left-radius: 15px;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   199
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   200
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   201
#qunit-tests .fail                          { color: #000000; background-color: #EE5757; }
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   202
#qunit-tests .fail .test-name,
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   203
#qunit-tests .fail .module-name             { color: #000000; }
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   204
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   205
#qunit-tests .fail .test-actual             { color: #EE5757; }
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   206
#qunit-tests .fail .test-expected           { color: green;   }
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   207
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   208
#qunit-banner.qunit-fail                    { background-color: #EE5757; }
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   209
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   210
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   211
/** Result */
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   212
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   213
#qunit-testresult {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   214
	padding: 0.5em 0.5em 0.5em 2.5em;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   215
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   216
	color: #2b81af;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   217
	background-color: #D2E0E6;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   218
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   219
	border-bottom: 1px solid white;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   220
}
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   221
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   222
/** Fixture */
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   223
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   224
#qunit-fixture {
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   225
	position: absolute;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   226
	top: -10000px;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   227
	left: -10000px;
eabfc9a2eb35 Added unit testing with QUnit.
hamidouk
parents:
diff changeset
   228
}