mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-09 00:08:18 +08:00
23 lines
323 B
Text
23 lines
323 B
Text
|
//
|
||
|
// Navs
|
||
|
// --------------------------------------------------
|
||
|
|
||
|
|
||
|
// BASE CLASS
|
||
|
// ----------
|
||
|
|
||
|
.nav {
|
||
|
margin-left: 0;
|
||
|
margin-bottom: @baseLineHeight;
|
||
|
list-style: none;
|
||
|
}
|
||
|
|
||
|
// Make links block level
|
||
|
.nav > li > a {
|
||
|
display: block;
|
||
|
}
|
||
|
.nav > li > a:hover {
|
||
|
text-decoration: none;
|
||
|
background-color: @grayLighter;
|
||
|
}
|