Skip to content

Commit e492d28

Browse files
committed
fix nested form row design bug
1 parent 5411363 commit e492d28

7 files changed

Lines changed: 29 additions & 22 deletions

File tree

typerocket-v5.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: TypeRocket - Andromeda
44
Plugin URI: https://typerocket.com/
55
Description: TypeRocket is a framework that joins refined UI elements and modern programming architecture together.
6-
Version: 5.1.6
6+
Version: 5.1.7
77
Requires at least: 6.0
88
Requires PHP: 7.4
99
Author: TypeRocket
@@ -34,7 +34,7 @@ public function __construct()
3434
return;
3535
}
3636

37-
define('TYPEROCKET_PLUGIN_VERSION', '5.1.6');
37+
define('TYPEROCKET_PLUGIN_VERSION', '5.1.7');
3838
define('TYPEROCKET_PLUGIN_INSTALL', __DIR__);
3939

4040
if(!defined('TYPEROCKET_ROOT_WP'))

typerocket/composer.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typerocket/vendor/composer/installed.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2963,17 +2963,17 @@
29632963
},
29642964
{
29652965
"name": "typerocket/core",
2966-
"version": "v5.1.13",
2967-
"version_normalized": "5.1.13.0",
2966+
"version": "v5.1.14",
2967+
"version_normalized": "5.1.14.0",
29682968
"source": {
29692969
"type": "git",
29702970
"url": "https://github.com/TypeRocket/core.git",
2971-
"reference": "82c0b73cbd39aa3f87d734e8d9f5008672843adc"
2971+
"reference": "5dbae52cf24e0740605d416e474f79ac36a802d6"
29722972
},
29732973
"dist": {
29742974
"type": "zip",
2975-
"url": "https://api.github.com/repos/TypeRocket/core/zipball/82c0b73cbd39aa3f87d734e8d9f5008672843adc",
2976-
"reference": "82c0b73cbd39aa3f87d734e8d9f5008672843adc",
2975+
"url": "https://api.github.com/repos/TypeRocket/core/zipball/5dbae52cf24e0740605d416e474f79ac36a802d6",
2976+
"reference": "5dbae52cf24e0740605d416e474f79ac36a802d6",
29772977
"shasum": ""
29782978
},
29792979
"require": {
@@ -2987,7 +2987,7 @@
29872987
"require-dev": {
29882988
"phpunit/phpunit": "^9.5"
29892989
},
2990-
"time": "2022-08-06T23:52:14+00:00",
2990+
"time": "2022-08-16T17:45:12+00:00",
29912991
"type": "library",
29922992
"installation-source": "dist",
29932993
"autoload": {
@@ -3016,7 +3016,7 @@
30163016
"support": {
30173017
"docs": "https://typerocket.com/docs/v5/",
30183018
"issues": "https://github.com/TypeRocket/core/issues",
3019-
"source": "https://github.com/TypeRocket/core/tree/v5.1.13"
3019+
"source": "https://github.com/TypeRocket/core/tree/v5.1.14"
30203020
},
30213021
"install-path": "../typerocket/core"
30223022
},

typerocket/vendor/composer/installed.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
'type' => 'library',
66
'install_path' => __DIR__ . '/../../',
77
'aliases' => array(),
8-
'reference' => '8621516a9ea1675c3b4b34631733edeb49f4df5b',
8+
'reference' => '5411363dc2a60302034898dfd5cd9cc1356ff42c',
99
'name' => 'typerocket/typerocket',
1010
'dev' => true,
1111
),
@@ -404,12 +404,12 @@
404404
'dev_requirement' => true,
405405
),
406406
'typerocket/core' => array(
407-
'pretty_version' => 'v5.1.13',
408-
'version' => '5.1.13.0',
407+
'pretty_version' => 'v5.1.14',
408+
'version' => '5.1.14.0',
409409
'type' => 'library',
410410
'install_path' => __DIR__ . '/../typerocket/core',
411411
'aliases' => array(),
412-
'reference' => '82c0b73cbd39aa3f87d734e8d9f5008672843adc',
412+
'reference' => '5dbae52cf24e0740605d416e474f79ac36a802d6',
413413
'dev_requirement' => false,
414414
),
415415
'typerocket/typerocket' => array(
@@ -418,7 +418,7 @@
418418
'type' => 'library',
419419
'install_path' => __DIR__ . '/../../',
420420
'aliases' => array(),
421-
'reference' => '8621516a9ea1675c3b4b34631733edeb49f4df5b',
421+
'reference' => '5411363dc2a60302034898dfd5cd9cc1356ff42c',
422422
'dev_requirement' => false,
423423
),
424424
'webmozart/assert' => array(

typerocket/vendor/typerocket/core/assets/dist/css/core.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typerocket/vendor/typerocket/core/assets/sass/utility/form.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,13 @@
247247
&:first-of-type { padding-top: 0 }
248248
&:last-of-type { padding-bottom: 0 }
249249
}
250+
251+
> .tr-control-row, > .tr-control-grouped-section {
252+
padding: 5px 0;
253+
box-shadow: none;
254+
&:first-of-type { padding-top: 0 }
255+
&:last-of-type { padding-bottom: 0 }
256+
}
250257
}
251258
}
252259

typerocket/wordpress/assets/typerocket/css/core.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)