Skip to content

Commit

Permalink
I removed too much :c
Browse files Browse the repository at this point in the history
  • Loading branch information
jecisc committed Mar 2, 2023
1 parent ad319b3 commit 80e1ba5
Show file tree
Hide file tree
Showing 199 changed files with 21,165 additions and 0 deletions.
7 changes: 7 additions & 0 deletions _support/epub/META-INF/container.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0"?>
<container version="1.0" xmlns="urn:oasis:names:tc:opendocument:xmlns:container">
<rootfiles>
<rootfile full-path="contents.opf"
media-type="application/oebps-package+xml"/>
</rootfiles>
</container>
1 change: 1 addition & 0 deletions _support/epub/mimetype
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
application/epub+zip
Empty file added _support/epub/stylesheet.css
Empty file.
Empty file added _support/figures/.keep
Empty file.
49 changes: 49 additions & 0 deletions _support/html/css/auto-complete.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
.autocomplete-suggestions {
text-align: left;
cursor: default;
border: 1px solid #ccc;
border-top: 0;
background: #fff;
box-shadow: 1px 2px 6px;
transition: left 0.1s ease-in-out;

/* core styles should not be changed */
position: absolute;
display: none;
z-index: 9999;
max-height: 70vh;
width: 265px;
overflow: hidden;
overflow-y: hidden;
box-sizing: border-box;

}
.autocomplete-suggestion {
position: relative;
cursor: pointer;
padding: 7px;
line-height: 23px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: #333;
}

.autocomplete-suggestion b {
font-weight: normal;
color: #1f8dd6;
}

.autocomplete-suggestion.selected {
background: #333;
color: #fff;
}

.autocomplete-suggestion:hover {
background: #444;
color: #fff;
}

.autocomplete-suggestion > .context {
font-size: 12px;
}
Loading

0 comments on commit 80e1ba5

Please sign in to comment.