Commit 940f5e70 by ramdayalmunda

fixes like cursor, e nter, backspace, width, numbering count and font size

parent 632d63be
...@@ -9,6 +9,10 @@ ...@@ -9,6 +9,10 @@
justify-content: flex-start; justify-content: flex-start;
} }
hidden {
display: none;
}
.header { .header {
position: relative; position: relative;
display: block; display: block;
...@@ -21,7 +25,31 @@ ...@@ -21,7 +25,31 @@
width: 100%; width: 100%;
background: pink; background: pink;
display: flex; display: flex;
gap: 10px; }
.toolbar [adc-type="menu-options"] {
position: absolute;
opacity: 0;
pointer-events: none;
border-radius: 5px;
background-color: goldenrod;
}
.toolbar [adc-type="menu-item"]:hover [adc-type="menu-options"] {
opacity: 1;
z-index: 10;
pointer-events: auto;
}
.toolbar [adc-type="menu-options"] [adc-type="sub-menu"] {
border-radius: 5px;
min-width: 100px;
padding: 5px;
background-color: goldenrod;
}
.toolbar [adc-type="menu-options"] [adc-type="sub-menu"]:hover {
background-color: gold;
} }
.toolbar .item { .toolbar .item {
...@@ -36,7 +64,8 @@ ...@@ -36,7 +64,8 @@
margin: 4px; margin: 4px;
cursor: pointer; cursor: pointer;
} }
.popover{
.popover {
position: absolute; position: absolute;
padding: 5px; padding: 5px;
background-color: gray; background-color: gray;
...@@ -44,32 +73,40 @@ ...@@ -44,32 +73,40 @@
opacity: 0; opacity: 0;
pointer-events: none; pointer-events: none;
} }
.popover.show{
.popover.show {
opacity: 1; opacity: 1;
pointer-events: auto; pointer-events: auto;
z-index: 10; z-index: 10;
} }
.toolbar .item:hover { .toolbar .item:hover {
background: #5fad5f; background: #5fad5f;
} }
[adc-type="popover"] { [adc-type="popover"] {
pointer-events: none; pointer-events: none;
} }
.small-input { .small-input {
width: 50px; width: 50px;
} }
.small-btn { .small-btn {
width: 25px; width: 25px;
} }
.option { .option {
border: 1px solid black; border: 1px solid black;
padding: 5px; padding: 5px;
margin: 5px; margin: 5px;
border-radius: 4px; border-radius: 4px;
} }
.option:hover { .option:hover {
background-color: #f5c468; background-color: #f5c468;
} }
.page-list { .page-list {
position: relative; position: relative;
display: block; display: block;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment