|
|
@@ -10,18 +10,19 @@
|
|
|
font-weight: 300;
|
|
|
width: 600px;
|
|
|
padding: 25px;
|
|
|
- color: #999;
|
|
|
+ color: var(--text-primary);
|
|
|
border-radius: 4px;
|
|
|
border: 1px solid var(--stroke-primary);
|
|
|
outline: none;
|
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
|
|
|
+ background-color: var(--url-input-background);
|
|
|
|
|
|
&:focus {
|
|
|
border: 1px solid var(--stroke-emphasis);
|
|
|
}
|
|
|
|
|
|
&::placeholder {
|
|
|
- color: #ddd;
|
|
|
+ color: var(--text-super-muted);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -31,21 +32,25 @@
|
|
|
right: 0;
|
|
|
bottom: 0;
|
|
|
width: 64px;
|
|
|
- background-image: url("./close.svg");
|
|
|
- background-position: center center;
|
|
|
- background-repeat: no-repeat;
|
|
|
- background-size: 48px 48px;
|
|
|
cursor: pointer;
|
|
|
- transition: opacity 200ms cubic-bezier(0.77, 0, 0.175, 1);
|
|
|
opacity: 0;
|
|
|
pointer-events: none;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ color: var(--text-muted);
|
|
|
+
|
|
|
+ > span {
|
|
|
+ font-size: 38px;
|
|
|
+ }
|
|
|
|
|
|
&.visible {
|
|
|
- opacity: 0.3;
|
|
|
+ opacity: 0.6;
|
|
|
pointer-events: inherit;
|
|
|
}
|
|
|
|
|
|
&:hover {
|
|
|
- opacity: 0.6;
|
|
|
+ opacity: 1;
|
|
|
+ color: #b71111;
|
|
|
}
|
|
|
}
|