mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-04-04 14:08:38 +00:00
add bookmarks display
This commit is contained in:
parent
cc98c94b2b
commit
020445743c
3 changed files with 230 additions and 159 deletions
|
|
@ -160,6 +160,51 @@ input[type=range]:focus::-ms-fill-upper
|
|||
position: relative;
|
||||
}
|
||||
|
||||
#openwebrx-bookmarks-container
|
||||
{
|
||||
height: 25px;
|
||||
background-color: #444;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#openwebrx-bookmarks-container .bookmark-locator {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
#openwebrx-bookmarks-container .bookmark {
|
||||
font-size: 10pt;
|
||||
background-color: #FFFF00;
|
||||
border: 1px solid #000;
|
||||
border-radius: 5px;
|
||||
padding: 2px 5px;
|
||||
cursor: pointer;
|
||||
|
||||
position: absolute;
|
||||
bottom: 5px;
|
||||
transform: translate(-50%, 0);
|
||||
}
|
||||
|
||||
#openwebrx-bookmarks-container .bookmark:hover {
|
||||
z-index: 11;
|
||||
}
|
||||
|
||||
#openwebrx-bookmarks-container .bookmark:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border: 5px solid transparent;
|
||||
border-top-color: #FFFF00;
|
||||
border-bottom: 0;
|
||||
margin-left: -5px;
|
||||
margin-bottom: -5px;
|
||||
}
|
||||
|
||||
#webrx-canvas-container
|
||||
{
|
||||
/*background-image:url('../gfx/openwebrx-blank-background-1.jpg');*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue