Open GoogleCodeExporter opened 9 years ago
Is there any solution to this that you have determined?
Original comment by bvelasquez
on 22 Jun 2008 at 1:42
The problem is with the input class in css.
change padding to 110px ( you will need to check the maximum text in your
screen/form). By default its 44px which is causing the problem.
input {
box-sizing: border-box;
-webkit-box-sizing: border-box;
width: 100%;
margin: 8px 0 0 0;
padding: 6px 6px 6px 110px;
font-size: 16px;
font-weight: normal;
}
Cheers
Chintan Jajal
Original comment by jaj...@gmail.com
on 2 Mar 2009 at 4:43
Hello, I actually had to fix this same issue today. Below is what i used, then
simply set your <label class="truncated">
.row > label.truncated {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display:block;
width:90px;
}
Original comment by andrewst...@gmail.com
on 27 May 2009 at 8:29
Original issue reported on code.google.com by
maher...@gmail.com
on 19 Jul 2007 at 10:43