chromium/components/sync/service/resources/sync_node_browser.css

/* Copyright 2012 The Chromium Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file. */

#sync-node-browser-refresher {
  border-bottom: 1px rgb(160,160,160) solid;
}

#sync-node-browser-refresher > * {
  display: inline-block;
}

#sync-node-browser-container {
  display: flex;
  height: 750px;
}

#sync-node-tree-container {
  box-sizing: border-box;
  height: 100%;
  /* min-width and max-width are used by the split pane. */
  max-width: 50%;
  min-width: 200px;
  overflow: auto;
  padding-inline-start: 10px;
  width: 200px;
}

#sync-node-tree {
  display: inline-block;
  min-width: 100%;
  overflow: visible; /* let the container do the scrolling */
}

/* TODO(akalin): Find a better icon to use for leaf nodes. */
#sync-node-tree {
  --cr-tree-item-leaf-icon: url(star_small.png);
}

#sync-node-splitter {
  background-color: rgb(235, 239, 249);
  cursor: col-resize;
  min-width: 5px;
<if expr="is_win">
  /* TODO(akalin): Make the BMM also use this style. */
  cursor: e-resize;
</if>
}

#sync-node-details-container {
  flex: 1;
  height: 100%;
  overflow: auto;
  visibility: hidden;  /* Element is invisible until first refresh. */
}

#node-details {
  flex-grow: 1;
  overflow: auto;
}

#node-details td {
  vertical-align: top;
  white-space: nowrap;
}

#node-details tr:nth-child(odd) {
  background: rgb(239, 243, 255);
}