]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
make dl and child elements less specific
authorMark Otto <markdotto@gmail.com>
Sun, 15 Jan 2012 21:12:29 +0000 (13:12 -0800)
committerMark Otto <markdotto@gmail.com>
Sun, 15 Jan 2012 21:12:29 +0000 (13:12 -0800)
bootstrap.css
bootstrap.min.css
docs/components.html
lib/type.less

index a57618dc015ae519ec86f12b2e9806a7fc9ad992..b5f7949e5cb3745b42704c6b87b07c63a3f9610b 100644 (file)
@@ -6,7 +6,7 @@
  * http://www.apache.org/licenses/LICENSE-2.0
  *
  * Designed and built with all the love in the world @twitter by @mdo and @fat.
- * Date: Sun Jan 15 12:53:17 PST 2012
+ * Date: Sun Jan 15 13:11:42 PST 2012
  */
 html, body {
   margin: 0;
@@ -418,13 +418,13 @@ ul.unstyled {
 dl {
   margin-bottom: 18px;
 }
-dl dt, dl dd {
+dt, dd {
   line-height: 18px;
 }
-dl dt {
+dt {
   font-weight: bold;
 }
-dl dd {
+dd {
   margin-left: 9px;
 }
 hr {
index 1ef582c03a37364bd19265c67c3e9ceacde2fd73..2cd9ad8374d4a3cf0315f52b7993dcf310144436 100644 (file)
@@ -73,9 +73,10 @@ ul{list-style:disc;}
 ol{list-style:decimal;}
 li{line-height:18px;}
 ul.unstyled{margin-left:0;list-style:none;}
-dl{margin-bottom:18px;}dl dt,dl dd{line-height:18px;}
-dl dt{font-weight:bold;}
-dl dd{margin-left:9px;}
+dl{margin-bottom:18px;}
+dt,dd{line-height:18px;}
+dt{font-weight:bold;}
+dd{margin-left:9px;}
 hr{margin:18px 0;border:0;border-top:1px solid #e5e5e5;border-bottom:1px solid #fff;}
 strong{font-style:inherit;font-weight:bold;}
 em{font-style:italic;font-weight:inherit;line-height:inherit;}
index c9390272d6fcc095b52d2546bcded3324d1bf7f7..1343a4279d7be325a74fd09fbc7d0ebdc8535c5b 100644 (file)
       <p>The default pagination component is flexible and works in a number of variations.</p>
       <div class="pagination">
         <ul>
-          <li class="disabled"><a href="#">&larr; Prev</a></li>
+          <li class="disabled"><a href="#">&laquo;</a></li>
           <li class="active"><a href="#">1</a></li>
           <li><a href="#">2</a></li>
           <li><a href="#">3</a></li>
           <li><a href="#">4</a></li>
-          <li><a href="#">Next &rarr;</a></li>
+          <li><a href="#">&raquo;</a></li>
         </ul>
       </div>
       <div class="pagination">
         <ul>
-          <li><a href="#">&larr;</a></li>
+          <li><a href="#">&laquo;</a></li>
           <li><a href="#">10</a></li>
-          <li><a href="#">11</a></li>
-          <li class="active"><a href="#">12</a></li>
-          <li><a href="#">13</a></li>
-          <li><a href="#">14</a></li>
-          <li><a href="#">&rarr;</a></li>
+          <li class="active"><a href="#">11</a></li>
+          <li><a href="#">12</a></li>
+          <li><a href="#">&raquo;</a></li>
         </ul>
       </div>
       <div class="pagination">
         <ul>
           <li><a href="#">&larr;</a></li>
           <li class="active"><a href="#">10</a></li>
-          <li><a href="#">11</a></li>
-          <li class="disabled"><a href="#">…</a></li>
+          <li class="disabled"><a href="#">...</a></li>
           <li><a href="#">20</a></li>
-          <li><a href="#">21</a></li>
           <li><a href="#">&rarr;</a></li>
         </ul>
       </div>
index ab7409ce34c17bd42ce736ac0406f22fb5a731e6..707d2215de26879a240a3a026e4569e457131b91 100644 (file)
@@ -99,15 +99,16 @@ ul.unstyled {
 // Description Lists
 dl {
   margin-bottom: @baseLineHeight;
-  dt, dd {
-    line-height: @baseLineHeight;
-  }
-  dt {
-    font-weight: bold;
-  }
-  dd {
-    margin-left: @baseLineHeight / 2;
-  }
+}
+dt,
+dd {
+  line-height: @baseLineHeight;
+}
+dt {
+  font-weight: bold;
+}
+dd {
+  margin-left: @baseLineHeight / 2;
 }
 
 // MISC