Newer
Older
.quiqqer-menu-menuPanel {
display: flex;
padding: 0;
}
.quiqqer-menu-menuPanel-mapContainer {
border-right: 1px solid #dedede;
padding: 20px;
width: 300px;
}
.quiqqer-menu-menuPanel-innerContainer {
flex-grow: 1;
overflow: auto;
padding: 20px;
}
.quiqqer-menu-menuPanel-innerContainer > div {
width: 100%;
}
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/****************************************/
/* Options list: create and edit window */
/****************************************/
.qui-menuPanel-optionList {
display: grid;
gap: 1rem;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto;
margin-top: 3rem;
}
.qui-menuPanel-optionList__option {
background: #f5f5f5;
padding: 1rem 1.5rem;
border-radius: 1rem;
cursor: pointer;
display: flex;
gap: 0.5rem 1.5rem;
}
.qui-menuPanel-optionList__option-image {
font-size: 3rem;
width: 4rem;
flex-shrink: 0;
text-align: center;
align-self: flex-start;
opacity: 0.5;
}
.qui-menuPanel-optionList__option-title {
margin-bottom: 0.25rem;
font-weight: bold;
}
.qui-menuPanel-optionList__option-desc {
opacity: 0.75;
}
/* checked */
.qui-menuPanel-optionList__option.checked {
outline: 2px solid;
outline-offset: -2px;
}
.qui-menuPanel-optionList__option.checked .qui-menuPanel-optionList__option-image {
opacity: 1;
}