blob: 8007e8d43dc0ce627bb0a6e9f33808870014eee7 (
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
|
@use '../../NewLightboxStyles.scss' as newstyles;
.lb-editableText,
.lb-displayText {
padding: 4px 7px !important;
border: newstyles.$standard-border !important;
border-color: newstyles.$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: newstyles.$blue-l1;
}
}
.lb-displayText {
cursor: text !important;
width: 100%;
display: flex;
align-items: center;
font-size: inherit;
}
|