admin/React_Starter/scss/core/_nav.scss
Vinicius Camargo c8691838ca
change style of the cursor on nav link
The current behavior is to display the `text` cursor when on hover, even though `nav-link` is an anchor.

It does not display the `pointer` cursor because `nav-link` is missing the `href` attribute.
2017-11-06 18:23:37 -02:00

36 lines
561 B
SCSS

.nav-tabs {
.nav-link {
color: $gray-600;
&.hover {
cursor: pointer;
}
&.active {
color: $gray-800;
background: #fff;
border-color: $border-color;
border-bottom-color: #fff;
&:focus {
background: #fff;
border-color: $border-color;
border-bottom-color: #fff;
}
}
}
}
.tab-content {
margin-top: -1px;
background: #fff;
border: 1px solid $border-color;
.tab-pane {
padding: $spacer;
}
}
.card-block {
.tab-content {
margin-top: 0;
border: 0;
}
}