Fix quick format background (#3638)

This commit is contained in:
windingwind 2024-01-30 14:58:50 +08:00 committed by GitHub
parent a12c032ab9
commit 1375de4ba2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 8 additions and 3 deletions

View file

@ -19,7 +19,6 @@ window.citation-dialog {
}
.citation-dialog.search {
background: white;
padding: 2px 2px 0 2px;
margin: 2.5px 3.5px;
border: 1px solid rgba(0, 0, 0, 0.5);

View file

@ -7,7 +7,6 @@ body {
}
.citation-dialog.search {
background: white;
padding: 0 2px 0 0;
border: 1px solid rgba(0, 0, 0, 0.5);
-moz-appearance: textfield;

View file

@ -5,7 +5,6 @@ window.citation-dialog {
}
.citation-dialog.search {
background: white;
padding: 2px 2px 2px 0;
border: 1px solid rgba(0, 0, 0, 0.5);
border-radius: 10px;

View file

@ -26,6 +26,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" style="height: 100%">
<head>
<link rel="stylesheet" type="text/css" href="chrome://zotero/skin/integration.css"/>
<link rel="stylesheet" type="text/css" href="chrome://zotero-platform/content/zotero.css"/>
<link rel="stylesheet" type="text/css" href="chrome://zotero-platform/content/integration.css"/>
</head>
<body contenteditable="true" spellcheck="false" class="citation-dialog editor"></body>

View file

@ -139,6 +139,7 @@
padding: 0;
padding-top: 0;
padding-bottom: 0;
background: white;
}
.citation-dialog.iframe {
@ -154,6 +155,12 @@
outline: none;
line-height: 2em;
background: white;
color: black;
}
.citation-dialog.editor::selection {
color: white;
background: var(--color-accent);
}
.citation-dialog.spinner {