You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.0 KiB
45 lines
1.0 KiB
/* ------------------------------------------------------------------------------ |
|
* |
|
* # User list |
|
* |
|
* Styles for user lists - layouts, contact details etc. |
|
* |
|
* Version: 1.0 |
|
* Latest update: May 25, 2015 |
|
* |
|
* ---------------------------------------------------------------------------- */ |
|
|
|
|
|
// Collapsible details |
|
// ------------------------------ |
|
|
|
.contact-details { |
|
padding: @content-padding-base; |
|
padding-left: (@content-padding-base * 2); |
|
background-color: #fcfcfc; |
|
border-top: 1px solid @gray-lighter; |
|
border-bottom: 1px solid @gray-lighter; |
|
|
|
// Remove bottom border |
|
.media-list-bordered & { |
|
border-bottom: 0; |
|
} |
|
|
|
// If inside panel body |
|
.panel-body > .media-list & { |
|
padding-left: @content-padding-base; |
|
background-color: transparent; |
|
margin-top: @content-padding-base; |
|
} |
|
.panel-body > .media-list-bordered & { |
|
padding-bottom: 0; |
|
} |
|
|
|
// Remove margin from first list item |
|
> ul { |
|
&, |
|
> li:first-child { |
|
margin: 0; |
|
} |
|
} |
|
}
|
|
|