From c1f9b1f7b1b77776192048005dcc66dcf3df2bfb Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sat, 27 Dec 2014 15:41:37 +0100 Subject: Update to MediaWiki 1.24.1 --- resources/src/jquery/jquery.suggestions.css | 76 +++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 resources/src/jquery/jquery.suggestions.css (limited to 'resources/src/jquery/jquery.suggestions.css') diff --git a/resources/src/jquery/jquery.suggestions.css b/resources/src/jquery/jquery.suggestions.css new file mode 100644 index 00000000..15cd9264 --- /dev/null +++ b/resources/src/jquery/jquery.suggestions.css @@ -0,0 +1,76 @@ +/* suggestions plugin */ + +.suggestions { + overflow: hidden; + position: absolute; + top: 0; + left: 0; + width: 0; + border: none; + z-index: 1099; + padding: 0; + margin: -1px 0 0 0; +} + +.suggestions-special { + position: relative; + background-color: white; + cursor: pointer; + border: solid 1px #aaaaaa; + padding: 0; + margin: 0; + margin-top: -2px; + display: none; + padding: 0.25em 0.25em; + line-height: 1.25em; +} + +.suggestions-results { + background-color: white; + cursor: pointer; + border: solid 1px #aaaaaa; + padding: 0; + margin: 0; +} + +.suggestions-result { + color: black; + margin: 0; + line-height: 1.5em; + padding: 0.01em 0.25em; + text-align: left; + /* Apply ellipsis to suggestions */ + overflow: hidden; + -o-text-overflow: ellipsis; /* Opera 9 to 10 */ + text-overflow: ellipsis; + white-space: nowrap; +} + +.suggestions-result-current { + background-color: #4C59A6; + color: white; +} + +.suggestions-special .special-label { + color: gray; + text-align: left; +} + +.suggestions-special .special-query { + color: black; + font-style: italic; + text-align: left; +} + +.suggestions-special .special-hover { + background-color: silver; +} + +.suggestions-result-current .special-label, +.suggestions-result-current .special-query { + color: white; +} + +.highlight { + font-weight: bold; +} -- cgit v1.2.3-54-g00ecf