mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
97 lines
1.3 KiB
Stylus
97 lines
1.3 KiB
Stylus
@import '../shared';
|
|
|
|
:host {
|
|
|
|
panel-font()
|
|
|
|
}
|
|
|
|
#row {
|
|
|
|
debug( blue )
|
|
|
|
height: row-height;
|
|
transition: background-color 0.2s linear;
|
|
border-bottom: 1px solid lighter;
|
|
|
|
}
|
|
|
|
#controller {
|
|
height: 100%;
|
|
}
|
|
|
|
#name {
|
|
|
|
debug( magenta )
|
|
|
|
// overflow: hidden;
|
|
padding: 0 padding;
|
|
box-sizing: border-box;
|
|
width: 40%;
|
|
cursor: default;
|
|
|
|
.comment-true & {
|
|
cursor: pointer;
|
|
}
|
|
|
|
}
|
|
|
|
#nameInner {
|
|
|
|
debug( red );
|
|
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
// word-wrap: break-word;
|
|
|
|
}
|
|
|
|
#comment {
|
|
|
|
line-height: 16px;
|
|
user-select: text;
|
|
|
|
background: #E0CF99;
|
|
color: #333;
|
|
// box-shadow: inset 0 2px 0 dark;
|
|
|
|
|
|
box-sizing: border-box;
|
|
overflow: hidden;
|
|
transition: height 0.15s ease;
|
|
|
|
|
|
position: absolute;
|
|
z-index: 999;
|
|
pointer-events: none;
|
|
|
|
opacity: 0;
|
|
transform: translate3d( 0, 20px, 0 );
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
}
|
|
|
|
#comment.open-true {
|
|
|
|
opacity: 1;
|
|
transition-delay: 200ms;
|
|
transform: translate3d( 0, 0, 0 );
|
|
|
|
}
|
|
|
|
#commentInner {
|
|
padding: padding;
|
|
}
|
|
|
|
.comment-true #nameInner {
|
|
|
|
display: inline-block;
|
|
border-bottom: 1px dotted light;
|
|
|
|
&:after {
|
|
// content: ' ?';
|
|
// color: light;
|
|
}
|
|
|
|
} |