Files
mattermostest/src/renderer/css/components/DeveloperModeIndicator.scss
Devin Binnie 9ecd139abf [MM-62649] Switch DeveloperModeIndicator over to floating-ui (#3294)
* [MM-62649] Switch DeveloperModeIndicator over to floating-ui

* Fix test
2025-01-28 08:04:48 -05:00

53 lines
1015 B
SCSS

.DeveloperModeIndicator {
align-items: center;
background: transparent;
border-radius: 4px;
border: none;
cursor: pointer;
display: flex;
flex-direction: column;
justify-content: center;
margin: 4px;
position: relative;
width: 32px;
i {
color: rgba(63, 67, 80, 0.56);
cursor: pointer;
font-size: 21px;
line-height: 21px;
}
&:hover, &:focus {
i {
color: rgba(63, 67, 80, 0.78);
}
}
.DeveloperModeIndicator__badge {
background: rgba(210, 75, 78, 1);
border-radius: 10px;
width: 10px;
height: 10px;
position: absolute;
top: 5px;
right: 5px;
}
&.darkMode {
i {
color: rgba(221, 223, 228, 0.56);
}
&:hover, &:focus {
i {
color: rgba(221, 223, 228, 0.78);
}
}
}
}
.DeveloperModeIndicator__tooltip.tooltipContainer {
max-width: none;
}