diff options
author | therazer <devnull@localhost> | 2010-11-15 18:53:36 +0100 |
---|---|---|
committer | therazer <devnull@localhost> | 2010-11-15 18:53:36 +0100 |
commit | 8218c2b3e47684d580f388603ea38c40374d4359 (patch) | |
tree | c4911eb38a63be22bc012636b32847f6e8977155 /module/web/media/default | |
parent | making filebrowser compatible with relative paths (diff) | |
download | pyload-8218c2b3e47684d580f388603ea38c40374d4359.tar.xz |
fixes for file browser
Diffstat (limited to 'module/web/media/default')
-rw-r--r-- | module/web/media/default/css/pathchooser.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/module/web/media/default/css/pathchooser.css b/module/web/media/default/css/pathchooser.css index f660b7c5a..894cc335e 100644 --- a/module/web/media/default/css/pathchooser.css +++ b/module/web/media/default/css/pathchooser.css @@ -1,4 +1,5 @@ table { + width: 90%; border: 1px dotted #888888; font-family: sans-serif; font-size: 10pt; @@ -18,6 +19,11 @@ a, a:visited { font-weight: bold; } +#paths { + width: 90%; + text-align: left; +} + .file_directory { color: #c0c0c0; } @@ -47,3 +53,16 @@ a, a:visited { .mtime { text-align: center; } + +.path_abs_rel { + color: #3c3c3c; + text-decoration: none; + font-weight: bold; + font-family: sans-serif; + font-size: 10pt; +} + +.path_abs_rel a { + color: #3c3c3c; + font-style: italic; +} |