Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 3.9.0 #169

Merged
merged 16 commits into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading