mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-13 16:06:21 +00:00
dd43acecea
* Added VSCode settings to git repo. Now you can match yours with mine, if you want. * Added .jsbeautifyrc for js-beautify (to be used by VSCode's Beautify extension). * Refactored all instances of require('**/*.js') with require('**/*') wherever applicable (basically gotten rid of the .js extension). * Refactored path in all instances of require() wherever applicable. * Sorted instances of require() wherever applicable. * Fixed 500 HTTP error trying to load an error page for 505 HTTP error. * Removed special treatement of NoJS page from uploadsController.processFilesForDisplay(). * Updated version string of all static files. * Beautified all HTML, HANDLEBARS and CSS files. * Refactored the structure of footer links in homepage and No-JS uploader. This should now fix homepage going out-of-bound in smaller screens. * Added CSS prefixes wherever applicable. * Improved back-end side of No-JS uploader. This will now handle errors properly. * No-JS uploader will now show max file size. * No-JS uploader will now show a proper message when private mode is enabled and/or registration is disabled.
32 lines
469 B
CSS
32 lines
469 B
CSS
input {
|
|
background: rgba(0, 0, 0, 0);
|
|
}
|
|
|
|
input,
|
|
a {
|
|
border-left: 0px;
|
|
border-top: 0px;
|
|
border-right: 0px;
|
|
border-radius: 0px;
|
|
-webkit-box-shadow: 0 0 0;
|
|
box-shadow: 0 0 0;
|
|
}
|
|
|
|
.select-wrapper {
|
|
text-align: center;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#login .input {
|
|
border-top: 0;
|
|
border-right: 0;
|
|
border-left: 0;
|
|
border-radius: 0;
|
|
padding-right: calc(0.75em + 1px);
|
|
padding-left: calc(0.75em + 1px);
|
|
}
|
|
|
|
#login .control .button {
|
|
border-radius: 0;
|
|
}
|