Skip to content
Snippets Groups Projects
Commit 30048a1d authored by Stefan Zimmermann's avatar Stefan Zimmermann
Browse files

css: Add cell hovering & more output style

parent 3bc2f0f0
No related branches found
No related tags found
No related merge requests found
......@@ -267,5 +267,49 @@
position: fixed;
z-index: 200;
border: thin solid #ababab;
border-radius: 2px;
border-right-width: 5px;
border-bottom-width: 2px;
border-radius: 5px;
border-bottom-right-radius: 5px;
background-color: rgba(255, 255, 255, 0.6);
box-shadow: 3px 3px 10px #777;
}
.output_wrapper.ganymede .out_prompt_overlay {
min-width: 5ex;
width: 5ex;
background-color: #ababab;
}
.output_wrapper.ganymede .prompt {
min-width: 5ex;
width: 5ex;
}
.output_wrapper.ganymede .output_subarea {
max-width: none;
}
.output_wrapper.ganymede .ui-resizable-se {
border-top-left-radius: 100%;
border-bottom-right-radius: 1px;
background-color: #ababab;
box-shadow: 2px 2px 2px #777;
}
.cell:hover .output_wrapper.ganymede {
border-color: #42A5F5;
}
.out_prompt_overlay:hover,
.output_wrapper.ganymede .out_prompt_overlay:hover {
background-color: #42A5F5;
}
.output_wrapper.ganymede .ui-resizable-se:hover {
background-color: #42A5F5;
}
.cell:hover {
background-color: #eee;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment