Skip to content
Snippets Groups Projects
feedbackModal.scss 2.47 KiB
Newer Older
  • Learn to ignore specific revisions
  • @import 'src/styles/base/color';
    
    @import '../../styles/base/mixins';
    
    
    .fb-root {
      overflow-y: auto;
      min-width: 70%;
    
    Yoan VALLET's avatar
    Yoan VALLET committed
      margin: 1rem 0;
    
      .fb-header {
        color: $gold-shadow;
    
        padding: 0.5rem 0.5rem 0rem 0.5rem;
    
        display: flex;
        justify-content: center;
      }
    
      .fb-content {
    
        padding: 1rem 0.5rem 1.5rem 0.5rem;
    
        display: flex;
        flex-direction: column;
        .fb-content-success {
          color: $grey-bright;
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
        }
        .fb-content-error {
          color: $grey-bright;
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
        }
        .fb-icon {
          display: flex;
          justify-content: center;
          margin: 0 0 1.5rem 0;
        }
        .fb-label {
          margin: 0.5rem 0 0 0;
        }
        .fb-selector {
          margin: 0.5rem 0;
          display: flex;
          flex-direction: row;
          align-content: space-around;
          justify-content: space-around;
          padding: 0;
          border: none;
          .fb-selector-item {
            height: 3.125rem;
            width: 3.125rem;
            .fb-selector-item-label {
              color: $grey-bright;
            }
            .fb-selector-item-selectedlabel {
              color: $white;
            }
          }
        }
        .fb-form {
          margin: 0.5rem 0;
          border: 1px solid $grey-dark;
          border-radius: 4px;
          color: $grey-bright;
          background: rgba(0, 0, 0, 0.3);
          padding: 0 1rem;
          outline: none;
        }
        .fb-form:focus {
          border: 1px solid $gold-shadow;
        }
        .fb-textarea {
          height: 8.725rem;
          padding: 0.5rem 1rem;
          resize: none;
        }
        .fb-input {
          height: 2rem;
        }
        button.btn-highlight {
          max-width: 9.375rem;
          align-self: center;
          margin-top: 1rem;
        }
      }
    }
    
    .upload-label {
      appearance: none;
      padding: 0.5rem;
      text-align: center;
      max-width: 180px;
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
      @include button(
        transparent,
        rgba($grey-bright, 0.7),
        1px solid $grey-dark,
        transparent
      );
      background-color: rgba($grey-dark, 0.2);
    
      margin: 0.8rem auto;
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
      transition: all 300ms ease;
      &:hover {
        opacity: 0.7;
      }
    
    }
    .fileName {
      display: flex;
      justify-content: space-between;
      padding: 0 0.5rem;
      color: $grey-bright;
      border: solid 1px $grey-dark;
      border-radius: 3px;
      margin: 0.5rem 0;
      align-items: center;
    }
    
    #accessibility-title {
      display: none;