diff options
| author | Tristan Zur <tzur@web.web.ccwn.org> | 2014-03-27 22:27:47 +0100 |
|---|---|---|
| committer | Tristan Zur <tzur@web.web.ccwn.org> | 2014-03-27 22:27:47 +0100 |
| commit | b62676ca5d3d6f6ba3f019ea3f99722e165a98d8 (patch) | |
| tree | 86722cb80f07d4569f90088eeaea2fc2f6e2ef94 /hugo/themes/pmahomme/css/rte.css.php | |
Diffstat (limited to '')
| -rw-r--r-- | hugo/themes/pmahomme/css/rte.css.php | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/hugo/themes/pmahomme/css/rte.css.php b/hugo/themes/pmahomme/css/rte.css.php new file mode 100644 index 0000000..0db21a8 --- /dev/null +++ b/hugo/themes/pmahomme/css/rte.css.php @@ -0,0 +1,43 @@ +<?php +/* vim: set expandtab sw=4 ts=4 sts=4: */ +/** + * Styles for management of Routines, Triggers and Events + * for the pmahomme theme + * + * @package PhpMyAdmin-theme + * @subpackage PMAHomme + */ + +// unplanned execution path +if (! defined('PMA_MINIMUM_COMMON') && ! defined('TESTSUITE')) { + exit(); +} +?> + +.rte_table { + table-layout: fixed; +} + +.rte_table td { + vertical-align: middle; + padding: 0.2em; +} + +.rte_table tr td:nth-child(1) { + font-weight: bold; +} + +.rte_table input, +.rte_table select, +.rte_table textarea { + width: 100%; + margin: 0; + box-sizing: border-box; + -ms-box-sizing: border-box; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; +} + +.rte_table .routine_params_table { + width: 100%; +} |
