angular/projects/ng-devtools/src/lib/devtools-tabs/devtools-tabs.component.scss

89 lines
1.2 KiB
SCSS
Raw Normal View History

:host {
position: relative;
width: 100%;
height: 100%;
display: block;
}
.hidden {
display: none;
}
.tab-content {
height: calc(100% - 31px);
}
#nav-buttons {
display: flex;
}
#app-angular-version {
align-self: center;
margin-left: auto;
margin-right: 8px;
font-size: 0.8em;
font-weight: bold;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
#version-number {
color: #1b1aa5;
cursor: text;
-moz-user-select: text;
-khtml-user-select: text;
-webkit-user-select: text;
-ms-user-select: text;
user-select: text;
}
button.mat-icon-button {
height: 30px;
width: 30px;
line-height: 30px;
margin-right: 5px;
}
.mat-tab-link {
min-width: unset;
line-height: 30px;
height: 30px;
font-size: 13px;
padding: 0px 10px;
}
::ng-deep {
.options-menu {
padding: 1rem 1.25rem;
}
body.dark-theme .menu-toggle-button {
color: white;
}
}
.menu-toggle-button {
font-size: 0.7em;
font-weight: 500;
color: #777;
}
:host-context(.dark-theme) {
#version-number {
color: #5caace;
}
}
@media only screen and (max-width: 700px) {
#app-angular-version {
max-width: 135px;
}
}
@media only screen and (max-width: 420px) {
#app-angular-version {
display: none;
}
}