Browse Source

Fix border-top on accordion to not be removed with wrapping div

pull/1243/head
jlukic 10 years ago
parent
commit
0ce7eca5d6
5 changed files with 8 additions and 8 deletions
  1. 4
      dist/components/accordion.css
  2. 2
      dist/components/accordion.min.css
  3. 4
      dist/semantic.css
  4. 2
      dist/semantic.min.css
  5. 4
      src/definitions/modules/accordion.less

4
dist/components/accordion.css

@ -132,8 +132,8 @@
-webkit-transition: background 0.2s ease, color 0.2s ease;
transition: background 0.2s ease, color 0.2s ease;
}
.ui.styled.accordion .title:first-child,
.ui.styled.accordion .accordion .title:first-child {
.ui.styled.accordion > .title:first-child,
.ui.styled.accordion > .accordion .title:first-child {
border-top: none;
}

2
dist/components/accordion.min.css
File diff suppressed because it is too large
View File

4
dist/semantic.css

@ -142,8 +142,8 @@
transition: background 0.2s ease, color 0.2s ease;
}
.ui.styled.accordion .title:first-child,
.ui.styled.accordion .accordion .title:first-child {
.ui.styled.accordion > .title:first-child,
.ui.styled.accordion > .accordion .title:first-child {
border-top: none;
}

2
dist/semantic.min.css
File diff suppressed because it is too large
View File

4
src/definitions/modules/accordion.less

@ -130,8 +130,8 @@
border-top: @styledTitleBorder;
transition: @styledTitleTransition;
}
.ui.styled.accordion .title:first-child,
.ui.styled.accordion .accordion .title:first-child {
.ui.styled.accordion > .title:first-child,
.ui.styled.accordion > .accordion .title:first-child {
border-top: none;
}

Loading…
Cancel
Save