aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/shared-main/buttons/action-dropdown.component.scss
blob: b9a4d46dc5c6cc0e39488e9cd1cb55a146f4327b (plain) (tree)
1
2
3
4
5
6
7
8
9


                     



                              

                           
 


                        








                             
 


             

                                               
   
 



                  

                
 
               
                                                          
     
   





                      

 




                         
                



                         
                  
                  

                           
 



                                       

          


                     
   
 
@import '_variables';
@import '_mixins';

.dropdown-divider:last-child {
  display: none;
}

.action-button {
  @include peertube-button;

  display: inline-block;
  padding: 0 10px;

  &.button-styled {

    &.grey {
      @include grey-button;
    }

    &.orange {
      @include orange-button;
    }

    &:hover,
    &:active,
    &:focus {
      background-color: $grey-background-color;
    }
  }

  &::after {
    display: none;
  }

  .more-icon {
    width: 21px;

    ::ng-deep {
      @include apply-svg-color(pvar(--actionButtonColor));
    }
  }

  &.small {
    font-size: 14px;
    height: 20px;
    line-height: 20px;
  }
}

.dropdown-toggle::after {
  position: relative;
  top: 1px;
}

.dropdown-menu {
  .dropdown-header {
    padding: 0.2rem 1rem;
  }

  .dropdown-item {
    display: flex;
    cursor: pointer;
    color: #000 !important;

    &.with-icon {
      @include dropdown-with-icon-item;
    }

    a,
    span {
      display: block;
      width: 100%;
    }
  }
}