blob: d9c9e45ec09537fbecefa6a6439f4f1378537cbe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
@mixin disable-default-a-behaviour {
&:hover, &:focus, &:active {
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 {
color: #fff;
background-color: $orange-hoover-color;
}
&[disabled], &.disabled {
cursor: default;
color: #fff;
background-color: #C6C6C6;
}
}
@mixin grey-button {
background-color: $grey-color;
color: #585858;
&:hover, &:active, &:focus, &[disabled], &.disabled {
color: #585858;
background-color: $grey-hoover-color;
}
&[disabled], &.disabled {
cursor: default;
}
}
@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;
}
@mixin peertube-select ($width) {
background-color: #fff;
border: 1px solid #C6C6C6;
height: $button-height;
width: $width;
border-radius: 3px;
padding-left: 15px;
}
|