v0.2.82
This commit is contained in:
Generated
+1
-1
@@ -2581,7 +2581,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustpad"
|
name = "rustpad"
|
||||||
version = "0.2.81"
|
version = "0.2.82"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"argon2",
|
"argon2",
|
||||||
"aws-config",
|
"aws-config",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rustpad"
|
name = "rustpad"
|
||||||
version = "0.2.81"
|
version = "0.2.82"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
rust-version = "1.94"
|
rust-version = "1.94"
|
||||||
description = "Collaborative Markdown notepad built with Axum, WebSockets and SQLite, PostgreSQL and MySQL"
|
description = "Collaborative Markdown notepad built with Axum, WebSockets and SQLite, PostgreSQL and MySQL"
|
||||||
|
|||||||
+15
-10
@@ -2995,10 +2995,10 @@ dialog::backdrop {
|
|||||||
.file-code {
|
.file-code {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: minmax(0, 1fr) auto;
|
grid-template-columns: minmax(0, 1fr) auto;
|
||||||
gap: 5px;
|
gap: 6px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
min-height: 30px;
|
min-height: 34px;
|
||||||
padding: 3px 4px 3px 9px;
|
padding: 3px 4px 3px 10px;
|
||||||
border: 1px solid var(--border);
|
border: 1px solid var(--border);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
background: color-mix(in srgb, var(--surface-2) 74%, transparent);
|
background: color-mix(in srgb, var(--surface-2) 74%, transparent);
|
||||||
@@ -3010,16 +3010,19 @@ dialog::backdrop {
|
|||||||
|
|
||||||
.file-code-value {
|
.file-code-value {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 24px;
|
height: 28px;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0 2px;
|
||||||
border: 0;
|
border: 0;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
color: var(--text-secondary);
|
color: var(--text-secondary);
|
||||||
font: 11px/1.2 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
font-family: inherit;
|
||||||
|
font-size: 12.5px;
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: 28px;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -3027,11 +3030,13 @@ dialog::backdrop {
|
|||||||
color: var(--text);
|
color: var(--text);
|
||||||
}
|
}
|
||||||
|
|
||||||
.file-code-copy {
|
.file-code .file-code-copy {
|
||||||
min-width: 56px;
|
min-width: 58px;
|
||||||
min-height: 28px;
|
min-height: 30px;
|
||||||
padding: 4px 9px;
|
height: 30px;
|
||||||
|
padding: 0 10px;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
|
font-size: 12.5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.file-secondary-actions [data-show-file-code][aria-pressed="true"] {
|
.file-secondary-actions [data-show-file-code][aria-pressed="true"] {
|
||||||
|
|||||||
Reference in New Issue
Block a user