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