mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-19 16:20:50 +08:00
27 lines
487 B
SCSS
Vendored
27 lines
487 B
SCSS
Vendored
.nexus-table-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.nexus-help-text {
|
|
color: #aaa;
|
|
}
|
|
.pre-line {
|
|
white-space: pre-line;
|
|
}
|
|
.text-one-line{
|
|
display: inline-block;
|
|
white-space: nowrap;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
text-overflow:ellipsis;
|
|
}
|
|
.text-two-line {
|
|
width:200px;
|
|
word-break:break-all;
|
|
display:-webkit-box;
|
|
-webkit-line-clamp:2;
|
|
-webkit-box-orient:vertical;
|
|
overflow:hidden;
|
|
}
|