diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/default/css/elements/forms.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/views/default/css/elements/forms.php b/views/default/css/elements/forms.php index 1fced0196..bf5518b09 100644 --- a/views/default/css/elements/forms.php +++ b/views/default/css/elements/forms.php @@ -253,18 +253,26 @@ input[type="radio"] { **************************************** */ .ui-datepicker { margin-top: 3px; + width: 208px; background-color: white; border: 1px solid #0054A7; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; + overflow: hidden; + -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5); -moz-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5); box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5); - overflow: hidden; +} +.ui-datepicker-inline { + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; } .ui-datepicker-header { + position: relative; background: #4690D6; color: white; padding: 2px 0; |