|
|
@@ -51,7 +51,7 @@
|
|
|
height: 100%;
|
|
|
/*width:300px;*/
|
|
|
overflow-x: hidden;
|
|
|
- overflow-y: hidden;
|
|
|
+ overflow-y: scroll;
|
|
|
}
|
|
|
|
|
|
#toc_content{
|
|
|
@@ -60,6 +60,7 @@
|
|
|
max-width:270px;
|
|
|
background-color: var(--bg-color);
|
|
|
border-bottom: 1px solid var(--border-line-color);
|
|
|
+ overflow-y: unset;
|
|
|
}
|
|
|
|
|
|
.fun_frame {
|
|
|
@@ -226,4 +227,44 @@ img {
|
|
|
#article_path chapter:hover {
|
|
|
color: var(--link-hover-color);
|
|
|
text-decoration: underline;
|
|
|
+}
|
|
|
+.right_float_min #right_float_pannal {
|
|
|
+ left: calc(100% - 30vw + 0.6em);
|
|
|
+}
|
|
|
+#right_float_pannal {
|
|
|
+ position: fixed;
|
|
|
+ height: calc(100% - 7.3em);
|
|
|
+ top: 7.3em;
|
|
|
+ left: 100%;
|
|
|
+ width: calc(30vw - 0.6em);
|
|
|
+ min-width: 20vw;
|
|
|
+ color: var(--btn-color);
|
|
|
+ background-color: var(--tool-bg-color);
|
|
|
+ z-index: 20;
|
|
|
+ -webkit-transition-duration: 0.4s;
|
|
|
+ transition-duration: 0.4s;
|
|
|
+ -webkit-contain: strict;
|
|
|
+ contain: strict;
|
|
|
+ z-index: 51;
|
|
|
+}
|
|
|
+#right_float_pannal > iframe {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+.right_float_max #right_float_pannal {
|
|
|
+ left: 50%;
|
|
|
+ width: 50%;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+#right_float_pannal > #tool_bar {
|
|
|
+ /*position: absolute;*/
|
|
|
+ display: flex;
|
|
|
+ width: 100%;
|
|
|
+ justify-content: space-between;
|
|
|
+}
|
|
|
+#right_float_pannal > #tool_bar svg {
|
|
|
+ fill: var(--bg-color);
|
|
|
+ height: 2em;
|
|
|
+ width: 2em;
|
|
|
}
|