All files / src/list/status/StatusListItem StatusListItem.module.css

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 902x                                                                                                                                                                                  
.list {
  color: var(--zdt_statuslistitem_list_text);
  font-size: 13px;
  position: relative;
  cursor: pointer;
  list-style: none;
  min-height: 35px;
}
.withBorder {
  border-left: 1px solid var(--zdt_statuslistitem_default_border);
}
.small {
  padding: 7px 3px 7px 5px;
}
.medium {
  padding: 7px 20px;
}
.large {
  padding: 10px 3px 10px 25px;
  height: 48px;
}
.value,.multiLineValue {
  line-height: 1.5385;
}
.value {
  composes: dotted from '~@zohodesk/components/lib/common/common.module.css';
}
.multiLineValue{
  word-break: break-word;
  composes: clamp from '~@zohodesk/components/lib/common/common.module.css';
}
.withBorder.active {
  border-left-color: var(--zdt_statuslistitem_default_active_border);
}
 
.default.hover,
.default.effect:hover {
  background-color: var(--zdt_statuslistitem_default_effect_bg);
}
.primary.hover,
.primary.effect:hover,
.selected {
  background-color: var(--zdt_statuslistitem_primary_efffect_bg);
}
.secondary.hover,
.secondary.effect:hover {
  background-color: var(--zdt_statuslistitem_secondary_effect_bg);
}
.list.active.default,
.list.active.primary {
  background-color: var(--zdt_statuslistitem_primary_efffect_bg);
}
.list.active.secondary {
  background-color: var(--zdt_statuslistitem_secondary_effect_bg);
}
.secondary.hover,
.secondary.effect:hover,
.list.active.secondary {
  color: var(--zdt_statuslistitem_secondary_effect_text);
}
.tickIcon {
  color: var(--zdt_statuslistitem_tickicon);
  position: absolute;
  right: 20px;
  top:50%;
  transform: translateY(-50%);
}
.tickIcon > i {
  display: block;
}
.active.withTick {
  padding-right: 39px;
}
/* Status Type */
.statusType {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 13px;
}
.black {
  background-color: var(--zdt_statuslistitem_black_bg);
}
.orange {
  background-color: var(--zdt_statuslistitem_orange_bg);
}
.green {
  background-color: var(--zdt_statuslistitem_green_bg);
}