aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-edit/shared/video-edit.component.scss
blob: 1c6f7f5abc763a37cfda59d33ec51bfdbae95392 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
@use '_variables' as *;
@use '_mixins' as *;

.peertube-select-container {
  @include peertube-select-container(auto);
}

my-peertube-checkbox {
  display: block;
  margin-bottom: 1rem;
}

.nav-tabs {
  margin-bottom: 15px;
}

.video-edit {
  height: 100%;
  min-height: 300px;

  input {
    @include peertube-input-text(100%);
    display: block;
  }
}

.captions-header {
  text-align: end;
  margin-bottom: 1rem;
}

.caption-entry {
  display: flex;
  height: 40px;
  align-items: center;

  a.caption-entry-label {
    @include disable-default-a-behaviour;

    color: #000;

    &:hover {
      opacity: 0.8;
    }
  }

  .caption-entry-label {
    @include margin-right(20px);

    font-weight: bold;
    min-width: 100px;
  }

  .caption-entry-state {
    @include margin-right(15px);

    min-width: 250px;

    &.caption-entry-state-create {
      color: #39CC0B;
    }

    &.caption-entry-state-delete {
      color: #FF0000;
    }
  }

  .caption-entry-edit {
    @include peertube-button;
  }

  .caption-entry-delete {
    @include peertube-button;
    @include grey-button;
  }
}

.no-caption {
  text-align: center;
}

.submit-container {
  text-align: end;

  .message-submit {
    @include margin-right(25px);

    display: inline-block;
    color: pvar(--greyForegroundColor);
  }
}

p-calendar {
  display: block;

  ::ng-deep {
    .p-calendar {
      width: 100%;
    }

    .p-inputtext {
      @include peertube-input-text(100%);
      color: #000;
    }
  }
}

.form-columns {
  display: grid;

  grid-template-columns: 66% 1fr;
  grid-gap: 30px;
}

@include on-small-main-col {
  .form-columns {
    grid-template-columns: 1fr;
  }
}