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

98 lines
1.7 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 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;
}
}
2017-12-07 10:02:01 +01:00
@mixin orange-button {
color: #fff;
background-color: $orange-color;
2017-12-08 08:39:15 +01:00
&:hover, &:active, &:focus {
2017-12-07 10:27:33 +01:00
color: #fff;
2017-12-07 10:02:01 +01:00
background-color: $orange-hoover-color;
}
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
}
2017-12-07 10:02:01 +01:00
}
@mixin grey-button {
background-color: $grey-color;
color: #585858;
2017-12-07 14:48:47 +01:00
&:hover, &:active, &:focus, &[disabled], &.disabled {
2017-12-07 10:27:33 +01:00
color: #585858;
2017-12-07 10:02:01 +01:00
background-color: $grey-hoover-color;
}
2017-12-07 14:48:47 +01:00
&[disabled], &.disabled {
cursor: default;
}
2017-12-07 10:02:01 +01:00
}
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;
padding: 0 17px 0 13px;
cursor: pointer;
2017-12-08 15:22:57 +01:00
outline: 0;
2017-12-01 17:38:26 +01:00
}
@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 avatar ($size) {
width: $size;
height: $size;
}
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 peertube-select ($width) {
background-color: #fff;
border: 1px solid #C6C6C6;
height: $button-height;
width: $width;
border-radius: 3px;
padding-left: 15px;
}