blob: 14d9b50447dc8130ab75220e00d14e1e51dbc1ef (
plain) (
tree)
|
|
@mixin disable-default-a-behaviour {
&:hover, &:focus {
text-decoration: none !important;
outline: none !important;
}
}
@mixin peertube-input-text($width) {
display: inline-block;
height: $button-height;
width: $width;
background: #fff;
border: 1px solid #C6C6C6;
border-radius: 3px;
padding-left: 15px;
&::placeholder {
color: #585858;
}
}
@mixin orange-button {
color: #fff;
background-color: $orange-color;
&:hover, &:active, &:focus, &[disabled] {
color: #fff;
background-color: $orange-hoover-color;
}
}
@mixin grey-button {
background-color: $grey-color;
color: #585858;
&:hover, &:active, &:focus, &[disabled] {
color: #585858;
background-color: $grey-hoover-color;
}
}
@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;
padding: 0 17px 0 13px;
cursor: pointer;
}
@mixin peertube-button-link {
display: inline-block;
@include disable-default-a-behaviour;
@include peertube-button;
}
@mixin avatar ($size) {
width: $size;
height: $size;
}
@mixin icon ($size) {
display: inline-block;
background-repeat: no-repeat;
background-size: contain;
width: $size;
height: $size;
vertical-align: middle;
cursor: pointer;
}
|