aboutsummaryrefslogtreecommitdiffstats
path: root/files/css/files.css
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-06-02 20:32:12 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-06-02 20:35:14 +0200
commit016a892a78472cc954f1e26feba0facfe4c893d5 (patch)
tree44f2d757aa67f2a7fb8e62bbd2822e67601b2d0f /files/css/files.css
parentfa140555e82cfd4fd42bf83ab8f9912141e8966c (diff)
parent5d3cf06c73bcf805dfcf2f3d12330ac90d8a7179 (diff)
downloadnextcloud-server-016a892a78472cc954f1e26feba0facfe4c893d5.tar.gz
nextcloud-server-016a892a78472cc954f1e26feba0facfe4c893d5.zip
merge refactoring in master
Diffstat (limited to 'files/css/files.css')
-rw-r--r--files/css/files.css86
1 files changed, 86 insertions, 0 deletions
diff --git a/files/css/files.css b/files/css/files.css
new file mode 100644
index 00000000000..c3f7d82aa6e
--- /dev/null
+++ b/files/css/files.css
@@ -0,0 +1,86 @@
+/* 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_upload_form, #file_newfolder_form {
+ display: inline;
+}
+
+#fileSelector, #file_upload_cancel, #file_newfolder_submit {
+ display: none;
+}
+
+#file_upload_start, #file_newfolder_name {
+ background-repeat: no-repeat;
+ background-position: 0.5em 0;
+ padding-left: 2em;
+}
+
+#file_upload_start {background-image:url(../../img/mimetypes/file.png);}
+
+#file_newfolder_name {
+ background-image:url(../../img/places/folder.png); font-weight: bold;
+ width: 14em;
+}
+
+#file_newfolder_submit {
+ width: 3em;
+}
+
+form input[type="button"], form input[type="text"]{
+ /* this is a dirty wurgaround, Jan needs to fix it in global css*/
+ font-size: 0.9em;
+}
+
+#file_upload_target {
+ display: none;
+}
+
+/* FILE TABLE */
+
+table {
+ width: 90%;
+}
+
+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;
+}
+