Skip to content

Commit

Permalink
imput boxes removed and issue#51 fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
rajeshwarpatlolla committed Oct 8, 2015
1 parent 7567a55 commit e44525f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion dist/ionic-timepicker.bundle.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/ionic-timepicker-12-hour.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<button type="button" class="button button-clear button-small button-dark timePickerArrows marginBottom10"
ng-click="increaseHours()">
<i class="icon ion-chevron-up"></i></button>
<input type="text" placeholder="" ng-model="time.hours" class="ipBoxes timePickerBoxText" disabled>
<div ng-bind="time.hours" class="ipBoxes timePickerBoxText"></div>
<button type="button" class="button button-clear button-small button-dark timePickerArrows marginTop10"
ng-click="decreaseHours()">
<i class="icon ion-chevron-down"></i></button>
Expand All @@ -13,15 +13,15 @@
<span class="button-small col col-25">
<button type="button" class="button button-clear button-small button-dark timePickerArrows marginBottom10"
ng-click="increaseMinutes()"><i class="icon ion-chevron-up"></i></button>
<input type="text" placeholder="" ng-model="time.minutes" class="ipBoxes timePickerBoxText" disabled>
<div ng-bind="time.minutes" class="ipBoxes timePickerBoxText"></div>
<button type="button" class="button button-clear button-small button-dark timePickerArrows marginTop10"
ng-click="decreaseMinutes()"><i class="icon ion-chevron-down"></i></button>
</span>
<label class="col col-10 timePickerColon"> : </label>
<span class="button-small col col-25">
<button type="button" class="button button-clear button-small button-dark timePickerArrows marginBottom10"
ng-click="changeMeridian()"><i class="icon ion-chevron-up"></i></button>
<input type="text" placeholder="" ng-model="time.meridian" class="ipBoxes timePickerBoxText" disabled>
<div ng-bind="time.meridian" class="ipBoxes timePickerBoxText"></div>
<button type="button" class="button button-clear button-small button-dark timePickerArrows marginTop10"
ng-click="changeMeridian()"><i class="icon ion-chevron-down"></i></button>
</span>
Expand Down
4 changes: 2 additions & 2 deletions src/ionic-timepicker-24-hour.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<button type="button" class="button button-clear button-small button-dark timePickerArrows marginBottom10"
ng-click="increaseHours()">
<i class="icon ion-chevron-up"></i></button>
<input type="text" placeholder="" ng-model="time.hours" class="ipBoxes timePickerBoxText" disabled>
<div ng-bind="time.hours" class="ipBoxes timePickerBoxText"></div>
<button type="button" class="button button-clear button-small button-dark timePickerArrows marginTop10"
ng-click="decreaseHours()">
<i class="icon ion-chevron-down"></i></button>
Expand All @@ -13,7 +13,7 @@
<span class="button-small col col-25">
<button type="button" class="button button-clear button-small button-dark timePickerArrows marginBottom10"
ng-click="increaseMinutes()"><i class="icon ion-chevron-up"></i></button>
<input type="text" placeholder="" ng-model="time.minutes" class="ipBoxes timePickerBoxText" disabled>
<div ng-bind="time.minutes" class="ipBoxes timePickerBoxText"></div>
<button type="button" class="button button-clear button-small button-dark timePickerArrows marginTop10"
ng-click="decreaseMinutes()"><i class="icon ion-chevron-down"></i></button>
</span>
Expand Down
9 changes: 4 additions & 5 deletions src/ionic-timepicker.styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@
}

.timePickerBoxText {
height: 40px;
text-align: center;
border: 1px solid #dddddd !important;
}

.bar.bar-stable, .tabs {
box-shadow: 0 0 5px #555;
border: 1px solid #dddddd;
font-size: 16px;
padding-top: 5px;
}

.overflowShow {
Expand Down

0 comments on commit e44525f

Please sign in to comment.