mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
Corrected calendar-filter element in backend/calendar.php
This commit is contained in:
parent
fabd9ace1f
commit
7ebe58d4f4
2 changed files with 15 additions and 4 deletions
|
@ -35,11 +35,11 @@
|
|||
|
||||
<div id="calendar-page">
|
||||
<div id="calendar-toolbar">
|
||||
<div id="calendar-filter">
|
||||
<div id="calendar-filter" class="form-group form-inline">
|
||||
<label for="select-filter-item">
|
||||
<?php echo $this->lang->line('display_calendar'); ?>
|
||||
</label>
|
||||
<select id="select-filter-item"
|
||||
<select id="select-filter-item" class="form-control">
|
||||
title="<?php echo $this->lang->line('select_filter_item_hint'); ?>">
|
||||
</select>
|
||||
</div>
|
||||
|
|
|
@ -194,15 +194,26 @@ body .jspTrack {
|
|||
|
||||
#calendar-page #calendar-filter {
|
||||
float: left;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#calendar-page #calendar-filter label {
|
||||
float: left;
|
||||
display: inline-block;
|
||||
margin-right: 7px;
|
||||
font-weight: bold;
|
||||
margin: 2px 10px 0 0;
|
||||
margin-right: 7px;
|
||||
margin-bottom: 0;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
#calendar-page #calendar-filter select {
|
||||
background-color: #FFF;
|
||||
padding: 0 10px;
|
||||
background-position-x: 95%;
|
||||
height: 36px;
|
||||
min-width: 270px;
|
||||
}
|
||||
|
||||
#calendar-page #calendar-filter select:disabled {
|
||||
background: white;
|
||||
cursor: auto;
|
||||
|
|
Loading…
Reference in a new issue