w
Posts: 0
Joined: Tue Mar 26, 2013 12:30 pm

mobilebase.css changed without interaction

One day to another suddenly all my 'a' links are black and not underlined. When I check in firebug, I see that mobilebase.css contains this for a:

a {
outline: none;
text-decoration: none;
color: black;
}

How is this possible, and how to correct this, because mobilebase.css is created by Tiggzi.

w
Posts: 0
Joined: Tue Mar 26, 2013 12:30 pm

mobilebase.css changed without interaction

I have only this in Custom css:

.ondernemingStructuurLink:visited {color:#0000FF;} /* blauw laten van visited link */

.mobileContent {
background-image: url('../image/seamlesstexture.jpg');
background-size:"cover";
background-position: "center";
}

with .ondernemingStructuurLink:visited was already there for weeks, and everything was working.
The only new thing is the .mobileContent section.

Deleting the complete custom css is not helping either.

Kateryna Grynko
Posts: 0
Joined: Thu Nov 15, 2012 9:13 am

mobilebase.css changed without interaction

Hi,

We're working on it.

w
Posts: 0
Joined: Tue Mar 26, 2013 12:30 pm

mobilebase.css changed without interaction

Did something also happen to the createSpinner method, and other things?

See: https://getsatisfaction.com/apperyio/...

w
Posts: 0
Joined: Tue Mar 26, 2013 12:30 pm

mobilebase.css changed without interaction

For example, Tiggzi('HiddentextField').show(): In fact the .show() method is working, it effectively changes the style="display: none" to style="display: block".

But for one or the other reason, the textbox is not showing. Yesterday it was working and I changed nothing to that code.

Has this also something to do with the CSS error? Some display property of textfield is altered behind the screen?

Kateryna Grynko
Posts: 0
Joined: Thu Nov 15, 2012 9:13 am

mobilebase.css changed without interaction

Hi,

We found a bug. As a workaround you can replace:
codeAppery('component_name').show()/code
with the following code:
codeAppery('component_name').parent().parent().show()/code

w
Posts: 0
Joined: Tue Mar 26, 2013 12:30 pm

mobilebase.css changed without interaction

Apparently this is only for the .show() and .hide() methods? Or other methods also? And is it only for (hidden) textinputs or other elements too?

Appery('component_name').prop('placeholder') is still working. I can't see the logic :)

What about the mobilebase.css 'a' link color/underline problem?

w
Posts: 0
Joined: Tue Mar 26, 2013 12:30 pm

mobilebase.css changed without interaction

Any update on this?

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

mobilebase.css changed without interaction

You can use show/hide and any other methods for any components - http://api.jquery.com/category/effects/. This bug affects textnput component only.

What about the mobilebase.css 'a' link color/underline problem? -- as a workaround you can set the necessary settings in your custom CSS. You would need to add !important to make it work. For example:

codea {
color: #ff0000 !important;
text-decoration: underline !important;
}/code

or for any specific class:
code.myA {
color: #ff0000 !important;
text-decoration: underline !important;
}/code

w
Posts: 0
Joined: Tue Mar 26, 2013 12:30 pm

mobilebase.css changed without interaction

Thank you, the links are now blue and underlined. But now ALL my buttons, selectmenus etc. are not white text with blue button (standard theme b) anymore, but the buttontext is blue underlined! It looks like shit!

Return to “Issues”