summaryrefslogtreecommitdiffstats
path: root/install/ui/ipa.css
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2012-05-21 15:24:37 +0200
committerPetr Vobornik <pvoborni@redhat.com>2012-06-04 10:45:07 +0200
commit890151dca823cd06b2d6980e2b255c218a16e6a1 (patch)
tree4b88a414491924f796892174d8baa92213795ed7 /install/ui/ipa.css
parentbd36600efee8b06b68262d5bf21285ab724eb797 (diff)
downloadfreeipa-890151dca823cd06b2d6980e2b255c218a16e6a1.tar.gz
freeipa-890151dca823cd06b2d6980e2b255c218a16e6a1.tar.xz
freeipa-890151dca823cd06b2d6980e2b255c218a16e6a1.zip
Action panel
This patch implements action panel. Action panel is a box located in facet details section which contains actions related to that object/section. In spec file can be configured actions and title used in action panel. Default title is 'Actions'. Actions are specified by their name. They have to be defined in action collection in facet. https://fedorahosted.org/freeipa/ticket/2248
Diffstat (limited to 'install/ui/ipa.css')
-rw-r--r--install/ui/ipa.css29
1 files changed, 29 insertions, 0 deletions
diff --git a/install/ui/ipa.css b/install/ui/ipa.css
index 97cfca0e..d79bf874 100644
--- a/install/ui/ipa.css
+++ b/install/ui/ipa.css
@@ -892,6 +892,7 @@ hr {
}
.details-section {
+ position: relative;
margin-top: 1em;
margin-left: 4.5em;
margin-right: 3.3em;
@@ -1708,4 +1709,32 @@ form#login {
.facet-title.disabled h3,
.facet-title.disabled h3 .facet-pkey{
color: gray;
+}
+
+.action-panel {
+ position: absolute;
+ right: 0;
+ top: 0;
+
+ width: 150px;
+
+ -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
+ -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
+ box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
+}
+
+.action-panel-list {
+ list-style: none;
+ padding-left: 15px;
+}
+
+.action-title {
+ font-size: 1em;
+ font-weight: bold;
+ margin-left: 15px;
+}
+
+.disabled {
+ color: gray;
+ cursor: default;
} \ No newline at end of file