~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/mono-tools/webdoc/plugins/search-plugin/fastsearch/fsearch.css

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#fsearch_window {
 
2
        display: none;
 
3
        opacity: 0;
 
4
        position: absolute;
 
5
        z-index: 60;
 
6
        text-align: left;
 
7
        width: 25em;
 
8
        right: 80px;
 
9
        top: 40px;
 
10
        border: 1px solid black;
 
11
        background: white;
 
12
        padding: 5px;
 
13
        overflow: hidden;
 
14
        -webkit-transition: opacity 200ms linear 0;
 
15
        -moz-transition: opacity 200ms linear 0;
 
16
        -o-transition: opacity 200ms linear 0;
 
17
}
 
18
 
 
19
#fsearch_window a {
 
20
        color: blue;
 
21
        text-decoration: none;
 
22
        font-family: monospace;
 
23
}
 
24
 
 
25
#fsearch_window .threedots {
 
26
        color: #333;
 
27
        font-size: x-small;
 
28
        font-family: sans-serif;
 
29
}
 
30
 
 
31
#fsearch_window .selected {
 
32
        background-color: 679ef1;
 
33
        color: white;
 
34
}
 
35
 
 
36
#fsearch_companion {
 
37
        display:none;
 
38
        position: absolute;
 
39
        z-index: 60;
 
40
        top: 40px;
 
41
        right:410px;
 
42
        color: grey;
 
43
        background-color: white;
 
44
}
 
45