PeerTube/client/src/sass/include/_mixins.scss

934 lines
17 KiB
SCSS
Raw Normal View History

2017-12-11 17:36:46 +01:00
@import '_variables';
2017-12-01 13:08:46 +01:00
@mixin disable-default-a-behaviour {
2017-12-08 08:39:15 +01:00
&:hover, &:focus, &:active {
2017-12-01 13:08:46 +01:00
text-decoration: none !important;
outline: none !important;
}
}
2017-12-01 17:38:26 +01:00
@mixin disable-outline {
&:focus:not(.focus-visible) {
outline: none;
}
}
2019-02-20 15:52:03 +01:00
@mixin ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
@mixin ellipsis-multiline($font-size: 16px, $number-of-lines: 2) {
display: block;
/* Fallback for non-webkit */
display: -webkit-box;
max-height: $font-size * $number-of-lines;
/* Fallback for non-webkit */
font-size: $font-size;
2019-04-03 14:18:23 +02:00
line-height: $font-size;
overflow: hidden;
text-overflow: ellipsis;
}
2021-03-25 13:42:55 +01:00
@mixin fade-text ($fade-after, $background-color) {
position: relative;
overflow: hidden;
&:after {
content: '';
pointer-events: none;
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
background: linear-gradient(transparent $fade-after, $background-color);
}
}
2018-04-20 08:19:46 +02:00
@mixin peertube-word-wrap {
2019-12-10 10:40:25 +01:00
word-break: break-word;
2018-04-20 08:19:46 +02:00
word-wrap: break-word;
overflow-wrap: break-word;
hyphens: auto;
}
@mixin apply-svg-color ($color) {
::ng-deep .feather,
::ng-deep .material {
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;
}
}
2017-12-01 17:38:26 +01:00
@mixin peertube-input-text($width) {
display: inline-block;
height: $button-height;
width: $width;
color: pvar(--inputForegroundColor);
background-color: pvar(--inputBackgroundColor);
2017-12-01 17:38:26 +01:00
border: 1px solid #C6C6C6;
border-radius: 3px;
padding-left: 15px;
2017-12-20 10:04:37 +01:00
padding-right: 15px;
font-size: 15px;
&::placeholder {
color: pvar(--inputPlaceholderColor);
}
2018-09-20 15:59:10 +02:00
2020-07-06 11:03:05 +02:00
&[readonly] {
opacity: 0.7;
}
2018-09-20 15:59:10 +02:00
@media screen and (max-width: $width) {
width: 100%;
}
2018-08-17 15:45:42 +02:00
}
2017-12-01 17:38:26 +01:00
2018-08-17 15:45:42 +02:00
@mixin peertube-input-group($width) {
width: $width;
2019-11-27 10:38:02 +01:00
min-height: $button-height;
2018-08-17 15:45:42 +02:00
padding-top: 0;
padding-bottom: 0;
flex-wrap: nowrap;
2018-08-17 15:45:42 +02:00
.input-group-text{
font-size: 14px;
color: gray;
2017-12-01 17:38:26 +01:00
}
}
2017-12-20 17:49:58 +01:00
@mixin peertube-textarea ($width, $height) {
@include peertube-input-text($width);
color: pvar(--textareaForegroundColor);
background-color: pvar(--textareaBackgroundColor);
2017-12-20 17:49:58 +01:00
height: $height;
padding: 5px 15px;
font-size: 15px;
}
2017-12-07 10:02:01 +01:00
@mixin orange-button {
@include button-focus(pvar(--mainColorLightest));
2017-12-20 14:29:55 +01:00
&, &:active, &:focus {
color: #fff;
background-color: pvar(--mainColor);
2017-12-20 14:29:55 +01:00
}
2017-12-07 10:02:01 +01:00
2017-12-20 14:29:55 +01:00
&:hover {
2017-12-07 10:27:33 +01:00
color: #fff;
background-color: pvar(--mainHoverColor);
2017-12-07 10:02:01 +01:00
}
2017-12-07 14:48:47 +01:00
&[disabled], &.disabled {
cursor: default;
2017-12-08 08:39:15 +01:00
color: #fff;
background-color: #C6C6C6;
2017-12-07 14:48:47 +01:00
}
my-global-icon {
@include apply-svg-color(#fff)
}
2017-12-07 10:02:01 +01:00
}
2021-03-25 13:42:55 +01:00
@mixin orange-button-inverted {
@include button-focus(pvar(--mainColorLightest));
border: 2px solid pvar(--mainColor);
font-weight: $font-semibold;
2021-03-25 13:42:55 +01:00
&, &:active, &:focus {
color: pvar(--mainColor);
background-color: pvar(--mainBackgroundColor);
}
&:hover {
color: pvar(--mainColor);
background-color: pvar(--mainColorLightest);
}
&[disabled], &.disabled {
cursor: default;
color: pvar(--mainColor);
background-color: #C6C6C6;
}
my-global-icon {
@include apply-svg-color(pvar(--mainColor))
}
}
@mixin tertiary-button {
@include button-focus($grey-button-outline-color);
color: pvar(--greyForegroundColor);
background-color: transparent;
&[disabled], &.disabled {
cursor: default;
}
my-global-icon {
@include apply-svg-color(transparent)
}
}
2017-12-07 10:02:01 +01:00
@mixin grey-button {
@include button-focus($grey-button-outline-color);
2021-01-05 13:48:56 +01:00
background-color: $grey-background-color;
color: pvar(--greyForegroundColor);
2017-12-07 10:02:01 +01:00
2017-12-07 14:48:47 +01:00
&:hover, &:active, &:focus, &[disabled], &.disabled {
color: pvar(--greyForegroundColor);
background-color: $grey-background-hover-color;
2017-12-07 10:02:01 +01:00
}
2017-12-07 14:48:47 +01:00
&[disabled], &.disabled {
cursor: default;
}
my-global-icon {
@include apply-svg-color(pvar(--greyForegroundColor))
}
2017-12-07 10:02:01 +01:00
}
@mixin danger-button {
$color: lighten($color: #c54130, $amount: 10);
$text: #fff6f5;
@include button-focus(scale-color($color, $alpha: -95%));
background-color: $color;
color: $text;
&:hover, &:active, &:focus, &[disabled], &.disabled {
background-color: lighten($color: $color, $amount: 10);
}
&[disabled], &.disabled {
cursor: default;
}
my-global-icon {
@include apply-svg-color($text)
}
}
2017-12-01 17:38:26 +01:00
@mixin peertube-button {
border: none;
font-weight: $font-semibold;
font-size: 15px;
height: $button-height;
line-height: $button-height;
border-radius: 3px;
text-align: center;
2020-11-09 16:25:27 +01:00
padding: 0 17px 0 13px;
2017-12-01 17:38:26 +01:00
cursor: pointer;
}
@mixin peertube-button-link {
display: inline-block;
@include disable-default-a-behaviour;
2017-12-06 15:07:17 +01:00
@include peertube-button;
2017-12-01 17:38:26 +01:00
}
2017-12-04 10:34:40 +01:00
@mixin peertube-button-outline {
display: inline-block;
@include disable-default-a-behaviour;
@include peertube-button;
border: 1px solid;
}
@mixin button-with-icon($width: 20px, $margin-right: 3px, $top: -1px) {
2021-01-05 13:48:56 +01:00
display: inline-flex;
align-items: center;
line-height: normal !important;
my-global-icon {
position: relative;
width: $width;
margin-right: $margin-right;
top: $top;
}
}
@mixin peertube-file {
2017-12-29 19:10:13 +01:00
position: relative;
overflow: hidden;
display: inline-block;
min-height: 30px;
2017-12-29 19:10:13 +01:00
input[type=file] {
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
2017-12-29 19:10:13 +01:00
font-size: 100px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
outline: none;
background: white;
cursor: inherit;
display: block;
}
}
@mixin peertube-button-file ($width) {
width: $width;
@include peertube-file;
@include peertube-button;
}
2017-12-07 10:27:33 +01: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 14:48:47 +01:00
@mixin select-arrow-down {
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: #000;
margin-top: -2px;
z-index: 100;
}
2020-12-15 09:32:55 +01:00
@mixin responsive-width ($width) {
width: $width;
@media screen and (max-width: $width) {
width: 100%;
}
}
2020-08-11 16:07:53 +02:00
2017-12-20 14:29:55 +01:00
@mixin peertube-select-container ($width) {
padding: 0;
margin: 0;
2017-12-07 14:48:47 +01:00
width: $width;
border-radius: 3px;
color: pvar(--inputForegroundColor);
background: pvar(--inputBackgroundColor);
2017-12-20 14:29:55 +01:00
position: relative;
2017-12-20 17:49:58 +01:00
font-size: 15px;
2017-12-20 14:29:55 +01:00
2019-06-12 12:40:24 +02:00
&.disabled {
background-color: #E5E5E5;
select {
cursor: default;
}
}
2019-04-11 11:18:19 +02:00
@media screen and (max-width: $width) {
width: 100%;
}
2017-12-20 14:29:55 +01:00
&:after {
@include select-arrow-down;
2017-12-20 14:29:55 +01:00
}
select {
2018-01-08 11:30:48 +01:00
padding: 0 35px 0 12px;
2017-12-20 14:29:55 +01:00
position: relative;
border: 1px solid #C6C6C6;
2017-12-20 14:29:55 +01:00
background: transparent none;
appearance: none;
cursor: pointer;
height: $button-height;
2018-01-08 11:30:48 +01:00
text-overflow: ellipsis;
color: pvar(--mainForegroundColor);
2017-12-20 14:29:55 +01:00
&:focus {
outline: none;
}
&:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #000;
}
2019-01-17 11:51:08 +01:00
option {
color: #000;
}
2017-12-20 14:29:55 +01:00
}
2020-07-15 11:15:50 +02:00
&.peertube-select-button {
@include grey-button;
select,
option {
font-weight: $font-semibold;
color: pvar(--greyForegroundColor);
border: none;
}
}
2017-12-20 14:29:55 +01:00
}
2017-12-20 17:49:58 +01:00
// Thanks: https://codepen.io/triss90/pen/XNEdRe/
@mixin peertube-radio-container {
input[type="radio"] {
display: none;
& + label {
font-weight: $font-regular;
cursor: pointer;
&:before {
position: relative;
top: -2px;
content: '';
background: #fff;
border-radius: 100%;
border: 1px solid #000;
display: inline-block;
width: 15px;
height: 15px;
vertical-align: middle;
cursor: pointer;
text-align: center;
margin-right: 10px;
}
}
&:checked + label:before {
background-color: #000;
box-shadow: inset 0 0 0 4px #fff;
}
&:focus + label:before {
outline: none;
border-color: #000;
}
}
}
2017-12-20 15:25:44 +01:00
@mixin peertube-checkbox ($border-width) {
2019-05-29 11:03:01 +02:00
opacity: 0;
2019-06-05 09:25:44 +02:00
position: absolute;
2019-05-29 11:03:01 +02:00
&:focus + span {
box-shadow: #{$focus-box-shadow-form} pvar(--mainColorLightest);
2019-05-29 11:03:01 +02:00
}
2017-12-20 15:25:44 +01:00
& + span {
2017-12-20 15:25:44 +01:00
position: relative;
width: 18px;
2019-08-28 10:36:53 +02:00
min-width: 18px;
2017-12-20 15:25:44 +01:00
height: 18px;
border: $border-width solid #C6C6C6;
2017-12-20 15:25:44 +01:00
border-radius: 3px;
vertical-align: middle;
cursor: pointer;
&:after {
content: '';
position: absolute;
top: calc(2px - #{$border-width});
left: 5px;
width: 5px;
height: 12px;
opacity: 0;
transform: rotate(45deg) scale(0);
2019-10-22 11:14:58 +02:00
border-right: 2px solid $bg-color;
border-bottom: 2px solid $bg-color;
2017-12-20 15:25:44 +01:00
}
}
&:checked + span {
2017-12-20 15:25:44 +01:00
border-color: transparent;
background: pvar(--mainColor);
2017-12-20 15:25:44 +01:00
animation: jelly 0.6s ease;
&:after {
opacity: 1;
transform: rotate(45deg) scale(1);
}
}
& + span + span {
2017-12-20 15:25:44 +01:00
font-size: 15px;
font-weight: $font-regular;
margin-left: 5px;
cursor: pointer;
display: inline;
2017-12-20 15:25:44 +01:00
}
&[disabled] + span,
&[disabled] + span + span{
opacity: 0.5;
cursor: default;
}
2017-12-20 15:25:44 +01:00
}
2020-07-15 11:15:50 +02:00
@mixin table-badge {
border-radius: 2px;
padding: 1/4em 1/2em;
text-transform: uppercase;
font-weight: $font-bold;
font-size: 12px;
letter-spacing: 1/3px;
&.badge-banned,
&.badge-red {
background-color: #ffcdd2;
color: #c63737;
}
&.badge-banned {
text-decoration: line-through;
}
&.badge-yellow {
background-color: #feedaf;
color: #8a5340;
}
&.badge-brown {
background-color: #ffd8b2;
color: #805b36;
}
&.badge-green {
background-color: #c8e6c9;
color: #256029;
}
&.badge-blue {
background-color: #b3e5fc;
color: #23547b;
}
&.badge-purple {
background-color: #eccfff;
color: #694382;
}
}
2018-01-03 11:54:42 +01:00
@mixin avatar ($size) {
object-fit: cover;
2018-05-23 11:38:00 +02:00
border-radius: 50%;
2018-01-03 11:54:42 +01:00
width: $size;
height: $size;
2019-09-05 10:30:22 +02:00
min-width: $size;
2019-12-10 10:40:25 +01:00
min-height: $size;
2018-01-03 11:54:42 +01:00
}
2021-03-25 13:42:55 +01:00
@mixin channel-avatar ($size) {
width: $size;
height: $size;
min-width: $size;
min-height: $size;
border-radius: 5px;
2021-03-25 13:42:55 +01:00
}
@mixin chevron ($size, $border-width) {
border-style: solid;
border-width: $border-width $border-width 0 0;
content: '';
display: inline-block;
transform: rotate(-45deg);
height: $size;
width: $size;
}
@mixin chevron-right ($size, $border-width) {
@include chevron($size, $border-width);
left: 0;
transform: rotate(45deg);
}
@mixin chevron-left ($size, $border-width) {
@include chevron($size, $border-width);
left: 0.25em;
transform: rotate(-135deg);
}
2018-04-24 15:10:54 +02:00
@mixin in-content-small-title {
text-transform: uppercase;
color: pvar(--mainColor);
2018-04-24 15:10:54 +02:00
font-weight: $font-bold;
font-size: 13px;
2018-04-25 16:56:13 +02:00
}
@mixin settings-big-title {
text-transform: uppercase;
color: pvar(--mainColor);
font-weight: $font-bold;
font-size: 110%;
margin-bottom: 10px;
}
2018-08-21 16:18:59 +02:00
@mixin actor-owner {
@include disable-default-a-behaviour;
font-size: 13px;
margin-top: 4px;
color: pvar(--mainForegroundColor);
2018-08-21 16:18:59 +02:00
span:hover {
opacity: 0.8;
}
img {
@include avatar(18px);
margin-left: 7px;
position: relative;
top: -2px;
}
}
@mixin create-button {
2018-04-26 16:11:38 +02:00
@include peertube-button-link;
@include orange-button;
@include button-with-icon(20px, 5px, -1px);
2018-05-23 11:38:00 +02:00
}
2018-08-21 16:18:59 +02:00
@mixin row-blocks {
display: flex;
min-height: 130px;
padding-bottom: 20px;
margin-bottom: 20px;
border-bottom: 1px solid #C6C6C6;
@media screen and (max-width: 800px) {
flex-direction: column;
height: auto;
align-items: center;
}
2018-09-04 17:30:57 +02:00
}
2019-03-11 16:23:33 +01:00
@mixin dropdown-with-icon-item {
padding: 6px 15px;
2019-03-11 16:23:33 +01:00
my-global-icon {
width: 22px;
opacity: .7;
2019-03-11 16:23:33 +01:00
margin-right: 10px;
position: relative;
top: -2px;
}
}
@mixin progressbar($small: false) {
background-color: $grey-background-color;
display: flex;
height: 1rem;
overflow: hidden;
font-size: 0.75rem;
border-radius: 0.25rem;
position: relative;
span {
position: absolute;
2020-07-23 21:30:04 +02:00
color: $grey-foreground-color;
@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;
&.secondary {
background-color: pvar(--secondaryColor);
}
&.red {
background-color: lighten($color: #c54130, $amount: 10);
}
}
}
@mixin breadcrumb {
display: flex;
flex-wrap: wrap;
padding: 0.75rem 1rem;
margin-bottom: 1rem;
list-style: none;
background-color: pvar(--submenuBackgroundColor);
border-radius: 0.25rem;
.breadcrumb-item {
display: flex;
a {
color: pvar(--mainColor);
}
& + .breadcrumb-item {
padding-left: 0.5rem;
&::before {
display: inline-block;
padding-right: 0.5rem;
color: #6c757d;
content: "/";
}
}
&.active {
color: #6c757d;
}
}
}
@mixin dashboard {
display: flex;
flex-wrap: wrap;
margin: 0 -5px;
& > div {
box-sizing: border-box;
flex: 0 0 percentage(1/3);
padding: 0 5px;
margin-bottom: 10px;
& > a {
2020-04-21 09:52:21 +02:00
@include disable-default-a-behaviour;
text-decoration: none;
color: inherit;
display: block;
font-size: 18px;
&:active,
&:focus,
&:hover {
opacity: .8;
}
}
& > a,
& > div {
padding: 20px;
background: pvar(--submenuBackgroundColor);
border-radius: 4px;
box-sizing: border-box;
height: 100%;
}
}
.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 {
--chip-radius: 5rem;
--chip-padding: .2rem .4rem;
$avatar-height: 1.2rem;
align-items: center;
border-radius: var(--chip-radius);
display: inline-flex;
font-size: 90%;
color: pvar(--mainForegroundColor);
height: $avatar-height;
2020-05-05 11:40:15 +02:00
line-height: 1rem;
margin: .1rem;
max-width: 320px;
overflow: hidden;
padding: var(--chip-padding);
text-decoration: none;
text-overflow: ellipsis;
vertical-align: middle;
white-space: nowrap;
&.rectangular {
--chip-radius: .2rem;
--chip-padding: .2rem .3rem;
}
.avatar {
margin-left: -.4rem;
margin-right: .2rem;
height: $avatar-height;
width: $avatar-height;
border-radius: 50%;
display: inline-block;
line-height: 1.25;
position: relative;
vertical-align: middle;
}
&.two-lines {
$avatar-height: 2rem;
height: $avatar-height;
.avatar {
height: $avatar-height;
width: $avatar-height;
}
div {
display: flex;
flex-direction: column;
height: $avatar-height;
margin-left: .1rem;
margin-right: .1rem;
justify-content: center;
}
}
}
2021-03-31 11:21:10 +02:00
@mixin admin-sub-header-responsive {
flex-direction: column;
.form-sub-title {
margin-right: 0px !important;
margin-bottom: 10px;
text-align: center;
}
.admin-sub-nav {
display: block;
overflow-x: auto;
white-space: nowrap;
height: 50px;
padding: 10px 0;
2021-03-31 11:21:10 +02:00
width: 100%;
a {
margin-left: 5px;
}
}
}
// applies 16:9 ratio to a child element (using $selector) only using
// an immediate's parent size. This allows 16:9 ratio without explicit
// dimensions, as width/height cannot be computed from each other.
@mixin large-screen-ratio ($selector: 'div') {
position: relative;
height: 0;
width: 100%;
padding-top: 56%;
#{$selector} {
position: absolute;
width: 100%;
height: 100%;
top: 0;
@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;
my-global-icon {
margin-right: 10px;
vertical-align: bottom;
width: 24px;
height: 24px;
}
.badge {
margin-left: 7px;
}
}
}
2020-08-05 09:44:58 +02:00
@mixin play-icon ($width, $height) {
width: 0;
height: 0;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%) scale(0.5);
border-top: ($height / 2) solid transparent;
border-bottom: ($height / 2) solid transparent;
border-left: $width solid rgba(255, 255, 255, 0.95);
}