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

navigate.css « css - github.com/nextcloud/fulltextsearch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ebec24b850498ef325264740d28a1b1ad10c08cb (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
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
111
112
113
114
115
116
117
118
119
120
121
@CHARSET "ISO-8859-1";

.searchbox input[type="search"]:valid, .searchbox input[type="search"]:focus
	{
	width: 300px;
	background: rgba(255,255,255,0.2);
	border-radius: 15px;
}

.searchbox_querying {
	border-color: rgba(255,255,255,1) !important;
}

#nextantList {
	width: 100%;
}

DIV.nextant_entry {
	height: 50px;
	width: 100%;
	background: #f00;
	margin: 2px;
}

DIV.nextant_details {
	width: 22px;
	background-size: 22px;
	display: inline-block;
	height: 22px;
	margin-left: -8px;
	margin-top: -8px;
	cursor: pointer;
	float: left;
	position: absolute;
	z-index: 4;
	opacity: 0.5;
	filter: alpha(opacity = 50)
}

A.nextant_file {
	cursor: default !important;
	position: relative;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	height: 50px;
	line-height: 50px;
	padding: 0;
	left: 50px;
	margin-right: 50px;
}

SPAN.nextant_line {
	position: absolute;
	padding: 0;
	overflow: hidden;
	padding-right: 20px;
	max-width: 800px;
	text-overflow: ellipsis;
}

SPAN.nextant_line1 {
	top: -15px;
	font-style: italic;
	font-weight: bold;
}

SPAN.nextant_line2 {
	top: 0px;
	font-style: italic;
	font-size: 11px;
	left: 10px;
	color: #9e9e9e;
}

SPAN.nextant_line3 {
	font-style: italic;
	font-size: 11px;
	color: #9e9e9e;
	left: 10px;
	top: 15px;
	padding-right: 20px;
}

SPAN.nextant_hl {
	color: #000;
	font-weight: bold;
}

#nextant_suggestion {
	z-index: 2000;
	margin-top: 18px;
	border: solid 1px rgba(0,0,0,0.3);
	border-radius: 4px;
	background: rgba(254,254,254,0.8);
	width: 350px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

DIV.nextant_suggestion_item {
	border-top: dashed 1px rgba(0,0,0,0.2);
	padding: 4px;
	padding-left: 12px;
	padding-right: 12px;
}

DIV.nextant_suggestion_item, nextant_suggestion_item:hover {
	-webkit-transition: background-color 200ms linear;
	-moz-transition: background-color 200ms linear;
	-o-transition: background-color 200ms linear;
	-ms-transition: background-color 200ms linear;
	transition: background-color 200ms linear;
}

nextant_suggestion_item:hover {
	background: #eee;;
}

DIV.nextant_suggestion_firstitem {
	border-top: 0px;
}