AdminLTE/build/less/navs.less

227 lines
3.7 KiB
Plaintext
Raw Normal View History

2015-02-01 22:25:09 +01:00
/*
* Component: Nav
* --------------
*/
2015-05-06 23:47:30 +02:00
.nav {
> li > a:hover,
2015-09-19 20:05:54 +02:00
> li > a:active,
> li > a:focus {
2015-05-06 23:47:30 +02:00
color: #444;
background: #f7f7f7;
}
}
2015-02-01 22:25:09 +01:00
/* NAV PILLS */
2015-02-14 01:04:03 +01:00
.nav-pills {
2015-02-01 22:25:09 +01:00
> li > a {
.border-radius(0);
2015-05-05 04:56:42 +02:00
border-top: 3px solid transparent;
2015-02-01 22:25:09 +01:00
color: #444;
> .fa,
> .glyphicon,
> .ion {
margin-right: 5px;
}
}
> li.active > a,
> li.active > a:hover,
2015-09-19 20:05:54 +02:00
> li.active > a:focus {
2015-02-01 22:25:09 +01:00
border-top-color: @light-blue;
}
> li.active > a {
font-weight: 600;
}
2015-02-14 01:04:03 +01:00
}
2015-09-19 20:05:54 +02:00
2015-02-14 01:04:03 +01:00
/* NAV STACKED */
.nav-stacked {
> li > a {
.border-radius(0);
border-top: 0;
2015-05-05 04:56:42 +02:00
border-left: 3px solid transparent;
2015-02-14 01:04:03 +01:00
color: #444;
}
> li.active > a,
> li.active > a:hover {
background: transparent;
color: #444;
2015-02-14 01:04:03 +01:00
border-top: 0;
border-left-color: @light-blue;
}
2015-02-01 22:25:09 +01:00
2015-02-14 01:04:03 +01:00
> li.header {
border-bottom: 1px solid #ddd;
color: #777;
margin-bottom: 10px;
padding: 5px 10px;
text-transform: uppercase;
2015-02-01 22:25:09 +01:00
}
}
/* NAV TABS */
.nav-tabs-custom {
margin-bottom: 20px;
background: #fff;
box-shadow: @box-boxshadow;
border-radius: @box-border-radius;
> .nav-tabs {
margin: 0;
border-bottom-color: #f4f4f4;
.border-top-radius(@box-border-radius);
> li {
border-top: 3px solid transparent;
margin-bottom: -2px;
> a {
2015-05-05 04:56:42 +02:00
color: #444;
2015-07-21 04:36:04 +02:00
.border-radius(0);
2015-08-16 22:19:20 +02:00
&.text-muted {
color: #999;
}
2015-02-01 22:25:09 +01:00
&,
&:hover {
background: transparent;
margin: 0;
}
2015-05-05 04:56:42 +02:00
&:hover {
color: #999;
}
2015-02-01 22:25:09 +01:00
}
&:not(.active) {
> a:hover,
2015-09-19 20:05:54 +02:00
> a:focus,
> a:active {
2015-02-01 22:25:09 +01:00
border-color: transparent;
}
}
margin-right: 5px;
}
> li.active {
border-top-color: @light-blue;
& > a,
&:hover > a {
background-color: #fff;
2015-05-05 04:56:42 +02:00
color: #444;
2015-02-01 22:25:09 +01:00
}
> a {
2015-05-05 04:56:42 +02:00
border-top-color: transparent;
2015-02-01 22:25:09 +01:00
border-left-color: #f4f4f4;
border-right-color: #f4f4f4;
}
}
> li:first-of-type {
margin-left: 0;
&.active {
> a {
2015-05-05 04:56:42 +02:00
border-left-color: transparent;
2015-02-01 22:25:09 +01:00
}
}
}
//Pulled to the right
&.pull-right {
2015-09-19 20:05:54 +02:00
float: none !important;
2015-02-01 22:25:09 +01:00
> li {
float: right;
}
> li:first-of-type {
margin-right: 0;
2015-05-05 04:56:42 +02:00
> a {
border-left-width: 1px;
}
2015-02-01 22:25:09 +01:00
&.active {
> a {
2015-05-05 04:56:42 +02:00
border-left-color: #f4f4f4;
border-right-color: transparent;
2015-02-01 22:25:09 +01:00
}
}
}
}
> li.header {
2015-02-14 01:04:03 +01:00
line-height: 35px;
2015-02-01 22:25:09 +01:00
padding: 0 10px;
font-size: 20px;
color: #444;
> .fa,
> .glyphicon,
> .ion {
margin-right: 5px;
}
}
}
> .tab-content {
background: #fff;
padding: 10px;
.border-bottom-radius(@box-border-radius);
}
2015-05-05 04:56:42 +02:00
.dropdown.open > a {
&:active,
2015-09-19 20:05:54 +02:00
&:focus {
2015-05-05 04:56:42 +02:00
background: transparent;
color: #999;
}
}
2015-09-19 20:05:54 +02:00
// Tab color variations
&.tab-primary {
> .nav-tabs {
> li.active {
border-top-color: @light-blue;
}
}
}
&.tab-info {
> .nav-tabs {
> li.active {
border-top-color: @aqua;
}
}
}
&.tab-danger {
> .nav-tabs {
> li.active {
border-top-color: @red;
}
}
}
&.tab-warning {
> .nav-tabs {
> li.active {
border-top-color: @yellow;
}
}
}
&.tab-success {
> .nav-tabs {
> li.active {
border-top-color: @green;
}
}
}
&.tab-default {
> .nav-tabs {
> li.active {
2017-01-08 21:37:30 +01:00
border-top-color: @gray-lte;
}
}
}
2015-02-01 22:25:09 +01:00
}
/* PAGINATION */
.pagination {
> li > a {
background: #fafafa;
2015-08-28 15:55:13 +02:00
color: #666;
2015-02-01 22:25:09 +01:00
}
2015-07-21 04:36:04 +02:00
&.pagination-flat {
> li > a {
2015-09-19 20:05:54 +02:00
.border-radius(0) !important;
2015-07-21 04:36:04 +02:00
}
}
}