mirror of
https://github.com/wavetermdev/backup.git
synced 2026-08-05 13:57:07 -07:00
Fix some more improper border radii (#184)
This commit is contained in:
@@ -10,7 +10,6 @@
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
position: relative;
|
|
||||||
border-radius: var(--block-border-radius);
|
border-radius: var(--block-border-radius);
|
||||||
|
|
||||||
.block-frame-icon {
|
.block-frame-icon {
|
||||||
@@ -150,21 +149,9 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
border-radius: 3px;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding-left: 7px;
|
padding-left: 7px;
|
||||||
|
|
||||||
&.hovered {
|
|
||||||
background: rgba(255, 255, 255, 0.2);
|
|
||||||
cursor: text;
|
|
||||||
transition: background 0.2s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.focused {
|
|
||||||
outline: 2px solid rgba(88, 193, 66, 0.5);
|
|
||||||
background: #181818;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-wrapper {
|
.input-wrapper {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
|
|
||||||
@@ -278,9 +265,8 @@
|
|||||||
border: 2px solid transparent;
|
border: 2px solid transparent;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
border-radius: var(--block-border-radius);
|
border-radius: calc(var(--block-border-radius) + 2px);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.block-focused {
|
&.block-focused {
|
||||||
.block-mask {
|
.block-mask {
|
||||||
border: 2px solid var(--accent-color);
|
border: 2px solid var(--accent-color);
|
||||||
|
|||||||
@@ -66,7 +66,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.tile-node {
|
.tile-node {
|
||||||
border-radius: var(--block-border-radius);
|
border-radius: calc(var(--block-border-radius) + 2px);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
&.dragging {
|
&.dragging {
|
||||||
|
|||||||
Reference in New Issue
Block a user