aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/newlightbox/components/EditableText/EditableText.scss
blob: 7828538abf1fa2d4f7b008f2ee4a40f93c128581 (plain)
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
@import '../../NewLightboxStyles.scss';

.lb-editableText,
.lb-displayText {
    padding: 4px 7px !important;
    border: $standard-border !important;
    border-color: $gray-l2 !important;
}

.lb-editableText {
  -webkit-appearance: none;
  overflow: hidden;
  font-size: inherit;
  border: none;
  outline: none;
  width: 100%;
  margin: 0px;
  padding: 0px;
  box-shadow: none !important;
  background: none;

  &:focus {
    outline: none;
    background-color: $blue-l1;
  }
}

.lb-displayText {
  cursor: text !important;
  width: 100%;
  display: flex;
  align-items: center;
  font-size: inherit;
}