summaryrefslogtreecommitdiff
path: root/httemplate/elements/input-text.html
diff options
context:
space:
mode:
authorivan <ivan>2010-04-29 07:40:47 +0000
committerivan <ivan>2010-04-29 07:40:47 +0000
commit6f402df348017146e248ecaae2c71c0a9d708ea4 (patch)
treee89756960a29daf9da95d802c746c2cfa96a64de /httemplate/elements/input-text.html
parent2070eba260962b206f936e46c64d8072c58b2194 (diff)
communigate (phase 2): rules: adding conditions and actions to rule edit. RT#7514
Diffstat (limited to 'httemplate/elements/input-text.html')
-rw-r--r--httemplate/elements/input-text.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/httemplate/elements/input-text.html b/httemplate/elements/input-text.html
index 9db064348..fb50a5070 100644
--- a/httemplate/elements/input-text.html
+++ b/httemplate/elements/input-text.html
@@ -31,13 +31,17 @@ $opt{'disabled'} = &{ $opt{'disabled'} }( \%opt )
$opt{'disabled'} = 'DISABLED'
if $opt{'disabled'} && $opt{'disabled'} !~ /disabled/i; # uuh... yeah?
-my @style = ();
+my @style = ref($opt{'style'})
+ ? @{ $opt{'style'} }
+ : $opt{'style'}
+ ? ( $opt{'style'} )
+ : ();
push @style, 'text-align: '. $opt{'text-align'}
if $opt{'text-align'};
push @style, 'background-color: #dddddd'
- if $opt{'disabled'};
+ if $opt{'disabled'} && ! $opt{'nodarken_disabled'};
my $style = scalar(@style) ? 'STYLE="'. join(';', @style). '"' : '';