papriwalprateek / dqalpha

www.daqwest.com
1 stars 0 forks source link

view source| active tab| youtube ui #62

Closed papriwalprateek closed 10 years ago

papriwalprateek commented 10 years ago

@vinayrajchoudhary for coloring the active link, there is no css workaround.

vinayrajchoudhary commented 10 years ago

Jquery tabs are used and they have their own Custom CSS which can be overidden , you will need to see what class named are changed when a tab is clicked and associate a CSS snippet for that class in our html file.... Read something like http://designbyjeeba.blogspot.in/2009/11/custom-css-tips-for-jquery-tabs.html?m=1

-----Original Message----- From: "papriwalprateek" notifications@github.com Sent: ‎13-‎02-‎2014 23:48 To: "vinayrajchoudhary/dqalpha" dqalpha@noreply.github.com Cc: "Vinay Raj Choudhary" vinayrajchoudhary@gmail.com Subject: Re: [dqalpha] view source added (#62)

@vinayrajchoudhary for coloring the active link, there is no css workaround. — Reply to this email directly or view it on GitHub.

papriwalprateek commented 10 years ago

hmm that i know but CSS will not do it. CSS can only do till :active, :focus else javascript is needed.

"The closest you'll get is :active:

btnLeft:active {

width: 70px;
height: 74px;

} However this will only apply the style when the mouse button is held down. The only way to apply a style and keep it applied onclick is to use a bit of JavaScript. " --> from http://stackoverflow.com/questions/13630229/onclick-in-css)

On Fri, Feb 14, 2014 at 12:43 AM, Vinay Raj Choudhary < notifications@github.com> wrote:

Jquery tabs are used and they have their own Custom CSS which can be overidden , you will need to see what class named are changed when a tab is clicked and associate a CSS snippet for that class in our html file.... Read something like http://designbyjeeba.blogspot.in/2009/11/custom-css-tips-for-jquery-tabs.html?m=1

-----Original Message----- From: "papriwalprateek" notifications@github.com Sent: 13-02-2014 23:48 To: "vinayrajchoudhary/dqalpha" dqalpha@noreply.github.com Cc: "Vinay Raj Choudhary" vinayrajchoudhary@gmail.com Subject: Re: [dqalpha] view source added (#62)

@vinayrajchoudhary for coloring the active link, there is no css

workaround.

Reply to this email directly or view it on GitHub.

Reply to this email directly or view it on GitHubhttps://github.com/vinayrajchoudhary/dqalpha/pull/62#issuecomment-35014086 .

Thanks and Regards Prateek Papriwal B.Tech, Electrical IIT Delhi

vinayrajchoudhary commented 10 years ago

Read that link....... Add .ui-state-active{ur css} and that will work

-----Original Message----- From: "papriwalprateek" notifications@github.com Sent: ‎14-‎02-‎2014 02:11 To: "vinayrajchoudhary/dqalpha" dqalpha@noreply.github.com Cc: "Vinay Raj Choudhary" vinayrajchoudhary@gmail.com Subject: Re: [dqalpha] view source added (#62)

hmm that i know but CSS will not do it. CSS can only do till :active, :focus else javascript is needed.

On Fri, Feb 14, 2014 at 12:43 AM, Vinay Raj Choudhary < notifications@github.com> wrote:

Jquery tabs are used and they have their own Custom CSS which can be overidden , you will need to see what class named are changed when a tab is clicked and associate a CSS snippet for that class in our html file.... Read something like http://designbyjeeba.blogspot.in/2009/11/custom-css-tips-for-jquery-tabs.html?m=1

-----Original Message----- From: "papriwalprateek" notifications@github.com Sent: 13-02-2014 23:48 To: "vinayrajchoudhary/dqalpha" dqalpha@noreply.github.com Cc: "Vinay Raj Choudhary" vinayrajchoudhary@gmail.com Subject: Re: [dqalpha] view source added (#62)

@vinayrajchoudhary for coloring the active link, there is no css

workaround.

Reply to this email directly or view it on GitHub.

Reply to this email directly or view it on GitHubhttps://github.com/vinayrajchoudhary/dqalpha/pull/62#issuecomment-35014086 .

Thanks and Regards Prateek Papriwal B.Tech, Electrical IIT Delhi — Reply to this email directly or view it on GitHub.

papriwalprateek commented 10 years ago

ok. I am seeing it.

On Fri, Feb 14, 2014 at 9:47 AM, Vinay Raj Choudhary < notifications@github.com> wrote:

Read that link....... Add .ui-state-active{ur css} and that will work

-----Original Message----- From: "papriwalprateek" notifications@github.com Sent: 14-02-2014 02:11 To: "vinayrajchoudhary/dqalpha" dqalpha@noreply.github.com Cc: "Vinay Raj Choudhary" vinayrajchoudhary@gmail.com Subject: Re: [dqalpha] view source added (#62)

hmm that i know but CSS will not do it. CSS can only do till :active, :focus else javascript is needed.

On Fri, Feb 14, 2014 at 12:43 AM, Vinay Raj Choudhary < notifications@github.com> wrote:

Jquery tabs are used and they have their own Custom CSS which can be overidden , you will need to see what class named are changed when a tab is clicked and associate a CSS snippet for that class in our html file.... Read something like

http://designbyjeeba.blogspot.in/2009/11/custom-css-tips-for-jquery-tabs.html?m=1

-----Original Message----- From: "papriwalprateek" notifications@github.com Sent: 13-02-2014 23:48 To: "vinayrajchoudhary/dqalpha" dqalpha@noreply.github.com Cc: "Vinay Raj Choudhary" vinayrajchoudhary@gmail.com Subject: Re: [dqalpha] view source added (#62)

@vinayrajchoudhary for coloring the active link, there is no css

workaround.

Reply to this email directly or view it on GitHub.

Reply to this email directly or view it on GitHub< https://github.com/vinayrajchoudhary/dqalpha/pull/62#issuecomment-35014086>

.

Thanks and Regards Prateek Papriwal B.Tech, Electrical

IIT Delhi

Reply to this email directly or view it on GitHub.

Reply to this email directly or view it on GitHubhttps://github.com/vinayrajchoudhary/dqalpha/pull/62#issuecomment-35054395 .

Thanks and Regards Prateek Papriwal B.Tech, Electrical IIT Delhi

papriwalprateek commented 10 years ago

@vinayrajchoudhary active tab css added.