Back to home page

EIC code displayed by LXR

 
 

    


Warning, /firebird/firebird-ng/src/app/pages/input-config/input-config.component.scss is written in an unsupported language. File is not indexed.

0001 /* input-config.component.scss */
0002 
0003 /* Use a contrasting background for the card itself vs. the header */
0004 .config-card {
0005   background-color: var(--mat-sys-surface);         /* Use a slightly different surface than the header */
0006   color: var(--mat-sys-on-surface);
0007   margin: 16px 0;
0008   border-radius: 8px;                                 /* Rounded corners */
0009   overflow: hidden;                                   /* Ensure content doesn’t bleed outside rounded corners */
0010   box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);         /* Subtle elevation */
0011   font-family: 'Roboto', sans-serif;                /* Consistent typography */
0012 }
0013 
0014 /* Card header: separate background and proper padding */
0015 .config-card mat-card-title {
0016   background-color: var(--mat-sys-surface-container); /* A container color that differs from the card content */
0017   padding: 16px;
0018   font-family: inherit;                              /* Inherit from .config-card */
0019   font-size: 1.25rem;
0020   font-weight: 500;
0021   line-height: 1.2;
0022 }
0023 
0024 /* Card content: ensure consistent padding and typography */
0025 .config-card mat-card-content {
0026   padding: 16px;
0027   font-family: inherit;
0028   font-size: 1rem;
0029   line-height: 1.5;
0030 }
0031 
0032 .section {
0033   margin-bottom: 16px;
0034 }
0035 
0036 .api-url {
0037   margin-top: 16px;
0038 }
0039 
0040 /* Remove unneeded utility class; full-width is now handled by Material's layout */
0041 .full-width {
0042   width: 100%;
0043 }
0044 
0045 .action-buttons {
0046   margin: 24px 0;
0047   text-align: center;
0048 
0049 }
0050 
0051 .details-accordion {
0052   margin-top: 24px;
0053 }
0054 
0055 .details-table {
0056   width: 100%;
0057   border-collapse: collapse;
0058 
0059   th, td {
0060     padding: 8px;
0061     text-align: left;
0062     border-bottom: 1px solid var(--mat-sys-outline);
0063   }
0064 }
0065 
0066 .subsection {
0067   margin: 1rem 0;
0068   padding: 1rem;
0069   border: 1px solid #ddd;
0070   border-radius: 4px;
0071 }
0072 
0073 .subsection h3 {
0074   margin-top: 0;
0075 }