Merge branch 'release/2019.12-05'

This commit is contained in:
Björn Fromme
2019-12-13 09:56:51 +01:00
7 changed files with 24 additions and 20 deletions
Generated
+7 -6
View File
@@ -889,16 +889,16 @@
}, },
{ {
"name": "guzzlehttp/guzzle", "name": "guzzlehttp/guzzle",
"version": "6.4.1", "version": "6.5.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/guzzle/guzzle.git", "url": "https://github.com/guzzle/guzzle.git",
"reference": "0895c932405407fd3a7368b6910c09a24d26db11" "reference": "dbc2bc3a293ed6b1ae08a3651e2bfd213d19b6a5"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/0895c932405407fd3a7368b6910c09a24d26db11", "url": "https://api.github.com/repos/guzzle/guzzle/zipball/dbc2bc3a293ed6b1ae08a3651e2bfd213d19b6a5",
"reference": "0895c932405407fd3a7368b6910c09a24d26db11", "reference": "dbc2bc3a293ed6b1ae08a3651e2bfd213d19b6a5",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -913,12 +913,13 @@
"psr/log": "^1.1" "psr/log": "^1.1"
}, },
"suggest": { "suggest": {
"ext-intl": "Required for Internationalized Domain Name (IDN) support",
"psr/log": "Required for using the Log middleware" "psr/log": "Required for using the Log middleware"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "6.3-dev" "dev-master": "6.5-dev"
} }
}, },
"autoload": { "autoload": {
@@ -951,7 +952,7 @@
"rest", "rest",
"web service" "web service"
], ],
"time": "2019-10-23T15:58:00+00:00" "time": "2019-12-07T18:20:45+00:00"
}, },
{ {
"name": "guzzlehttp/promises", "name": "guzzlehttp/promises",
@@ -80,7 +80,7 @@ class IcalService implements SingletonInterface
$percentageBooked = 100; $percentageBooked = 100;
if ($paxTotal > 0) { if ($paxTotal > 0 && Contingent::STATUS_BLOCKED !== $event->getStatus()) {
$percentageBooked = 100 - round($paxAvaiable / $paxTotal * 100); $percentageBooked = 100 - round($paxAvaiable / $paxTotal * 100);
} }
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

@@ -49,6 +49,7 @@ require('../images/icons/tx_eptheme_gridelements_two_quarters_and_half.png');
require('../images/logo_boarderweek.svg'); require('../images/logo_boarderweek.svg');
require('../images/favicon_sbw.ico'); require('../images/favicon_sbw.ico');
require('../images/logo_snowzone.svg'); require('../images/logo_snowzone.svg');
require('../images/logo_snowzone_2019.svg');
require('../images/favicon_sz.ico'); require('../images/favicon_sz.ico');
require('../images/logo_uni_champ.svg'); require('../images/logo_uni_champ.svg');
require('../images/favicon_uch.ico'); require('../images/favicon_uch.ico');
@@ -5,21 +5,21 @@
========================================================================== */ ========================================================================== */
//hover/active/link //hover/active/link
$link:#c31b63; $link:#82C3C6;
$bg:#9f0d4c; $bg:#82C3C6;
$bg_second: #3995DF; $bg_second: #3995DF;
$overlay:0.25; $overlay:0.25;
$overlayMid: 0.8; $overlayMid: 0.8;
$hover_low:0.15; $hover_low:0.15;
$color-overlay:rgba($bg, $overlayMid); $color-overlay:rgba($bg, $overlayMid);
$darkButton: #9f0d4c; $darkButton: #82C3C6;
$darkButtonLine: rgba($darkButton, 0.8); $darkButtonLine: rgba($darkButton, 0.8);
$color-bg-second:rgba($darkButton, 0.5); $color-bg-second:rgba($darkButton, 0.5);
$button: #ffe900; $button: #f9c33d;
$bgAlpha: rgba($link, 0.5); $bgAlpha: rgba($link, 0.5);
$buttonActiveHover: #e9d504; $buttonActiveHover: #f9c33d;
$buttonInfoHover:#04578e; $buttonInfoHover:#04578e;
$colorBlack: #404040; $colorBlack: #404040;
$typoWhite: #ffffff; $typoWhite: #ffffff;
@@ -16,8 +16,7 @@
&.snowzone{ &.snowzone{
.navbar-main-wrapper .navbar-main .logo{ .navbar-main-wrapper .navbar-main .logo{
height: 55px; height: 100px;
margin-top: 30px;
margin-left: 10%; margin-left: 10%;
@media (max-width: $smartphoneWidth) { @media (max-width: $smartphoneWidth) {
height: 100%; height: 100%;
@@ -27,13 +26,15 @@
} }
.btn, .btn {
color: white;
}
.ep-has-error-bar, .ep-has-error-bar,
.checkbox label input[type="checkbox"] + .cr > .cr-icon{ .checkbox label input[type="checkbox"] + .cr > .cr-icon{
color:$bg; color: white;
} }
.topnavi .container .row a{ .topnavi .container .row a{
color:$typoWhite; color: white;
} }
.ep-disturber-last-chance{ .ep-disturber-last-chance{
@@ -1,5 +1,5 @@
$color-brand-primary: #9f0d4c; $color-brand-primary: #82C3C6;
$color-button-background: #ffe900; $color-button-background: #f9c33d;
$color-button-foreground: $color-brand-primary; $color-button-foreground: white;
$color-button-booking: $color-label-success; $color-button-booking: $color-label-success;