Welcome to mirror list, hosted at ThFree Co, Russian Federation.

nextsearch.css « css - github.com/nextcloud/fulltextsearch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 123b9e52545212c57d56a7d0ae1d17b0d084d8e4 (plain)
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

.provider_result {
	font-style: italic;
}

.result_entry_default {
	height: 50px;
	width: 100%;
	display: inline-block;
	background: #eeeeee;
	padding-bottom: 2px;
}

.result_entry_left {
	float: left;
	position: relative;
	top: 50%;
	margin-left: 10px;
	transform: perspective(1px) translateY(-50%);
}

.result_entry_right {
	float: right;
	margin-right: 10px;
	position: relative;
	top: 50%;
	transform: perspective(1px) translateY(-50%);
}

.result_entry_default #title {
	font-weight: bold;
	height: 14px;
}

.result_entry_default #line1, .result_entry_default #line2 {
	color: #333333;
	font-size: 11px;
	height: 12px;
	font-style: italic;
}

.result_entry_default #score {
	font-weight: bold;
	font-style: italic;
}

.next_search_div {
	position: relative;
	width: 250px;
	height: 36px;
	margin-right: 20px;
}

.icon-fullnextsearch, .icon-close-fullnextsearch {
	position: absolute;
	right: 10px;
	top: 10px;
	cursor: pointer;
}

#next_search_input {
	background: #fffc;
	width: 212px;
	height: 30px;
	margin: 2px !important;
}