Sha256: df582a88e1236725ee9b793065cc7be3139bafd45fbe21856b009af1fdca9a4d

Contents?: true

Size: 904 Bytes

Versions: 4

Compression:

Stored size: 904 Bytes

Contents

.table {
  width: 100%;
  border: hidden 1px var(--border-color);

  /* Hack to get table row borders, see https://stackoverflow.com/a/2586780/2553104 */
  border-collapse: collapse;
  border-radius: 5px;
  box-shadow: 0 0 0 1px var(--border-color);
  table-layout: fixed;
}

.table th,
.table td {
  padding: 0.5rem 1rem;
}

.table thead tr {
  color: var(--grey-500);
}

.table tr:nth-child(even) {
  background: var(--grey-50);
}

.table thead th {
  font-weight: 400;
}

.table-filter-icon {
  width: 14px;
  margin-left: 0.5rem;
}

.table tbody tr:not(.no-row) {
  border: solid 1px var(--border-color);
  color: var(--grey-700);
  cursor: pointer;
}

.table tbody tr:not(.no-row):hover {
  background: var(--grey-100);
}

.request-checkbox {
  z-index: 1;
  width: 1rem;
  height: 1rem;
}

.request-path {
  overflow: hidden;
  max-width: 280px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rails_mini_profiler-0.7.3 app/javascript/stylesheets/components/profiled_request_table.scss
rails_mini_profiler-0.7.2 app/javascript/stylesheets/components/profiled_request_table.scss
rails_mini_profiler-0.7.1 app/javascript/stylesheets/components/profiled_request_table.scss
rails_mini_profiler-0.7.0 app/javascript/stylesheets/components/profiled_request_table.scss