blob: c403a3fd495325ce0019056632919450af63e7af [file] [log] [blame]
.data-grid {
position: relative;
border: 1px solid #aaa;
font-size: 11px;
line-height: 120%;
}
.data-grid .highlight {
background-color: rgb(255, 230, 179);
}
.data-grid tr.selected .highlight {
background-color: transparent;
}
.data-grid table {
table-layout: fixed;
border-spacing: 0;
border-collapse: collapse;
width: 100%;
}
.data-grid .data-container {
position: absolute;
top: 17px;
bottom: 0;
left: 0;
right: 0;
overflow-x: hidden;
overflow-y: overlay;
-webkit-transform: translateZ(0);
}
.data-grid.inline {
border-left: none;
}
.data-grid.inline .data-container {
position: static;
}
.data-grid.inline col.corner,
.data-grid.inline th.corner,
.data-grid.inline td.corner {
display: none;
}
.data-grid th.corner,
.data-grid td.corner,
.data-grid col.corner {
width: 14px;
padding-right: 0;
padding-left: 0;
border-left: 0 none transparent !important;
}
.data-grid tr.filler {
display: table-row !important;
height: auto !important;
}
.data-grid tr.filler td {
height: auto !important;
padding: 0 !important;
}
.data-grid table.data {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
height: 100%;
border-top: 0 none transparent;
background-image: linear-gradient(to bottom, white, white 50%, rgb(234, 243, 255) 50%, rgb(234, 243, 255));
background-size: 128px 32px;
table-layout: fixed;
}
.data-grid.inline table.data {
position: static;
}
.data-grid table.data tr {
display: none;
}
.data-grid table.data tr.revealed {
display: table-row;
}
.data-grid td,
.data-grid th {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
height: 16px; /* Keep in sync with .data-grid table.data @ background-size */
line-height: 14px;
border-left: 1px solid #aaa;
}
.data-grid:not(.inline) th:first-child,
.data-grid:not(.inline) td:first-child {
border-left: none !important;
}
.data-grid td {
vertical-align: top;
padding: 1px 4px;
-webkit-user-select: text;
}
.data-grid th {
text-align: left;
background-color: rgb(236, 236, 236);
border-bottom: 1px solid #aaa;
font-weight: normal;
vertical-align: middle;
padding: 0 4px;
}
.data-grid td > div,
.data-grid th > div {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.data-grid th > div {
overflow: hidden;
}
.data-grid td.editing > div {
text-overflow: clip;
}
.data-grid .center {
text-align: center;
}
.data-grid .right {
text-align: right;
}
.data-grid th.sortable div {
position: relative;
}
.data-grid th.sortable:active {
background-color: rgba(0, 0, 0, 0.15);
}
.data-grid th.sort-ascending > div::after,
.data-grid th.sort-descending > div::after {
position: absolute;
top: 1px;
right: 0;
background-image: url(Images/statusbarButtonGlyphs.png);
background-size: 320px 144px;
opacity: 0.5;
width: 8px;
height: 10px;
content: "a";
color: transparent;
}
@media (-webkit-min-device-pixel-ratio: 1.5) {
.data-grid th.sort-ascending > div::after,
.data-grid th.sort-descending > div::after {
background-image: url(Images/statusbarButtonGlyphs_2x.png);
}
} /* media */
.data-grid th.sort-ascending > div::after {
background-position: -4px -108px;
}
.data-grid th.sort-descending > div::after {
background-position: -20px -96px;
}
.data-grid th:hover {
background-color: rgba(0, 0, 0, 0.1);
}
.data-grid button {
line-height: 18px;
color: inherit;
}
.data-grid tr.parent td.disclosure::before {
-webkit-user-select: none;
-webkit-mask-image: url(Images/statusbarButtonGlyphs.png);
-webkit-mask-size: 320px 144px;
float: left;
width: 8px;
margin-right: 2px;
content: "a";
color: transparent;
position: relative;
top: 1px;
}
.data-grid tr.parent td.disclosure::before {
background-color: rgb(110, 110, 110);
-webkit-mask-position: -4px -96px;
}
@media (-webkit-min-device-pixel-ratio: 1.5) {
.data-grid tr.parent td.disclosure::before {
-webkit-mask-image: url(Images/statusbarButtonGlyphs_2x.png);
}
} /* media */
.data-grid tr.expanded td.disclosure::before {
-webkit-mask-position: -20px -96px;
}
.data-grid tr.selected {
background-color: rgb(212, 212, 212);
color: inherit;
}
.data-grid:focus tr.selected {
background-color: rgb(56, 121, 217);
color: white;
}
.data-grid:focus tr.selected a {
color: white;
}
.data-grid:focus tr.parent.selected td.disclosure::before {
background-color: white;
-webkit-mask-position: -4px -96px;
}
.data-grid:focus tr.expanded.selected td.disclosure::before {
background-color: white;
-webkit-mask-position: -20px -96px;
}
.data-grid tr:not(.parent) td.disclosure {
text-indent: 10px;
}
.data-grid-resizer {
position: absolute;
top: 0;
bottom: 0;
width: 5px;
z-index: 500;
}