dat.gui/elements/gui-row/gui-row.styl

73 lines
929 B
Stylus
Raw Normal View History

2014-08-16 21:16:02 +00:00
@import '../shared';
2014-08-15 16:32:49 +00:00
2014-08-16 21:16:02 +00:00
:host {
user-select: none;
2014-08-15 22:04:51 +00:00
background: #1a1a1a;
2014-08-16 21:16:02 +00:00
height: 100%;
width: 100%;
display: block;
font();
2014-08-15 16:32:49 +00:00
}
2014-08-16 21:16:02 +00:00
#row {
2014-08-15 16:32:49 +00:00
2014-08-16 21:16:02 +00:00
}
#comment {
line-height: 16px;
user-select: text;
background: #E0CF99;
height: 0;
color: #333;
box-sizing: border-box;
overflow: hidden;
transition: height 0.15s ease;
box-shadow: inset 0 2px 0 dark;
}
#commentInner {
padding: padding;
}
#name {
2014-08-15 16:32:49 +00:00
text-overflow: ellipsis;
word-wrap: break-word;
overflow: hidden;
2014-08-16 21:16:02 +00:00
padding: 0 padding;
2014-08-15 16:32:49 +00:00
box-sizing: border-box;
2014-08-16 21:16:02 +00:00
display: inline-block;
width: 40%;
height: 30px;
line-height: 30px;
cursor: default;
.comment-true & {
cursor: pointer;
}
2014-08-15 16:32:49 +00:00
}
2014-08-16 21:16:02 +00:00
.comment-true #nameInner {
display: inline-block;
border-bottom: 1px dotted light;
&:after {
content: ' ?';
color: light;
}
2014-08-15 16:32:49 +00:00
2014-08-16 21:16:02 +00:00
}