jsketcher/modules/brep/debug/debugger/brepDebugger.less
Val Erastov (xibyte) f053cab1ba move brep to a module
2020-07-19 22:59:42 -07:00

76 lines
1.2 KiB
Text

:global
.brep-debugger {
& .strike {
text-decoration:line-through;
}
& .grayed {
color: lightgray;
}
& .invisible {
visibility: hidden;
}
padding: 0.4rem;
line-height: 1.5;
button {
font-size: inherit;
padding: 0 0.4rem;
}
& .operands-veiew {
display: flex;
justify-content: space-between;
& > * {
flex: 1 1;
}
}
& .section {
&.closable > .caption {
cursor: pointer;
& .title {
&:hover {
color: blue;
text-decoration: underline;
}
}
}
& .caption {
white-space: nowrap;
user-select: none;
&.accent {
background-color: rgb(255, 244, 244);
font-weight: bold;
}
&.centered {
text-align: center;
}
&.operand-a {
background-color: rgb(239, 244, 255)
}
&.operand-b {
background-color: rgb(244, 255, 245)
}
&.result {
background-color: rgb(254, 255, 244)
}
}
}
.clickable {
cursor: pointer;
&:hover {
color: blue;
}
}
.button {
font-size: 1.7rem;
.clickable;
}
}