af608c8498
Since the resizers (the handles used to resize the panes) were getting bigger when selected, they obscured part of the scrollbar making the scrollbar too hard to select. Also, when they were snapped, the right resizer totally obscured the scrollbar. Bug: v8:7327 Change-Id: I04f3df00181df2265890ef54706091b3bc36f23e Notry: true Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1869191 Reviewed-by: Sigurd Schneider <sigurds@chromium.org> Commit-Queue: Sigurd Schneider <sigurds@chromium.org> Cr-Commit-Position: refs/heads/master@{#64421}
57 lines
976 B
CSS
57 lines
976 B
CSS
.content {
|
|
display: grid;
|
|
grid-template-areas:
|
|
"tabs"
|
|
"window";
|
|
grid-template-columns: 1fr;
|
|
grid-template-rows: auto 1fr;
|
|
min-height: calc(100vh);
|
|
}
|
|
|
|
.nav-tabs-container {
|
|
grid-area: tabs;
|
|
padding: 0px;
|
|
background-color: #999999;
|
|
border-bottom: 4px solid #CCCCCC;
|
|
}
|
|
|
|
.tab-content {
|
|
grid-area: window;
|
|
background-color: white;
|
|
padding: 0px;
|
|
display:none;
|
|
}
|
|
|
|
.tab-content.tab-default {
|
|
display: block;
|
|
}
|
|
|
|
ul.nav-tabs {
|
|
padding: 0px;
|
|
margin: 0px;
|
|
overflow: auto;
|
|
display: table-row;
|
|
min-height: 2ex;
|
|
}
|
|
|
|
.nav-tabs li {
|
|
display: inline-block;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
padding-top: 4px;
|
|
padding-bottom: 4px;
|
|
min-width: 20px;
|
|
text-decoration: none;
|
|
color: black;
|
|
text-align: center;
|
|
user-select: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.nav-tabs li:hover {
|
|
background-color: #EEEEEE;
|
|
}
|
|
|
|
.nav-tabs li.active {
|
|
background-color: #CCCCCC;
|
|
} |