I have a problem with my placeholder. I am not sure why I can't see it.
I am using rails and bootstrap to generate the code:
= form_tag activity_path(@activity), method: :get do
= text_field_tag :start_time," ", {placeholder: 'Start Date', class: 'pull-left input-small'}
= text_field_tag :end_time," ", {placeholder: 'End Date', class: 'pull-left input-small'}
%span.btn= submit_tag 'Show custom dates', class: 'btn'
Here is the generated code:
<input class="pull-left input-small" id="start_time" name="start_time" placeholder="Start Date" type="text" value=" " />
<input class="pull-left input-small" id="end_time" name="end_time" placeholder="End Date" type="text" value=" " />
The problem is that I can't see the placeholder. I tried setting it to a different color input[placeholder] { color: ...} but that didn't seem to work either. Any idea why this is happening? Thank you.
[EDIT]
I added @placeholderText: #080808; in my bootstrap_and_overrides.css file but that didn't seem to do the trick either.