root/galaxy-central/static/june_2007_style/autocomplete_tagging.css.tmpl @ 2

リビジョン 2, 2.4 KB (コミッタ: hatakeyama, 14 年 前)

import galaxy-central

行番号 
1/****************************************************************************/
2/* JQuery autocomplete code                                                 */
3/****************************************************************************/
4
5.ac_results {
6        padding: 0px;
7        border: 1px solid black;
8        background-color: white;
9        overflow: hidden;
10        z-index: 99999;
11}
12
13.ac_results ul {
14        width: 100%;
15        list-style-position: outside;
16        list-style: none;
17        padding: 0;
18        margin: 0;
19}
20
21.ac_results li {
22        padding: 2px 5px;
23        cursor: default;
24        display: block;
25        /*
26        if width will be 100% horizontal scrollbar will apear
27        when scroll mode will be used
28        */
29        /*width: 100%;*/
30    /* font: menu; */
31        font-size: 12px;
32        /*
33        it is very important, if line-height not setted or setted
34        in relative units scroll will be broken in firefox
35        */
36        line-height: 16px;
37        overflow: hidden;
38}
39
40.ac_loading {
41        background: white url('indicator.gif') right center no-repeat;
42}
43
44.ac_odd {
45        background-color: #fff; /* #eee */
46        margin-left: 0.3em;
47}
48
49.ac_even {
50    margin-left: 0.3em;
51}
52
53.ac_over {
54        background-color: #0A246A;
55        color: white;
56}
57
58.ac_header {
59    font-style: normal;
60    color: gray;
61    border-bottom: 0.1em solid gray;
62}
63
64/****************************************************************************/
65/* Custom code for supporting tags                                          */
66/****************************************************************************/
67.tag-area {
68    width: 100%;
69}
70
71.individual-tag-area
72{
73    cursor: pointer;
74}
75
76.individual-tag-area:hover
77{
78    border:dotted #999999 1px;
79}
80
81.active-tag-area {
82    background-color: white;
83}
84
85.toggle-link
86{
87    font-weight: normal; 
88    padding: 0.3em;
89    margin-bottom: 1em;
90    width: 100%;
91    padding: 0.2em 0em 0.2em 0em;
92}
93
94.tag-button {
95    width: auto;
96    color: #444;
97    text-decoration: none;
98    display: inline-block;
99    cursor: pointer;
100    margin: 0.2em;
101    border: solid #bbb 1px;
102    padding: 0.1em 0.5em 0.1em 0.5em;
103    -moz-border-radius: .5em;
104    -webkit-border-radius: .5em;
105    border-radius: .5em;
106    background:#eee;
107}
108
109.tag-button img
110{
111    padding-left: 0.4em;
112}
113
114.tag-button .tag-name:hover
115{
116    color: black;
117}
118
119.add-tag-button
120{
121    margin-bottom: 0.3em;
122    vertical-align: middle;
123    padding: 0.3em;
124}
125
126.add-tag-button:hover
127{
128    cursor: pointer;
129}
130
131.tag-input {
132    vertical-align: bottom;
133    border: none;
134    outline: none;
135    resize: none;
136}
137
138.delete-tag-img
139{
140   
141    margin-left: 0.3em;
142}
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。