forked from middlebury/CategorySuggest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCategorySuggest.css
More file actions
110 lines (95 loc) · 2.29 KB
/
CategorySuggest.css
File metadata and controls
110 lines (95 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/* CategorySuggest Mediawiki Extension
*
* @author Andreas Rindler (mediawiki at jenandi dot com)
* @credits Jared Milbank, Leon Weber <leon.weber@leonweber.de>, Manuel Schneider <manuel.schneider@wikimedia.ch>, Daniel Friesen http://wiki-tools.com, Adam Franco <afranco@middlebury.edu>
* @licence GNU General Public Licence 2.0 or later
* @description Adds input box to edit and upload page which allows users to assign categories to the article. When a user starts typing the name of a category, the extension queries the database to find categories that match the user input."
*
*/
/*Suggest search results DIV*/
#categoryselectmaster div#searchResults {
line-height:1.6;
overflow:auto;
max-height:170px;
height:auto;
width:95%;
margin-top :-1px;
float :none;
visibility:hidden;
position:absolute;
color:#c21731;
background-color:white;
z-index:10;
border-style:solid;
border-width:1px;
border-color:black;
}
/*Category Select Master DIV*/
#categoryselectmaster {
border:1px solid #c21731;
background-color:#e9e9e9;
padding:5px;
margin:0px 0px 15px 0px;
}
#categoryselectmaster table {
background-color:#e9e9e9;
}
#categoryselectmaster table, #categoryselectmaster td, #categoryselectmaster div {
width:100%;
position:relative;
}
#categoryselectmaster caption {
text-align:left;
}
input#txtSelectedCategories {
width:95%;
margin-bottom:0;
}
.tooltip {
cursor:pointer;
text-decoration:underline;
color:#2d5381;
}
/*Highlighted category in search results list*/
span.highlight {
background-color:rgb(231,71,71);
color:white;
cursor:pointer;
line-Height:1.6;
padding:3px 4px;
/* width:278px; */
margin:0px;
}
span.cs {
color:rgb(231,71,71);
background-color:white;
cursor:pointer;
line-Height:1.6;
padding:3px 4px;
/* width:278px; */
margin:0px;
}
span.csSelect {
/* color:rgb(255,0,0); */
text-decoration:underline;
font-weight:bold;
}
/*Highlighted category in search results list*/
p.highlight {
background-color:rgb(231,71,71);
color:white;
cursor:pointer;
line-Height:1;
padding:0.1em 2px;
/* width:278px; */
margin:0px;
}
p.cs {
color:rgb(231,71,71);
background-color:white;
cursor:pointer;
line-Height:1;
padding:0.1em 2px;
/* width:278px;*/
margin:0px;
}