mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
f1cf92aca1
Summary: Fixes and features for the unreleased Add Column menu. Test Plan: Manual. Reviewers: jarek Reviewed By: jarek Subscribers: jarek Differential Revision: https://phab.getgrist.com/D4076
56 lines
1.3 KiB
CSS
56 lines
1.3 KiB
CSS
.record-add .field_clip {
|
|
background-color: var(--grist-theme-table-add-new-bg, inherit);
|
|
}
|
|
|
|
@media not print {
|
|
.formula_field, .formula_field_edit {
|
|
padding-left: 18px;
|
|
}
|
|
.formula_field_edit {
|
|
color: #D0D0D0;
|
|
}
|
|
|
|
.formula_field .field-icon,
|
|
.formula_field_edit::before,
|
|
.formula_field_sidepane::before {
|
|
/* based on standard icon styles */
|
|
content: "";
|
|
position: absolute;
|
|
top: 4px;
|
|
left: 2px;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
-webkit-mask-repeat: no-repeat;
|
|
-webkit-mask-position: center;
|
|
-webkit-mask-size: contain;
|
|
-webkit-mask-image: var(--icon-FunctionResult);
|
|
width: 16px;
|
|
height: 16px;
|
|
background-color: var(--icon-color, black);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.formula_field .field-icon, .formula_field_edit::before {
|
|
background-color: #D0D0D0;
|
|
}
|
|
.formula_field_edit:not(.readonly)::before {
|
|
background-color: var(--grist-color-cursor);
|
|
}
|
|
.formula_field.invalid .field-icon {
|
|
background-color: white;
|
|
color: #ffb6c1;
|
|
}
|
|
.formula_field_edit.invalid::before {
|
|
background-color: var(--grist-color-cursor);
|
|
color: #ffb6c1;
|
|
}
|
|
|
|
.readonly_editor .formula_field_edit::before {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.invalid-text input {
|
|
background-color: #ffb6c1;
|
|
}
|