This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 83
Some DataTables markup issues #653
Comments
P.S. Search input field have |
Will fix these things. Should i remove the control-label or add control-label class. |
I think it should be form-control am i right?? I forgot BS now.. my head is pumping :) |
Yep, |
This code is not perfect, but it demonstrates that the markup can be more responsive: <fieldset class="bulk-actions form-actions rounded">
<div class="row">
<div class="form-group col-xs-8 col-sm-3 col-md-2">
<div class="control-group">
<?php echo Form::select('...', array(), '', array('class' => 'form-control input-sm')); ?>
</div>
</div>
<div class="form-group col-xs-4 col-sm-2 col-md-2">
<?php echo Form::submit('...', __('Apply'), array('class'=>'btn btn-primary btn-sm')); ?>
</div>
<div class="form-group col-xs-6 col-sm-7 col-md-8 form-actions-right">
<?php echo HTML::anchor('...', '<i class="fa fa-plus fa-white"></i> '.__('Compose'), array('class'=>'btn btn-success btn-sm')); ?>
</div>
</div>
</fieldset> P.S. I used in example .form-actions-right {
text-align: right;
}
@media only screen and (max-width: 767px) {
.form-actions-right {
text-align: left;
}
} |
P.S. Why Bulk Options? Mb Bulk Actions ? |
I would also like note that we have some issue with tabs in mobile viewport. See twbs/bootstrap#11954 |
sandeepone
added a commit
that referenced
this issue
Dec 22, 2013
Any update on this issue. Any PR on apply button?? |
Not ready yet |
What about buttons dropdown button here? |
Must be closed |
done |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Please see at screenshot
Apply
button - doesn't resemble a button, at least initiallyShow xxx entries
must be longerArchive
label background merges with<tr>
backgroundIn Mozilla Firefox 26.0 this page looks like as on screenshot
The text was updated successfully, but these errors were encountered: