mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +08:00

git-subtree-dir: apps/web-clipper git-subtree-mainline: b0e519071893ce9434dd3bb3a568b3e41332c718 git-subtree-split: 786d249a6effe0262859d05e6cb1737e5fc8bdd8
49 lines
615 B
CSS
49 lines
615 B
CSS
body {
|
|
width: 300px;
|
|
font-size: 12px;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.button {
|
|
margin: 3% auto;
|
|
padding: 4px;
|
|
text-align: center;
|
|
border: 1px solid #ccc;
|
|
border-radius: 3px;
|
|
background-color: #eee;
|
|
cursor: pointer;
|
|
color: black;
|
|
}
|
|
|
|
.wide {
|
|
min-width: 8em;
|
|
}
|
|
|
|
.full {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
#save-link-with-note-wrapper {
|
|
display: none;
|
|
}
|
|
|
|
#save-link-with-note-textarea {
|
|
width: 100%;
|
|
}
|
|
|
|
#save-button {
|
|
border-color: #0062cc;
|
|
background-color: #0069d9;
|
|
color: white;
|
|
}
|
|
|
|
#check-connection-button {
|
|
float: right;
|
|
margin-top: -6px;
|
|
}
|
|
|
|
button[disabled] {
|
|
color: #aaa;
|
|
}
|