vault/ui/app/styles/core/columns.scss
Vault Automation 0c6c13dd38
license: update headers to IBM Corp. (#10229) (#10233)
* license: update headers to IBM Corp.
* `make proto`
* update offset because source file changed

Signed-off-by: Ryan Cragun <me@ryan.ec>
Co-authored-by: Ryan Cragun <me@ryan.ec>
2025-10-21 15:20:20 -06:00

205 lines
3.1 KiB
SCSS

@use '../utils/size_variables';
/**
* Copyright IBM Corp. 2016, 2025
* SPDX-License-Identifier: BUSL-1.1
*/
// This file defines the styles for columns and column
// Columns (plural)
.columns {
margin-left: -(size_variables.$spacing-10);
margin-right: -(size_variables.$spacing-10);
margin-top: -(size_variables.$spacing-10);
&:last-child {
margin-bottom: -(size_variables.$spacing-10);
}
&.is-centered {
justify-content: center;
}
&.is-gapless {
margin-left: 0;
margin-right: 0;
margin-top: 0;
}
&.is-gapless > .column {
margin: 0;
padding: 0 !important;
}
&.is-gapless:not(:last-child) {
margin-bottom: size_variables.$spacing-20;
}
&.is-gapless:last-child {
margin-bottom: 0;
}
&.is-mobile {
display: flex;
> .column.is-1 {
flex: none;
width: 8.33333%;
}
> .column.is-3 {
flex: none;
width: 25%;
}
> .column.is-10 {
flex: none;
width: 83.33333%;
}
> .column.is-12 {
flex: none;
width: 100%;
}
}
&.is-multiline {
flex-wrap: wrap;
}
// columnGap does not take vars
&.is-variable.is-1 {
--columnGap: $i * 0.25rem;
}
&.is-variable {
--columnGap: 0.75rem;
margin-left: calc(-1 * var(--columnGap));
margin-right: calc(-1 * var(--columnGap));
}
&.is-variable > .column {
padding-left: var(--columnGap);
padding-right: var(--columnGap);
}
}
// responsive css columns
@media screen and (min-width: 769px), print {
.columns:not(.is-desktop) {
display: flex;
}
.columns.is-variable.is-7-tablet {
--columnGap: 1.75rem;
}
}
@media screen and (min-width: 1024px) {
.columns.is-desktop {
display: flex;
}
}
// Column (singular)
.column {
display: block;
flex-basis: 0;
flex-grow: 1;
flex-shrink: 1;
padding: 0.75rem;
&.is-narrow {
flex: none;
width: unset;
}
&.is-1 {
flex: none;
width: 8.33333%;
}
&.is-3 {
flex: none;
width: 25%;
}
&.is-5,
.is-5-tablet {
flex: none;
width: 41.66667%;
}
}
// responsive css column (order matters here because some columns have several of these classes and they need to override in the correct order).
@media screen and (min-width: 769px), print {
.column {
&.is-one-quarter {
flex: none;
width: 25%;
}
&.is-half {
flex: none;
width: 50%;
}
&.is-two-thirds {
flex: none;
width: 66.6666%;
}
&.is-one-third {
flex: none;
width: 33.3333%;
}
&.is-5 {
flex: none;
width: 41.66667%;
}
&.is-6,
&.is-6-tablet {
flex: none;
width: 50%;
}
&.is-9 {
flex: none;
width: 75%;
}
&.is-7,
&.is-7-tablet {
flex: none;
width: 58.33333%;
}
&.is-12 {
flex: none;
width: 100%;
}
&.is-full,
&.is-full-tablet {
flex: none;
width: 100%;
}
}
}
@media screen and (max-width: 768px) {
.column.is-10-mobile {
flex: none;
width: 83.33333%;
}
}
@media screen and (min-width: 1024px) {
.column.is-4-desktop {
flex: none;
width: 33.33333%;
max-width: 600px;
}
}