48 lines
No EOL
853 B
SCSS
48 lines
No EOL
853 B
SCSS
@import "frappe/public/css/bootstrap.css";
|
|
@import "./common/quill";
|
|
|
|
@import "./desk/variables";
|
|
@import "~bootstrap/scss/utilities/spacing";
|
|
@import "./desk/css_variables";
|
|
@import "./element/checkbox";
|
|
|
|
// !! PDF Barcode hack !!
|
|
// Workaround for rendering barcodes prior to https://github.com/frappe/frappe/pull/15307
|
|
@media print {
|
|
svg[data-barcode-value] > rect {
|
|
fill: white !important;
|
|
}
|
|
svg[data-barcode-value] > g {
|
|
fill: black !important;
|
|
}
|
|
.print-hide {
|
|
display: none !important;
|
|
}
|
|
.overflow-wrap-anywhere {
|
|
* {
|
|
word-break: break-all;
|
|
}
|
|
}
|
|
}
|
|
|
|
.action-banner {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
padding-right: 20px;
|
|
font-size: var(--text-md);
|
|
}
|
|
|
|
.invalid-state {
|
|
display: grid;
|
|
place-content: center;
|
|
height: 100vh;
|
|
img {
|
|
margin: auto;
|
|
}
|
|
}
|
|
|
|
.overflow-wrap-anywhere {
|
|
* {
|
|
overflow-wrap: anywhere;
|
|
}
|
|
} |