Skip to content

Commit

Permalink
Merge branch 'release-3.9.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jul 30, 2024
2 parents 466a7f6 + e9bdc8d commit 4712126
Show file tree
Hide file tree
Showing 13 changed files with 98 additions and 72 deletions.
38 changes: 38 additions & 0 deletions migrations/Version202407171445484106_pciSamples.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?php

declare(strict_types=1);

namespace oat\pciSamples\migrations;

use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\Exception\IrreversibleMigration;
use oat\pciSamples\scripts\install\RegisterPciTextReaderIMS;
use oat\tao\scripts\tools\migrations\AbstractMigration;

/**
* Auto-generated Migration: Please modify to your needs!
*
* phpcs:disable Squiz.Classes.ValidClassName
*/
final class Version202407171445484106_pciSamples extends AbstractMigration
{
public function getDescription(): string
{
return 'Update TextReader OAT & IMS PCIs to use clone in Sleep';
}

public function up(Schema $schema): void
{
$this->runAction(new RegisterPciTextReaderIMS(), ['1.3.0']);
}

public function down(Schema $schema): void
{
throw new IrreversibleMigration(
sprintf(
'In order to undo this migration, please revert the client-side changes and run %s',
RegisterPciTextReaderIMS::class
)
);
}
}

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"typeIdentifier": "textReaderInteraction",
"label": "Text reader",
"description": "The Paging widget combines a scrolling widget with additional paging controls.",
"version": "1.2.2",
"version": "1.3.0",
"author": "Aleh Hutnikau",
"email": "[email protected]",
"tags": [
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Plugins: tips modal viewport svg imagemap ie6
* Styles: core basic css3
*/
.qtip{
.qtip{
position: absolute;
left: -28000px;
top: -28000px;
Expand All @@ -19,8 +19,8 @@
max-width: 280px;
min-width: 50px;

font-size: 10.5px;
line-height: 12px;
font-size: 1.05rem;
line-height: 1.33;

direction: ltr;

Expand All @@ -30,7 +30,7 @@

.qtip-content{
position: relative;
padding: 5px 9px;
padding: 4px 8px;
overflow: hidden;

text-align: left;
Expand Down Expand Up @@ -102,14 +102,14 @@

/* Default tooltip style */
.qtip-default{
border: 1px solid #F1D031;
border-radius: 4px;

background-color: #FFFFA3;
color: #555;
background-color: #121212;
color: #FFF;
}

.qtip-default .qtip-titlebar{
background-color: #FFEF93;
background-color: #121212;
}

.qtip-default .qtip-icon{
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4712126

Please sign in to comment.