69 lines
1.4 KiB
Plaintext
69 lines
1.4 KiB
Plaintext
.submenu-item {
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
min-width: 200px;
|
|
height: 32px;
|
|
border-width: 0;
|
|
background-color: var(--color-bg-primary);
|
|
margin: 0;
|
|
}
|
|
|
|
.submenu-item:hover {
|
|
background-color: var(--color-bg-hover);
|
|
}
|
|
|
|
.submenu-item:active {
|
|
background-color: var(--color-bg-active);
|
|
}
|
|
|
|
.submenu-item:disabled {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.submenu-item__label {
|
|
font-size: 14px;
|
|
color: var(--color-text-primary);
|
|
-unity-text-align: middle-left;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.submenu-item__spacer {
|
|
flex-grow: 1;
|
|
min-width: 24px;
|
|
}
|
|
|
|
.submenu-item__shortcut {
|
|
font-size: 12px;
|
|
color: var(--color-text-secondary);
|
|
-unity-text-align: middle-right;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.submenu-item__arrow {
|
|
width: 0;
|
|
height: 0;
|
|
margin-left: 8px;
|
|
border-left-width: 5px;
|
|
border-right-width: 5px;
|
|
border-top-width: 5px;
|
|
border-bottom-width: 5px;
|
|
border-left-color: var(--color-text-primary);
|
|
border-right-color: transparent;
|
|
border-top-color: transparent;
|
|
border-bottom-color: transparent;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* 구분선 스타일 */
|
|
.submenu-separator {
|
|
height: 1px;
|
|
background-color: var(--color-border);
|
|
margin-top: 4px;
|
|
margin-bottom: 4px;
|
|
}
|