Spaces:
Running
Running
File size: 2,420 Bytes
76353dd 703632b 76353dd 650ca33 703632b 650ca33 76353dd 650ca33 703632b 76353dd 703632b 76353dd 703632b 76353dd 650ca33 76353dd 650ca33 703632b 76353dd 703632b 76353dd 703632b 76353dd 703632b 76353dd 650ca33 7c4c2c3 703632b 76353dd 703632b 7c29d61 76353dd 703632b 76353dd 703632b 76353dd 703632b 76353dd 703632b 76353dd 703632b 76353dd 703632b 76353dd 703632b 76353dd 703632b 76353dd 703632b 650ca33 76353dd 650ca33 703632b 922dff3 703632b c094023 703632b c094023 703632b c094023 703632b 650ca33 703632b 76353dd 703632b 76353dd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
.environment-container {
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}
.main-card {
mat-card-header {
margin-bottom: 20px;
mat-card-title {
display: flex;
align-items: center;
gap: 10px;
font-size: 24px;
mat-icon {
font-size: 28px;
height: 28px;
width: 28px;
}
}
}
}
.section {
padding: 20px 0;
&:first-child {
padding-top: 0;
}
}
.section-title {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 20px;
color: #333;
mat-icon {
color: #1976d2;
}
}
.full-width {
width: 100%;
}
.small-field {
width: 200px;
}
.endpoint-row {
display: flex;
gap: 10px;
align-items: flex-start;
.endpoint-field {
flex: 1;
}
.test-button {
margin-top: 8px;
height: 40px;
}
}
.settings-panel {
margin: 20px 0;
mat-panel-title {
display: flex;
align-items: center;
gap: 10px;
}
}
.parameter-config {
display: flex;
flex-direction: column;
gap: 20px;
padding: 10px 0;
mat-checkbox {
margin: 10px 0;
}
}
.stt-settings {
padding: 10px 0;
}
.settings-row {
display: flex;
gap: 20px;
margin-bottom: 20px;
flex-wrap: wrap;
mat-checkbox {
margin-top: 10px;
}
}
.actions {
display: flex;
gap: 10px;
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid #e0e0e0;
button {
mat-icon {
margin-right: 5px;
}
}
}
mat-divider {
margin: 30px 0;
}
// Material overrides
::ng-deep {
.mat-mdc-form-field {
.mat-mdc-text-field-wrapper {
background-color: #f5f5f5;
}
&.mat-focused {
.mat-mdc-text-field-wrapper {
background-color: #fff;
}
}
}
.mat-expansion-panel {
box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
border-radius: 8px !important;
&:not(.mat-expanded) {
&:hover {
background-color: #f5f5f5;
}
}
}
}
.loading-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.8);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
}
// Responsive
@media (max-width: 768px) {
.endpoint-row {
flex-direction: column;
.test-button {
width: 100%;
}
}
.settings-row {
flex-direction: column;
.small-field {
width: 100%;
}
}
} |