mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-27 12:07:54 +00:00
32 lines
588 B
CSS
Executable File
32 lines
588 B
CSS
Executable File
/*
|
|
backgrid-text-cell
|
|
http://github.com/wyuenho/backgrid
|
|
|
|
Copyright (c) 2013 Jimmy Yuen Ho Wong and contributors
|
|
Licensed under the MIT @license.
|
|
*/
|
|
|
|
.backgrid .text-cell {
|
|
max-width: 150px;
|
|
overflow: hidden;
|
|
text-align: left;
|
|
-o-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.backgrid .text-cell.editor {
|
|
max-width: 100%;
|
|
height: 28px;
|
|
}
|
|
|
|
.backgrid .text-cell.editor * {
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.backgrid .text-cell.editor textarea {
|
|
width: 100%;
|
|
}
|