-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor docs for API docs only (#704)
- Loading branch information
1 parent
197d0bf
commit 13cfbd6
Showing
7 changed files
with
1,305 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* Style The Dropdown Button */ | ||
.dropbtn-api { | ||
color: white; | ||
border: none; | ||
cursor: pointer; | ||
} | ||
|
||
.md-tabs__list { | ||
contain: inherit; | ||
} | ||
.md-tabs { | ||
overflow: inherit; | ||
} | ||
.md-header { | ||
z-index: 1000 !important; | ||
} | ||
|
||
/* The container <div> - needed to position the dropdown content */ | ||
.dropdown-api { | ||
position: relative; | ||
display: inline-block; | ||
} | ||
|
||
/* Dropdown Content (Hidden by Default) */ | ||
.dropdown-content-api { | ||
display:none; | ||
font-size: 13px; | ||
position: absolute; | ||
background-color: #f9f9f9; | ||
min-width: 160px; | ||
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); | ||
z-index: 1000; | ||
border-radius: 2px; | ||
left:-15px; | ||
} | ||
|
||
/* Links inside the dropdown */ | ||
.dropdown-content-api a { | ||
color: black; | ||
padding: 12px 16px; | ||
text-decoration: none; | ||
display: block; | ||
} | ||
|
||
/* Change color of dropdown links on hover */ | ||
.dropdown-content-api a:hover {background-color: #f1f1f1} | ||
|
||
/* Show the dropdown menu on hover */ | ||
.dropdown-api:hover .dropdown-content-api { | ||
display: block; | ||
} | ||
|
||
/* Change the background color of the dropdown button when the dropdown content is shown */ | ||
.dropdown-api:hover .dropbtn-api { | ||
} |
Oops, something went wrong.