2019-09-16 12:22:30 +02:00
|
|
|
/*
|
|
|
|
|
This styles apply to custom texts defined in
|
|
|
|
|
/app/javascript/components/shared/CustomTexts.tsx
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
.titleText {
|
|
|
|
|
@extend
|
|
|
|
|
.font-weight-bolder;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-07 18:58:18 +02:00
|
|
|
.boxTitleText {
|
|
|
|
|
@extend
|
|
|
|
|
.font-weight-bolder,
|
|
|
|
|
.text-uppercase,
|
|
|
|
|
.mb-2;
|
|
|
|
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-19 16:42:43 +02:00
|
|
|
.centeredText {
|
2019-09-16 12:22:30 +02:00
|
|
|
@extend
|
2019-09-19 16:42:43 +02:00
|
|
|
.text-center,
|
|
|
|
|
.p-2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mutedText {
|
|
|
|
|
color: $muted-text-color;
|
2019-09-16 12:22:30 +02:00
|
|
|
}
|
|
|
|
|
|
2022-05-28 11:03:36 +02:00
|
|
|
.smallMutedText {
|
|
|
|
|
@extend
|
|
|
|
|
.mutedText,
|
|
|
|
|
.m-0;
|
|
|
|
|
|
|
|
|
|
font-size: smaller;
|
|
|
|
|
line-height: 95%;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-16 12:22:30 +02:00
|
|
|
.uppercaseText {
|
|
|
|
|
@extend
|
|
|
|
|
.text-secondary,
|
|
|
|
|
.text-uppercase,
|
2019-09-27 11:40:33 +02:00
|
|
|
.font-weight-light;
|
2019-09-19 16:42:43 +02:00
|
|
|
|
|
|
|
|
font-size: 13px;
|
2019-09-16 12:22:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.successText {
|
|
|
|
|
@extend
|
|
|
|
|
.text-success,
|
|
|
|
|
.text-center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dangerText {
|
|
|
|
|
@extend
|
|
|
|
|
.text-danger,
|
|
|
|
|
.text-center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.descriptionText {
|
|
|
|
|
@extend
|
|
|
|
|
.text-muted;
|
|
|
|
|
}
|