mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
Some list editing improvements
This commit is contained in:
17
dist/css/ionic.css
vendored
17
dist/css/ionic.css
vendored
@@ -1,4 +1,3 @@
|
||||
@charset "UTF-8";
|
||||
@font-face {
|
||||
font-family: 'ionicons';
|
||||
src: url("fonts/ionicons.eot");
|
||||
@@ -2181,7 +2180,7 @@ a.list-item {
|
||||
background-color: #fff;
|
||||
z-index: 2;
|
||||
padding: 15px 15px;
|
||||
-webkit-transition: margin-left 0.2s ease-in-out, left 0.2s ease-in-out; }
|
||||
-webkit-transition: margin-left 0.2s ease-in-out, margin-right 0.2s ease-in-out, left 0.2s ease-in-out; }
|
||||
.list-item-content > i:last-child {
|
||||
float: right; }
|
||||
.list-item-content > .toggle:last-child, .list-item-content input:last-child, .list-item-content > button:last-child {
|
||||
@@ -2211,6 +2210,20 @@ a.list-item {
|
||||
.list-item-edit i {
|
||||
color: #ef4e3a;
|
||||
font-size: 24px; }
|
||||
.list-item-edit.ng-enter {
|
||||
-webkit-transition: left 0.2s ease-in-out, opacity 0.2s ease-in-out;
|
||||
left: -48px;
|
||||
opacity: 0; }
|
||||
.list-item-edit.ng-enter-active {
|
||||
opacity: 1;
|
||||
left: 0; }
|
||||
.list-item-edit.ng-leave {
|
||||
-webkit-transition: left 0.2s ease-in-out, opacity 0.2s ease-in-out;
|
||||
left: 0px;
|
||||
opacity: 1; }
|
||||
.list-item-edit.ng-leave-active {
|
||||
opacity: 0;
|
||||
left: -48px; }
|
||||
|
||||
.list-item-drag {
|
||||
position: absolute;
|
||||
|
||||
Reference in New Issue
Block a user