From 7a5c30d4d79da40a226d5b84aa2c769d58a6b74d Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 17 May 2014 15:50:08 +0200 Subject: [PATCH 1/5] separation of top three and medal colors removing in group ranking --- www/css/desktop.css | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/www/css/desktop.css b/www/css/desktop.css index e4941abd..c136154f 100644 --- a/www/css/desktop.css +++ b/www/css/desktop.css @@ -234,9 +234,7 @@ input[type="submit"][disabled]{text-shadow:1px 2px #d48c4e;background:#f9ac69;bo .cglist li p{margin:0;display:inline} .cglist .gbanner{width:40px;height:40px;border-radius:3px;display:inline;margin:5px 5px 0 0} .cglist .xp{display:block} -.cglist.rnkng li:nth-child(-n+3){border:3px solid #cd7f32;border-width:0 0 2px} -.cglist.rnkng li:nth-child(-n+2){border-color:#c0c0c0} -.cglist.rnkng li:nth-child(-n+1){border-color:#ffd700} +.cglist.rnkng li:nth-child(3){margin-bottom:16px} .cglist.rnkng li:nth-child(-n+3) a{display:inline-block;vertical-align:top;margin-top:10px} .cgqlist li{background:#fff;margin-bottom:5px;padding:3px} From 735bc02e1febd369c5b2c74a8474a98a50f1ccaa Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 17 May 2014 15:57:13 +0200 Subject: [PATCH 2/5] small & medium size classes for text input in tasks --- www/css/desktop.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/www/css/desktop.css b/www/css/desktop.css index c136154f..cb610713 100644 --- a/www/css/desktop.css +++ b/www/css/desktop.css @@ -153,6 +153,8 @@ input[type="submit"][disabled]{text-shadow:1px 2px #d48c4e;background:#f9ac69;bo .task strong{font-style:italic;font-weight:400} .task table{max-width:800px} .task td{background:#fff;padding:1px 5px;border:1px solid #d7d4cf} +.task input[type="text"].small{width:40px} +.task input[type="text"].medium{width:90px} /** Popup Notification **/ From eb96edffc40808b7a21507e70d0416e84a8d04ee Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 17 May 2014 16:02:14 +0200 Subject: [PATCH 3/5] show all quests button design --- views/html/quests/index.tpl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/views/html/quests/index.tpl b/views/html/quests/index.tpl index eb08bb7d..4b0f0801 100644 --- a/views/html/quests/index.tpl +++ b/views/html/quests/index.tpl @@ -76,5 +76,9 @@ -

+ From ebe359183f84c72b4104235b48c06292827dfa32 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 17 May 2014 16:15:21 +0200 Subject: [PATCH 4/5] ordered list for group listing in group quests --- views/html/charactergroupsquests/quest.tpl | 4 ++-- www/css/desktop.css | 10 ++++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/views/html/charactergroupsquests/quest.tpl b/views/html/charactergroupsquests/quest.tpl index aa620e35..55313bd1 100644 --- a/views/html/charactergroupsquests/quest.tpl +++ b/views/html/charactergroupsquests/quest.tpl @@ -65,7 +65,7 @@

-
    +
    1. format(new \DateTime($group['created']))?> @@ -73,5 +73,5 @@
    2. -
+
diff --git a/www/css/desktop.css b/www/css/desktop.css index cb610713..b0f7afaa 100644 --- a/www/css/desktop.css +++ b/www/css/desktop.css @@ -265,10 +265,9 @@ input[type="submit"][disabled]{text-shadow:1px 2px #d48c4e;background:#f9ac69;bo /** Charactergroup Quest **/ -.grpqlist li{background:#fff;margin-bottom:6px;padding:5px 15px 5px 0;font-size:.875em;border-radius:3px} -.grpqlist .date{padding:0 15px;border-right:1px solid #dad8d5} -.grpqlist .group{padding:0 15px} -.grpqlist .xp{float:right} +.grpqlist li{list-style-type:decimal;background:#fff;margin:0 0 6px 30px;padding:5px 15px;font-size:.875em;border-radius:3px} +.grpqlist .date{padding:0 15px 0 0;display:block} +.grpqlist .xp{display:block} .gqgllry li{display:inline-block} @@ -365,6 +364,9 @@ input[type="submit"][disabled]{text-shadow:1px 2px #d48c4e;background:#f9ac69;bo .gchars li{width:32%} +.grpqlist .date{float:left} +.grpqlist .xp{float:right} + .achmnts .xpbar{width:89%} .admnql span{float:right} From 8c5d05818b3c2d9d198f420ee1b2c3b36bd1d69f Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 17 May 2014 16:26:38 +0200 Subject: [PATCH 5/5] matrix option font sizing --- www/css/desktop.css | 1 + 1 file changed, 1 insertion(+) diff --git a/www/css/desktop.css b/www/css/desktop.css index b0f7afaa..5d6d8fb4 100644 --- a/www/css/desktop.css +++ b/www/css/desktop.css @@ -153,6 +153,7 @@ input[type="submit"][disabled]{text-shadow:1px 2px #d48c4e;background:#f9ac69;bo .task strong{font-style:italic;font-weight:400} .task table{max-width:800px} .task td{background:#fff;padding:1px 5px;border:1px solid #d7d4cf} +.task table option{font-size:0.675em} .task input[type="text"].small{width:40px} .task input[type="text"].medium{width:90px}