mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
d51dfd35e8
* feat(responsive): add responsive breakpoints and mixin for media queries * refactor: print styles and add media query support * refactor(responsive): enhance responsive styles across various components
100 lines
1.4 KiB
SCSS
100 lines
1.4 KiB
SCSS
// ==============================
|
|
// Common Styles
|
|
// 常用样式
|
|
// ==============================
|
|
|
|
.text-truncate {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
.text-start {
|
|
text-align: left !important;
|
|
}
|
|
.text-end {
|
|
text-align: right !important;
|
|
}
|
|
.text-center {
|
|
text-align: center !important;
|
|
}
|
|
|
|
.d-none {
|
|
display: none !important;
|
|
}
|
|
|
|
.ms-1,
|
|
.mx-1 {
|
|
margin-left: 0.25em !important;
|
|
}
|
|
.me-1,
|
|
.mx-1 {
|
|
margin-right: 0.25em !important;
|
|
}
|
|
.ps-1,
|
|
.px-1 {
|
|
padding-left: 0.25em !important;
|
|
}
|
|
.pe-1,
|
|
.px-1 {
|
|
padding-right: 0.25em !important;
|
|
}
|
|
|
|
@each $color, $value in $theme-colors {
|
|
.text-#{$color} {
|
|
color: fixit-var(#{$color}) !important;
|
|
}
|
|
}
|
|
|
|
@each $key, $value in $orders {
|
|
.order-#{$key} {
|
|
order: #{$value} !important;
|
|
}
|
|
}
|
|
|
|
.variant-numeric {
|
|
font-variant-numeric: tabular-nums lining-nums;
|
|
}
|
|
|
|
.rounded-full {
|
|
@include border-radius(full);
|
|
}
|
|
|
|
// auto adapt to dark mode by inverting the color and hue
|
|
.auto-dark-mode {
|
|
[data-theme=dark] & {
|
|
filter: invert(1) hue-rotate(0.5turn);
|
|
}
|
|
}
|
|
|
|
// print view helper
|
|
.page-break-before {
|
|
break-before: page;
|
|
}
|
|
|
|
.page-break-after {
|
|
break-after: page;
|
|
}
|
|
|
|
@include media('xs', 'up') {
|
|
.d-none-desktop {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@include media('xs') {
|
|
.d-none-mobile {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
@include media('print') {
|
|
@page {
|
|
size: A4 portrait;
|
|
margin: 1.27cm;
|
|
}
|
|
|
|
.d-none-print {
|
|
display: none !important;
|
|
}
|
|
}
|