-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
131 data type mask modifications (#133)
* added tabs for data types and exception types * reworked tab components
- Loading branch information
1 parent
3981675
commit 7042cb1
Showing
43 changed files
with
1,114 additions
and
394 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
document/datatype/datatype-details/datatype-details.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<xc-tab-bar class="zeta-scrollbar" | ||
[xc-tab-bar-items]="tabBarItems" [(xc-tab-bar-selection)]="tabBarSelection" | ||
></xc-tab-bar> |
81 changes: 34 additions & 47 deletions
81
...e/member-variable-meta-tab.component.scss → ...e-details/datatype-details.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,34 @@ | ||
/* | ||
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | ||
* Copyright 2024 Xyna GmbH, Germany | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | ||
*/ | ||
@import 'const'; | ||
|
||
:host { | ||
display: flex; | ||
flex-direction: column; | ||
flex: 1 1 auto; | ||
|
||
.items-row { | ||
display: flex; | ||
flex-direction: row; | ||
flex: 0 1 auto; | ||
padding: 10px; | ||
background-color: $color-gray-1; | ||
|
||
.input { | ||
margin: 5px 0px 7px 0px; | ||
::ng-deep .mat-mdc-form-field-subscript-wrapper { | ||
display: none; | ||
} | ||
} | ||
|
||
.add { | ||
align-items: center; | ||
} | ||
} | ||
|
||
.rich-list { | ||
padding: 10px; | ||
} | ||
} | ||
/* | ||
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | ||
* Copyright 2024 Xyna GmbH, Germany | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | ||
*/ | ||
@import 'const'; | ||
|
||
|
||
:host { | ||
display: flex; | ||
flex-direction: column; | ||
flex: 1 1 auto; | ||
|
||
::ng-deep { | ||
.mat-mdc-tab-group .mat-mdc-tab-body-wrapper .mat-mdc-tab-body { | ||
scrollbar-width: thin; | ||
.mat-mdc-tab-body-content { | ||
background: unset; | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.