HEX
Server: Apache
System: Linux webm004.cluster121.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
User: grainesdfo (155059)
PHP: 5.4.45
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/grainesdfo/www/wp-content/themes/jupiterx/lib/assets/less/bootstrap/utilities/_text.less
//
// Text
//

.text-monospace { font-family: @font-family-monospace; }

// Alignment

.text-justify  { text-align: justify !important; }
.text-nowrap   { white-space: nowrap !important; }
.text-truncate { #text-truncate(); }

// Responsive alignment

//@each $breakpoint in map-keys($grid-breakpoints) {
//  @include media-breakpoint-up($breakpoint) {
//    $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
//
//    .text#{$infix}-left   { text-align: left !important; }
//    .text#{$infix}-right  { text-align: right !important; }
//    .text#{$infix}-center { text-align: center !important; }
//  }
//}
#each-breakpoint-text(@i: 1) when (@i =< length(@grid-breakpoints)) {
	@breakpoint: extract(extract(@grid-breakpoints, @i), 1);

	#media-breakpoint-up(@breakpoint, {
		@infix: breakpoint-infix(@breakpoint, @grid-breakpoints);

		.text@{infix}-left   { text-align: left !important; }
		.text@{infix}-right  { text-align: right !important; }
		.text@{infix}-center { text-align: center !important; }
	});

	#each-breakpoint-text((@i + 1));
} #each-breakpoint-text();

// Transformation

.text-lowercase  { text-transform: lowercase !important; }
.text-uppercase  { text-transform: uppercase !important; }
.text-capitalize { text-transform: capitalize !important; }

// Weight and italics

.font-weight-light  { font-weight: @font-weight-light !important; }
.font-weight-normal { font-weight: @font-weight-normal !important; }
.font-weight-bold   { font-weight: @font-weight-bold !important; }
.font-italic        { font-style: italic !important; }

// Contextual colors

.text-white { color: @white !important; }

//@each $color, $value in $theme-colors {
//  @include text-emphasis-variant('.text-#{$color}', $value);
//}
#each-theme-color-text(@i: 1) when (@i =< length(@theme-colors)) {
	@item: extract(@theme-colors, @i);
	@color: extract(@item, 1);
	@value: extract(@item, 2);

	#text-emphasis-variant(~".text-@{color}", @value);

	#each-theme-color-text((@i + 1));
} #each-theme-color-text();

.text-body { color: @body-color !important; }
.text-muted { color: @text-muted !important; }

.text-black-50 { color: fade(@black, 50%) !important; }
.text-white-50 { color: fade(@white, 50%) !important; }

// Misc

.text-hide {
	#text-hide(@ignore-warning: true);
}