aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-edit/video-add.component.scss
blob: 26be86d297662ad4e3e83426783d0a1975006cdb (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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
@use '_variables' as *;
@use '_mixins' as *;

$border-width: 3px;
$border-type: solid;
$border-color: #EAEAEA;
$nav-link-height: 40px;

.upload-message {
  width: 100%;
  text-align: center;
  font-size: 15px;
  margin-bottom: 0;

  &:last-child {
    margin-bottom: 1rem;
  }

  .about-link,
  .contact-link {
    @include peertube-button-link;
    @include orange-button;

    height: fit-content;
    margin-top: 10px;
  }
}

.upload-image {
  width: 100%;
  text-align: center;

  img {
    margin-top: 10px;
    margin-bottom: 75px;
    width: 220px;
    height: auto;
  }

  @media screen and (max-height: 600px) {
    img {
      margin-top: 5px;
      width: 160px;
    }
  }
}

.margin-content {
  padding-top: 20px;
}

::ng-deep .video-add-nav {
  border-bottom: $border-width $border-type $border-color;
  margin: 20px 0 0 !important;

  &.hide-nav {
    display: none !important;
  }

  a.nav-link {
    @include disable-default-a-behaviour;

    margin-bottom: -$border-width;
    height: $nav-link-height !important;
    padding: 0 30px !important;
    font-size: 15px;

    border: $border-width $border-type transparent;

    span {
      border-bottom: 2px solid transparent;
    }

    &.active {
      border-color: $border-color;
      border-bottom-color: transparent;
      background-color: pvar(--submenuBackgroundColor) !important;

      span {
        border-bottom-color: pvar(--mainColor);
      }
    }

    &:hover:not(.active) {
      border-color: transparent;
    }
  }
}

::ng-deep .upload-video-container {
  border: $border-width $border-type $border-color;
  border-top: transparent;

  background-color: pvar(--submenuBackgroundColor);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  width: 100%;
  min-height: 440px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  padding-top: 20px;

  &.dragover {
    border: 3px dashed pvar(--mainColor);
  }
}

@mixin nav-scroll {
  ::ng-deep .video-add-nav {
    height: #{$nav-link-height + $border-width * 2};
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: unset;

    /* Hide active tab style to not have a moving tab effect */
    a.nav-link.active {
      border-color: transparent;
      background-color: pvar(--mainBackgroundColor) !important;
    }
  }
}

/* Make .video-add-nav tabs scrollable on small devices */
@media screen and (max-width: $small-view) {
  @include nav-scroll();
}

@media screen and (max-width: #{$small-view + $menu-width}) {
  :host-context(.main-col:not(.expanded)) {
    @include nav-scroll();
  }
}