Commit: d38bdfe4c2d04f985d20f141c1ad79ce49b04536 Author: Hannes Magnusson <[email protected]> Mon, 23 Dec 2013 11:25:19 -0800 Parents: fc6138aadcf84dcd223b699fa22c3d2c7b40afa3 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=d38bdfe4c2d04f985d20f141c1ad79ce49b04536 Log: Allow bit more room for typeahead and show the descriptions Changed paths: M styles/theme-base.css Diff: diff --git a/styles/theme-base.css b/styles/theme-base.css index 2072048..84a8c36 100755 --- a/styles/theme-base.css +++ b/styles/theme-base.css @@ -1128,7 +1128,7 @@ fieldset { } /* Class and other matches descriptions tend to be useless. */ -.tt-dataset-0 .tt-suggestion .description { +.tt-suggestion .description { display: block; font-size: 0.8em; line-height: 1.3; @@ -1137,9 +1137,6 @@ fieldset { text-overflow: ellipsis; } -.tt-suggestion .description { - display: none; -} /* Selected items. */ .tt-is-under-cursor { @@ -1149,13 +1146,13 @@ fieldset { /* We need to crunch down the dropdown on smaller displays. Firstly we'll drop * the descriptions, then classes (since they're two clicks away if you have * matching functions). */ -@media screen and (max-height: 580px) { - .tt-dataset-0 .tt-suggestion .description { +@media screen and (max-height: 480px) { + .tt-suggestion .description { display: none; } } -@media screen and (max-height: 500px) { +@media screen and (max-height: 400px) { .tt-dataset-1 { /* Overriding an unfortunate element style. */ display: none !important; -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
