mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-25 11:51:07 +00:00
* Initial commit * Address PR comments * Move notebook related stuff to NotebookManager and dynamically load it * Add New gallery callout and other UI tweaks * Update test snapshot
27 lines
477 B
Plaintext
27 lines
477 B
Plaintext
@import "../../../../less/Common/Constants";
|
|
|
|
.notebookViewerContainer {
|
|
padding: 30px;
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.downloadButton {
|
|
background-color: #0078D4;
|
|
color: @BaseLight;
|
|
cursor: pointer;
|
|
padding: 5px;
|
|
border: none;
|
|
text-align: left;
|
|
outline: none;
|
|
font-size: @mediumFontSize;
|
|
border-radius: 5px;
|
|
display: "inline-block";
|
|
margin: 10px;
|
|
}
|
|
|
|
.active, .downloadButton:hover {
|
|
color: @BaseMedium;
|
|
}
|