1
0
Fork 0
peertube/client/src/sass/include/_mixins.scss

998 lines
19 KiB
SCSS
Raw Normal View History

2021-05-27 16:25:00 +00:00
@use 'sass:math';
2023-05-25 12:27:35 +00:00
@use 'sass:color';
2021-05-27 16:25:00 +00:00
@use '_variables' as *;
2017-12-11 16:36:46 +00:00
@import '_bootstrap-mixins';
2017-12-01 12:08:46 +00:00
@mixin disable-default-a-behaviour {
2021-04-28 14:41:07 +00:00
&:hover,
&:focus,
&:active {
2017-12-01 12:08:46 +00:00
text-decoration: none !important;
2023-03-15 13:20:26 +00:00
}
&:focus:not(.focus-visible) {
2017-12-01 12:08:46 +00:00
outline: none !important;
}
}
2017-12-01 16:38:26 +00:00
@mixin disable-outline {
&:focus:not(.focus-visible) {
2023-03-15 13:20:26 +00:00
outline: none !important;
}
}
2019-02-20 14:52:03 +00:00
@mixin ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
2023-01-19 08:29:47 +00:00
@mixin muted {
color: pvar(--greyForegroundColor) !important;
}
2021-03-25 12:42:55 +00:00
@mixin fade-text ($fade-after, $background-color) {
position: relative;
overflow: hidden;
2021-04-28 14:41:07 +00:00
&::after {
2021-03-25 12:42:55 +00:00
content: '';
pointer-events: none;
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
background: linear-gradient(transparent $fade-after, $background-color);
}
}
2021-05-05 07:44:24 +00:00
@mixin peertube-word-wrap ($with-hyphen: true) {
2019-12-10 09:40:25 +00:00
word-break: break-word;
2018-04-20 06:19:46 +00:00
word-wrap: break-word;
overflow-wrap: break-word;
2021-05-05 07:44:24 +00:00
@if $with-hyphen {
hyphens: auto;
}
2018-04-20 06:19:46 +00:00
}
@mixin apply-svg-color ($color) {
::ng-deep .feather,
2021-05-28 12:56:26 +00:00
::ng-deep .material,
::ng-deep .misc {
color: $color;
}
}
@mixin fill-svg-color ($color) {
::ng-deep svg {
path {
fill: $color;
}
}
}
@mixin button-focus($color) {
&:focus,
&.focus-visible {
box-shadow: #{$focus-box-shadow-form} $color;
}
}
2023-03-16 09:05:55 +00:00
@mixin rounded-line-height-1-5 ($font-size) {
line-height: $font-size + math.round(math.div($font-size, 2));
}
@mixin peertube-input-text($width, $font-size: $form-input-font-size) {
@include rounded-line-height-1-5($font-size);
font-size: $font-size;
padding: 3px 15px;
2017-12-01 16:38:26 +00:00
display: inline-block;
width: $width;
2022-06-08 14:14:24 +00:00
max-width: $width;
color: pvar(--inputForegroundColor);
background-color: pvar(--inputBackgroundColor);
2022-06-28 09:29:54 +00:00
border: 1px solid pvar(--inputBorderColor);
2017-12-01 16:38:26 +00:00
border-radius: 3px;
&::placeholder {
color: pvar(--inputPlaceholderColor);
}
2018-09-20 13:59:10 +00:00
2020-07-06 09:03:05 +00:00
&[readonly] {
opacity: 0.7;
}
@media screen and (max-width: calc(#{$width} + 40px)) {
2018-09-20 13:59:10 +00:00
width: 100%;
}
2018-08-17 13:45:42 +00:00
}
2017-12-01 16:38:26 +00:00
2017-12-20 16:49:58 +00:00
@mixin peertube-textarea ($width, $height) {
@include peertube-input-text($width);
2022-03-15 13:12:37 +00:00
color: pvar(--textareaForegroundColor) !important;
background-color: pvar(--textareaBackgroundColor) !important;
2017-12-20 16:49:58 +00:00
height: $height;
padding: 5px 15px;
}
2017-12-07 09:02:01 +00:00
@mixin orange-button {
@include button-focus(pvar(--mainColorLightest));
2021-04-28 14:41:07 +00:00
&,
&:active,
&:focus {
2017-12-20 13:29:55 +00:00
color: #fff;
background-color: pvar(--mainColor);
2017-12-20 13:29:55 +00:00
}
2017-12-07 09:02:01 +00:00
2017-12-20 13:29:55 +00:00
&:hover {
2017-12-07 09:27:33 +00:00
color: #fff;
background-color: pvar(--mainHoverColor);
2017-12-07 09:02:01 +00:00
}
2017-12-07 13:48:47 +00:00
2021-04-28 14:41:07 +00:00
&[disabled],
&.disabled {
2017-12-07 13:48:47 +00:00
cursor: default;
2017-12-08 07:39:15 +00:00
color: #fff;
2022-06-28 09:29:54 +00:00
background-color: pvar(--inputBorderColor);
2017-12-07 13:48:47 +00:00
}
my-global-icon {
2021-04-28 14:41:07 +00:00
@include apply-svg-color(#fff);
}
2017-12-07 09:02:01 +00:00
}
2021-03-25 12:42:55 +00:00
@mixin orange-button-inverted {
@include button-focus(pvar(--mainColorLightest));
2023-03-06 10:21:52 +00:00
padding: 2px 13px;
2021-03-25 12:42:55 +00:00
border: 2px solid pvar(--mainColor);
font-weight: $font-semibold;
2021-03-25 12:42:55 +00:00
2021-04-28 14:41:07 +00:00
&,
&:active,
&:focus {
2021-03-25 12:42:55 +00:00
color: pvar(--mainColor);
background-color: pvar(--mainBackgroundColor);
}
&:hover {
color: pvar(--mainColor);
background-color: pvar(--mainColorLightest);
}
2021-04-28 14:41:07 +00:00
&[disabled],
&.disabled {
2021-03-25 12:42:55 +00:00
cursor: default;
color: pvar(--mainColor);
2022-06-28 09:29:54 +00:00
background-color: pvar(--inputBorderColor);
2021-03-25 12:42:55 +00:00
}
my-global-icon {
2021-04-28 14:41:07 +00:00
@include apply-svg-color(pvar(--mainColor));
2021-03-25 12:42:55 +00:00
}
}
@mixin tertiary-button {
@include button-focus($grey-button-outline-color);
color: pvar(--greyForegroundColor);
background-color: transparent;
2021-04-28 14:41:07 +00:00
&[disabled],
.disabled {
cursor: default;
}
my-global-icon {
2021-04-28 14:41:07 +00:00
@include apply-svg-color(transparent);
}
}
2017-12-07 09:02:01 +00:00
@mixin grey-button {
@include button-focus($grey-button-outline-color);
2021-01-05 12:48:56 +00:00
2022-03-15 13:12:37 +00:00
background-color: pvar(--greyBackgroundColor);
color: pvar(--greyForegroundColor);
2017-12-07 09:02:01 +00:00
2021-04-28 14:41:07 +00:00
&:hover,
&:active,
&:focus,
&[disabled],
&.disabled {
color: pvar(--greyForegroundColor);
2022-03-15 13:12:37 +00:00
background-color: pvar(--greySecondaryBackgroundColor);
2017-12-07 09:02:01 +00:00
}
2017-12-07 13:48:47 +00:00
2021-04-28 14:41:07 +00:00
&[disabled],
&.disabled {
2017-12-07 13:48:47 +00:00
cursor: default;
}
my-global-icon {
2021-04-28 14:41:07 +00:00
@include apply-svg-color(pvar(--greyForegroundColor));
}
2017-12-07 09:02:01 +00:00
}
@mixin danger-button {
2023-05-25 12:27:35 +00:00
$color: color.adjust($color: #c54130, $lightness: 10%);
$text: #fff6f5;
@include button-focus(scale-color($color, $alpha: -95%));
2021-04-28 14:41:07 +00:00
background-color: $color;
color: $text;
2021-04-28 14:41:07 +00:00
&:hover,
&:active,
&:focus,
&[disabled],
&.disabled {
2023-05-25 12:27:35 +00:00
background-color: color.adjust($color: $color, $lightness: 10%);
}
2021-04-28 14:41:07 +00:00
&[disabled],
&.disabled {
cursor: default;
}
my-global-icon {
2021-04-28 14:41:07 +00:00
@include apply-svg-color($text);
}
}
2017-12-01 16:38:26 +00:00
@mixin peertube-button {
2023-03-16 09:05:55 +00:00
@include rounded-line-height-1-5($button-font-size);
2023-02-20 10:00:17 +00:00
padding: 4px 13px;
2021-06-07 15:38:31 +00:00
2021-04-28 14:41:07 +00:00
border: 0;
2017-12-01 16:38:26 +00:00
font-weight: $font-semibold;
2021-10-22 14:18:00 +00:00
// Because of primeng that redefines border-radius of all input[type="..."]
2021-04-14 14:39:37 +00:00
border-radius: 3px !important;
2021-10-22 14:18:00 +00:00
2017-12-01 16:38:26 +00:00
text-align: center;
cursor: pointer;
2022-06-15 12:59:25 +00:00
font-size: $button-font-size;
my-global-icon + * {
@include margin-right(4px);
2023-02-20 10:00:17 +00:00
@include margin-left(4px);
}
2017-12-01 16:38:26 +00:00
}
2022-06-14 11:54:54 +00:00
@mixin peertube-button-big {
height: auto;
padding: 10px 25px;
font-size: 18px;
line-height: 1.2;
border: 0;
font-weight: $font-semibold;
// Because of primeng that redefines border-radius of all input[type="..."]
border-radius: 3px !important;
}
2017-12-01 16:38:26 +00:00
@mixin peertube-button-link {
@include disable-default-a-behaviour;
2017-12-06 14:07:17 +00:00
@include peertube-button;
2017-12-04 09:34:40 +00:00
display: inline-block;
2021-04-28 14:41:07 +00:00
}
2022-07-08 08:32:33 +00:00
@mixin peertube-button-big-link {
@include disable-default-a-behaviour;
@include peertube-button-big;
display: inline-block;
}
2021-04-28 14:41:07 +00:00
@mixin peertube-button-outline {
@include disable-default-a-behaviour;
@include peertube-button;
2021-04-28 14:41:07 +00:00
display: inline-block;
border: 1px solid;
}
@mixin button-with-icon($width: 20px, $margin-right: 3px, $top: -1px) {
my-global-icon {
2021-06-07 15:38:31 +00:00
@include margin-right($margin-right);
position: relative;
width: $width;
top: $top;
}
}
@mixin peertube-file {
2017-12-29 18:10:13 +00:00
position: relative;
overflow: hidden;
display: inline-block;
input[type=file] {
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
2017-12-29 18:10:13 +00:00
font-size: 100px;
2021-06-07 15:38:31 +00:00
text-align: end;
2017-12-29 18:10:13 +00:00
filter: alpha(opacity=0);
opacity: 0;
outline: none;
2023-02-20 10:00:17 +00:00
background: pvar(--mainBackgroundColor);
2017-12-29 18:10:13 +00:00
cursor: inherit;
display: block;
}
}
@mixin peertube-button-file ($width) {
@include peertube-file;
@include peertube-button;
2021-04-28 14:41:07 +00:00
width: $width;
}
2017-12-07 09:27:33 +00:00
@mixin icon ($size) {
display: inline-block;
background-repeat: no-repeat;
background-size: contain;
width: $size;
height: $size;
vertical-align: middle;
cursor: pointer;
}
2017-12-07 13:48:47 +00:00
2020-12-15 08:32:55 +00:00
@mixin responsive-width ($width) {
width: $width;
@media screen and (max-width: $width) {
width: 100%;
}
}
2020-08-11 14:07:53 +00:00
2017-12-20 13:29:55 +00:00
@mixin peertube-select-container ($width) {
padding: 0;
margin: 0;
2017-12-07 13:48:47 +00:00
width: $width;
border-radius: 3px;
color: pvar(--inputForegroundColor);
background: pvar(--inputBackgroundColor);
2017-12-20 13:29:55 +00:00
position: relative;
2021-10-20 12:50:46 +00:00
height: min-content;
2017-12-20 13:29:55 +00:00
2019-06-12 10:40:24 +00:00
&.disabled {
background-color: #E5E5E5;
select {
cursor: default;
}
}
2022-06-08 14:14:24 +00:00
select[disabled] {
background-color: #f9f9f9;
}
2019-06-12 10:40:24 +00:00
2019-04-11 09:18:19 +00:00
@media screen and (max-width: $width) {
width: 100%;
}
2021-04-28 14:41:07 +00:00
&::after {
top: 50%;
right: calc(0% + 15px);
content: ' ';
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border: 5px solid rgba(0, 0, 0, 0);
border-top-color: pvar(--mainForegroundColor);
margin-top: -2px;
z-index: 100;
2017-12-20 13:29:55 +00:00
}
select {
2023-03-16 09:05:55 +00:00
@include rounded-line-height-1-5($form-input-font-size);
font-size: $form-input-font-size;
padding: 3px 35px 3px 12px;
2017-12-20 13:29:55 +00:00
position: relative;
2022-06-28 09:29:54 +00:00
border: 1px solid pvar(--inputBorderColor);
2017-12-20 13:29:55 +00:00
background: transparent none;
appearance: none;
2018-01-08 10:30:48 +00:00
text-overflow: ellipsis;
color: pvar(--mainForegroundColor);
2017-12-20 13:29:55 +00:00
&:focus {
outline: none;
}
&:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #000;
}
2019-01-17 10:51:08 +00:00
option {
color: #000;
2022-06-10 07:50:00 +00:00
&[value=undefined] {
font-weight: $font-semibold;
}
2019-01-17 10:51:08 +00:00
}
2017-12-20 13:29:55 +00:00
}
2020-07-15 09:15:50 +00:00
&.peertube-select-button {
@include grey-button;
2022-06-10 07:50:00 +00:00
select {
2020-07-15 09:15:50 +00:00
font-weight: $font-semibold;
color: pvar(--greyForegroundColor);
2021-04-28 14:41:07 +00:00
border: 0;
2023-03-16 09:05:55 +00:00
// No border, add +1 to vertical padding
padding: 4px 35px 4px 12px;
2020-07-15 09:15:50 +00:00
}
}
2017-12-20 13:29:55 +00:00
}
// Thanks: https://codepen.io/manabox/pen/raQmpL
2017-12-20 16:49:58 +00:00
@mixin peertube-radio-container {
2022-06-15 12:59:25 +00:00
label {
font-size: $form-input-font-size;
}
[type=radio]:checked,
[type=radio]:not(:checked) {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
2017-12-20 16:49:58 +00:00
[type=radio]:checked + label,
[type=radio]:not(:checked) + label {
position: relative;
padding-left: 28px;
cursor: pointer;
line-height: 20px;
display: inline-block;
2021-10-15 08:54:12 +00:00
font-weight: $font-regular;
}
2017-12-20 16:49:58 +00:00
[type=radio]:checked + label::before,
[type=radio]:not(:checked) + label::before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 18px;
height: 18px;
2022-06-28 09:29:54 +00:00
border: 1px solid pvar(--inputBorderColor);
border-radius: 100%;
background: #fff;
}
[type=radio]:checked + label::after,
[type=radio]:not(:checked) + label::after {
content: '';
width: 10px;
height: 10px;
background: pvar(--mainColor);
position: absolute;
top: 4px;
left: 4px;
border-radius: 100%;
transition: all 0.2s ease;
}
[type=radio]:not(:checked) + label::after {
opacity: 0;
transform: scale(0);
}
[type=radio]:checked + label::after {
opacity: 1;
transform: scale(1);
2017-12-20 16:49:58 +00:00
}
2021-10-15 08:54:12 +00:00
.form-group-description {
display: block;
margin-top: -7px;
2021-10-15 08:54:12 +00:00
margin-bottom: 10px;
margin-left: 29px;
}
2017-12-20 16:49:58 +00:00
}
2017-12-20 14:25:44 +00:00
@mixin peertube-checkbox ($border-width) {
2019-05-29 09:03:01 +00:00
opacity: 0;
2019-06-05 07:25:44 +00:00
position: absolute;
2019-05-29 09:03:01 +00:00
&:focus + span {
box-shadow: #{$focus-box-shadow-form} pvar(--mainColorLightest);
2019-05-29 09:03:01 +00:00
}
2017-12-20 14:25:44 +00:00
2021-04-28 14:41:07 +00:00
+ span {
2017-12-20 14:25:44 +00:00
position: relative;
width: 18px;
2019-08-28 08:36:53 +00:00
min-width: 18px;
2017-12-20 14:25:44 +00:00
height: 18px;
2022-06-28 09:29:54 +00:00
border: $border-width solid pvar(--inputBorderColor);
2017-12-20 14:25:44 +00:00
border-radius: 3px;
vertical-align: middle;
cursor: pointer;
2021-04-28 14:41:07 +00:00
&::after {
2017-12-20 14:25:44 +00:00
content: '';
position: absolute;
top: calc(2px - #{$border-width});
left: 5px;
width: 5px;
height: 12px;
opacity: 0;
transform: rotate(45deg) scale(0);
2023-02-08 13:50:02 +00:00
border-right: 2px solid pvar(--mainBackgroundColor);
border-bottom: 2px solid pvar(--mainBackgroundColor);
2017-12-20 14:25:44 +00:00
}
}
&:checked + span {
2017-12-20 14:25:44 +00:00
border-color: transparent;
background: pvar(--mainColor);
2017-12-20 14:25:44 +00:00
animation: jelly 0.6s ease;
2021-04-28 14:41:07 +00:00
&::after {
2017-12-20 14:25:44 +00:00
opacity: 1;
transform: rotate(45deg) scale(1);
}
}
2021-04-28 14:41:07 +00:00
+ span + span {
2021-06-07 15:38:31 +00:00
@include margin-left(5px);
2017-12-20 14:25:44 +00:00
font-weight: $font-regular;
cursor: pointer;
display: inline;
2017-12-20 14:25:44 +00:00
}
&[disabled] + span,
2021-04-28 14:41:07 +00:00
&[disabled] + span + span {
opacity: 0.5;
cursor: default;
}
2017-12-20 14:25:44 +00:00
}
2021-04-28 09:49:34 +00:00
@mixin actor-avatar-size ($size) {
display: inline-block;
2021-03-25 12:42:55 +00:00
width: $size;
height: $size;
min-width: $size;
min-height: $size;
}
2021-06-09 08:31:27 +00:00
@mixin actor-counters ($separator-margin: 10px) {
color: pvar(--greyForegroundColor);
display: flex;
align-items: center;
> *:not(:last-child)::after {
content: '';
margin: 0 $separator-margin;
color: pvar(--mainColor);
}
}
2018-04-24 13:10:54 +00:00
@mixin in-content-small-title {
text-transform: uppercase;
color: pvar(--mainColor);
2018-04-24 13:10:54 +00:00
font-weight: $font-bold;
font-size: 13px;
2018-04-25 14:56:13 +00:00
}
@mixin settings-big-title {
text-transform: uppercase;
color: pvar(--mainColor);
font-weight: $font-bold;
2022-06-15 12:59:25 +00:00
font-size: 1rem;
margin-bottom: 10px;
}
2021-10-19 07:44:43 +00:00
@mixin row-blocks ($column-responsive: true, $min-height: 130px, $separator: true) {
2018-08-21 14:18:59 +00:00
display: flex;
2021-10-19 07:44:43 +00:00
min-height: $min-height;
2018-08-21 14:18:59 +00:00
padding-bottom: 20px;
margin-bottom: 20px;
2021-10-19 07:44:43 +00:00
@if $separator {
2022-06-28 09:29:54 +00:00
border-bottom: 1px solid pvar(--inputBorderColor);
2021-10-19 07:44:43 +00:00
}
2018-08-21 14:18:59 +00:00
@media screen and (max-width: $small-view) {
@if $column-responsive {
flex-direction: column;
height: auto;
align-items: center;
} @else {
min-height: initial;
padding-bottom: 10px;
margin-bottom: 10px;
}
2018-08-21 14:18:59 +00:00
}
2018-09-04 15:30:57 +00:00
}
2019-03-11 15:23:33 +00:00
@mixin dropdown-with-icon-item {
padding: 6px 15px;
2019-03-11 15:23:33 +00:00
my-global-icon {
2021-06-07 15:38:31 +00:00
@include margin-right(10px);
width: 22px;
opacity: .7;
2019-03-11 15:23:33 +00:00
position: relative;
top: -2px;
}
}
@mixin progressbar($small: false) {
background-color: pvar(--greyBackgroundColor);
display: flex;
height: 1rem;
overflow: hidden;
font-size: 0.75rem;
border-radius: 0.25rem;
position: relative;
span {
position: absolute;
color: pvar(--greyForegroundColor);
2021-10-20 09:35:09 +00:00
@if $small {
top: -1px;
}
&:nth-of-type(1) {
left: .2rem;
}
&:nth-of-type(2) {
right: .2rem;
}
}
.progress-bar {
color: pvar(--mainBackgroundColor);
background-color: pvar(--mainColor);
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
white-space: nowrap;
transition: width 0.6s ease;
&.red {
2023-05-25 12:27:35 +00:00
background-color: color.adjust($color: #c54130, $lightness: 10%);
}
}
}
@mixin breadcrumb {
display: flex;
flex-wrap: wrap;
2022-06-15 12:59:25 +00:00
padding: 0;
margin-bottom: 1rem;
list-style: none;
2022-06-15 12:59:25 +00:00
font-weight: $font-semibold;
.breadcrumb-item {
display: flex;
a {
color: pvar(--mainColor);
}
2021-04-28 14:41:07 +00:00
+ .breadcrumb-item {
2021-06-07 15:38:31 +00:00
@include padding-left(0.5rem);
&::before {
2021-06-07 15:38:31 +00:00
@include padding-right(0.5rem);
display: inline-block;
color: #6c757d;
2021-04-28 14:41:07 +00:00
content: '/';
}
}
&.active {
color: #6c757d;
}
}
}
@mixin dashboard {
display: flex;
flex-wrap: wrap;
margin: 0 -5px;
2021-04-28 14:41:07 +00:00
> div {
box-sizing: border-box;
2023-05-25 12:27:35 +00:00
flex: 0 0 math.percentage(math.div(1, 3));
padding: 0 5px;
margin-bottom: 10px;
2021-04-28 14:41:07 +00:00
> a {
2020-04-21 07:52:21 +00:00
@include disable-default-a-behaviour;
text-decoration: none;
color: inherit;
display: block;
font-size: 18px;
&:active,
&:focus,
&:hover {
opacity: .8;
}
}
2021-04-28 14:41:07 +00:00
> a,
> div {
padding: 20px;
background: pvar(--submenuBackgroundColor);
border-radius: 4px;
box-sizing: border-box;
height: 100%;
}
}
2021-04-28 14:41:07 +00:00
.dashboard-num,
.dashboard-text {
text-align: center;
font-size: 130%;
color: pvar(--mainForegroundColor);
line-height: 30px;
margin-bottom: 20px;
}
.dashboard-label {
font-size: 90%;
color: pvar(--inputPlaceholderColor);
text-align: center;
}
}
@mixin divider($color: pvar(--submenuBackgroundColor), $background: pvar(--mainBackgroundColor)) {
width: 95%;
border-top: .05rem solid $color;
height: .05rem;
text-align: center;
display: block;
position: relative;
&[data-content] {
margin: .8rem 0;
&::after {
background: $background;
color: $color;
content: attr(data-content);
display: inline-block;
font-size: .7rem;
padding: 0 .4rem;
transform: translateY(-.65rem);
}
}
}
@mixin chip {
2023-01-19 08:29:47 +00:00
--avatar-size: 1.2rem;
display: inline-flex;
color: pvar(--mainForegroundColor);
2023-01-19 08:29:47 +00:00
height: var(--avatar-size);
max-width: 320px;
overflow: hidden;
text-decoration: none;
text-overflow: ellipsis;
vertical-align: middle;
white-space: nowrap;
2021-04-29 07:32:08 +00:00
my-actor-avatar {
2021-06-07 15:38:31 +00:00
@include margin-right(.2rem);
2023-01-19 08:29:47 +00:00
border-radius: 5rem;
width: var(--avatar-size);
height: var(--avatar-size);
}
&.two-lines {
2023-01-19 08:29:47 +00:00
--avatar-size: 2rem;
2023-01-19 08:29:47 +00:00
font-size: 14px;
line-height: 1rem;
2021-04-29 07:32:08 +00:00
my-actor-avatar {
display: inline-block;
}
2023-01-19 08:29:47 +00:00
> div {
display: flex;
flex-direction: column;
justify-content: center;
}
}
}
2021-04-07 15:01:29 +00:00
// applies ratio (default to 16:9) to a child element (using $selector) only using
// an immediate's parent size. This allows to set a ratio without explicit
// dimensions, as width/height cannot be computed from each other.
2021-05-27 16:25:00 +00:00
@mixin block-ratio ($selector: 'div', $inverted-ratio: math.div(9, 16)) {
2023-05-25 12:27:35 +00:00
$padding-percent: math.percentage($inverted-ratio);
2021-04-07 15:01:29 +00:00
position: relative;
height: 0;
width: 100%;
2021-04-07 15:01:29 +00:00
padding-top: $padding-percent;
#{$selector} {
position: absolute;
width: 100%;
height: 100%;
top: 0;
2021-06-17 14:02:38 +00:00
@content;
}
}
@mixin sub-menu-h1 {
::ng-deep h1 {
font-size: 1.3rem;
border-bottom: 2px solid $grey-background-color;
padding-bottom: 15px;
margin-bottom: $sub-menu-margin-bottom;
> span > my-global-icon,
2021-04-15 13:31:03 +00:00
> my-global-icon {
2021-06-07 15:38:31 +00:00
@include margin-right(10px);
width: 24px;
height: 24px;
vertical-align: top;
}
2022-06-08 14:14:24 +00:00
.pt-badge {
2021-06-07 15:38:31 +00:00
@include margin-left(7px);
2022-06-08 14:14:24 +00:00
vertical-align: top;
}
}
}
2020-08-05 07:44:58 +00:00
@mixin play-icon ($width, $height) {
width: 0;
height: 0;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%) scale(0.5);
2021-05-27 16:25:00 +00:00
border-top: #{math.div($height, 2)} solid transparent;
border-bottom: #{math.div($height, 2)} solid transparent;
2020-08-05 07:44:58 +00:00
border-left: $width solid rgba(255, 255, 255, 0.95);
}
@mixin on-small-main-col () {
:host-context(.main-col:not(.expanded)) {
2023-05-25 12:27:35 +00:00
@media screen and (max-width: #{$small-view + $menu-width}) {
@content;
}
}
:host-context(.main-col.expanded) {
@media screen and (max-width: $small-view) {
@content;
}
}
}
@mixin on-mobile-main-col () {
:host-context(.main-col:not(.expanded)) {
2023-05-25 12:27:35 +00:00
@media screen and (max-width: #{$mobile-view + $menu-width}) {
@content;
}
}
:host-context(.main-col.expanded) {
@media screen and (max-width: $mobile-view) {
@content;
}
}
}
2021-06-07 15:38:31 +00:00
2023-02-20 10:32:48 +00:00
@mixin margin ($arg1: null, $arg2: null, $arg3: null, $arg4: null) {
2023-02-21 08:32:14 +00:00
@if $arg2 == null and $arg3 == null and $arg4 == null {
2023-02-20 10:32:48 +00:00
@include margin-original($arg1, $arg1, $arg1, $arg1);
2023-02-21 08:32:14 +00:00
} @else if $arg3 == null and $arg4 == null {
2023-02-20 10:32:48 +00:00
@include margin-original($arg1, $arg2, $arg1, $arg2);
2023-02-21 08:32:14 +00:00
} @else if $arg4 == null {
2023-02-20 10:32:48 +00:00
@include margin-original($arg1, $arg2, $arg3, $arg2);
} @else {
@include margin-original($arg1, $arg2, $arg3, $arg4);
}
}
@mixin margin-original ($block-start, $inline-end, $block-end, $inline-start) {
2021-06-07 15:38:31 +00:00
@include margin-left($inline-start);
@include margin-right($inline-end);
@include margin-top($block-start);
@include margin-bottom($block-end);
2021-06-07 15:38:31 +00:00
}
@mixin margin-left ($value) {
@supports (margin-inline-start: $value) {
@include rfs($value, margin-inline-start);
2021-06-07 15:38:31 +00:00
}
@supports not (margin-inline-start: $value) {
@include rfs($value, margin-left);
2021-06-07 15:38:31 +00:00
}
}
@mixin margin-right ($value) {
@supports (margin-inline-end: $value) {
@include rfs($value, margin-inline-end);
2021-06-07 15:38:31 +00:00
}
@supports not (margin-inline-end: $value) {
@include rfs($value, margin-right);
2021-06-07 15:38:31 +00:00
}
}
2023-02-20 10:32:48 +00:00
@mixin padding-original ($block-start, $inline-end, $block-end, $inline-start) {
@include padding-left($inline-start);
@include padding-right($inline-end);
@include padding-top($block-start);
@include padding-bottom($block-end);
}
@mixin padding ($arg1: null, $arg2: null, $arg3: null, $arg4: null) {
2023-02-21 08:32:14 +00:00
@if $arg2 == null and $arg3 == null and $arg4 == null {
2023-02-20 10:32:48 +00:00
@include padding-original($arg1, $arg1, $arg1, $arg1);
2023-02-21 08:32:14 +00:00
} @else if $arg3 == null and $arg4 == null {
2023-02-20 10:32:48 +00:00
@include padding-original($arg1, $arg2, $arg1, $arg2);
2023-02-21 08:32:14 +00:00
} @else if $arg4 == null {
2023-02-20 10:32:48 +00:00
@include padding-original($arg1, $arg2, $arg3, $arg2);
} @else {
@include padding-original($arg1, $arg2, $arg3, $arg4);
}
}
2021-06-07 15:38:31 +00:00
@mixin padding-left ($value) {
@supports (padding-inline-start: $value) {
@include rfs($value, padding-inline-start);
2021-06-07 15:38:31 +00:00
}
@supports not (padding-inline-start: $value) {
@include rfs($value, padding-left);
2021-06-07 15:38:31 +00:00
}
}
@mixin padding-right ($value) {
@supports (padding-inline-end: $value) {
@include rfs($value, padding-inline-end);
2021-06-07 15:38:31 +00:00
}
@supports not (padding-inline-end: $value) {
@include rfs($value, padding-right);
2021-06-07 15:38:31 +00:00
}
}