diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-02-16 10:39:43 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-02-16 10:39:43 +0100 |
commit | 46eaa480d1f80b7aa701d756de953050f7885f0c (patch) | |
tree | 3625e7f96a4712b65c8bb008a86087ddf4a99888 /pyload/webui/themes/Dark/css/pathchooser.css | |
parent | Improve theme structure a bit (diff) | |
download | pyload-46eaa480d1f80b7aa701d756de953050f7885f0c.tar.xz |
Fix filename case
Diffstat (limited to 'pyload/webui/themes/Dark/css/pathchooser.css')
-rw-r--r-- | pyload/webui/themes/Dark/css/pathchooser.css | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/pyload/webui/themes/Dark/css/pathchooser.css b/pyload/webui/themes/Dark/css/pathchooser.css new file mode 100644 index 000000000..204812aa1 --- /dev/null +++ b/pyload/webui/themes/Dark/css/pathchooser.css @@ -0,0 +1,68 @@ +table { + width: 90%; + border: 1px dotted #888888; + font-family: sans-serif; + font-size: 10pt; +} + +th { + background-color: #525252; + color: #E0E0E0; +} + +table, tr, td { + background-color: #F0F0F0; +} + +a, a:visited { + text-decoration: none; + font-weight: bold; +} + +#paths { + width: 90%; + text-align: left; +} + +.file_directory { + color: #c0c0c0; +} +.path_directory { + color: #3c3c3c; +} +.file_file { + color: #3c3c3c; +} +.path_file { + color: #c0c0c0; +} + +.parentdir { + color: #000000; + font-size: 10pt; +} +.name { + text-align: left; +} +.size { + text-align: right; +} +.type { + text-align: left; +} +.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; +} |