Commit 3a218918 authored by Mark Otto's avatar Mark Otto

#3469: add variables for dropdown menu dividers

parent 526d77af
...@@ -614,6 +614,14 @@ ...@@ -614,6 +614,14 @@
<td><code>@dropdownLinkBackgroundHover</code></td> <td><code>@dropdownLinkBackgroundHover</code></td>
<td><code>@linkColor</code></td> <td><code>@linkColor</code></td>
</tr> </tr>
<tr>
<td><code>@@dropdownDividerTop</code></td>
<td><code>#e5e5e5</code></td>
</tr>
<tr>
<td><code>@@dropdownDividerBottom</code></td>
<td><code>@white</code></td>
</tr>
</tbody> </tbody>
</table> </table>
<h4>Hero unit</h4> <h4>Hero unit</h4>
......
...@@ -537,6 +537,14 @@ ...@@ -537,6 +537,14 @@
<td><code>@dropdownLinkBackgroundHover</code></td> <td><code>@dropdownLinkBackgroundHover</code></td>
<td><code>@linkColor</code></td> <td><code>@linkColor</code></td>
</tr> </tr>
<tr>
<td><code>@@dropdownDividerTop</code></td>
<td><code>#e5e5e5</code></td>
</tr>
<tr>
<td><code>@@dropdownDividerBottom</code></td>
<td><code>@white</code></td>
</tr>
</tbody> </tbody>
</table> </table>
<h4>{{_i}}Hero unit{{/i}}</h4> <h4>{{_i}}Hero unit{{/i}}</h4>
......
...@@ -71,7 +71,7 @@ ...@@ -71,7 +71,7 @@
// Dividers (basically an hr) within the dropdown // Dividers (basically an hr) within the dropdown
.divider { .divider {
.nav-divider(); .nav-divider(@dropdownDividerTop, @dropdownDividerBottom);
} }
// Links within the dropdown menu // Links within the dropdown menu
......
...@@ -417,7 +417,7 @@ ...@@ -417,7 +417,7 @@
// Horizontal dividers // Horizontal dividers
// ------------------------- // -------------------------
// Dividers (basically an hr) within dropdowns and nav lists // Dividers (basically an hr) within dropdowns and nav lists
.nav-divider() { .nav-divider(@top: #e5e5e5, @bottom: @white) {
// IE7 needs a set width since we gave a height. Restricting just // IE7 needs a set width since we gave a height. Restricting just
// to IE7 to keep the 1px left/right space in other browsers. // to IE7 to keep the 1px left/right space in other browsers.
// It is unclear where IE is getting the extra space that we need // It is unclear where IE is getting the extra space that we need
...@@ -427,8 +427,8 @@ ...@@ -427,8 +427,8 @@
margin: ((@baseLineHeight / 2) - 1) 1px; // 8px 1px margin: ((@baseLineHeight / 2) - 1) 1px; // 8px 1px
*margin: -5px 0 5px; *margin: -5px 0 5px;
overflow: hidden; overflow: hidden;
background-color: #e5e5e5; background-color: @top;
border-bottom: 1px solid @white; border-bottom: 1px solid @bottom;
} }
// Button backgrounds // Button backgrounds
......
...@@ -107,7 +107,8 @@ ...@@ -107,7 +107,8 @@
@dropdownLinkColor: @grayDark; @dropdownLinkColor: @grayDark;
@dropdownLinkColorHover: @white; @dropdownLinkColorHover: @white;
@dropdownLinkBackgroundHover: @linkColor; @dropdownLinkBackgroundHover: @linkColor;
@dropdownDividerTop: #e5e5e5;
@dropdownDividerBottom: @white;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment