1234567891011121314151617181920212223242526272829303132 |
- .menu-title {
- box-shadow: inset 0 -1px 0 1px #f0f0f0;
- }
- .department-node {
- height: 32px;
- max-width: 152px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .title {
- word-wrap: break-word;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .extra {
- display: none;
- margin-right: 0.25rem;
- &:hover {
- cursor: pointer;
- }
- }
- &:hover {
- .extra {
- display: flex;
- justify-content: space-between;
- align-items: center;
- flex-wrap: nowrap;
- }
- }
- }
|