Skip to content

Commit

Permalink
Added arrow svg for platform-api-dropdown as previous implementation …
Browse files Browse the repository at this point in the history
…was no supported on mobile.
  • Loading branch information
AndrewRichards-Code committed Jan 18, 2024
1 parent e781eb3 commit 78baa10
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 13 additions & 5 deletions tutorial/tutorial_sphinx_theme_1/static/css/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -7930,14 +7930,22 @@ display:none;
}

.platform-api-dropdown > span:after{
content: "\1F780";
width: 21px;
height: 21px;
background: url(icons/Vector_down_arrow_link.svg);
content: " ";
rotate: 90deg;
width: 16px;
height: 16px;
display: inline-block;
margin-left:4px;
}
}
.platform-api-dropdown:hover > span:after{
content: "\1F783";
background: url(icons/Vector_down_arrow_link.svg);
content: " ";
rotate: 0deg;
width: 16px;
height: 16px;
display: inline-block;
margin-left:4px;
}

.platform-api-dropdown-content {
Expand Down

0 comments on commit 78baa10

Please sign in to comment.