Click outside closes TopRightMenu, detect click outside iframe

This commit is contained in:
Chi Vinh Le
2017-06-21 01:29:10 +07:00
parent 644c291d7f
commit 49420e152e
12 changed files with 267 additions and 224 deletions
@@ -0,0 +1,23 @@
.Toggleable:focus {
outline: none;
}
/**
* Up/Down Chevrons for the top right menu
*/
.chevron {
}
.chevron:before {
content: '⌃';
display: inline-block;
position: relative;
top: 0.25em;
}
/* Down Arrow */
.chevron.down:before {
display: inline-block;
position: relative;
transform: rotate(180deg);
top: 0;
}