-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/allow-url-type' into 'release/2.3.0'
Feature/allow url type See merge request metamodels/core!301
- Loading branch information
Showing
12 changed files
with
148 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,5 +16,7 @@ vendor/ | |
composer.lock | ||
|
||
# build | ||
.phpunit.result.cache | ||
/.cache | ||
/.phpunit.result.cache | ||
/.pdepend/* | ||
/.phpcq/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
* @author Sven Baumann <[email protected]> | ||
* @author Carolina Koehn <[email protected]> | ||
* @author Cliff Parnitzky <[email protected]> | ||
* @author Christian Schiffler <[email protected]> | ||
* @copyright 2012-2024 The MetaModels team. | ||
* @license https://github.com/MetaModels/core/blob/master/LICENSE LGPL-3.0-or-later | ||
* @filesource | ||
|
@@ -164,3 +165,28 @@ form[id^=mm_] .sort_hint { | |
.tl_formbody_edit .settings { | ||
margin: 0 0 10px 12px; | ||
} | ||
|
||
#tl_metamodel_rendersettings .jumpTo_language { | ||
width: 15%; | ||
} | ||
#tl_metamodel_rendersettings .jumpTo_type { | ||
width: 15%; | ||
} | ||
#tl_metamodel_rendersettings .jumpTo_type select { | ||
width: 100%; | ||
} | ||
#tl_metamodel_rendersettings .jumpTo_page { | ||
width: 15%; | ||
} | ||
#tl_metamodel_rendersettings .jumpTo_page input { | ||
width: 88%; | ||
} | ||
#tl_metamodel_rendersettings .jumpTo_filter { | ||
width: 55%; | ||
} | ||
#tl_metamodel_rendersettings .jumpTo_filter select { | ||
width: 100%; | ||
} | ||
#tl_metamodel_rendersettings .operations { | ||
display: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* This file is part of MetaModels/core. | ||
* | ||
* (c) 2012-2022 The MetaModels team. | ||
* (c) 2012-2024 The MetaModels team. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
|
@@ -14,7 +14,8 @@ | |
* @author Ingolf Steinhardt <[email protected]> | ||
* @author Sven Baumann <[email protected]> | ||
* @author Carolina Koehn <[email protected]> | ||
* @copyright 2012-2022 The MetaModels team. | ||
* @author Christian Schiffler <[email protected]> | ||
* @copyright 2012-2024 The MetaModels team. | ||
* @license https://github.com/MetaModels/core/blob/master/LICENSE LGPL-3.0-or-later | ||
* @filesource | ||
*/ | ||
|
@@ -144,3 +145,30 @@ form[id^=mm_] .sort_hint { | |
.tl_formbody_edit .settings { | ||
margin: 0 0 10px 12px; | ||
} | ||
|
||
#tl_metamodel_rendersettings { | ||
.jumpTo_language { | ||
width: 15%; | ||
} | ||
.jumpTo_type { | ||
width: 15%; | ||
select { | ||
width: 100%; | ||
} | ||
} | ||
.jumpTo_page { | ||
width: 15%; | ||
input { | ||
width: 88%; | ||
} | ||
} | ||
.jumpTo_filter { | ||
width: 55%; | ||
select { | ||
width: 100%; | ||
} | ||
} | ||
.operations { | ||
display: none; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters