azure-devops-ui
Version:
React components for building web UI in Azure DevOps
77 lines (68 loc) • 2.03 kB
CSS
.bolt-panel-callout-content {
margin: 16px;
border-radius: 6px;
overflow: hidden;
transition-property: transform, opacity;
transition: transform 200ms cubic-bezier(0.165, 0.84, 0.44, 1), opacity 100ms cubic-bezier(0.215, 0.61, 0.355, 1);
/* &.in {
@include in();
}
&.out {
@include out();
} */
}
@media (forced-colors: active) {
.bolt-panel-callout-content {
border: solid 1px;
}
}
.bolt-panel-callout-content.bolt-callout-shadow {
box-shadow: 0px 25.6px 57.6px rgba(0, 0, 0, .22), 0px 4.8px 14.4px rgba(0, 0, 0, .18);
box-shadow: 0px 25.6px 57.6px var(--panel-shadow-color,rgba(0, 0, 0, .22)), 0px 4.8px 14.4px var(--panel-shadow-secondary-color,rgba(0, 0, 0, .18));
}
body.ms-vss-web-vsts-theme-hc-dark .bolt-panel-callout-content.bolt-callout-shadow {
border: 2px solid rgba(0, 120, 212, 1);
border: 2px solid var(--focus-border-color,rgba(0, 120, 212, 1));
}
body.ms-vss-web-vsts-theme-hc-light .bolt-panel-callout-content.bolt-callout-shadow {
border: 2px solid rgba(0, 120, 212, 1);
border: 2px solid var(--focus-border-color,rgba(0, 120, 212, 1));
}
.bolt-panel-callout-content.bolt-panel-fullscreen {
margin: 0px;
max-height: none;
max-width: none;
height: auto;
width: auto;
border-radius: 0px;
}
.bolt-panel-description {
margin-right: 36px;
color: rgba(0, 0, 0, .55);
color: var(--text-secondary-color,rgba(0, 0, 0, .55));
}
.bolt-panel-footer {
min-height: 64px;
overflow: hidden;
padding-bottom: 16px;
padding-top: 16px;
}
.bolt-panel-footer-buttons {
justify-content: flex-end;
font-size: 0.875rem;
}
.bolt-panel-content {
position: relative;
min-height: 64px;
}
.bolt-panel-separator {
height: 1px;
background-color: rgba( 244, 244, 244 , 1 );
background-color: rgba( var(--palette-neutral-4,244, 244, 244) , 1 );
}
.bolt-panel-overlay {
background-color: rgba(255, 255, 255, 1);
background-color: var(--callout-background-color,rgba(255, 255, 255, 1));
opacity: 0.7;
}
/*# sourceMappingURL=Panel.css.map */