﻿/* Color Palette variables*/
/* Sizing Variables */
/* Background colors */
/* Media Query Mixins */
.timesheetFieldValueList {
  max-height: 200px;
  overflow: auto;
}
.timesheetFieldValue {
  display: inline-block;
  margin: 1px 5px 1px 0;
  padding: 5px;
  min-width: 10px;
  border: 1px solid silver;
  background: #FFFFFF;
  text-align: center;
}
.timesheetFieldValueDelete {
  padding-left: 5px;
  cursor: pointer;
}
.timesheetFieldValueDeleted {
  background-color: #F47C8A;
  text-decoration: line-through;
}
.timesheetFieldValueExpired {
  color: #ED3147;
}
.pointer {
  cursor: pointer;
}
.moveable {
  cursor: move;
}