
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.
36 lines
561 B
SCSS
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;
|
|
}
|
|
}
|