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-page">
|
||||||
<div id="calendar-toolbar">
|
<div id="calendar-toolbar">
|
||||||
<div id="calendar-filter">
|
<div id="calendar-filter" class="form-group form-inline">
|
||||||
<label for="select-filter-item">
|
<label for="select-filter-item">
|
||||||
<?php echo $this->lang->line('display_calendar'); ?>
|
<?php echo $this->lang->line('display_calendar'); ?>
|
||||||
</label>
|
</label>
|
||||||
<select id="select-filter-item"
|
<select id="select-filter-item" class="form-control">
|
||||||
title="<?php echo $this->lang->line('select_filter_item_hint'); ?>">
|
title="<?php echo $this->lang->line('select_filter_item_hint'); ?>">
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -194,15 +194,26 @@ body .jspTrack {
|
||||||
|
|
||||||
#calendar-page #calendar-filter {
|
#calendar-page #calendar-filter {
|
||||||
float: left;
|
float: left;
|
||||||
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#calendar-page #calendar-filter label {
|
#calendar-page #calendar-filter label {
|
||||||
|
float: left;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-right: 7px;
|
margin: 2px 10px 0 0;
|
||||||
font-weight: bold;
|
margin-right: 7px;
|
||||||
|
margin-bottom: 0;
|
||||||
font-size: 18px;
|
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 {
|
#calendar-page #calendar-filter select:disabled {
|
||||||
background: white;
|
background: white;
|
||||||
cursor: auto;
|
cursor: auto;
|
||||||
|
|
Loading…
Reference in a new issue