1234567891011121314151617181920212223242526272829303132333435 |
- body {
- margin: 0;
- }
- .context_menu{
- position: absolute;
- background-color: white;
- min-width: 100px;
- text-align: center;
- user-select: none;
- cursor: pointer;
- }
- .context_menu .context_item{
- padding-top: 5px;
- padding-bottom: 5px;
- font-weight: 500;
- font-size: 14px;
- background-color: white;
- }
- .context_menu .context_item:hover{
- background-color: lightgray;
- }
- .info_box{
- padding: 5px;
- position: absolute;
- background-color: white;
- border-radius: 5px;
- min-width: 80px;
- text-align: center;
- user-select: none;
- cursor: pointer;
- }
|