aboutsummaryrefslogtreecommitdiff
path: root/less/panels.less
diff options
context:
space:
mode:
authorfat <[email protected]>2013-08-04 15:45:51 -0700
committerfat <[email protected]>2013-08-04 15:45:51 -0700
commitf22a077f6ea0e0d85d9899a1f44eab4733ca6af6 (patch)
tree95c0b4c0bedd3a2ac1aa61e03d0ead12c7827f4f /less/panels.less
parentb1d21731adfc04adb654133988f3c8e444d8b240 (diff)
parentb6390d298aa71e6dccb10e539097fbc7aaa45b8a (diff)
downloadbootstrap-f22a077f6ea0e0d85d9899a1f44eab4733ca6af6.tar.xz
bootstrap-f22a077f6ea0e0d85d9899a1f44eab4733ca6af6.zip
Merge branch '3.0.0-wip' of github.com:twbs/bootstrap into 3.0.0-wip
Diffstat (limited to 'less/panels.less')
-rw-r--r--less/panels.less36
1 files changed, 18 insertions, 18 deletions
diff --git a/less/panels.less b/less/panels.less
index 691a15545..715ae1873 100644
--- a/less/panels.less
+++ b/less/panels.less
@@ -11,6 +11,24 @@
border: 1px solid @panel-border;
border-radius: @panel-border-radius;
.box-shadow(0 1px 1px rgba(0,0,0,.05));
+
+ // List groups in panels
+ .list-group {
+ margin: 15px -15px -15px;
+
+ .list-group-item {
+ border-width: 1px 0;
+
+ // Remove border radius for top one
+ &:first-child {
+ .border-top-radius(0);
+ }
+ // But keep it for the last one
+ &:last-child {
+ border-bottom: 0;
+ }
+ }
+ }
}
// Optional heading
@@ -82,21 +100,3 @@
border-color: @panel-info-border;
}
}
-
-// List groups in panels
-.list-group-flush {
- margin: 15px -15px -15px;
-
- .list-group-item {
- border-width: 1px 0;
-
- // Remove border radius for top one
- &:first-child {
- .border-top-radius(0);
- }
- // But keep it for the last one
- &:last-child {
- border-bottom: 0;
- }
- }
-}