Skip to content

Commit

Permalink
increase width of edit mode editors to 90%
Browse files Browse the repository at this point in the history
* apply bigger width also for editing feature and editing connection
* capitalize "Send Message"
  • Loading branch information
thjaeckle committed Oct 15, 2023
1 parent dd6f97a commit 7846f78
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ui/main.scss
Expand Up @@ -177,7 +177,7 @@ hr {
.editForgroundBig {
position: absolute;
right: 24px;
width: 60%;
width: 90%;
height: 80%;
}

Expand Down
2 changes: 1 addition & 1 deletion ui/modules/connections/connections.html
Expand Up @@ -43,7 +43,7 @@ <h5 data-bs-toggle="collapse" data-bs-target="#connectionsEdit">
</div>
<div class="col-md-8 resizable_flex_column">
<h6>CRUD Connection</h6>
<crud-toolbar label="Connection Id" id="crudConnection" style="flex-grow: 1;">
<crud-toolbar label="Connection Id" id="crudConnection" style="flex-grow: 1;" extraeditclass="editForgroundBig">
<div class="input-group input-group-sm mb-1">
<label class="input-group-text">Template</label>
<div class="btn-group dropend">
Expand Down
2 changes: 1 addition & 1 deletion ui/modules/things/featureMessages.ts
Expand Up @@ -45,7 +45,7 @@ export async function ready() {
Utils.addTab(
document.getElementById('tabItemsFeatures'),
document.getElementById('tabContentFeatures'),
'send Message',
'Send Message',
featureMessagesHTML,
);

Expand Down
2 changes: 1 addition & 1 deletion ui/modules/things/features.html
Expand Up @@ -34,7 +34,7 @@ <h5 data-bs-toggle="collapse" data-bs-target="#collapseFeatures">
</ul>
<div class="tab-content" style="flex-grow: 1;" id="tabContentFeatures">
<div class="tab-pane container active no-margin" id="tabCrudFeature">
<crud-toolbar id="crudFeature" label="Feature ID">
<crud-toolbar id="crudFeature" label="Feature ID" extraeditclass="editForgroundBig">
<div class="input-group input-group-sm mb-1">
<label class="input-group-text">Definition</label>
<input type="text" class="form-control" id="inputFeatureDefinition" disabled></input>
Expand Down
2 changes: 1 addition & 1 deletion ui/modules/things/thingMessages.ts
Expand Up @@ -40,7 +40,7 @@ export async function ready() {
Utils.addTab(
document.getElementById('tabItemsThing'),
document.getElementById('tabContentThing'),
'send Message',
'Send Message',
messagesHTML,
);

Expand Down

0 comments on commit 7846f78

Please sign in to comment.