fix css, version 2.0

This commit is contained in:
No 2024-12-29 20:23:32 +00:00 committed by no@no.no
parent 3014762ae3
commit 627025751c
4 changed files with 6 additions and 6 deletions

View file

@ -66,7 +66,7 @@ body{
font-size:17px; font-size:17px;
} }
input[type="text"], input[type="password"]{ .new-input{
display: block; display: block;
width: 100%; width: 100%;
background: #222; background: #222;

View file

@ -34,7 +34,7 @@
</span> </span>
</header> </header>
<div id="search-bar-container"> <div id="search-bar-container">
<input id="search-bar" type="text" placeholder="Filter... term / :type / @site.tld"></input> <input id="search-bar" class="new-input" type="text" placeholder="Filter... term / :type / @site.tld"></input>
</div> </div>
<section id="files"></section> <section id="files"></section>
<div id="result-number-container"> <div id="result-number-container">

View file

@ -6,7 +6,7 @@
"48": "img/icon48.png", "48": "img/icon48.png",
"128": "img/icon128.png" "128": "img/icon128.png"
}, },
"version": "1.0.0.2", "version": "2.0.0",
"manifest_version": 2, "manifest_version": 2,
"permissions" : ["storage"], "permissions" : ["storage"],
"background": { "background": {

View file

@ -19,13 +19,13 @@
<h2>Storage</h2> <h2>Storage</h2>
<label for="webdav-address">WebDAV Address</label> <label for="webdav-address">WebDAV Address</label>
<input id="webdav-address" type="text" placeholder="https://example.com:1234/CustomWeb/"></input> <input id="webdav-address" class="new-input" type="text" placeholder="https://example.com:1234/CustomWeb/"></input>
<label for="webdav-username">WebDAV Username</label> <label for="webdav-username">WebDAV Username</label>
<input id="webdav-username" type="text" placeholder="username"></input> <input id="webdav-username" class="new-input" type="text" placeholder="username"></input>
<label for="webdav-password">WebDAV Password</label> <label for="webdav-password">WebDAV Password</label>
<input id="webdav-password" type="password" placeholder="********"></input> <input id="webdav-password" class="new-input" type="password" placeholder="********"></input>
<input id="webdav-push-all" type="button" value="Push all"></input> <input id="webdav-push-all" type="button" value="Push all"></input>
<input id="webdav-pull-all" type="button" value="Pull all"></input> <input id="webdav-pull-all" type="button" value="Pull all"></input>