aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/shared/video-edit.component.scss
blob: d363499ce1c7147ec6f829e5eb4366e76e81e6b9 (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
.video-edit {
  height: 100%;

  .form-group {
    margin-bottom: 25px;
  }

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

    &[type=checkbox] {
      outline: 0;
    }
  }

  select {
    @include peertube-select(100%);
  }

  input, select {
    font-size: 15px
  }

  .form-group-checkbox {
    display: flex;
    align-items: center;

    label {
      font-weight: $font-regular;
      margin: 0;
    }

    input {
      width: 10px;
      margin-right: 10px;
    }
  }
}

.submit-container {
  text-align: right;
  position: relative;
  bottom: $button-height;

  .message-submit {
    display: inline-block;
    margin-right: 25px;

    color: #585858;
    font-size: 15px;
  }

  .submit-button {
    @include peertube-button;
    @include orange-button;

    display: inline-block;

    input {
      cursor: inherit;
      background-color: inherit;
      border: none;
      padding: 0;
      outline: 0;
    }

    .icon.icon-validate {
      @include icon(20px);

      cursor: inherit;
      position: relative;
      top: -1px;
      margin-right: 4px;
      background-image: url('../../../../assets/images/global/validate.svg');
    }
  }
}

/deep/ {
  .ng2-tag-input {
    border: none !important;
  }

  .ng2-tags-container {
    display: flex;
    align-items: center;
    border: 1px solid #C6C6C6;
    border-radius: 3px;
    padding: 5px !important;
  }

  tag {
    background-color: #E5E5E5 !important;
    border-radius: 3px !important;
    font-size: 15px !important;
    color: #000 !important;
    height: 30px !important;
    line-height: 30px !important;
    margin: 0 5px 0 0 !important;
    cursor: default !important;
    padding: 0 8px 0 10px !important;

    div {
      height: 100% !important;
    }
  }

  delete-icon {
    cursor: pointer !important;
    height: auto !important;
    vertical-align: middle !important;
    padding-left: 6px !important;

    svg {
      height: auto !important;
      vertical-align: middle !important;
      fill: #585858 !important;
    }

    &:hover {
      transform: none !important;
    }
  }
}

.little-information {
  font-size: 0.8em;
  font-style: italic;
}