Skip to content
Snippets Groups Projects
note-editor.component.scss 1.11 KiB
Newer Older
  • Learn to ignore specific revisions
  • @import '../../css/vars.scss';
    
    
    .noteEditorContent {
        .mat-icon-button:disabled {
            opacity: 0.5;
        }
    
    
        ::ng-deep.mat-form-field-flex {
            align-items: flex-start;
        }
    
    
        ::ng-deep.mat-form-field-wrapper {
            padding-bottom: 0;
        }
    
    }
    
    ::ng-deep.templateNoteListMenu {
        .mat-menu-content {
            padding-top: 0;
            padding-bottom: 0;
    
            max-height: 500px;
        }
    }
    
    ::ng-deep.fixedWidth {
        .mat-menu-content {
    
    Alex ORLUC's avatar
    Alex ORLUC committed
    ::ng-deep.mat-tooltip {
        font-size: 14px;
    
    }
    
    .noteRestriction {
        background-color: rgba(0, 0, 0, 0.4);
        white-space: normal;
        display: inline-block;
        margin: 5px !important;
    
    }
    
    .noNoteRestriction {
        background-color: $primary;
        white-space: normal;
        display: inline-block;
        margin: 5px !important;
        cursor: pointer;
    
    }
    
    .labelFolder {
        color: rgb(102, 102, 102);
        font-size: 12px;
        font-weight: bold;
    }
    
    .smallInput {
        font-size: 11px;
        padding-left: 20px;
        padding-right: 20px;
        ::ng-deep.mat-form-field-infix {
            padding : 0px;
            padding-bottom: 5px;
        }
    
    Alex ORLUC's avatar
    Alex ORLUC committed
    }