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:
58
app/client/widgets/CheckBox.css
Normal file
58
app/client/widgets/CheckBox.css
Normal file
@@ -0,0 +1,58 @@
|
||||
|
||||
.widget_checkbox {
|
||||
position: relative;
|
||||
margin: -1px auto;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.field_clip.has_cursor > .widget_checkbox {
|
||||
cursor: pointer;
|
||||
box-shadow: inset 0 0 0 1px #606060;
|
||||
border-radius: 3px;
|
||||
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(252,252,252,1) 29%, rgba(239,239,239,1) 50%, rgba(232,232,232,1) 50%, rgba(242,242,242,1) 100%);
|
||||
}
|
||||
.widget_checkbox:hover:not(.disabled) {
|
||||
cursor: pointer;
|
||||
box-shadow: inset 0 0 0 1px #606060;
|
||||
border-radius: 3px;
|
||||
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(252,252,252,1) 29%, rgba(239,239,239,1) 50%, rgba(232,232,232,1) 50%, rgba(242,242,242,1) 100%);
|
||||
}
|
||||
|
||||
.widget_checkbox:active:not(.disabled) {
|
||||
background: linear-gradient(to bottom, rgba(147,180,242,1) 0%, rgba(135,168,233,1) 10%, rgba(115,149,218,1) 25%, rgba(115,150,224,1) 37%, rgba(115,153,230,1) 50%, rgba(86,134,219,1) 51%, rgba(130,174,235,1) 83%, rgba(151,194,243,1) 100%);
|
||||
}
|
||||
|
||||
.widget_checkbox:focus {
|
||||
outline: none !important;
|
||||
}
|
||||
|
||||
.widget_checkmark {
|
||||
position: relative;
|
||||
width: 6px;
|
||||
height: 12px;
|
||||
-ms-transform: rotate(40deg); /* IE 9 */
|
||||
-webkit-transform: rotate(40deg); /* Chrome, Safari, Opera */
|
||||
transform: rotate(40deg);
|
||||
left: 4px;
|
||||
top: 2px;
|
||||
}
|
||||
|
||||
.checkmark_stem {
|
||||
position: relative;
|
||||
width: 3px;
|
||||
height: 12px;
|
||||
background-color: #606060;
|
||||
border: 1px solid #606060;
|
||||
left: 3px;
|
||||
top: -5px;
|
||||
}
|
||||
|
||||
.checkmark_kick {
|
||||
position: relative;
|
||||
width: 3px;
|
||||
height: 3px;
|
||||
background-color: #606060;
|
||||
border: 1px solid #606060;
|
||||
top: 7px;
|
||||
}
|
||||
Reference in New Issue
Block a user