• Justin Sanchez 3
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies
<apex:outputLabel style="width: 70% !important;">Created Date: </apex:outputLabel>
<apex:input label="From: " value="{!createdByStartDate}" type="auto"/>
<apex:input label="To: " value="{!createdByEndDate}" type="auto"/>


For my input labels, when I hover over it, it shows me a drop down arrow making it clear to users that it can be clicked, but otherwise the arrow disappears. I'm trying to figure out a way to keep it there permanently. Other solutions have suggested using

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity:1;
}
But no matter where I try to put this, where it be in a style class or direct stlying on the input field,  I don't get any results.