Merge branch 'saas' into saas-dev
This commit is contained in:
commit
b26d4833fe
|
@ -764,7 +764,7 @@ SQL;
|
|||
|
||||
// Delete show images
|
||||
$showId = $ccShowInstance->getDbShowId();
|
||||
if (!Rest_ShowImageController::deleteShowImagesFromStor($showId)) {
|
||||
if (!$singleInstance && !Rest_ShowImageController::deleteShowImagesFromStor($showId)) {
|
||||
throw new Exception("Error deleting show images");
|
||||
}
|
||||
|
||||
|
|
|
@ -58,7 +58,6 @@ body {
|
|||
display: block;
|
||||
font-weight: 100;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
|
|
@ -98,13 +98,15 @@ span.login-img {
|
|||
}
|
||||
|
||||
.about_us h1 {
|
||||
font-size: 80px;
|
||||
font-size: 80px; /** Fallback if vw is not suppoted */
|
||||
font-size: 8vh;
|
||||
font-weight: 300;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.about_us p {
|
||||
font-size: 24px;
|
||||
font-size: 24px; /** Fallback if vw is not suppoted */
|
||||
font-size: 4vh;
|
||||
font-weight: 300;
|
||||
margin: 10px;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue