.video-info-account {
@include disable-default-a-behaviour;
+ @include ellipsis;
display: block;
width: fit-content;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
font-size: 14px;
color: $grey-foreground-color;
overflow: hidden;
.instance-name {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
+ @include ellipsis;
+
width: 100%;
}
}
menu {
+ @include ellipsis;
+
background-color: var(--menuBackgroundColor);
margin: 0;
padding: 0;
height: 100%;
- white-space: nowrap;
- text-overflow: ellipsis;
overflow: auto;
color: var(--menuForegroundColor);
display: flex;
margin-bottom: 35px;
.logged-in-info {
+ @include ellipsis;
+
flex-grow: 1;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
.logged-in-display-name {
font-size: 16px;
}
.logged-in-username {
+ @include ellipsis;
+
font-size: 13px;
color: #C6C6C6;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
max-width: 140px;
}
}
.video-info-account {
@include disable-default-a-behaviour;
+ @include ellipsis;
display: block;
width: fit-content;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
font-size: 14px;
color: $grey-foreground-color;
.video-miniature-account,
.video-miniature-channel {
@include disable-default-a-behaviour;
+ @include ellipsis;
display: block;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
font-size: 13px;
color: $grey-foreground-color;
}
}
+
+@mixin ellipsis {
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
/**
* This mixin will crop text in block for needed amount of lines and put ellipsis at the end
*