diff options
author | Joey Hagedorn <hagedorn@mcs.anl.gov> | 2007-01-12 21:49:23 +0000 |
---|---|---|
committer | Joey Hagedorn <hagedorn@mcs.anl.gov> | 2007-01-12 21:49:23 +0000 |
commit | b2cd8e6bfc069f0665806e0d42163fa810778747 (patch) | |
tree | e5d2ff0e497d2c33043e4cbbccfed8aea692fc4e /reports/site_media/yui/round_tabs.css | |
parent | 729d83a9a67795cf285ca8f0177007e1b21e35bc (diff) | |
download | bcfg2-b2cd8e6bfc069f0665806e0d42163fa810778747.tar.gz bcfg2-b2cd8e6bfc069f0665806e0d42163fa810778747.tar.bz2 bcfg2-b2cd8e6bfc069f0665806e0d42163fa810778747.zip |
Reporting system update to include browsing by config-item rather than host-only. This enables users of the system to track down where problems are occuring across the system by looking in a package and system oriented way, rather than a host centric view only.
*It is expected to be useful to verify that critical security updates are applied.*
Additionally this update includes a bunch of files (yet not complete) from the Yahoo User Interface Library. It is sparsely incorporated as the files are used. This library is BSD licensed and provides great capability for the web reports. It also will help when incorporating ajax technology in to the reports for performance improvements.
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2660 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'reports/site_media/yui/round_tabs.css')
-rw-r--r-- | reports/site_media/yui/round_tabs.css | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/reports/site_media/yui/round_tabs.css b/reports/site_media/yui/round_tabs.css new file mode 100644 index 000000000..6fb094980 --- /dev/null +++ b/reports/site_media/yui/round_tabs.css @@ -0,0 +1,76 @@ +.yui-navset .yui-content { + border:1px solid #ccc; +} +.yui-navset .yui-nav .selected a, .yui-navset .yui-nav a:hover { + background-color:#fff; +} + +.yui-navset .yui-nav li a { + background:#e5e5e5 url(../img/round_4px_trans_gray.gif) no-repeat; +} +.yui-navset .yui-nav li a em { + background:transparent url(../img/round_4px_trans_gray.gif) no-repeat top right; + padding:0.5em; +} + +/* top oriented */ + +.yui-navset-top .yui-nav { margin-bottom:-1px; } /* for overlap, based on content border-width */ +.yui-navset-top .yui-nav li a { + border-bottom:1px solid #ccc; +} + +.yui-navset-top .yui-nav .selected a { border-bottom:0; } +.yui-navset-top .yui-nav .selected a em { padding-bottom:0.6em; } /* adjust height */ + +/* top & bottom oriented */ +.yui-navset-top .yui-nav li a em, .yui-navset-bottom .yui-nav li a em { + margin-left:4px; /* based on border-radius */ + padding-right:8px; /* based on border-radius (2x left to balance margin) */ + padding-left:4px; +} + +/* bottom oriented */ + +.yui-navset-bottom .yui-nav { margin-top:-1px; } /* for overlap, based on content border-width */ +.yui-navset-bottom .yui-nav li a { border-top:1px solid #ccc; } + +.yui-navset-bottom .yui-nav .selected a { border-top:0; } +.yui-navset-bottom .yui-nav .selected a em { padding-top:0.6em; } /* adjust height */ + +.yui-navset-bottom .yui-nav li a { background-position:bottom left; } +.yui-navset-bottom .yui-nav li a em { background-position:bottom right; } + +/* left oriented */ + +.yui-navset-left .yui-content { margin-left:-1px; } /* for overlap, based on content border-width */ + +.yui-navset-left .yui-nav li a { + border-right:1px solid #ccc; + padding-bottom:4px; +} + +.yui-navset-left .yui-nav li a em, .yui-navset-right .yui-nav li a em { + padding-top:8px; /* based on border-radius (2x left to balance margin) */ +} + +.yui-navset-left .yui-nav .selected a { border-right:0; } +.yui-navset-left .yui-nav .selected a em { padding-left:0.6em; } /* adjust width */ + +.yui-navset-left .yui-nav li a { background-position:bottom left; } +.yui-navset-left .yui-nav li a em { background-position:top left; } + +/* right oriented */ + +.yui-navset-right .yui-content { margin-right:-1px; } /* for overlap, based on content border-width */ + +.yui-navset-right .yui-nav li a { + border-left:1px solid #ccc; + padding-bottom:4px; +} + +.yui-navset-right .yui-nav .selected a { border-left:0; } +.yui-navset-right .yui-nav .selected a em { padding-left:0.6em; } /* adjust width */ + +.yui-navset-right .yui-nav li a { background-position:bottom right; } +.yui-navset-right .yui-nav li a em { background-position:top right; }
\ No newline at end of file |