Adam Bradley
717148d986
fix(checkbox): Fix checkmark in Android 2.3
2014-03-03 16:21:57 -06:00
Adam Bradley
72f2e8407e
fix(toggle): Fix toggle handle on Android 2.3
2014-03-03 15:55:42 -06:00
Adam Bradley
8ef8227373
group link resets and scafolding css
2014-03-03 13:58:59 -06:00
Adam Bradley
b300e0de66
outline: 0 on all links and buttons to reduce repaints
2014-03-03 13:50:08 -06:00
Adam Bradley
22827b06ec
remove translateZ from scroll, instead rely on translate3d from the inline style
2014-03-03 13:33:33 -06:00
Max Lynch
cc15a5b455
feat(toggle): Added dragging support to toggle switches
...
Merge pull request #706 from driftyco/wip-draggable-toggle
2014-03-03 11:46:41 -06:00
Adam Bradley
cb5510c184
fix(badge): Vertical align a badge in an item-divider, closes #707
2014-03-03 10:42:38 -06:00
Max Lynch
a8af0958f3
Expanded clickable area for toggle
2014-03-01 19:06:14 -06:00
Max Lynch
2db2729af9
Decreased animation speed
2014-03-01 18:59:52 -06:00
Max Lynch
c53cd7f9d8
Added slight darkening during drag
2014-03-01 16:07:08 -06:00
Adam Bradley
4d3667106e
fix(item): Fix badge moving to new line when text is too long, closes #551
2014-03-01 00:15:14 -06:00
Adam Bradley
11a4338d13
fix(item): Fix item-icon-left / right animating Ionicon not centered, closes #670
2014-02-28 23:44:13 -06:00
Adam Bradley
c4eed02f29
fix(badge): Update badge alignment in tab items, closes #694
2014-02-28 22:38:58 -06:00
Adam Bradley
7890057ca9
do not change opacity on active back button, causes flicker when fading out
2014-02-25 13:03:51 -06:00
Adam Bradley
7deefe1ddb
fix(back-button): Fade in/out back button instead of animating left/right, closes #624
2014-02-25 13:03:51 -06:00
Adam Bradley
0033c8809a
fix(modal): Fix modal animation for firefox, closes #671
2014-02-25 11:27:17 -06:00
flmu
788df5243d
fix(ionContent): Update scss for ion-infinite-scroll element
2014-02-25 16:13:26 +01:00
Aicke Schulz
2e7a97551e
Add padding to .placeholder-icon
...
Currently there is no gap between the `.placeholder-icon` and the placeholder text, sometimes its fixed by using an ` `, I think add padding is a better solution.
I hope I did the sass selector correctly, you may check it twice.
2014-02-25 10:54:10 +01:00
Adam Bradley
3c9e6b7149
hello i'm benjsperry
2014-02-24 22:22:37 -06:00
Adam Bradley
3830653a09
require .platform-cordova in body tag to add status bar space
2014-02-24 21:41:01 -06:00
Adam Bradley
61aaacbcd8
remove -webkit-backface-visibility from .scroll, no scroll-bar transition grade-b/c
2014-02-24 21:40:29 -06:00
Adam Bradley
1028946616
fix(text-rendering): Disable text-rendering:optimizeLegibility for low end devices
2014-02-24 13:42:33 -06:00
Adam Bradley
3a69bb3452
fix(item): degrade .item right arrows by grade for low end devices
2014-02-24 13:42:33 -06:00
Adam Bradley
9e74608c36
no border-radius scrollbar on grade-b/c, csscomb scaffolding.scss
2014-02-24 09:39:44 -06:00
Adam Bradley
805c35c1f1
feat(scrollbar): Do not use rgba background for scrollbar on grade-b and c devices
2014-02-23 21:26:15 -06:00
Adam Bradley
977c1cc6e5
fix(thumbnail): Correctly apply thumbnail style to item directive, closes #509
2014-02-22 22:34:51 -06:00
Adam Bradley
1503cc7213
fix(actionsheet): Actionsheet in modal has pointer-events enabled, closes #660
2014-02-22 21:22:35 -06:00
Adam Bradley
2cff43de7b
mixing for .disable-user-behavior
2014-02-20 21:59:45 -06:00
Adam Bradley
591dbc3fec
changed gestures to add .disable-user-behavior instead of multiple styles
2014-02-20 21:26:10 -06:00
Adam Bradley
d2a0780bba
feat(sideMenu): Degrade .menu-content box-shadow w/ platform grade for animation performance
2014-02-20 20:44:25 -06:00
Adam Bradley
01a10d3891
combine position: absolute; in .pane, .view
2014-02-20 16:49:04 -06:00
Adam Bradley
07092f009c
fix(sideMenu): remove translate3d when not needed, close #636
2014-02-20 16:33:40 -06:00
Adam Bradley
e34cda69e4
refactor transform mixins
2014-02-20 16:29:35 -06:00
Adam Bradley
d5c4860b65
cursor pointer for .tab-item:hover
2014-02-20 14:49:02 -06:00
Adam Bradley
327a686626
feat(item): Auto right-arrow for complex list items w/ ng-click/href, closes #472
2014-02-20 14:29:41 -06:00
Adam Bradley
e199aa8b7a
cursor: pointer only for links w/ href
2014-02-20 13:55:16 -06:00
Adam Bradley
53af2c7a01
feat(sass): All variables now have !default assigned, closes #631
2014-02-19 16:38:30 -06:00
Adam Bradley
72209f9e6e
translate3d updates for .view, .bar, .tabs
2014-02-19 10:09:23 -06:00
Adam Bradley
5b1e70831e
Remove background-color from .pane, .view
2014-02-19 09:21:49 -06:00
Adam Bradley
c168b489b5
feat(button): Increase hit area size of a button
2014-02-18 11:56:58 -06:00
Adam Bradley
3901b746bc
Adjust heading line-height so descenders correctly show, closes #589
2014-02-16 22:21:53 -06:00
Andy Joslin
9327ac71c7
fix(android): when keyboard comes up, ensure input is in view
...
This requires us to set fullscreen="false" in our cordova apps.
Uses the resize event to determine when the keyboard has been shown,
then broadcasts an event from the activeElement: 'scrollChildIntoView',
which is caught by the nearest parent scrollView. The scrollView will
then see if that element is within the new device's height (since the
keyboard resizes the screen), and if not scroll it into view.
Additionally, when the keyboard resizes the screen we add a
`.hide-footer` class to the body, which will hide tabbars and footer
bars while the keyboard is opened.
For now, this is android only.
Closes #314 .
2014-02-12 09:45:35 -05:00
Adam Bradley
82c2089b41
punk commit to kickstart travis
2014-02-11 17:21:26 -06:00
Adam Bradley
0b2d1eeb24
remove old comments
2014-02-11 17:15:12 -06:00
Adam Bradley
c27427f336
fix active class for list items and complex items, closes #498
2014-02-11 17:14:13 -06:00
Adam Bradley
a6a290614e
a:hover cursor
2014-02-11 17:13:22 -06:00
Andy Joslin
79387a4e4a
fix(refresher): make refresher css not create gap at end of list
2014-02-11 14:29:24 -05:00
Adam Bradley
801d2d7b77
fix(header): Header icon button css fix for Safari, closes #576
2014-02-11 12:34:28 -06:00
Andy Joslin
fb5a0d4c81
fix(list): css: don't make last .list on page have margin-bottom
...
Addresses #425
2014-02-11 11:39:15 -05:00
Adam Bradley
1cdb999e56
feat(grid): Added classes, variables and mixins for responsive grid options
2014-02-11 10:06:34 -06:00