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):
How do I remove (hide) this strip?
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
Strange stripe after change color in CSS
-
- Posts: 156
- Joined: Wed Dec 23, 2020 12:28 pm
- Location: Russia, Volgograd
- Has thanked: 32 times
- Been thanked: 7 times
- Contact:
Strange stripe after change color in CSS
You do not have the required permissions to view the files attached to this post.
Last edited by miasoft on Sat Feb 20, 2021 4:17 pm, edited 1 time in total.
Wbr, miasoft.
-
- nuBuilder Team
- Posts: 4307
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 447 times
- Contact:
-
- Posts: 156
- Joined: Wed Dec 23, 2020 12:28 pm
- Location: Russia, Volgograd
- Has thanked: 32 times
- Been thanked: 7 times
- Contact:
Re: Strange stripe after change color in CSS
kev1n wrote:What exactly did you change?
You do not have the required permissions to view the files attached to this post.
Wbr, miasoft.
-
- nuBuilder Team
- Posts: 4307
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 447 times
- Contact:
-
- Posts: 156
- Joined: Wed Dec 23, 2020 12:28 pm
- Location: Russia, Volgograd
- Has thanked: 32 times
- Been thanked: 7 times
- Contact:
Re: Strange stripe after change color in CSS
No effect.(I cleared cash, changed browsers and etc)kev1n wrote:Change the height of nuBrowseTitle to 18px.
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;
}
Wbr, miasoft.
-
- Posts: 249
- Joined: Sun Dec 06, 2020 6:50 am
- Location: Chennai, India, Singapore
Re: Strange stripe after change color in CSS
You need to update to the latest version of nuBuilder v4.5 github edge.
Remove the first height and make the second one 18px.
Remove the first height and make the second one 18px.
-
- Posts: 156
- Joined: Wed Dec 23, 2020 12:28 pm
- Location: Russia, Volgograd
- Has thanked: 32 times
- Been thanked: 7 times
- Contact:
Re: Strange stripe after change color in CSS
I do it. No positive effect.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.
Wbr, miasoft.
-
- Posts: 156
- Joined: Wed Dec 23, 2020 12:28 pm
- Location: Russia, Volgograd
- Has thanked: 32 times
- Been thanked: 7 times
- Contact:
Re: Strange stripe after change color in CSS
I changed CSS:miasoft wrote:I do it. No positive effect.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.
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
*/
}
You do not have the required permissions to view the files attached to this post.
Wbr, miasoft.