@@ -565,15 +565,6 @@ li p:last-child,
/** endregion **/
/* region FIXME: override elements (?) */
-a.block-control,
-a.block-control:hover {
- text-decoration: none;
- cursor: pointer;
- font-size: 14px;
- min-width: 10px;
- color: initial;
-}
-
h1.title {
margin-bottom: 1.5rem;
color: var(--ls-title-text-color, #222);
@@ -1,6 +1,16 @@
.blocks-container {
}
+.block-control,
+.block-control:hover {
+ text-decoration: none;
+ cursor: pointer;
+ font-size: 14px;
+ min-width: 10px;
+ color: initial;
+ user-select: none;
+}
+
.block-content {
min-height: 24px;
max-width: 100%;
@@ -201,8 +211,8 @@
.bullet-container {
display: flex;
- height: 13px;
- width: 13px;
+ height: 12px;
+ width: 12px;
border-radius: 50%;
justify-content: center;
align-items: center;
@@ -213,9 +223,14 @@
.bullet {
- width: 5px;
- height: 5px;
+ width: 6px;
+ height: 6px;
background-color: var(--ls-block-bullet-color, #394b59);
+ transition: transform .2s;
+ &:hover {
+ transform: scale(1.2);
+ }
&.bullet-closed {