diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-03-29 00:29:28 +0200 |
---|---|---|
committer | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-05-10 10:53:57 +0200 |
commit | f68d655aff81273d431d5e58bc8af775fc9bd231 (patch) | |
tree | f03cdd7c6363c3850dcc1588c65d08fe7e2b95ea /external/qunit-composite/qunit-composite.css | |
parent | 43ed5c94aa796767d635ede2f3e4750c8710f47e (diff) | |
download | jquery-ui-f68d655aff81273d431d5e58bc8af775fc9bd231.tar.gz jquery-ui-f68d655aff81273d431d5e58bc8af775fc9bd231.zip |
Build: Update dependencies, including QUnit 1 -> 2
Also, fix htmllint lang exclusion patterns.
Ref gh-2157
Diffstat (limited to 'external/qunit-composite/qunit-composite.css')
-rw-r--r-- | external/qunit-composite/qunit-composite.css | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/external/qunit-composite/qunit-composite.css b/external/qunit-composite/qunit-composite.css index 54e791b13..a5d06ce77 100644 --- a/external/qunit-composite/qunit-composite.css +++ b/external/qunit-composite/qunit-composite.css @@ -11,3 +11,37 @@ background: #fff; } + +#qunit-testsuites { + margin: 0; + padding: 0.5em 1.0em; + font-family: "Helvetica Neue Light","HelveticaNeue-Light","Helvetica Neue",Calibri,Helvetica,Arial,sans-serif; + font-size: small; + background-color: #d2e0e6; + border-bottom: 1px solid #fff; +} + +#qunit-testsuites a { + color: #00c; + text-decoration: none; +} + +#qunit-testsuites a:hover { + text-decoration: underline; +} + +#qunit-testsuites > li { + display: inline-block; +} + +#qunit-testsuites > li:first-child::before { + content: "Suites: "; +} + +#qunit-testsuites > li + li::before { + content: "|\a0"; +} + +#qunit-testsuites > li::after { + content: "\a0"; +} |