aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+videos/+video-edit/shared/video-edit.component.scss
blob: 1c6f7f5abc763a37cfda59d33ec51bfdbae95392 (plain) (tree)
1
2
3
4
5
6
7

                       
 



                                           




                      



                      

               
                    
 


                                       
   

 
                  
                  

                      
 



                      
 

                                         
 
                
 

                   
     
   
 
                        

                                
                      
                     
   
 
                        


                                
 

                                  

     

                                  


     



                             


                             


   

                     

 
                   
                  
 
                   
                                
 
                          
                                       
   

 


                 
             
                 


                  
                  





                                         

                
 

                                 

 


                               

   
@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;
  }
}