mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
1654a2681f
Summary: This moves all client code to core, and makes minimal fix-ups to get grist and grist-core to compile correctly. The client works in core, but I'm leaving clean-up around the build and bundles to follow-up. Test Plan: existing tests pass; server-dev bundle looks sane Reviewers: dsagal Reviewed By: dsagal Differential Revision: https://phab.getgrist.com/D2627
39 lines
713 B
CSS
39 lines
713 B
CSS
.view_config_draggable_field {
|
|
position: relative;
|
|
margin: .2rem .5rem;
|
|
padding: .2rem;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.view_config_draggable_field:hover {
|
|
background-color: var(--color-list-item-hover);
|
|
}
|
|
|
|
.view_config_draggable_field > .drag_delete {
|
|
float: none;
|
|
position: absolute;
|
|
top: 0.3rem;
|
|
right: 0.2rem;
|
|
|
|
background-color: white;
|
|
padding: 0.2rem;
|
|
border-radius: 1rem;
|
|
margin: 0;
|
|
}
|
|
|
|
.view_config_draggable_field > .drag_delete:hover {
|
|
color: black;
|
|
}
|
|
|
|
.view_config_field_group.kf_collapser {
|
|
font-size: inherit;
|
|
font-weight: bold;
|
|
margin: 1rem .5rem;
|
|
}
|
|
|
|
.view_config_draggable_field > .kf_draggable_content {
|
|
display: inline;
|
|
}
|