mirror of
https://github.com/cosmocode/sqlite.git
synced 2025-07-25 17:11:50 +00:00
46 lines
826 B
Plaintext
46 lines
826 B
Plaintext
.plugin_sqlite_admin {
|
|
div.commands {
|
|
display: flex;
|
|
|
|
ul {
|
|
flex-basis: 50%;
|
|
}
|
|
|
|
form {
|
|
input[type=file] {
|
|
border: none;
|
|
cursor: pointer;
|
|
width: 10em;
|
|
|
|
&::before {
|
|
content: "📁";
|
|
font-size: 1.5em;
|
|
}
|
|
}
|
|
|
|
input[type=file]::file-selector-button {
|
|
display: none;
|
|
}
|
|
|
|
input[type=file]:invalid + button {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
form.sqliteplugin {
|
|
fieldset {
|
|
width: 80%;
|
|
}
|
|
|
|
textarea.edit {
|
|
width: 95%;
|
|
height: 10em;
|
|
}
|
|
}
|
|
|
|
table td {
|
|
white-space: pre-wrap;
|
|
}
|
|
}
|