blob: e4baf8d3fb63e44b6281ff4fdefec26ba4dbd4a4 (
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
35
36
37
|
#oe_snippets > .o_we_customize_panel we-customizeblock-option {
we-list {
we-title, we-button {
margin-top: $o-we-sidebar-content-field-spacing;
}
.oe_we_table_wraper {
margin-top: $o-we-sidebar-content-field-spacing;
max-height: 200px;
overflow-y: auto;
table {
table-layout: fixed;
width: 100%;
input {
width: 100%;
border: $o-we-sidebar-content-field-border-width solid $o-we-sidebar-content-field-border-color;
border-radius: $o-we-sidebar-content-field-border-radius;
padding: 0 $o-we-sidebar-content-field-clickable-spacing;
background-color: $o-we-sidebar-content-field-input-bg;
color: inherit;
font-family: $o-we-sidebar-content-field-input-font-family;
}
tr {
border: 1px solid rgba(white, 0.1);
border-left: none;
border-right: none;
}
td {
&:first-child, &:last-child {
width: 28px;
}
}
}
}
}
}
|