![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@edifice.io/bootstrap
Advanced tools
Edifice CSS framework based on Bootstrap
Edifice Bootstrap is a comprehensive CSS framework that includes all the UI components utilized across our applications. It is built upon the latest version of Bootstrap.
Install it by cloning the repository:
pnpm add @edifice.io/bootstrap
Based on Bootstrap 5.3, many components use CSS Variables (CSS Custom Properties). We adhere to this guideline to create our own components or to override Bootstrap components.
// _form-control.scss
.form-control {
--#{$prefix}input-padding-y: #{$input-padding-y};
--#{$prefix}input-padding-x: #{$input-padding-x};
--#{$prefix}input-padding-y-lg: #{$input-padding-y-lg};
--#{$prefix}input-padding-x-lg: #{$input-padding-x-lg};
--#{$prefix}input-font-size-lg: #{$input-font-size-lg};
--#{$prefix}input-padding-y-sm: #{$input-padding-y-sm};
--#{$prefix}input-padding-x-sm: #{$input-padding-x-sm};
--#{$prefix}input-font-size-sm: #{$input-font-size-sm};
--#{$prefix}input-border-color: #{$input-border-color};
--#{$prefix}input-disabled-bg: #{$input-disabled-bg};
--#{$prefix}input-disabled-color: #{$input-disabled-color};
--#{$prefix}input-disabled-border-color: #{$input-disabled-border-color};
--#{$prefix}input-placeholder-color: #{$input-placeholder-color};
--#{$prefix}input-focus-border-color: #{$input-focus-border-color};
--#{$prefix}input-filled-border-color: #{$input-filled-border-color};
--#{$prefix}input-border-radius: #{$input-border-radius-lg};
--#{$prefix}input-border-radius-sm: #{$input-border-radius};
--#{$prefix}input-border-radius-lg: #{$input-border-radius-lg};
padding: var(--#{$prefix}input-padding-y) var(--#{$prefix}input-padding-x);
border-color: var(--#{$prefix}input-border-color);
font-size: var(--#{$prefix}input-font-size-lg);
min-height: inherit;
...
}
Overring style should be done in component file with data-attribute selector [data-product="one"]
or [data-product="neo"]
.
.form-control {
--#{$prefix}input-focus-border-color: var(--#{$prefix}color);
}
FAQs
Edifice CSS framework based on Bootstrap
The npm package @edifice.io/bootstrap receives a total of 726 weekly downloads. As such, @edifice.io/bootstrap popularity was classified as not popular.
We found that @edifice.io/bootstrap demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.