Browse Source

Bugfix: when card is inside an item

The card's extra section is styled by the item's css
pull/6592/head
Eyal Hakim 6 years ago
committed by GitHub
parent
commit
df738bfb92
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. 6
      src/definitions/views/item.less

6
src/definitions/views/item.less

@ -295,7 +295,7 @@
Extra Content
-----------------*/
.ui.items > .item .extra {
.ui.items > .item > .extra {
display: @extraDisplay;
position: @extraPosition;
background: @extraBackground;
@ -309,10 +309,10 @@
transition: @extraTransition;
border-top: @extraDivider;
}
.ui.items > .item .extra > * {
.ui.items > .item > .extra > * {
margin: (@extraRowSpacing / 2) @extraHorizontalSpacing (@extraRowSpacing / 2) 0em;
}
.ui.items > .item .extra > [class*="right floated"] {
.ui.items > .item > .extra > [class*="right floated"] {
margin: (@extraRowSpacing / 2) 0em (@extraRowSpacing / 2) @extraHorizontalSpacing;
}

Loading…
Cancel
Save