summaryrefslogtreecommitdiff
path: root/httemplate/elements/input-text.html
diff options
context:
space:
mode:
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 9db0643..fb50a50 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). '"' : '';