Skip to content

Commit ee8fe26

Browse files
committed
minor cosmetic changes
1 parent 6d36208 commit ee8fe26

3 files changed

Lines changed: 15 additions & 6 deletions

File tree

include/css/bottomdiv.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
}
6464

6565
.jo_tabs {
66-
overflow: visible;
66+
/* overflow: visible; */
6767
height: calc(100% - 30px);
6868
}
6969

@@ -121,6 +121,7 @@
121121
}
122122

123123
.jo_panelEntry {
124+
box-sizing: border-box;
124125
width: 100%;
125126
display: flex;
126127
flex-direction: row;

include/css/databasedialogs.css

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
.jo_templateListEntry {
1616
display: flex;
1717
flex-direction: column;
18-
width: 100%;
18+
width: calc(100% - 10px);
1919
padding: 2px 5px;
2020
border-bottom: 1px solid gray;
2121
user-select: none;
@@ -36,9 +36,6 @@
3636
background-color: var(--file-active-hover);
3737
}
3838

39-
.jo_templateList {
40-
padding: 10px;
41-
}
4239

4340
.jo_tle_secondline {
4441
font-size: 60%;
@@ -91,3 +88,14 @@
9188
border: none;
9289
margin: 5px 20px;
9390
}
91+
92+
.jo_createDatabaseFromTemplateTab {
93+
position: relative;
94+
height: 100%;
95+
}
96+
97+
.jo_templatelist {
98+
padding: 10px;
99+
height: 400px;
100+
overflow: auto;
101+
}

src/client/main/gui/DatabaseSettingsDialog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export class DatabaseSettingsDialog {
1919

2020
this.$dialog.append(jQuery(
2121
`<div class="jo_ds_heading">Datenbank-Einstellungen</div>
22-
<div style="width: 100%; margin-left: 10px">
22+
<div style="width: 100%; padding-left: 10px; box-sizing: border-box">
2323
<div class="jo_ds_settings" style="margin-left: 0px">
2424
<div class="jo_ds_settings_caption">Name der Datenbank:</div><div><input class="dialog-input jo_databasename" value="Neue Datenbank"></input></div>
2525
</div>

0 commit comments

Comments
 (0)