diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2012-07-16 13:40:52 +0200 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2012-07-18 15:52:00 +0200 |
commit | 3adebcf919e81ead95c68995db52f7c2da999792 (patch) | |
tree | 68cbd957bf35f9006db73673adf4782536963eec /install | |
parent | a14d243fcdd18bb7bd5409d1a8804bf06929824d (diff) | |
download | freeipa-3adebcf919e81ead95c68995db52f7c2da999792.tar.gz freeipa-3adebcf919e81ead95c68995db52f7c2da999792.tar.xz freeipa-3adebcf919e81ead95c68995db52f7c2da999792.zip |
Bigger textarea for permission type=subtree
Adder dialog and details facet for permission type=subtree have small textarea for defining subtree filter. It was unconfortable to define the filter. This difference was removed.
https://fedorahosted.org/freeipa/ticket/2832
Diffstat (limited to 'install')
-rw-r--r-- | install/ui/aci.js | 2 | ||||
-rw-r--r-- | install/ui/ipa.css | 8 |
2 files changed, 8 insertions, 2 deletions
diff --git a/install/ui/aci.js b/install/ui/aci.js index b2e5e19e5..63181efac 100644 --- a/install/ui/aci.js +++ b/install/ui/aci.js @@ -688,8 +688,6 @@ IPA.permission_target_widget = function(spec) { that.subtree_textarea = IPA.textarea_widget({ entity: that.entity, name: 'subtree', - cols: 30, - rows: 1, hidden: true }); diff --git a/install/ui/ipa.css b/install/ui/ipa.css index a3b93078b..76ce265f0 100644 --- a/install/ui/ipa.css +++ b/install/ui/ipa.css @@ -1307,6 +1307,14 @@ table.scrollable tbody { width: 250px; } +.textarea-widget textarea { + width: 250px; +} + +.facet-content .textarea-widget textarea { + width: 400px; +} + .combobox-widget-input { display: inline-block; position: relative; |