Page 1 of 1

Strange stripe after change color in CSS

Posted: Sat Feb 20, 2021 4:15 pm
by miasoft
If I change the style (color in the file nubuilder4.css) for the table then a strange stripe appears
on the first line (on select first record):
20.02_1.png
How do I remove (hide) this strip?

Re: Strange stripe after change color in CSS

Posted: Sat Feb 20, 2021 4:16 pm
by kev1n
What exactly did you change?

Re: Strange stripe after change color in CSS

Posted: Sat Feb 20, 2021 4:29 pm
by miasoft
kev1n wrote:What exactly did you change?
20.02_2.png

Re: Strange stripe after change color in CSS

Posted: Sat Feb 20, 2021 4:45 pm
by kev1n
Change the height of nuBrowseTitle to 18px.

Re: Strange stripe after change color in CSS

Posted: Sat Feb 20, 2021 5:08 pm
by miasoft
kev1n wrote:Change the height of nuBrowseTitle to 18px.
No effect.(I cleared cash, changed browsers and etc)
There are two "height" strings:
.nuBrowseTitle {
background-color: white;
height: 55px;
border-style: none;
position:absolute;
top:3px;
font-size:13px;
overflow: visible;
height:30px;
padding: 7px 10px 0px 10px;
}

Re: Strange stripe after change color in CSS

Posted: Sat Feb 20, 2021 6:52 pm
by apmuthu
You need to update to the latest version of nuBuilder v4.5 github edge.
Remove the first height and make the second one 18px.

Re: Strange stripe after change color in CSS

Posted: Sat Feb 20, 2021 7:32 pm
by miasoft
apmuthu wrote:You need to update to the latest version of nuBuilder v4.5 github edge.
Remove the first height and make the second one 18px.
I do it. No positive effect.

Re: Strange stripe after change color in CSS

Posted: Sun Feb 21, 2021 8:24 am
by miasoft
miasoft wrote:
apmuthu wrote:You need to update to the latest version of nuBuilder v4.5 github edge.
Remove the first height and make the second one 18px.
I do it. No positive effect.
I changed CSS:

Code: Select all

 .nuBrowseTitle {
	background-color:rgb(98, 236, 132);
	border-style:none;
	position:absolute;
	top:3px;
	font-size:13px;
	overflow:visible;
	height:30px;
/*	padding:7px 10px 0px; */
    padding:0px 1px ;
	white-space:wrap
}
 .nuBrowseTable {
	height:18px;
	border-style:solid;
	border-color:#339c6f23;
	border-top:1px solid #ddd;
	border-width:1px;
	padding:6px 2px 1px;
	position:absolute;
	top:75px;
	font:13px "Helvetica Neue",HelveticaNeue,Helvetica,Arial,sans-serif!important;
	line-height:150%;
/*	white-space:nowrap
*/
}
The result is quite acceptable:
21.02_1.png