The current implementation made the commands from the app luci-app-commands absolutely positioned which resulted in hiding elements which was underneath it, ie. the buttons. This implementation removes the absolutely positioned behavior making the buttons visible again and as an upside aligns it with how the Bootstrap theme handles commands.
Signed-off-by: Daniel Nilsson <daniel.nilsson94@outlook.com>
}
.commandbox code {
- position: absolute;
- overflow: hidden;
- max-width: 60%;
margin-left: 4px;
padding: 2px 3px;
- white-space: nowrap;
- text-overflow: ellipsis;
-}
-
-.commandbox code:hover {
- overflow-y: auto;
- max-height: 50px;
- white-space: normal;
}
.commandbox p:first-of-type {