ui/css/treeherder.css (61 lines of code) (raw):

html, body { height: 100%; font-size: 14px; line-height: 1.42; overflow: hidden; } #root { display: flex; flex-direction: column; height: 100%; } .height-minus-navbars { height: calc(100% - 63px); } .th-global-content { /* Always show the scrollbar to avoid the layout change * depending on the content */ overflow-y: scroll; overflow-x: hidden; height: 100%; } .dropdown-item.disabled { cursor: not-allowed; font-style: italic; } /* * Resizer between PushList and DetailsPanel */ .SplitPane.horizontal { top: inherit !important; position: inherit !important; } .Resizer { background: #000; opacity: 0.2; z-index: 1; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; -moz-background-clip: padding; -webkit-background-clip: padding; background-clip: padding-box; } .Resizer:hover { -webkit-transition: all 2s ease; transition: all 2s ease; } .Resizer.horizontal { height: 11px; margin: -5px 0; border-top: 5px solid rgba(255, 255, 255, 0); border-bottom: 5px solid rgba(255, 255, 255, 0); cursor: row-resize; width: 100%; } .Resizer.horizontal:hover { border-top: 5px solid rgba(0, 0, 0, 0.5); border-bottom: 5px solid rgba(0, 0, 0, 0.5); } .Resizer.disabled { cursor: not-allowed; } .Resizer.disabled:hover { border-color: transparent; }