jexcel
Version:
jExcel is a lightweight, vanilla javascript plugin to create amazing web-based interactive tables and spreadsheets compatible with Excel, Google Spreadsheets and any other spreadsheet software.
98 lines (86 loc) • 1.84 kB
CSS
/**
* (c) jExcel v3.0.1
*
* Author: Paul Hodel <paul.hodel@gmail.com>
* Website: https://bossanova.uk/jexcel/
* Description: Create amazing web based spreadsheets.
*
* This software is distribute under MIT License
*/
table.jexcel
{
border-right:1px solid transparent;
}
table.jexcel > thead
{
background-color:#fff;
}
table.jexcel > thead > tr > td
{
border-top:1px solid transparent;
border-left:1px solid transparent;
border-right:1px solid transparent;
border-bottom:1px solid #000;
background-color:#fff;
padding:10px;
font-weight:bold;
}
table.jexcel > thead > tr > td.selected
{
background-color:#eee;
}
table.jexcel > tbody > tr > td
{
padding:8px;
border-right:1px solid transparent;
border-left:1px solid transparent;
}
table.jexcel > tbody > tr > td:first-child
{
background-color:#fff;
}
table.jexcel > tbody > tr.selected > td:first-child
{
background-color:#eee;
}
.jexcel_pagination > div > div
{
border:1px solid transparent;
background-color: #fff;
}
.jexcel_page_selected
{
background: linear-gradient(to bottom, #fff 0%, #dcdcdc 100%);
border:1px solid #979797 ;
font-weight:normal;
color: #333 ;
border-radius:2px;
}
/*.jexcel > div > table > tbody > tr,
.jexcel > div > table > thead
{
border-left:1px solid transparent;
}
.jexcel > div > table > tbody > tr > td
{
padding:10px;
border-right:1px solid transparent;
}
.jexcel > div > table > tbody > td.edition
{
padding:0px;
padding-left:4px;
}
.jexcel > div > table > tbody > tr > td:first-child
{
background-color:#fff;
font-weight:bold;
}
.jexcel > div > table > tbody > tr.selected > td:first-child
{
background-color:#eee;
}
.jexcel > div > table > thead > tr > td.selected
{
background-color:#eee;
}*/