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
44 lines
735 B
CSS
44 lines
735 B
CSS
.preference_mask {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 10;
|
|
background-color: rgba(1, 1, 1, 0.3);
|
|
}
|
|
|
|
.preference_window {
|
|
position: absolute;
|
|
background-color: white;
|
|
display: inline-block;
|
|
padding: 10px 20px;
|
|
width: 60%;
|
|
margin: 20%;
|
|
box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.8);
|
|
}
|
|
|
|
.preference_title {
|
|
color: #546e7a;
|
|
text-align: left;
|
|
border-bottom: 1px solid rgba(0,0,0,.12);
|
|
font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
|
width: 100%;
|
|
height: 40px;
|
|
}
|
|
|
|
.preference_content {
|
|
width: 100%;
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
.preference_desc {
|
|
margin-left: 5px;
|
|
cursor: pointer;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.preference_footer > .kf_elem {
|
|
flex: 1 1 100%;
|
|
}
|