src/draft-components/grid/grid.css [31:131]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
}

.row {
  background-color: #fff;
  border-bottom: 1px solid #c2c2c2;
  display: flex;
}

.grid-header .row {
  border-bottom: none;
}

.row:nth-child(even) {
  background-color: #f4f6f7;
}

.row.selected-row {
  background-color: #b5daf6;
}

.row:focus {
  background-color: #0067b8;
  color: #fff;
  outline: 4px solid transparent;
}

.selection-indicator {
  display: block;
  height: 1.6em;
  position: relative;
  width: 1.6em;
}

.checkbox-cell .selection-indicator {
  background: #fff;
  border: 1px solid #333;
}

input:focus ~ .selection-indicator {
  box-shadow: 0 0 1px 3px #0067b8;
  outline: 4px solid transparent;
}

input:checked ~ .selection-indicator::after,
.selected-row .selection-indicator::after {
  content: "";
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  height: 1em;
  left: 0.5em;
  position: absolute;
  top: 0.1em;
  transform: rotate(45deg);
  width: 0.5em;
}

.indeterminate input:checked ~ .selection-indicator::after {
  border-right: 0;
  height: 0.75em;
  transform: none;
}

.cell {
  align-items: center;
  border-left: 1px solid #c2c2c2;
  display: flex;
  flex: 1 100%;
  min-width: 180px;
  padding: 0;
  text-overflow: ellipsis;
}

.cell:focus {
  background-color: #0067b8;
  color: #fff;
  outline: 4px solid transparent;
}

.cell:first-child,
.col:first-child {
  border-left: 0;
}

.cell.editing {
  align-items: stretch;
  padding: 0;
}

.cell-content,
.cell-edit {
  min-width: 100px;
  padding: 0.5em 1em;
  width: 100%;
}

.cell-content {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/draft-components/gridv2/grid.css [31:131]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
}

.row {
  background-color: #fff;
  border-bottom: 1px solid #c2c2c2;
  display: flex;
}

.grid-header .row {
  border-bottom: none;
}

.row:nth-child(even) {
  background-color: #f4f6f7;
}

.row.selected-row {
  background-color: #b5daf6;
}

.row:focus {
  background-color: #0067b8;
  color: #fff;
  outline: 4px solid transparent;
}

.selection-indicator {
  display: block;
  height: 1.6em;
  position: relative;
  width: 1.6em;
}

.checkbox-cell .selection-indicator {
  background: #fff;
  border: 1px solid #333;
}

input:focus ~ .selection-indicator {
  box-shadow: 0 0 1px 3px #0067b8;
  outline: 4px solid transparent;
}

input:checked ~ .selection-indicator::after,
.selected-row .selection-indicator::after {
  content: "";
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  height: 1em;
  left: 0.5em;
  position: absolute;
  top: 0.1em;
  transform: rotate(45deg);
  width: 0.5em;
}

.indeterminate input:checked ~ .selection-indicator::after {
  border-right: 0;
  height: 0.75em;
  transform: none;
}

.cell {
  align-items: center;
  border-left: 1px solid #c2c2c2;
  display: flex;
  flex: 1 100%;
  min-width: 180px;
  padding: 0;
  text-overflow: ellipsis;
}

.cell:focus {
  background-color: #0067b8;
  color: #fff;
  outline: 4px solid transparent;
}

.cell:first-child,
.col:first-child {
  border-left: 0;
}

.cell.editing {
  align-items: stretch;
  padding: 0;
}

.cell-content,
.cell-edit {
  min-width: 100px;
  padding: 0.5em 1em;
  width: 100%;
}

.cell-content {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



