Skip to content

Commit

Permalink
buil for v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dongwoo committed Feb 4, 2016
1 parent ed86a66 commit 41d0426
Show file tree
Hide file tree
Showing 8 changed files with 3,066 additions and 1,622 deletions.
85 changes: 39 additions & 46 deletions dist/grid.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @fileoverview tui-grid
* @author NHN Ent. FE Development Team
* @version 1.1.1
* @version 1.1.2
* @license MIT
* @link https://github.com/nhnent/tui.grid
*/
Expand All @@ -12,21 +12,21 @@
position: relative;
border-bottom: solid 1px #ccc;
clear: both;
scrollbar-highlight-color: #f2f2f2;
scrollbar-shadow-color: #f2f2f2;
scrollbar-highlight-color: #f5f5f5;
scrollbar-shadow-color: #f5f5f5;
scrollbar-arrow-color: #8a8a8a;
scrollbar-face-color: #d9d9d9;
scrollbar-3dlight-color: #f2f2f2;
scrollbar-darkshadow-color: #f2f2f2;
scrollbar-track-color: #f2f2f2;
scrollbar-3dlight-color: #f5f5f5;
scrollbar-darkshadow-color: #f5f5f5;
scrollbar-track-color: #f5f5f5;
font-size: 12px;
font-family: '돋움', Dotum, Helvetica, 'Apple SD Gothic Neo', Sans-serif;
}
.uio_grid ::-webkit-scrollbar {
-webkit-appearance: none;
width: 17px;
height: 17px;
background-color: #f2f2f2;
background-color: #f5f5f5;
border-top: solid 1px #ccc;
}
.uio_grid ::-webkit-scrollbar-thumb {
Expand Down Expand Up @@ -157,20 +157,14 @@
.uio_grid .lside_area .data table {
*margin-right: -17px;
}
.uio_grid .lside_area .data table .meta_column {
background: #f8f8f8;
}
.uio_grid .lside_area .data table .meta_column.selected {
background: #e0e0e0;
}
.uio_grid .lside_area .data .selection_layer {
display: none;
position: absolute;
top: 0;
width: 0;
height: 0;
border: dotted 1px #f00;
background: #ffa500;
border: solid 1px #004082;
background: #4daaf9;
opacity: 0.2;
filter: alpha(opacity=10);
left: 1px;
Expand Down Expand Up @@ -205,8 +199,8 @@
top: 0;
width: 0;
height: 0;
border: dotted 1px #f00;
background: #ffa500;
border: solid 1px #004082;
background: #4daaf9;
opacity: 0.2;
filter: alpha(opacity=10);
left: -1px;
Expand All @@ -219,7 +213,7 @@
right: 0;
width: 16px;
border: solid 1px #ccc;
background: #f8f8f8;
background: #eee;
}
.uio_grid .rside_area .scrollbar_border {
display: block;
Expand All @@ -236,9 +230,6 @@
height: 17px;
background-color: #f2f2f2;
}
.uio_grid .header th {
background: #f8f8f8;
}
.uio_grid .header .resize_handle_container {
display: none;
position: relative;
Expand Down Expand Up @@ -268,7 +259,7 @@
.uio_grid table {
border: 0;
table-layout: fixed;
background-color: #ccc;
background-color: #d8d8d8;
border-collapse: separate;
border-spacing: 1px;
margin: 0;
Expand All @@ -280,6 +271,11 @@
text-align: center;
padding: 0;
border: 0;
background: #eee;
}
.uio_grid table th.selected {
background: #b0b0b0;
color: #f8f8f8;
}
.uio_grid table th .sort a {
color: #555;
Expand All @@ -301,51 +297,48 @@
.uio_grid table th .sorting_up {
background-position: -10px -60px;
}
.uio_grid table tr.selected {
background-color: #f8f8f8;
}
.uio_grid table tr.disabled {
color: #b0b0b0;
}
.uio_grid table tr.invalidated {
background-color: #ffe1e1;
}
.uio_grid table col {
background: #fff;
}
.uio_grid table col.editable {
background-color: #ffffef;
}
.uio_grid table td {
overflow: hidden;
padding: 0 10px;
*padding: 1px 10px;
border: 0;
white-space: nowrap;
background-color: #fbfbfb;
*white-space: pre;
}
.uio_grid table td.meta_column {
background: #eee;
}
.uio_grid table td.meta_column.dummy {
background: #eee;
}
.uio_grid table td.meta_column.selected {
background: #b0b0b0;
color: #f8f8f8;
}
.uio_grid table td.editable {
background-color: #ffffef;
background-color: #fff;
}
.uio_grid table td.selected {
background-color: #f8f8f8;
font-weight: bold;
.uio_grid table td.dummy {
background-color: #fff;
}
.uio_grid table td.required {
background-color: #fffdeb;
}
.uio_grid table td.disabled {
color: #b0b0b0;
}
.uio_grid table td.invalidated_row {
background: #ffe1e1;
}
.uio_grid table td.invalidated_column,
.uio_grid table td.invalidated_column input,
.uio_grid table td.invalidated_column select {
color: #ff0202;
}
.uio_grid table td.focused {
padding: 0 9px;
border: dotted 1px #190000;
}
.uio_grid table td.invalid {
padding: 0 9px;
border: solid 1px #ff8080;
}
.uio_grid table td.ellipsis {
-o-text-overflow: ellipsis /*Opera 9*/;
-moz-binding: url("ellipsis.xml#ellipsis") /* Firefox */;
Expand Down
Loading

0 comments on commit 41d0426

Please sign in to comment.