473,396 Members | 1,849 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

remove shadow from INPUT BUTTON ... DISABLED

Hello,

Somewhere in my code I have
<input TYPE="button" NAME="btnFirst" VALUE="<<" OnClick="GetFile('1')"
DISABLED>

I changed the layout of the INPUT with a stylesheet to

INPUT {
color: #FFFFFF;
background: #000000;
text-shadow: none;
}

However, the 'shadow' of a disabled button is NOT removed.

How can I set the color of a disabled button to a custom color?
Is it possible to set a different color for the border and the text?
How can I apply these settings to only a BUTTON, and no other INPUT fields?

tia

bartp

--

==========================================
Hyper A.R.T.
bart plessers
Paul Van Ostaijenlaan 4
3001 Heverlee
BELGIUM
tel: +32 (16) 23.40.85
fax: +32 (16) 23.41.06
==========================================


Jul 20 '05 #1
5 28522
bart plessers wrote:
<input TYPE="button" ... DISABLED>
INPUT {
text-shadow: none;
} However, the 'shadow' of a disabled button is NOT removed.
(a) text-shadow has no (AFAIK) browser support
(b) that isn't a shadow, its a border
How can I set the color of a disabled button to a custom color?
input[disabled] { color: #faa; }*
Is it possible to set a different color for the border and the text?
How can I apply these settings to only a BUTTON, and no other INPUT
fields?


input[type=button] {}*

* MSIE doesn't support attribute selectors. If you care about this behind
the times browser you have to use classes instead.

--
David Dorward http://dorward.me.uk/
Jul 20 '05 #2
> * MSIE doesn't support attribute selectors. If you care about this behind
the times browser you have to use classes instead.

what do you mean by this?
Currently I use
<TAG class="mystyle"> qsdfqsdf </TAG>

where mystyle is defined in a stylesheet like:

..mystyle {.....}
Here is my sample HTML
++++++++++++++++++++++++++++++++++++++++
<input TYPE="button" NAME="btnFirst" VALUE="<<" OnClick="GetFile('1')"
DISABLED class="MyButton">
<input TYPE="button" NAME="btnPrevious" VALUE="<" OnClick="GetFile('-11')"
DISABLED class="MyButton">
<input TYPE="button" NAME="btnClose" VALUE="#" OnClick="GetTable('1')"
class="MyButton">
<input TYPE="button" NAME="btnNext" VALUE=">" OnClick="GetFile('13')"
class="MyButton">
<input TYPE="button" NAME="btnLast" VALUE=">>" OnClick="GetFile('24')"
class="MyButton">
++++++++++++++++++++++++++++++++++++++++
And my stylesheet
++++++++++++++++++++++++++++++++++++++++
INPUT[type=button] {background: Green;}
INPUT[disabled] {background: Lime;}
..MyButton {background: Maroon;}
..MyButton[disabled] {background: Red;}
++++++++++++++++++++++++++++++++++++++++
On Internet Explorer, the class MyButton is displayed, but no difference is
made between 'enabled' and 'disabled', all the buttons are "Maroon"

On Netscape Navigator,
enabled buttons are 'Green' (from INPUT), disabled are 'Red' (from
class="MyButton" )

On Opera
enabled buttons are 'Green' (from INPUT), disabled are 'Red' (from
class="MyButton" )
Do you have any about those inconsistencies?
It seems to me that styles for tags and styles for classes are mixed...
Do you have a tip how to
- have different styles for enabled/disabled buttons in MSIE (without the
need to assign different classes)
- have a consistent layout in MSIE, Navigator and opera (and other...)?

thanx in advance,

bartp

--
HyperART
Paul Van Ostaijenlaan 4
3001 Heverlee

"David Dorward" <do*****@yahoo.com> wrote in message
news:bm*******************@news.demon.co.uk... bart plessers wrote:
<input TYPE="button" ... DISABLED>
INPUT {
text-shadow: none;
}

However, the 'shadow' of a disabled button is NOT removed.


(a) text-shadow has no (AFAIK) browser support
(b) that isn't a shadow, its a border
How can I set the color of a disabled button to a custom color?


input[disabled] { color: #faa; }*
Is it possible to set a different color for the border and the text?
How can I apply these settings to only a BUTTON, and no other INPUT
fields?


input[type=button] {}*

* MSIE doesn't support attribute selectors. If you care about this behind
the times browser you have to use classes instead.

--
David Dorward http://dorward.me.uk/

Jul 20 '05 #3
Bart Plessers (artabel) wrote:
* MSIE doesn't support attribute selectors. If you care about this behind
the times browser you have to use classes instead.
what do you mean by this?
Currently I use
<TAG class="mystyle"> qsdfqsdf </TAG>

where mystyle is defined in a stylesheet like:

.mystyle {.....}


Yes, this is a class selector
<http://www.w3.org/TR/CSS21/selector.html#class-html>.
<...>

And my stylesheet
++++++++++++++++++++++++++++++++++++++++
INPUT[type=button] {background: Green;}
INPUT[disabled] {background: Lime;}
..MyButton {background: Maroon;}
..MyButton[disabled] {background: Red;}
++++++++++++++++++++++++++++++++++++++++
These ([attr=val]) are attribute selectors
<http://www.w3.org/TR/CSS21/selector.html#attribute-selectors> which
are not supported in IE.
On Internet Explorer, the class MyButton is displayed, but no difference is
made between 'enabled' and 'disabled', all the buttons are "Maroon"

<...>

Do you have any about those inconsistencies?
It seems to me that styles for tags and styles for classes are mixed...
What do you mean "... are mixed"?
Do you have a tip how to
- have different styles for enabled/disabled buttons in MSIE (without the
need to assign different classes)
AFAIK, no way. You may try some of the groups on the
msnews.microsoft.com server or browse/search the MSDN Library
<http://msdn.microsoft.com/library>.
- have a consistent layout in MSIE, Navigator and opera (and other...)?


Experiment, see what works, where, and find/search for specific
issue (when you enconter such) workarounds - you may ask in the groups.

--
Stanimir

Jul 20 '05 #4
>What do you mean "... are mixed"?
Well, I my example, for NetScape:

HTML
++++++++++++++++++++++++++++++++++++++++
<input TYPE="button" NAME="btn1" VALUE="<<" DISABLED class="MyButton">
<input TYPE="button" NAME="btn2" VALUE="<<" class="MyButton">
++++++++++++++++++++++++++++++++++++++++
StyleSheet
++++++++++++++++++++++++++++++++++++++++
INPUT[type=button] {background: Green;}
INPUT[disabled] {background: Lime;}
..MyButton {background: Maroon;}
..MyButton[disabled] {background: Red;}
++++++++++++++++++++++++++++++++++++++++

btn1 becomes red ->> settings from .MyButton definition
btn2 becomes green ->> settings from INPUT definition --> NOT logic

In my opinion, btn2 should becom Maroon, because
- it has class MyButton
- it is enabled

so it should have definition of .MyButton (maroon) and NOT definition of
INPUT (green)
Definitions are 'mixed' here.

any idea?

tia
bartp

--
HyperART
Paul Van Ostaijenlaan 4
3001 Heverlee

"Stanimir Stamenkov" <s7****@netscape.net> wrote in message
news:bm************@ID-207379.news.uni-berlin.de...
Bart Plessers (artabel) wrote:
* MSIE doesn't support attribute selectors. If you care about this behind the times browser you have to use classes instead.


what do you mean by this?
Currently I use
<TAG class="mystyle"> qsdfqsdf </TAG>

where mystyle is defined in a stylesheet like:

.mystyle {.....}


Yes, this is a class selector
<http://www.w3.org/TR/CSS21/selector.html#class-html>.
<...>

And my stylesheet
++++++++++++++++++++++++++++++++++++++++
INPUT[type=button] {background: Green;}
INPUT[disabled] {background: Lime;}
..MyButton {background: Maroon;}
..MyButton[disabled] {background: Red;}
++++++++++++++++++++++++++++++++++++++++


These ([attr=val]) are attribute selectors
<http://www.w3.org/TR/CSS21/selector.html#attribute-selectors> which
are not supported in IE.
On Internet Explorer, the class MyButton is displayed, but no difference is made between 'enabled' and 'disabled', all the buttons are "Maroon"

<...>

Do you have any about those inconsistencies?
It seems to me that styles for tags and styles for classes are mixed...


What do you mean "... are mixed"?
Do you have a tip how to
- have different styles for enabled/disabled buttons in MSIE (without the need to assign different classes)


AFAIK, no way. You may try some of the groups on the
msnews.microsoft.com server or browse/search the MSDN Library
<http://msdn.microsoft.com/library>.
- have a consistent layout in MSIE, Navigator and opera (and other...)?


Experiment, see what works, where, and find/search for specific
issue (when you enconter such) workarounds - you may ask in the groups.

--
Stanimir

Jul 20 '05 #5
Sorry for the large quote. See my comment bellow.

Bart Plessers (artabel) wrote:
What do you mean "... are mixed"?


HTML
++++++++++++++++++++++++++++++++++++++++
<input TYPE="button" NAME="btn1" VALUE="<<" DISABLED class="MyButton">
<input TYPE="button" NAME="btn2" VALUE="<<" class="MyButton">
++++++++++++++++++++++++++++++++++++++++

StyleSheet
++++++++++++++++++++++++++++++++++++++++
INPUT[type=button] {background: Green;}
INPUT[disabled] {background: Lime;}
..MyButton {background: Maroon;}
..MyButton[disabled] {background: Red;}
++++++++++++++++++++++++++++++++++++++++

btn1 becomes red ->> settings from .MyButton definition
btn2 becomes green ->> settings from INPUT definition --> NOT logic

In my opinion, btn2 should becom Maroon, because
- it has class MyButton
- it is enabled

so it should have definition of .MyButton (maroon) and NOT definition of
INPUT (green)

Definitions are 'mixed' here.


This is related to the selector's specificity
<http://www.w3.org/TR/CSS21/cascade.html#specificity>. If two
selectors have equal specificity you could change their order of
appearance but in your case:

..MyButton {background: Maroon;}
..MyButton[disabled] {background: Red;}

The second selector has higher specificity so it doesn't matter if
you change the order.

--
Stanimir

Jul 20 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: JohnSouth | last post by:
Hi I've an image submit button on a form that needs to appear flat on the surface. I can't get rid of the shadow that appears bottom and right. This is the best I can do. <code>...
4
by: multimatum2 | last post by:
Hello, I need to enable/disable input text forms... But... I need to have the same style (color...) in both modes.. Could you help me ? Thanx a lot A small sample... ...
3
by: Chris S | last post by:
I've been unsuccessfully attempting to write a method in Javascript to change an input field from TEXT to SELECT when a user selects (or unselects) a radio button. In my frustration I have been...
3
by: petermonsson | last post by:
Hi all, Does IE support disabled for the Image type in inputs? This small example doesn't seem to work when the type is Image, but perfectly fine when the type is submit. Best Regards ...
6
by: Mike | last post by:
I have a form that contains 240 "products". Each Product has a TR. Each TR contains a Yes and No radio button and a Product-Qty text input. A situation exists where I have to go through all the...
5
by: pbearne | last post by:
Hi guys I am trying to this function below I have a web form with a load of inputs text boxs etc and i need to disable them So I have tried to write a function I can call and get the...
6
by: Romulo NF | last post by:
Greetings again to everyone, Im back to show this grid componenet i´ve developed. With this grid you can show the data like a normal table, remove the rows that you need, add rows, import data,...
5
by: The Devil | last post by:
Hi, This is not just a simple input form made with javascript. This is the code: <html><head> <script language="JavaScript"> var i=0; function add(inputEvent, inputDur, inputCode,...
3
by: Allen Chen [MSFT] | last post by:
Hi Richard, Quote from Richard================================================== However I also want to be able to remove the panes. I have tried to include this, but find that when I first...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.