diff options
author | Jakob Sack <kde@jakobsack.de> | 2011-03-02 23:06:23 +0100 |
---|---|---|
committer | Jakob Sack <kde@jakobsack.de> | 2011-03-02 23:06:23 +0100 |
commit | 61ffa182ee90e1a08538f438fb5528e32b3cf70a (patch) | |
tree | a45392a2a35a3504e2b7c26195a94ec042e7255c /files/css | |
parent | e5ea0a3daa307d6df6c864d13adcf733a286213e (diff) | |
download | nextcloud-server-61ffa182ee90e1a08538f438fb5528e32b3cf70a.tar.gz nextcloud-server-61ffa182ee90e1a08538f438fb5528e32b3cf70a.zip |
Application "files" is able to list the files again, start of splitting css files
Diffstat (limited to 'files/css')
-rw-r--r-- | files/css/files.css | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/files/css/files.css b/files/css/files.css new file mode 100644 index 00000000000..8ab07d45241 --- /dev/null +++ b/files/css/files.css @@ -0,0 +1,48 @@ +/* FILE MENU */ + +#file_menu +{ + display: none; + position: absolute; + background-color: #EEE; +} + +#file_menu ul +{ + list-style-type: none; +} + +#file_menu li a +{ + display: block; + padding: 0.5em 5em 0.5em 2em; + text-decoration: none; +} + +/* FILE TABLE */ + +table td.filesize, table td.date +{ + width: 5em; + padding: 0.5em 1em; + text-align: right; +} + +table td.date +{ + width: 11em; +} + +table td.selection, table th.selection, table td.fileaction +{ + width: 2em; + text-align: center; +} + +table td.filename a +{ + display: block; + background-image: url(../img/file.png); + text-decoration: none; +} + |