mirror of
https://github.com/harness/drone.git
synced 2025-05-09 06:51:48 +08:00
86 lines
1.7 KiB
SCSS
86 lines
1.7 KiB
SCSS
.main {
|
|
padding: var(--spacing-large) var(--spacing-xlarge) 0 var(--spacing-xlarge) !important;
|
|
position: relative;
|
|
|
|
div[class*='TextInput'] {
|
|
margin-bottom: 0 !important;
|
|
margin-left: 0 !important;
|
|
|
|
input {
|
|
background: transparent !important;
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
> div {
|
|
align-items: center;
|
|
padding-bottom: var(--spacing-large) !important;
|
|
// border-bottom: 1px solid var(--grey-100);
|
|
}
|
|
|
|
.btnColorFix > span[data-icon] {
|
|
svg[fill='none'] g > path {
|
|
fill: none !important;
|
|
}
|
|
}
|
|
|
|
.refRoot,
|
|
.rootSlash {
|
|
align-self: center;
|
|
}
|
|
|
|
:global {
|
|
.bp3-breadcrumb,
|
|
.bp3-breadcrumb-current,
|
|
.bp3-breadcrumbs-collapsed {
|
|
white-space: nowrap !important;
|
|
font-size: var(--typography-size, var(--font-size));
|
|
font-weight: var(--typography-weight, normal);
|
|
font-family: var(--font-family);
|
|
color: var(--grey-900);
|
|
line-height: var(--typography-line-height, var(--line-height));
|
|
}
|
|
|
|
.bp3-breadcrumbs > li::after {
|
|
background: none;
|
|
content: '/';
|
|
color: var(--grey-900);
|
|
background: none;
|
|
text-align: center;
|
|
height: 100%;
|
|
}
|
|
|
|
.bp3-breadcrumbs-collapsed {
|
|
background: var(--grey-100);
|
|
}
|
|
}
|
|
|
|
.searchBox {
|
|
position: absolute;
|
|
right: 16px;
|
|
top: -50px;
|
|
z-index: 2;
|
|
padding-bottom: 0 !important;
|
|
margin: 0;
|
|
|
|
input,
|
|
input:focus {
|
|
border: 1px solid var(--ai-purple-600) !important;
|
|
}
|
|
|
|
input {
|
|
width: 350px !important;
|
|
}
|
|
|
|
svg path {
|
|
fill: var(--ai-purple-600) !important;
|
|
}
|
|
|
|
img {
|
|
position: absolute;
|
|
top: 5px;
|
|
right: 13px;
|
|
}
|
|
}
|
|
}
|