mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 23:16:52 +08:00
card shadow updates
This commit is contained in:
8
dist/css/ionic-ios7.css
vendored
8
dist/css/ionic-ios7.css
vendored
@ -1353,7 +1353,7 @@ button.item-icon-right .item-content:after {
|
||||
overflow: hidden;
|
||||
margin: 20px 10px;
|
||||
background-color: white;
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||
border-radius: 2px; }
|
||||
|
||||
.card .item {
|
||||
@ -1363,10 +1363,16 @@ button.item-icon-right .item-content:after {
|
||||
margin-top: 0;
|
||||
border-top-left-radius: 2px;
|
||||
border-top-right-radius: 2px; }
|
||||
.card .item:first-child .item-content {
|
||||
border-top-left-radius: 2px;
|
||||
border-top-right-radius: 2px; }
|
||||
.card .item:last-child {
|
||||
margin-bottom: 0;
|
||||
border-bottom-left-radius: 2px;
|
||||
border-bottom-right-radius: 2px; }
|
||||
.card .item:last-child .item-content {
|
||||
border-bottom-left-radius: 2px;
|
||||
border-bottom-right-radius: 2px; }
|
||||
|
||||
.card.list .item:last-child {
|
||||
margin-bottom: -1px; }
|
||||
|
||||
8
dist/css/ionic-scoped.css
vendored
8
dist/css/ionic-scoped.css
vendored
@ -2037,7 +2037,7 @@
|
||||
overflow: hidden;
|
||||
margin: 20px 10px;
|
||||
background-color: white;
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||
border-radius: 2px; }
|
||||
.ionic .card .item {
|
||||
margin-left: 0;
|
||||
@ -2046,10 +2046,16 @@
|
||||
margin-top: 0;
|
||||
border-top-left-radius: 2px;
|
||||
border-top-right-radius: 2px; }
|
||||
.ionic .card .item:first-child .item-content {
|
||||
border-top-left-radius: 2px;
|
||||
border-top-right-radius: 2px; }
|
||||
.ionic .card .item:last-child {
|
||||
margin-bottom: 0;
|
||||
border-bottom-left-radius: 2px;
|
||||
border-bottom-right-radius: 2px; }
|
||||
.ionic .card .item:last-child .item-content {
|
||||
border-bottom-left-radius: 2px;
|
||||
border-bottom-right-radius: 2px; }
|
||||
.ionic .card.list .item:last-child {
|
||||
margin-bottom: -1px; }
|
||||
.ionic .card.list .item-divider {
|
||||
|
||||
8
dist/css/ionic.css
vendored
8
dist/css/ionic.css
vendored
@ -2496,7 +2496,7 @@ button.item-icon-right .item-content:after {
|
||||
overflow: hidden;
|
||||
margin: 20px 10px;
|
||||
background-color: white;
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||
border-radius: 2px; }
|
||||
|
||||
.card .item {
|
||||
@ -2506,10 +2506,16 @@ button.item-icon-right .item-content:after {
|
||||
margin-top: 0;
|
||||
border-top-left-radius: 2px;
|
||||
border-top-right-radius: 2px; }
|
||||
.card .item:first-child .item-content {
|
||||
border-top-left-radius: 2px;
|
||||
border-top-right-radius: 2px; }
|
||||
.card .item:last-child {
|
||||
margin-bottom: 0;
|
||||
border-bottom-left-radius: 2px;
|
||||
border-bottom-right-radius: 2px; }
|
||||
.card .item:last-child .item-content {
|
||||
border-bottom-left-radius: 2px;
|
||||
border-bottom-right-radius: 2px; }
|
||||
|
||||
.card.list .item:last-child {
|
||||
margin-bottom: -1px; }
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
overflow: hidden;
|
||||
margin: ($content-padding * 2) $content-padding;
|
||||
background-color: $card-body-bg;
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
|
||||
border-radius: $card-border-radius;
|
||||
}
|
||||
.card .item {
|
||||
@ -17,11 +17,21 @@
|
||||
margin-top: 0;
|
||||
border-top-left-radius: $card-border-radius;
|
||||
border-top-right-radius: $card-border-radius;
|
||||
|
||||
.item-content {
|
||||
border-top-left-radius: $card-border-radius;
|
||||
border-top-right-radius: $card-border-radius;
|
||||
}
|
||||
}
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
border-bottom-left-radius: $card-border-radius;
|
||||
border-bottom-right-radius: $card-border-radius;
|
||||
|
||||
.item-content {
|
||||
border-bottom-left-radius: $card-border-radius;
|
||||
border-bottom-right-radius: $card-border-radius;
|
||||
}
|
||||
}
|
||||
}
|
||||
.card.list .item:last-child {
|
||||
|
||||
Reference in New Issue
Block a user