Update jquery-ui.css to make the container's height reflect its content.

Create a new CSS rule to make tabs' content lower enough from the tabs' buttons.

Signed-off-by: Gökay Şatır <gokaysatir@collabora.com>
Change-Id: I3354b93711f1e93aa9c97c31b3717cad7b917351
This commit is contained in:
Gökay Şatır 2023-04-17 11:33:34 +03:00 committed by pedropintosilva
parent ac1b704264
commit 7e7dcd318f
2 changed files with 7 additions and 0 deletions

View file

@ -837,6 +837,9 @@ button.ui-button::-moz-focus-inner {
.ui-tabs {
position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
padding: .2em;
box-sizing: border-box;
height: fit-content;
overflow: hidden;
}
.ui-tabs .ui-tabs-nav {
margin: 0;

View file

@ -234,6 +234,10 @@ button.ui-tab.notebookbar {
border-radius: var(--border-radius);
}
.jsdialog .ui-tabs-content {
margin-top: 10px;
}
.ui-tabs-content .unobutton > img {
width: var(--btn-size);
height: var(--btn-size);