Commit 36e02801 authored by steurwadkar's avatar steurwadkar

CSS changes to remove horizontal scroll bar in Item details


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@105192 ce508802-f39f-4f6c-b175-0d175dae99d5
parent a8e95d8a
......@@ -65,7 +65,9 @@ body,div,form,td,table,a {
font-size: 12px;
width: 100%;
height: auto;
border: 1px solid rgb(219, 217, 208);
/* Changed by Santosh on 31/03/2017 */
/* border: 1px solid rgb(219, 217, 208); */
border-top: 1px solid rgb(219, 217, 208);
background-color: white;
}
......@@ -153,7 +155,9 @@ body,div,form,td,table,a {
float: left;
margin: .1em 0;
white-space: nowrap;
width: 100%;
/* Changed by Santosh on 31/03/2017 to remove horizontal scroll bar */
/* width: 100%; */
width: calc(100% - 10px);
overflow: hidden;
text-overflow: ellipsis;
height: 25px;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment