33 lines
708 B
Plaintext
33 lines
708 B
Plaintext
.menu {
|
|
position: absolute;
|
|
}
|
|
|
|
.menu-hide {
|
|
display: none;
|
|
}
|
|
|
|
.menu-unit {
|
|
flex-direction: row;
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.menu-unit:hover {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
border-top-left-radius: 5px;
|
|
border-top-right-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
border-bottom-left-radius: 5px;
|
|
}
|
|
|
|
.menu-arrow {
|
|
flex-grow: 0;
|
|
height: 30px;
|
|
width: 30px;
|
|
background-image: url("project://database/Assets/UI%20Toolkit/UnityThemes/UnityDefaultRuntimeTheme.tss?fileID=-1087164816274819069&guid=05f864e67ee1ecb4bbe67427564d394c&type=3#arrow-right@2x");
|
|
-unity-background-image-tint-color: rgb(51, 51, 51);
|
|
}
|
|
|
|
.menu-arrow-hide {
|
|
display: none;
|
|
}
|