bootstrap-source/bootstrap-3.0.3/js/tests/vendor/qunit.css
changeset 54 0ded9d7748b7
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/bootstrap-source/bootstrap-3.0.3/js/tests/vendor/qunit.css	Fri Dec 20 22:49:16 2013 +0100
     1.3 @@ -0,0 +1,232 @@
     1.4 +/**
     1.5 + * QUnit - A JavaScript Unit Testing Framework
     1.6 + *
     1.7 + * http://docs.jquery.com/QUnit
     1.8 + *
     1.9 + * Copyright (c) 2012 John Resig, Jörn Zaefferer
    1.10 + * Dual licensed under the MIT (MIT-LICENSE.txt)
    1.11 + * or GPL (GPL-LICENSE.txt) licenses.
    1.12 + */
    1.13 +
    1.14 +/** Font Family and Sizes */
    1.15 +
    1.16 +#qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult {
    1.17 +	font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
    1.18 +}
    1.19 +
    1.20 +#qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }
    1.21 +#qunit-tests { font-size: smaller; }
    1.22 +
    1.23 +
    1.24 +/** Resets */
    1.25 +
    1.26 +#qunit-tests, #qunit-tests ol, #qunit-header, #qunit-banner, #qunit-userAgent, #qunit-testresult {
    1.27 +	margin: 0;
    1.28 +	padding: 0;
    1.29 +}
    1.30 +
    1.31 +
    1.32 +/** Header */
    1.33 +
    1.34 +#qunit-header {
    1.35 +	padding: 0.5em 0 0.5em 1em;
    1.36 +
    1.37 +	color: #8699a4;
    1.38 +	background-color: #0d3349;
    1.39 +
    1.40 +	font-size: 1.5em;
    1.41 +	line-height: 1em;
    1.42 +	font-weight: normal;
    1.43 +
    1.44 +	border-radius: 15px 15px 0 0;
    1.45 +	-moz-border-radius: 15px 15px 0 0;
    1.46 +	-webkit-border-top-right-radius: 15px;
    1.47 +	-webkit-border-top-left-radius: 15px;
    1.48 +}
    1.49 +
    1.50 +#qunit-header a {
    1.51 +	text-decoration: none;
    1.52 +	color: #c2ccd1;
    1.53 +}
    1.54 +
    1.55 +#qunit-header a:hover,
    1.56 +#qunit-header a:focus {
    1.57 +	color: #fff;
    1.58 +}
    1.59 +
    1.60 +#qunit-banner {
    1.61 +	height: 5px;
    1.62 +}
    1.63 +
    1.64 +#qunit-testrunner-toolbar {
    1.65 +	padding: 0.5em 0 0.5em 2em;
    1.66 +	color: #5E740B;
    1.67 +	background-color: #eee;
    1.68 +}
    1.69 +
    1.70 +#qunit-userAgent {
    1.71 +	padding: 0.5em 0 0.5em 2.5em;
    1.72 +	background-color: #2b81af;
    1.73 +	color: #fff;
    1.74 +	text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px;
    1.75 +}
    1.76 +
    1.77 +
    1.78 +/** Tests: Pass/Fail */
    1.79 +
    1.80 +#qunit-tests {
    1.81 +	list-style-position: inside;
    1.82 +}
    1.83 +
    1.84 +#qunit-tests li {
    1.85 +	padding: 0.4em 0.5em 0.4em 2.5em;
    1.86 +	border-bottom: 1px solid #fff;
    1.87 +	list-style-position: inside;
    1.88 +}
    1.89 +
    1.90 +#qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running  {
    1.91 +	display: none;
    1.92 +}
    1.93 +
    1.94 +#qunit-tests li strong {
    1.95 +	cursor: pointer;
    1.96 +}
    1.97 +
    1.98 +#qunit-tests li a {
    1.99 +	padding: 0.5em;
   1.100 +	color: #c2ccd1;
   1.101 +	text-decoration: none;
   1.102 +}
   1.103 +#qunit-tests li a:hover,
   1.104 +#qunit-tests li a:focus {
   1.105 +	color: #000;
   1.106 +}
   1.107 +
   1.108 +#qunit-tests ol {
   1.109 +	margin-top: 0.5em;
   1.110 +	padding: 0.5em;
   1.111 +
   1.112 +	background-color: #fff;
   1.113 +
   1.114 +	border-radius: 15px;
   1.115 +	-moz-border-radius: 15px;
   1.116 +	-webkit-border-radius: 15px;
   1.117 +
   1.118 +	box-shadow: inset 0px 2px 13px #999;
   1.119 +	-moz-box-shadow: inset 0px 2px 13px #999;
   1.120 +	-webkit-box-shadow: inset 0px 2px 13px #999;
   1.121 +}
   1.122 +
   1.123 +#qunit-tests table {
   1.124 +	border-collapse: collapse;
   1.125 +	margin-top: .2em;
   1.126 +}
   1.127 +
   1.128 +#qunit-tests th {
   1.129 +	text-align: right;
   1.130 +	vertical-align: top;
   1.131 +	padding: 0 .5em 0 0;
   1.132 +}
   1.133 +
   1.134 +#qunit-tests td {
   1.135 +	vertical-align: top;
   1.136 +}
   1.137 +
   1.138 +#qunit-tests pre {
   1.139 +	margin: 0;
   1.140 +	white-space: pre-wrap;
   1.141 +	word-wrap: break-word;
   1.142 +}
   1.143 +
   1.144 +#qunit-tests del {
   1.145 +	background-color: #e0f2be;
   1.146 +	color: #374e0c;
   1.147 +	text-decoration: none;
   1.148 +}
   1.149 +
   1.150 +#qunit-tests ins {
   1.151 +	background-color: #ffcaca;
   1.152 +	color: #500;
   1.153 +	text-decoration: none;
   1.154 +}
   1.155 +
   1.156 +/*** Test Counts */
   1.157 +
   1.158 +#qunit-tests b.counts                       { color: black; }
   1.159 +#qunit-tests b.passed                       { color: #5E740B; }
   1.160 +#qunit-tests b.failed                       { color: #710909; }
   1.161 +
   1.162 +#qunit-tests li li {
   1.163 +	margin: 0.5em;
   1.164 +	padding: 0.4em 0.5em 0.4em 0.5em;
   1.165 +	background-color: #fff;
   1.166 +	border-bottom: none;
   1.167 +	list-style-position: inside;
   1.168 +}
   1.169 +
   1.170 +/*** Passing Styles */
   1.171 +
   1.172 +#qunit-tests li li.pass {
   1.173 +	color: #5E740B;
   1.174 +	background-color: #fff;
   1.175 +	border-left: 26px solid #C6E746;
   1.176 +}
   1.177 +
   1.178 +#qunit-tests .pass                          { color: #528CE0; background-color: #D2E0E6; }
   1.179 +#qunit-tests .pass .test-name               { color: #366097; }
   1.180 +
   1.181 +#qunit-tests .pass .test-actual,
   1.182 +#qunit-tests .pass .test-expected           { color: #999999; }
   1.183 +
   1.184 +#qunit-banner.qunit-pass                    { background-color: #C6E746; }
   1.185 +
   1.186 +/*** Failing Styles */
   1.187 +
   1.188 +#qunit-tests li li.fail {
   1.189 +	color: #710909;
   1.190 +	background-color: #fff;
   1.191 +	border-left: 26px solid #EE5757;
   1.192 +	white-space: pre;
   1.193 +}
   1.194 +
   1.195 +#qunit-tests > li:last-child {
   1.196 +	border-radius: 0 0 15px 15px;
   1.197 +	-moz-border-radius: 0 0 15px 15px;
   1.198 +	-webkit-border-bottom-right-radius: 15px;
   1.199 +	-webkit-border-bottom-left-radius: 15px;
   1.200 +}
   1.201 +
   1.202 +#qunit-tests .fail                          { color: #000000; background-color: #EE5757; }
   1.203 +#qunit-tests .fail .test-name,
   1.204 +#qunit-tests .fail .module-name             { color: #000000; }
   1.205 +
   1.206 +#qunit-tests .fail .test-actual             { color: #EE5757; }
   1.207 +#qunit-tests .fail .test-expected           { color: green;   }
   1.208 +
   1.209 +#qunit-banner.qunit-fail                    { background-color: #EE5757; }
   1.210 +
   1.211 +
   1.212 +/** Result */
   1.213 +
   1.214 +#qunit-testresult {
   1.215 +	padding: 0.5em 0.5em 0.5em 2.5em;
   1.216 +
   1.217 +	color: #2b81af;
   1.218 +	background-color: #D2E0E6;
   1.219 +
   1.220 +	border-bottom: 1px solid white;
   1.221 +}
   1.222 +
   1.223 +/** Fixture */
   1.224 +
   1.225 +#qunit-fixture {
   1.226 +	position: absolute;
   1.227 +	top: -10000px;
   1.228 +	left: -10000px;
   1.229 +}
   1.230 +
   1.231 +/** Runoff */
   1.232 +
   1.233 +#qunit-fixture {
   1.234 +  display:none;
   1.235 +}
Impressum Datenschutzerklärung