Dear all,
Do you knowif there is a way to change the appearance of the Red Exclamation mark (when schema validation is activated)? My problemis that this character is impacting my form's appearance by blocking line height. Even if my field is correct, I can feel on the form that the space (height and width) is reserved for this exclamation mark. A simple red field would be enough for me, without this mark. I would like to know if there is a way to disable or change its display. Best regards, Mathieu FERRY -- This message was sent on behalf of [hidden email] at openSubscriber.com http://www.opensubscriber.com/messages/ops-users@.../topic.html -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
Administrator
|
Mathieu,
The exclamation mark is the result of the following CSS rule: .xforms-alert-active { background-image:url(/ops/ops/images/xforms/error.gif); background-position:left center; background-repeat:no-repeat; } You can override this rule in your own CSS. -Erik On Nov 26, 2007, at 2:25 AM, [hidden email] wrote: > Dear all, > > Do you knowif there is a way to change the appearance of the Red > Exclamation mark (when schema validation is activated)? > My problemis that this character is impacting my form's appearance > by blocking line height. > > Even if my field is correct, I can feel on the form that the space > (height and width) is reserved for this exclamation mark. A simple > red field would be enough for me, without this mark. > > I would like to know if there is a way to disable or change its > display. > > Best regards, > > Mathieu FERRY > > -- > This message was sent on behalf of [hidden email] at > openSubscriber.com > http://www.opensubscriber.com/messages/ops-users@.../topic.html > > -- > You receive this message as a subscriber of the [hidden email] > mailing list. > To unsubscribe: mailto:[hidden email] > For general help: mailto:[hidden email]?subject=help > OW2 mailing lists service home page: http://www.ow2.org/wws Orbeon Forms - Web Forms for the Enterprise Done the Right Way http://www.orbeon.com/ -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
Thank you ery much Erik,
Sneeking into orbeon's css I could even overload the height and width of xforms-alert-inactive, as well as select1 and select in full appearance. Now I can fully control my form's appearance. Thanks a lot, very usefull. -- Mathieu FERRY Erik Bruchez <ebruchez@orbeon .com> Pour Envoyé par : [hidden email] Erik Bruchez cc <ebruchez@gmail. com> Objet Re: [ops-users] Changing the appearance of the Red Exclamation 27/11/2007 12:01 mark AM Veuillez répondre à [hidden email] g Mathieu, The exclamation mark is the result of the following CSS rule: .xforms-alert-active { background-image:url(/ops/ops/images/xforms/error.gif); background-position:left center; background-repeat:no-repeat; } You can override this rule in your own CSS. -Erik On Nov 26, 2007, at 2:25 AM, [hidden email] wrote: > Dear all, > > Do you knowif there is a way to change the appearance of the Red > Exclamation mark (when schema validation is activated)? > My problemis that this character is impacting my form's appearance > by blocking line height. > > Even if my field is correct, I can feel on the form that the space > (height and width) is reserved for this exclamation mark. A simple > red field would be enough for me, without this mark. > > I would like to know if there is a way to disable or change its > display. > > Best regards, > > Mathieu FERRY > > -- > This message was sent on behalf of [hidden email] at > openSubscriber.com > http://www.opensubscriber.com/messages/ops-users@.../topic.html > > -- > You receive this message as a subscriber of the [hidden email] > mailing list. > To unsubscribe: mailto:[hidden email] > For general help: mailto:[hidden email]?subject=help > OW2 mailing lists service home page: http://www.ow2.org/wws Orbeon Forms - Web Forms for the Enterprise Done the Right Way http://www.orbeon.com/ -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
Make your own css file, and use the same class or id to crush the style of orbeon's css file to use your file. This way, if orbeon.css changes, it doesn't have any incident on your layout! [hidden email] a écrit : Thank you ery much Erik, Sneeking into orbeon's css I could even overload the height and width of xforms-alert-inactive, as well as select1 and select in full appearance. Now I can fully control my form's appearance. Thanks a lot, very usefull. -- Mathieu FERRY Erik Bruchez [hidden email] Pour Envoyé par : [hidden email] Erik Bruchez cc [hidden email] Objet Re: [ops-users] Changing the appearance of the Red Exclamation 27/11/2007 12:01 mark AM Veuillez répondre à [hidden email] g Mathieu, The exclamation mark is the result of the following CSS rule: .xforms-alert-active { background-image:url(/ops/ops/images/xforms/error.gif); background-position:left center; background-repeat:no-repeat; } You can override this rule in your own CSS. -Erik On Nov 26, 2007, at 2:25 AM, [hidden email] wrote:Dear all, Do you knowif there is a way to change the appearance of the Red Exclamation mark (when schema validation is activated)? My problemis that this character is impacting my form's appearance by blocking line height. Even if my field is correct, I can feel on the form that the space (height and width) is reserved for this exclamation mark. A simple red field would be enough for me, without this mark. I would like to know if there is a way to disable or change its display. Best regards, Mathieu FERRY -- This message was sent on behalf of [hidden email] at openSubscriber.com http://www.opensubscriber.com/messages/ops-users@.../topic.html -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: [hidden email] For general help: [hidden email] OW2 mailing lists service home page: http://www.ow2.org/wws-- Orbeon Forms - Web Forms for the Enterprise Done the Right Way http://www.orbeon.com/ -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: [hidden email] For general help: [hidden email] OW2 mailing lists service home page: http://www.ow2.org/wws -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
Hello Stephane,
Thank you for your tip, in fact this is what I did: I just overloaded orbeon's css into a local css. This works just fine. Best regards, -- Mathieu FERRY Stephane Ruchet <stephane.ruchet @epfl.ch> Pour [hidden email] 27/11/2007 04:06 cc PM Objet Re: Réf. : Re: [ops-users] Changing Veuillez the appearance of the Red répondre à Exclamation mark [hidden email] g As I just learnt, I would discourage you to modify orbeon's css file, because new release of this file might come out. Make your own css file, and use the same class or id to crush the style of orbeon's css file to use your file. This way, if orbeon.css changes, it doesn't have any incident on your layout! [hidden email] a écrit : Thank you ery much Erik, Sneeking into orbeon's css I could even overload the height and width of xforms-alert-inactive, as well as select1 and select in full appearance. Now I can fully control my form's appearance. Thanks a lot, very usefull. -- Mathieu FERRY Erik Bruchez <ebruchez@orbeon .com> Pour Envoyé par : [hidden email] Erik Bruchez cc <ebruchez@gmail. com> Objet Re: [ops-users] Changing the appearance of the Red Exclamation 27/11/2007 12:01 mark AM Veuillez répondre à [hidden email] g Mathieu, The exclamation mark is the result of the following CSS rule: .xforms-alert-active { background-image:url(/ops/ops/images/xforms/error.gif); background-position:left center; background-repeat:no-repeat; } You can override this rule in your own CSS. -Erik On Nov 26, 2007, at 2:25 AM, [hidden email] wrote: Dear all, Do you knowif there is a way to change the appearance of the Red Exclamation mark (when schema validation is activated)? My problemis that this character is impacting my form's appearance by blocking line height. Even if my field is correct, I can feel on the form that the space (height and width) is reserved for this exclamation mark. A simple red field would be enough for me, without this mark. I would like to know if there is a way to disable or change its display. Best regards, Mathieu FERRY -- This message was sent on behalf of [hidden email] at openSubscriber.com http://www.opensubscriber.com/messages/ops-users@.../topic.html -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws -- Orbeon Forms - Web Forms for the Enterprise Done the Right Way http://www.orbeon.com/ -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
Free forum by Nabble | Edit this page |