diff options
author | Go MAEDA <maeda@farend.jp> | 2019-09-09 21:49:48 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-09-09 21:49:48 +0000 |
commit | 5ca458864ed043642bc693de608ec8a0be40d1b1 (patch) | |
tree | cd4cf36ea0525a2e16fb4147d1c16d7fcb42989a /public/stylesheets/tribute-3.7.3.css | |
parent | 89739876d170875e1e12d84bfb1b43f342daf818 (diff) | |
download | redmine-5ca458864ed043642bc693de608ec8a0be40d1b1.tar.gz redmine-5ca458864ed043642bc693de608ec8a0be40d1b1.zip |
Inline auto complete for issue (#) in wiki-edit fields (#31989).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@18444 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public/stylesheets/tribute-3.7.3.css')
-rw-r--r-- | public/stylesheets/tribute-3.7.3.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/public/stylesheets/tribute-3.7.3.css b/public/stylesheets/tribute-3.7.3.css new file mode 100644 index 000000000..06a876ff4 --- /dev/null +++ b/public/stylesheets/tribute-3.7.3.css @@ -0,0 +1,27 @@ +.tribute-container { + position: absolute; + top: 0; + left: 0; + height: auto; + max-height: 300px; + max-width: 500px; + overflow: auto; + display: block; + z-index: 999999; } +.tribute-container ul { + margin: 0; + margin-top: 2px; + padding: 0; + list-style: none; + background: #efefef; } +.tribute-container li { + padding: 5px 5px; + cursor: pointer; } +.tribute-container li.highlight { + background: #ddd; } +.tribute-container li span { + font-weight: bold; } +.tribute-container li.no-match { + cursor: default; } +.tribute-container .menu-highlighted { + font-weight: bold; } |