mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
3aac027a13
Summary: Includes the following changes: * Adds "Click to expand" hover tooltip to all images * Adds support for minimize/maximize by double clicking tutorial popup header * Add New menu (and all other popups) should now persist when user moves tutorial popup * Preserves scrollbar position when minimizing and maximizing tutorial popup * Formula cell editor (and other elements) should now be stacked under tutorial Test Plan: Browser and manual tests. Reviewers: jarek Reviewed By: jarek Differential Revision: https://phab.getgrist.com/D3864
41 lines
660 B
CSS
41 lines
660 B
CSS
html {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
body {
|
|
height: 100%;
|
|
font-family: sans-serif;
|
|
font-size: 1.2rem;
|
|
margin: 0;
|
|
padding: 0;
|
|
background: var(--grist-theme-bg, url('img/gplaypattern.png'));
|
|
background-color: var(--grist-theme-bg-color, unset);
|
|
}
|
|
|
|
.g-help {
|
|
position: absolute;
|
|
top: 10%;
|
|
left: 10%;
|
|
height: 80%;
|
|
width: 80%;
|
|
z-index: var(--grist-modal-z-index);
|
|
|
|
padding: 1rem;
|
|
|
|
background-color: rgba(0, 0, 0, .8);
|
|
|
|
-webkit-border-radius: 1rem;
|
|
-moz-border-radius: 1rem;
|
|
border-radius: 1rem;
|
|
|
|
color: #fff;
|
|
font-size: 1.4rem;
|
|
overflow: auto;
|
|
}
|
|
|
|
.g-help-table {
|
|
width: 100%;
|
|
margin-bottom: 2rem;
|
|
}
|