Skip to content

Commit 98270ae

Browse files
committed
updating
1 parent cc756d7 commit 98270ae

File tree

178 files changed

+17980
-3929
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

178 files changed

+17980
-3929
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ Chapters/TAGS/
44
TAGS/
55
TAGS
66
/TAGS
7+
*.DS_Store
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
.autocomplete-suggestions {
2+
text-align: left;
3+
cursor: default;
4+
border: 1px solid #ccc;
5+
border-top: 0;
6+
background: #fff;
7+
box-shadow: 1px 2px 6px;
8+
transition: left 0.1s ease-in-out;
9+
10+
/* core styles should not be changed */
11+
position: absolute;
12+
display: none;
13+
z-index: 9999;
14+
max-height: 70vh;
15+
width: 265px;
16+
overflow: hidden;
17+
overflow-y: hidden;
18+
box-sizing: border-box;
19+
20+
}
21+
.autocomplete-suggestion {
22+
position: relative;
23+
cursor: pointer;
24+
padding: 7px;
25+
line-height: 23px;
26+
white-space: nowrap;
27+
overflow: hidden;
28+
text-overflow: ellipsis;
29+
color: #333;
30+
}
31+
32+
.autocomplete-suggestion b {
33+
font-weight: normal;
34+
color: #1f8dd6;
35+
}
36+
37+
.autocomplete-suggestion.selected {
38+
background: #333;
39+
color: #fff;
40+
}
41+
42+
.autocomplete-suggestion:hover {
43+
background: #444;
44+
color: #fff;
45+
}
46+
47+
.autocomplete-suggestion > .context {
48+
font-size: 12px;
49+
}

_support/html/css/bootstrap-theme.min.css

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)