/**
 * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
 *
 * @providesModule intlInlineMode
 * @format
 */
/* stylelint-disable fb-www/use-variables  */
/* @lint-ignore-every CX5 Migrate this to use modular CSS classes from this module */

.intlInlineMode_normal {
  font-style: normal;
}

.intlInlineMode_translatable,
.intlInlineMode_approvable,
.intlInlineMode_reportable {
  background: none;
  font-style: normal;
  padding: 0px;
  width: auto;
}

.intlInlineMode_reportable {
  border-bottom: 1px solid #f99;
}

.intlInlineMode_translatable,
.intlInlineMode_approvable {
  border-bottom: 1px solid #999;
}

.intlInlineMode_translatable:hover,
.intlInlineMode_approvable:hover,
.intlInlineMode_reportable:hover {
  background-color: #fcc;
  border-top: 1px solid #ccc;
  cursor: help;
}
