mirror of https://github.com/rancher/dashboard.git
Merge pull request #2049 from mantis-toboggan-md/istio
update jaeger link, link-container disabled style
This commit is contained in:
commit
84af67f761
|
|
@ -16,10 +16,18 @@
|
|||
|
||||
a[disabled], &.disabled {
|
||||
cursor: not-allowed;
|
||||
background-color: var(---disabled-bg);
|
||||
color: var(--disabled-text);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
&.disabled{
|
||||
background-color: var(--disabled-bg);
|
||||
border-left: solid 10px var(--disabled-text);
|
||||
> * {
|
||||
opacity: .3;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover:not(.disabled) {
|
||||
box-shadow: 0px 0px 1px var(--outline-width) var(--outline);
|
||||
}
|
||||
|
||||
|
|
@ -37,9 +45,6 @@
|
|||
|
||||
.link-logo {
|
||||
text-align: center;
|
||||
// position: absolute;
|
||||
// left: 25px;
|
||||
// top: 25px;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
border-radius: calc(2 * var(--border-radius));
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@
|
|||
--nav-bg: #{$darkest};
|
||||
--nav-active: #{rgba($primary, 0.3)};
|
||||
|
||||
--disabled-bg: #{$disabled};
|
||||
--disabled-bg: #{darken($disabled, 10%)};
|
||||
--disabled-text: #{$secondary};
|
||||
--box-bg: #{$darkest};
|
||||
--subtle-border: #{$darkest};
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ export default {
|
|||
},
|
||||
|
||||
jaegerUrl() {
|
||||
return this.jaegerService ? this.jaegerService.proxyUrl('http', '16686') : null;
|
||||
return this.jaegerService ? `${ this.jaegerService.proxyUrl('http', '16686') }/jaeger/search` : null;
|
||||
},
|
||||
|
||||
monitoringUrl() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue