azure-devops-ui
Version:
React components for building web UI in Azure DevOps
118 lines (105 loc) • 3 kB
CSS
.bolt-panel-callout-content {
margin: 16px;
border-radius: 6px;
overflow: hidden;
}
@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-resizable {
position: relative;
}
.bolt-panel-resize-handle {
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 4px;
cursor: col-resize;
z-index: 1;
outline-width: 0;
user-select: none;
background-color: transparent;
}
.bolt-panel-resize-handle:hover, .bolt-panel-resize-handle:active {
background-color: rgba( 234, 234, 234 , 1 );
background-color: rgba( var(--palette-neutral-8,234, 234, 234) , 1 );
}
.bolt-focus-visible .bolt-panel-resize-handle:focus {
background-color: rgba( 234, 234, 234 , 1 );
background-color: rgba( var(--palette-neutral-8,234, 234, 234) , 1 );
outline: 1px solid rgba(0, 120, 212, 1);
outline: 1px solid var(--focus-border-color,rgba(0, 120, 212, 1));
outline-offset: -1px;
}
.bolt-panel-callout-content.bolt-panel-resizing {
user-select: none;
cursor: col-resize;
}
body[data-resize-active=true] {
cursor: col-resize ;
user-select: none;
}
.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;
}
@media screen and (max-width: 599px) {
.bolt-panel-header .bolt-header-content-area {
flex-wrap: nowrap;
}
}
@media screen and (max-width: 599px) {
.bolt-panel-header .bolt-header-title {
white-space: normal;
word-break: break-word;
}
}
/*# sourceMappingURL=Panel.css.map */