Skip to content

Commit bf18c63

Browse files
last styling changes.
1 parent 2a428d1 commit bf18c63

File tree

6 files changed

+17
-5
lines changed

6 files changed

+17
-5
lines changed

src/app/applications/datatarget/fiware/fiware-edit/fiware-edit.component.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -208,25 +208,23 @@ <h6>{{ "QUESTION.DATATARGET.RELATIONS" | translate }}</h6>
208208
<tr *ngFor="let element of payloadDeviceDatatarget; let i = index" [attr.data-index]="i">
209209
<td>
210210
<div class="row">
211-
<mat-form-field appearance="outline">
211+
<mat-form-field appearance="fill">
212212
<mat-label>{{ "QUESTION.DATATARGET.SELECT-DEVICES" | translate }}</mat-label>
213213
<mat-select multiple name="devices" [compareWith]="compare" [(value)]="element.iotDeviceIds">
214-
<mat-option disabled="disabled" class="filter-option">
215214
<button mat-raised-button class="mat-primary fill text-sm" (click)="selectAllDevices(i)">
216215
{{ "QUESTION.DATATARGET.SELECTALLDEVICES" | translate }}
217216
</button>
218217
<button mat-raised-button class="mat-primary fill text-sm" (click)="deSelectAllDevices(i)">
219218
{{ "QUESTION.DATATARGET.DESELECTALLDEVICES" | translate }}
220219
</button>
221-
</mat-option>
222220
<mat-option *ngFor="let device of devices" [value]="device.id">{{ device.name }}</mat-option>
223221
</mat-select>
224222
</mat-form-field>
225223
</div>
226224
</td>
227225
<td>
228226
<div class="row">
229-
<mat-form-field appearance="outline">
227+
<mat-form-field appearance="fill">
230228
<mat-label>{{ "QUESTION.DATATARGET.SELECT-PAYLOADDECODER" | translate }}</mat-label>
231229
<mat-select matNativeControl name="payloadDecoderId" [(value)]="element.payloadDecoderId">
232230
<mat-option [value]="0">

src/app/applications/datatarget/fiware/fiware-edit/fiware-edit.component.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@
22
margin-left: 5px;
33
cursor: pointer;
44
}
5+
6+
::ng-deep .mdc-text-field--filled:not(.mdc-text-field--disabled) {
7+
background-color: white !important;
8+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
.mat-mdc-text-field-wrapper .mdc-text-field{
1+
::ng-deep .mdc-text-field--filled:not(.mdc-text-field--disabled) {
22
background-color: white !important;
33
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
::ng-deep .mdc-text-field--filled:not(.mdc-text-field--disabled) {
2+
background-color: white !important;
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
::ng-deep .mdc-text-field--filled:not(.mdc-text-field--disabled) {
2+
background-color: white !important;
3+
}

src/assets/scss/components/_topbar.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,7 @@
8181
.mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper {
8282
background-color: transparent !important;
8383
}
84+
85+
.mat-mdc-form-field-focus-overlay {
86+
background-color: transparent !important;
87+
}

0 commit comments

Comments
 (0)