mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
49 lines
705 B
CSS
49 lines
705 B
CSS
|
|
:host {
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
|
||
|
|
:host, mat-tab-group {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
#inspect-component,
|
||
|
|
#refresh-component-tree {
|
||
|
|
position: absolute;
|
||
|
|
top: 11px;
|
||
|
|
left: 2px;
|
||
|
|
border: 0;
|
||
|
|
outline: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
#refresh-component-tree {
|
||
|
|
left: 40px;
|
||
|
|
top: 13px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#inspect-component,
|
||
|
|
#inspect-component svg,
|
||
|
|
#refresh-component-tree,
|
||
|
|
#refresh-component-tree svg {
|
||
|
|
width: 23px;
|
||
|
|
height: 23px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#inspect-component svg path,
|
||
|
|
#refresh-component-tree svg path {
|
||
|
|
fill: #6e6e6e;
|
||
|
|
}
|
||
|
|
|
||
|
|
#inspect-component svg path.active {
|
||
|
|
fill: #2a76e4;
|
||
|
|
}
|
||
|
|
|
||
|
|
/deep/ .mat-tab-body-wrapper {
|
||
|
|
height: calc(100% - 49px); /* 100% - header */
|
||
|
|
}
|
||
|
|
|
||
|
|
/deep/ .mat-tab-label-container {
|
||
|
|
margin-left: 70px;
|
||
|
|
}
|