From f6acd559d57dc4d1344befc8f3b1edd4dc47ff5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yi=C4=9Fit=20Kerem=20Oktay?= Date: Fri, 14 Aug 2020 12:09:12 +0300 Subject: [PATCH 1/3] Fix service labels not fitting inside container Service Labels are automatically pushed to a new line when there is no enough space --- classes/incident.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/incident.php b/classes/incident.php index 0385754..d8ff0dd 100644 --- a/classes/incident.php +++ b/classes/incident.php @@ -194,7 +194,7 @@ class Incident implements JsonSerializable service_name as $key => $value ) { - echo ''.$value . ' '; + echo ''.$value . ' '; } if (isset($this->end_date)){?> From 14e04d0737084168c2d948b4dfb0ea1235d7beaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yi=C4=9Fit=20Kerem=20Oktay?= Date: Fri, 14 Aug 2020 13:58:55 +0300 Subject: [PATCH 2/3] Patch 1.2 --- classes/incident.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/incident.php b/classes/incident.php index d8ff0dd..0385754 100644 --- a/classes/incident.php +++ b/classes/incident.php @@ -194,7 +194,7 @@ class Incident implements JsonSerializable service_name as $key => $value ) { - echo ''.$value . ' '; + echo ''.$value . ' '; } if (isset($this->end_date)){?> From ab085596ca0a9173e70b18c7982ce4fd9a2c78a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yi=C4=9Fit=20Kerem=20Oktay?= Date: Fri, 14 Aug 2020 14:00:38 +0300 Subject: [PATCH 3/3] Patch 1.3 --- css/main.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/css/main.css b/css/main.css index bea3c2a..0cb3ef6 100644 --- a/css/main.css +++ b/css/main.css @@ -615,4 +615,8 @@ body .h1,body .h2,body .h3,body h1,body h2,body h3 { label.form-name { line-height: 20px -} \ No newline at end of file +} +.panel .panel-footer .label +{ + display: inline-block; +}