2020-10-02 15:10:00 +00:00
|
|
|
.g_record_layout_leaf {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.g_record_layout_editing {
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
cursor: move;
|
|
|
|
z-index: 5;
|
|
|
|
|
2022-09-06 01:51:57 +00:00
|
|
|
background-color: var(--grist-theme-card-editing-layout-bg, rgba(192, 192, 192, 0.2));
|
|
|
|
border-left: 1px solid var(--grist-theme-card-editing-layout-border, white);
|
|
|
|
border-top: 1px solid var(--grist-theme-card-editing-layout-border, white);
|
|
|
|
border-right: 1px solid var(--grist-theme-card-editing-layout-border, var(--grist-color-dark-grey));
|
|
|
|
border-bottom: 1px solid var(--grist-theme-card-editing-layout-border, var(--grist-color-dark-grey));
|
2020-10-02 15:10:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu .g_record_layout_newfield {
|
|
|
|
margin: 2px 1rem;
|
|
|
|
padding: 0px 0.5rem;
|
|
|
|
border: 2px outset rgba(160, 160, 255, 0.5);
|
|
|
|
background-color: rgba(233, 233, 233, 0.5);
|
|
|
|
cursor: move;
|
|
|
|
color: #666;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.g_record_delete_field {
|
|
|
|
position: absolute;
|
2022-12-20 02:06:39 +00:00
|
|
|
top: 2px;
|
|
|
|
right: 2px;
|
2020-10-02 15:10:00 +00:00
|
|
|
border-radius: 1rem;
|
2022-12-20 02:06:39 +00:00
|
|
|
color: var(--grist-theme-control-secondary-fg, #404040);
|
2020-10-02 15:10:00 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.g_record_layout_editing:hover > .g_record_delete_field {
|
|
|
|
display: block;
|
|
|
|
}
|