32 lines
624 B
SCSS
32 lines
624 B
SCSS
|
|
.btn.o_field_translate {
|
|
position: absolute;
|
|
right: 5px;
|
|
top: 5px;
|
|
vertical-align: top;
|
|
text-align: right;
|
|
visibility: hidden;
|
|
|
|
&, .o_web_client.o_touch_device & {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
.o_field_widget {
|
|
&:hover,
|
|
&:focus-within {
|
|
.btn.o_field_translate {
|
|
visibility: visible;
|
|
}
|
|
}
|
|
|
|
input, textarea {
|
|
&.o_field_translate, &.o_field_placeholder {
|
|
padding-right: $o-field-translate-padding;
|
|
}
|
|
&.o_field_translate.o_field_placeholder {
|
|
padding-right: $o-field-translate-padding * 2;
|
|
}
|
|
}
|
|
}
|