Skip to content

Commit

Permalink
new version 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pphod committed Apr 15, 2018
1 parent f67484e commit c8b6b13
Show file tree
Hide file tree
Showing 3 changed files with 1,604 additions and 733 deletions.
67 changes: 67 additions & 0 deletions dist/css/jquery.jexcel.bootstrap.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
/**
* (c) 2013 Jexcel Plugin | Bossanova UI
* http://www.github.com/paulhodel/jexcel
*
* @author: Paul Hodel <[email protected]>
* @description: Web spreadsheet
*/

.jexcel
{
border-right:1px solid transparent;
border-bottom:1px solid transparent;
}
.jexcel > thead
{
background-color:#fff;
}
.jexcel > thead > tr > td
{
padding:10px;
font-weight:bold;
}
.jexcel > tbody > tr > td
{
padding:10px;
}
.jexcel > tbody > td.edition
{
padding:0px;
padding-left:4px;
}
.jexcel > tbody > tr > td:first-child
{
background-color:#fff;
font-weight:bold;
}
.jexcel > thead > tr > td
{
border-top:1px solid transparent;
border-left:1px solid transparent;
border-right:1px solid transparent;
border-bottom:1px solid #ddd;
}

.jexcel > tbody > tr > td
{
border-top:1px solid #ddd;
border-left:1px solid transparent;
border-right:1px solid transparent;
border-bottom:1px solid transparent;
overflow:hidden;
white-space: nowrap;
}

.jexcel > tbody > tr > td.readonly
{
color:rgba(0,0,0,0.3);
background-color: rgba(0,0,0,0.02);
}
.jexcel > tbody > tr.selected > td:first-child
{
background-color:#eee;
}
.jexcel > thead > tr > td.selected
{
background-color:#eee;
}
81 changes: 81 additions & 0 deletions dist/css/jquery.jexcel.green.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
/**
* (c) 2013 Jexcel Plugin | Bossanova UI
* http://www.github.com/paulhodel/jexcel
*
* @author: Paul Hodel <[email protected]>
* @description: Web spreadsheet
*/

.
.jexcel > thead
{
background-color:#e6e6e6;
}
.jexcel > tbody > tr > td:first-child
{
background-color:#e6e6e6;
width:20px;
text-align:center;
}
.jexcel > thead > tr > td, .jexcel > tbody > tr > td
{
border-top:1px solid #d4d4d4;
border-left:1px solid #d4d4d4;
border-right:1px solid transparent;
border-bottom:1px solid transparent;
overflow:hidden;
white-space: nowrap;
}

.jexcel > tbody > tr > td.readonly
{
color:rgba(0,0,0,0.2)
}
.jexcel > tbody > tr.selected > td:first-child
{
background-color:#d2d2d2;
}
.jexcel > thead > tr > td.selected
{
background-color:#d2d2d2;
}
.jexcel .highlight
{
background-color:rgba(0,0,0,0.05);
}
.jexcel .highlight-left
{
border-left:1px solid #217346;
}
.jexcel .highlight-right
{
border-right:1px solid #217346;
}
.jexcel .highlight-top
{
border-top:1px solid #217346;
}
.jexcel .highlight-bottom
{
border-bottom:1px solid #217346;
}
.jexcel .selection
{
background-color:rgba(0,0,0,0.05);
}
.jexcel .selection-left
{
border-left:1px solid #217346;
}
.jexcel .selection-right
{
border-right:1px solid #217346;
}
.jexcel .selection-top
{
border-top:1px solid #217346;
}
.jexcel .selection-bottom
{
border-bottom:1px solid #217346;
}
Loading

0 comments on commit c8b6b13

Please sign in to comment.