Page 1 of 2
mobilebase.css changed without interaction
Posted: Thu May 16, 2013 10:44 am
by w
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.
mobilebase.css changed without interaction
Posted: Thu May 16, 2013 10:49 am
by w
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.
mobilebase.css changed without interaction
Posted: Thu May 16, 2013 12:35 pm
by Kateryna Grynko
mobilebase.css changed without interaction
Posted: Thu May 16, 2013 12:43 pm
by w
Did something also happen to the createSpinner method, and other things?
See: https://getsatisfaction.com/apperyio/...
mobilebase.css changed without interaction
Posted: Thu May 16, 2013 1:01 pm
by w
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?
mobilebase.css changed without interaction
Posted: Thu May 16, 2013 2:13 pm
by Kateryna Grynko
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
mobilebase.css changed without interaction
Posted: Thu May 16, 2013 2:24 pm
by w
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?
mobilebase.css changed without interaction
Posted: Thu May 16, 2013 3:30 pm
by w
mobilebase.css changed without interaction
Posted: Thu May 16, 2013 3:58 pm
by Maryna Brodina
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
mobilebase.css changed without interaction
Posted: Thu May 16, 2013 8:06 pm
by w
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!