From 789a88691ca1d6dd3218b81070337439264b91b2 Mon Sep 17 00:00:00 2001 From: Paul POULAIN Date: Thu, 20 Sep 2007 10:31:12 +0200 Subject: [PATCH] adding action style (probably temporary need) Signed-off-by: Chris Cormack --- .../prog/en/css/staff-global2.css | 67 +++++++++++++++++++ 1 file changed, 67 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global2.css b/koha-tmpl/intranet-tmpl/prog/en/css/staff-global2.css index 7e80b8de0a..eb09f9b741 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global2.css +++ b/koha-tmpl/intranet-tmpl/prog/en/css/staff-global2.css @@ -456,3 +456,70 @@ div.yui-b h5 { font-size : 100%; margin : .5em 0; } + +/*Action button*/ +#action { + float:right; +} + +#action a { + color: #0072b9; + font-weight:bold; + background: url( /intranet-tmpl/prog/img/bg-tab.png ); + font-size : 0.8em; + padding:3px; + margin-bottom:2px; + text-decoration:none; + display:block; +} + +#action li { + list-style:none; +} +/*edit action*/ +#action .edit { + display:inline; + margin-bottom:10px; +} + +#action .edit a { + background:none; + background-color : #0072b9; + color : white; +} + +#action .edit a:hover { + cursor:pointer; +} + +#action .view { + display:inline; + margin-bottom:5px; +} + +#action .view a { + background:none; + background-color : #5ab5ee; + color : white; + margin-top: 1px; +} + +#action .view a:hover { + cursor:pointer; +} + +#action .others { + display:inline; + margin-bottom:5px; +} + +#action .others a { + background:none; + background-color : #2385C2; + color : white; + margin-top: 1px; +} + +#action .others a:hover { + cursor:pointer; +} -- 2.39.2