mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) move client code to core
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
This commit is contained in:
38
app/client/components/ViewConfigTab.css
Normal file
38
app/client/components/ViewConfigTab.css
Normal file
@@ -0,0 +1,38 @@
|
||||
.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;
|
||||
}
|
||||
Reference in New Issue
Block a user