diff options
| author | oweissbarth | 2014-04-20 20:43:06 +0200 |
|---|---|---|
| committer | oweissbarth | 2014-04-20 20:43:06 +0200 |
| commit | 2a1a332c4e7625a40008d5c4565fca1bbf062d91 (patch) | |
| tree | ddbbc566bba7a2b0029350b03996990670ba797e /www/static | |
| parent | 7b3427b4278817df9443ae0de057e50b544d919f (diff) | |
| download | files.iamfabulous.de-2a1a332c4e7625a40008d5c4565fca1bbf062d91.tar.gz | |
Added close button to upload and new folder tool
Added up-button to the file browser
Removed nasty gaps in the file list
Added tooltips to the tools
Diffstat (limited to 'www/static')
| -rw-r--r-- | www/static/browser.css | 69 |
1 files changed, 51 insertions, 18 deletions
diff --git a/www/static/browser.css b/www/static/browser.css index c040695..e895b97 100644 --- a/www/static/browser.css +++ b/www/static/browser.css @@ -1,36 +1,54 @@ -tr:hover{ - background: #CCCCCC; +/************************************************ +File list +*************************************************/ +table tr td { + padding: 0; + height: 30px; + width: 100%; + margin: 0; +} + +td{ + width: 100%; } + tr{ width: 100%; - border: none; - } + +tr:hover{ + background: #CCCCCC; +} + table{ -width: 100% + width: 100%; } + #icon{ width: 35px; -} - -table tr td { - padding-left: 0; - padding-right: 0; - height: 30px; - margin: 0; border: none; } -a{ + + +a.file{ + display: block; text-decoration: none; color: black; -/* outline: 1px solid red;*/ + width:100%; + height: 30px; } -td{ -/* outline: 1px solid black;*/ +#up{ + font-weight: bold; } + + +/************************************************ +Menu +*************************************************/ + #menu{ position: fixed; top:0; @@ -55,6 +73,12 @@ td{ box-shadow: 3px -3px 5px black; } + +/************************************************ +Tools +*************************************************/ + + #new-folder-bg{ width: 100%; height: 100%; @@ -70,6 +94,7 @@ td{ } + #new-folder-area{ height: 190px; width: 400px; @@ -97,11 +122,11 @@ input.new-folder-input[type=text]{ padding-left: 5px; } -/*input.new-folder-input[type=checkbox]*/ input[type=checkbox]{ display:inline; margin-left: 5px; + margin-top: 10px; width: 10px; } @@ -164,4 +189,12 @@ input.upload-input[type=file]{ label{ display: inline; } -dis
\ No newline at end of file + +#close{ + font-size: 25px; + position: absolute; + top: 0; + right: 00px; + margin-right: 10px; + cursor: pointer; +}
\ No newline at end of file |
