diff options
| author | oweissbarth | 2014-03-17 20:44:55 +0100 |
|---|---|---|
| committer | oweissbarth | 2014-03-17 20:44:55 +0100 |
| commit | ac5891a49fe76808195f0e7bb9856e98ac1aed5a (patch) | |
| tree | a1df3f9f1b3270fd233714a29964eec6694ed503 /www/static/browser.css | |
| parent | 3027a0481cb7295e42dbae01577032cbb98134bc (diff) | |
| download | files.iamfabulous.de-ac5891a49fe76808195f0e7bb9856e98ac1aed5a.tar.gz | |
Added directory creation to the browser and fixed all the bugs in func_folder
Diffstat (limited to 'www/static/browser.css')
| -rw-r--r-- | www/static/browser.css | 90 |
1 files changed, 89 insertions, 1 deletions
diff --git a/www/static/browser.css b/www/static/browser.css index 21ef4ad..a6031dc 100644 --- a/www/static/browser.css +++ b/www/static/browser.css @@ -17,10 +17,98 @@ width: 100% table tr td { padding-left: 0; padding-right: 0; + height: 30px; margin: 0; - + border: none; } a{ text-decoration: none; color: black; +/* outline: 1px solid red;*/ +} + +td{ +/* outline: 1px solid black;*/ +} + +#menu{ + position: fixed; + top:0; + right: 0; + margin-top: 10px; + margin-right: 30px; +} + +.menu-item{ + height: 45px; + width: 45px; + margin: 10px; + display:inline-block; +} + +.menu-item:hover{ + margin: 10px; + background:#2669AB; + height: 45px; + width: 45px; + border-radius: 10px; + box-shadow: 3px -3px 5px black; +} + +#new-folder-bg{ + width: 100%; + height: 100%; + background: white; + position: fixed; + z-index: 99; + top: 0px; + opacity: 0.75; + visibility: hidden; +} + +#new-folder-form{ + +} + +#new-folder-area{ + height: 190px; + width: 400px; + position: fixed; + top: 50%; + margin-top: -100px; + + padding: 10px; + + left: 50%; + margin-left: -200px; + + border: 1px solid black; +} + + +input.new-folder-input[type=text], input.new-folder-input[type=checkbox]{ + border: none; + box-shadow: inset 0px 0px 1px 1px #1F3D4C; + border-radius: 0; + height: 40px; + font-size: 25px; + margin-top: 15px; + width: 395px; + display:block; + padding-left: 5px; +} + +input.new-folder-input:focus{ + background: #D6E0E5 +} + +#button-input{ + height: 40px; + width: 120px; + display:inline; + border: none; + box-shadow: inset 0px 0px 1px 1px #1F3D4C; + border-radius: 0; + font-size: 25px; + margin-top: 15px; } |
