blob: ca7f60fbaa389526d1a2fc0ce0155fb7fca53c96 [file] [log] [blame]
@import "common-style/theme.css";
.tabs {
box-shadow: var(--shadow-bottom);
}
.tabs::shadow #selectionBar {
background-color: var(--color-bright);
}
.tab {
background-color: var(--color-main);
color: var(--color-text-primary-invert);
}
.tab::shadow #ink {
color: var(--color-bright);
}
.browse-details-sidebar::shadow #dropShadow {
display: none;
}
.tab-content {
padding: 0.5em;
}
:not(.core-selected).tab-content {
display: none;
}
.field {
font-size: 0.9em;
margin-bottom: 0.75em;
}
.field h4 {
margin: 0;
color: var(--color-text-secondary);
}
.signature {
overflow: auto;
margin: 0.5em;
}
.signature pre {
white-space: normal;
word-break: break-all;
}
.method-input {
overflow: auto;
max-height: 10em;
margin: 0.5em;
}
.method-input-item {
margin: 0.5em;
font-size: 80%;
}
.method-input-run, .method-input-remove, .method-input-cancel {
background-color: var(--color-dark);
color: var(--color-bright);
display: inline-block;
margin: 0.5em;
}
.method-output {
overflow: auto;
max-height: 10em;
margin: 0.5em;
}
.method-output pre, .field pre {
white-space: pre-wrap;
}
.background {
width: 200px;
height: 30px;
background: black;
color: var(--color-bright);
display: inline-block;
vertical-align: top;
margin: 0.5em;
}
.animate {
height: 100%;
width: 0%;
background: cyan;
position: relative;
-webkit-animation: myfirst 5s; /* Chrome, Safari, Opera */
}
/* Chrome, Safari, Opera */
@-webkit-keyframes myfirst {
0% {background:cyan; width:0%;}
100% {background:cyan; width:100%;}
}