You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
2.3 KiB

/*
YUI 3.17.2 (build 9c3c78e)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/
/* basic skin styles */
.yui3-skin-sam .yui3-datatable-table {
margin: 0;
padding: 0;
font-family: arial, sans-serif;
border-collapse: separate;
border-spacing: 0;
/* IE7- don't support border-spacing, but separate is needed for more
* reliable dimension calculation for scrollable's header width sync,
* and it doesn't hurt to have the declaration here.
*/
/**border-collapse: collapse;*/
border: 1px solid #cbcbcb;
}
.yui3-skin-sam .yui3-datatable-caption {
color: #000;
font: italic 85%/1 arial, sans-serif;
padding: 1em 0;
text-align: center;
}
.yui3-skin-sam .yui3-datatable-cell,
.yui3-skin-sam .yui3-datatable-header {
border-left: 1px solid #cbcbcb;/* inner column border */
border-width: 0 0 0 1px;
font-size: inherit;
margin: 0;
overflow: visible; /*to make ths where the title is really long work*/
padding: 4px 10px 4px 10px; /* cell padding */
}
.yui3-skin-sam .yui3-datatable-cell:first-child,
.yui3-skin-sam .yui3-datatable-first-header {
border-left-width: 0px;
}
.yui3-skin-sam .yui3-datatable-header {
/* header gradient */
background: #fff url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;
background-image:-webkit-linear-gradient(transparent 40%, rgba(0,0,0,0.21));
background-image:-moz-linear-gradient(top,transparent 40%,rgba(0,0,0,0.21));
background-image: -ms-linear-gradient(transparent 40%, rgba(0,0,0,0.21));
background-image: -o-linear-gradient(transparent 40%, rgba(0,0,0,0.21));
background-image: linear-gradient(transparent 40%, rgba(0,0,0,0.21));
/* Not using an IE gradient because it doesn't support color stops */
color: #000;
font-weight: normal;
text-align: left;
text-shadow: 0 1px 1px #fff;
vertical-align: bottom;
white-space: nowrap;
}
/*
striping:
even - #fff (white)
odd - #edf5ff (light blue)
*/
.yui3-skin-sam .yui3-datatable-cell {
background-color: transparent;
}
.yui3-skin-sam .yui3-datatable-even .yui3-datatable-cell {
background-color: #fff;
}
.yui3-skin-sam .yui3-datatable-odd .yui3-datatable-cell {
background-color: #edf5ff;
}