summaryrefslogtreecommitdiffstats
path: root/WebContent/ITMILL/themes/base/table/table.css
diff options
context:
space:
mode:
Diffstat (limited to 'WebContent/ITMILL/themes/base/table/table.css')
-rw-r--r--WebContent/ITMILL/themes/base/table/table.css145
1 files changed, 0 insertions, 145 deletions
diff --git a/WebContent/ITMILL/themes/base/table/table.css b/WebContent/ITMILL/themes/base/table/table.css
deleted file mode 100644
index c6fccfa835..0000000000
--- a/WebContent/ITMILL/themes/base/table/table.css
+++ /dev/null
@@ -1,145 +0,0 @@
-/* Table theme building instructions
- *
- * Toolkit scroll table is very complex widget with dozens of features. These
- * features set some limitations for theme builder. To keep things working, it
- * is safest to try to just override values used in default theme and comfort to
- * these instructions.
- *
- * Borders in table header and in table body need to be same width
- * - specify vertical borders on .v-table-header-wrap and .v-table-body
- *
- * Table cells in body:
- * - padding/border for cells is to be defined for td elements (class name: .v-table-cell-content)
- * - in default theme there are no borders, but they should work. Just set border-right or border-bottom
- * - no padding or border is allowed for div inside cells (class name: .v-table-cell-wrapper) element
- * - background is allowed for both elements
- *
- * Table headers:
- * - table cells in header contain .v-table-resizer and
- * .v-table-caption-container div elements, which are both floated to right
- * - to align header caption to body content resizer width + .v-table-caption-container
- * padding right should be equal to content cells padding-right and border-right.
- * - Possible cell border in header must be themed into column resizer.
- *
- */
-.v-table {
- overflow: hidden;
- text-align: left; /* Force default alignment */
-}
-.v-table-header-wrap {
- overflow: hidden;
- border: 1px solid #aaa;
- border-bottom: none;
- background: #efefef;
-}
-.v-table-header table,
-.v-table-table {
- border-spacing: 0;
- margin: 0;
- padding: 0;
- border: 0;
-}
-.v-table-header td {
- padding: 0;
-}
-.v-table-header-cell,
-.v-table-header-cell-asc,
-.v-table-header-cell-desc {
- cursor: pointer;
-}
-.v-table-resizer {
- display: block;
- height: 1.2em;
- float: right;
- background: #aaa;
- cursor: col-resize;
- width: 1px;
- overflow: hidden;
-}
-.v-table-caption-container {
- float: right;
- overflow: hidden;
- white-space: nowrap;
- padding-right: 6px;
-}
-.v-table-header-cell-asc .v-table-caption-container {
- background: transparent url(../common/img/sprites.png) no-repeat right 6px;
-}
-.v-table-header-cell-desc .v-table-caption-container {
- background: transparent url(../common/img/sprites.png) no-repeat right -10px;
-}
-.v-table-body {
- border: 1px solid #aaa;
-}
-.v-table-row-spacer {
- height: 10px;
- overflow: hidden; /* IE hack to allow < one line height divs */
-}
-.v-table-row,
-.v-table-row-odd {
- border: 0;
- margin: 0;
- padding: 0;
- cursor: default;
-}
-.v-table .v-selected {
- background: #999;
- color: #fff;
-}
-.v-table-cell-content {
- white-space: nowrap;
- overflow: hidden;
- padding: 0 6px;
- border-right: 1px solid #aaa;
-}
-.v-table-cell-wrapper {
- /* Do not specify any margins, paddings or borders here */
- white-space: nowrap;
- overflow: hidden;
-}
-.v-table-column-selector {
- float: right;
- background: transparent url(../common/img/sprites.png) no-repeat 4px -37px;
- margin: -1.2em 0 0 0;
- height: 1.2em;
- width: 14px;
- position: relative; /* hide this from IE, it works without it */
- cursor: pointer;
-}
-.v-ie6 .v-table-column-selector,
-.v-ie7 .v-table-column-selector {
- position: static;
-}
-.v-table-focus-slot-left {
- border-left: 2px solid #999;
- margin-right: -2px;
-}
-.v-table-focus-slot-right {
- border-right: 2px solid #999;
- margin-left: -2px;
-}
-.v-table-header-drag {
- position: absolute;
- background: #efefef;
- border: 1px solid #eee;
- opacity: 0.9;
- filter: alpha(opacity=90);
- margin-top: 20px;
- z-index: 30000;
-}
-.v-table-scrollposition {
- width: 160px;
- background: #eee;
- border: 1px solid #aaa;
-}
-.v-table-scrollposition span {
- display: block;
- text-align: center;
-}
-/* row in column selector */
-.v-on div {
-
-}
-.v-off div {
- color: #ddd;
-} \ No newline at end of file