forked from cewee/tracker-search
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
81 lines (72 loc) · 1.66 KB
/
Copy pathstylesheet.css
File metadata and controls
81 lines (72 loc) · 1.66 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
.title {
font-size: 1.2em;
font-weight: bold;
}
.titleDir {
font-size: 1em;
padding-left: 7px;
font-weight: bold;
}
.result-pathDir {
padding-left: 7px;
font-size: .7em;
}
.result-path {
font-size: .7em;
}
.result-detail {
padding-left: 7px;
padding-bottom: 4px;
font-size: .8em;
color:rgb(200,200,200);
}
.icon-info-frame{
padding-top: 5px;
}
.directory-content {
border-radius: 7px;
padding: 10px;
width: 170px;
height: 90px;
background-color: rgba(0.0, 0.0, 0.0, 0.55);
color: white;
}
.result-content {
border-radius: 7px;
padding: 10px;
width: 220px;
height: 95px;
background-color: rgba(0.0, 0.0, 0.0, 0.3);
color: white;
}
/*
These are the two sets of styles that are applied when tracker search results are hovered over via mouse or keyboard.
*/
.result:hover .result-content {
transition-duration: 100;
background-color: rgba(255.0, 255.0, 255.0, 0.25);
}
.result:focus .result-content,
.app-well-app:focus > .overview-icon,
.search-result-content:focus > .overview-icon,
.result:selected .result-content,
.app-well-app:selected > .overview-icon,
.search-result-content:selected > .overview-icon {
transition-duration: 100;
background-color: rgba(255.0, 255.0, 255.0, 0.3);
}
.tracker-grid {
spacing: 8px;
-shell-grid-horizontal-item-size: 200px;
-shell-grid-vertical-item-size: 110px;
transition-duration: 100;
}
.tracker-folder-grid {
spacing: 8px;
-shell-grid-horizontal-item-size: 170px;
-shell-grid-vertical-item-size: 95px;
}
.tracker-grid:hover {
background-color: rgba(255,255,255,0.1);
transition-duration: 100;
}