12345678910111213141516171819202122 |
- [moe] [url]:not([show]){
- display: none;
- }
- [moe] {
- display: inline-block;
- }
- [moe][relative] {
- position: relative;
- }
- [moe] form:not([show]) {
- z-index: 99999;
- position: absolute;
- background-color: white;
- padding: 10px;
- border: 1px solid gray;
- }
- [moe] form[right] {
- right: 0;
- }
- #moe-form-mask {
- cursor: pointer;
- }
|