knockout-bootstrap icon indicating copy to clipboard operation
knockout-bootstrap copied to clipboard

Close button in Popover title

Open littlefyr opened this issue 11 years ago • 1 comments

It would be a good idea if you added another option that would add the close icon to the title. I find it odd to see it in the body of the popover... if you're going to use one.

littlefyr avatar May 08 '13 20:05 littlefyr

I've added this to my less file to "fix" it:

.ko-popover {
    button.close {
        position: absolute;
        top: 15px;
        right: 20px;

        &:active,
        &:focus {
            outline: none;
        }
    }
}

ArthurClemens avatar Aug 20 '13 22:08 ArthurClemens