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
52 lines
998 B
CSS
52 lines
998 B
CSS
.record-add .field_clip {
|
|
background-color: inherit;
|
|
}
|
|
.transform_field {
|
|
background-color: #FEFFE8;
|
|
}
|
|
|
|
@media not print {
|
|
.formula_field, .formula_field_edit {
|
|
padding-left: 18px;
|
|
}
|
|
.formula_field_edit {
|
|
color: #D0D0D0;
|
|
}
|
|
|
|
.formula_field::before, .formula_field_edit::before {
|
|
content: '=';
|
|
position: absolute;
|
|
left: 2px;
|
|
top: 4px;
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 2px;
|
|
line-height: 12px;
|
|
font-family: sans-serif;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
color: white;
|
|
}
|
|
|
|
.formula_field::before {
|
|
background-color: #D0D0D0;
|
|
}
|
|
.formula_field_edit::before {
|
|
background-color: var(--grist-color-cursor);
|
|
}
|
|
.formula_field.invalid::before {
|
|
background-color: white;
|
|
color: #ffb6c1;
|
|
}
|
|
.formula_field_edit.invalid::before {
|
|
background-color: var(--grist-color-cursor);
|
|
color: #ffb6c1;
|
|
}
|
|
}
|
|
|
|
.invalid-text input {
|
|
background-color: #ffb6c1;
|
|
}
|