summaryrefslogtreecommitdiff
path: root/assets/css/src/table.css
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-08-06 22:19:36 -0400
committerFrederic Guillot <fred@kanboard.net>2016-08-06 22:19:36 -0400
commit1dc947eac4c67770deb1ea04b2e7a63ceb6241a7 (patch)
tree906d05de69df87a88d3205e6f9a5d5cbd0b7fbc9 /assets/css/src/table.css
parent411a66c8cb58c73ef493ff030a4659f6ea0c51a6 (diff)
Convert vanilla CSS to SASS
Diffstat (limited to 'assets/css/src/table.css')
-rw-r--r--assets/css/src/table.css165
1 files changed, 0 insertions, 165 deletions
diff --git a/assets/css/src/table.css b/assets/css/src/table.css
deleted file mode 100644
index 4b776f4b..00000000
--- a/assets/css/src/table.css
+++ /dev/null
@@ -1,165 +0,0 @@
-/* tables */
-table {
- width: 100%;
- border-collapse: collapse;
- border-spacing: 0;
- margin-bottom: 20px;
- font-size: 0.95em;
-}
-
-#calendar table {
- margin-bottom: 0;
-}
-
-th,
-td {
- border: 1px solid #eee;
- padding-top: 0.5em;
- padding-bottom: 0.5em;
- padding-left: 3px;
- padding-right: 3px;
-}
-
-td {
- vertical-align: top;
-}
-
-th {
- background: #fbfbfb;
- text-align: left;
-}
-
-td li {
- margin-left: 20px;
-}
-
-.table-small {
- font-size: 0.8em;
-}
-
-th a {
- text-decoration: none;
- color: #333;
-}
-
-th a:focus,
-th a:hover {
- text-decoration: underline;
-}
-
-.table-fixed {
- table-layout: fixed;
- white-space: nowrap;
-}
-
-.table-fixed th {
- overflow: hidden;
-}
-
-.table-fixed td {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
-}
-
-.table-stripped tr:nth-child(odd) {
- background: #fefefe;
-}
-
-.column-3 {
- width: 3%;
-}
-
-.column-5 {
- width: 5%;
-}
-
-.column-8 {
- width: 7.5%;
-}
-
-.column-10 {
- width: 10%;
-}
-
-.column-12 {
- width: 12%;
-}
-
-.column-15 {
- width: 15%;
-}
-
-.column-18 {
- width: 18%;
-}
-
-.column-20 {
- width: 20%;
-}
-
-.column-25 {
- width: 25%;
-}
-
-.column-30 {
- width: 30%;
-}
-
-.column-35 {
- width: 35%;
-}
-
-.column-40 {
- width: 40%;
-}
-
-.column-50 {
- width: 50%;
-}
-
-.column-60 {
- width: 60%;
-}
-
-.column-70 {
- width: 70%;
-}
-
-.column-80 {
- width: 70%;
-}
-
-.draggable-row-handle {
- cursor: move;
- color: #dedede;
-}
-
-.draggable-row-handle:hover {
- color: #333;
-}
-
-tr.draggable-item-selected {
- background: #fff;
- border: 2px solid #666;
- box-shadow: 4px 2px 10px -4px rgba(0,0,0,0.55);
-}
-
-tr.draggable-item-selected td {
- border-top: none;
- border-bottom: none;
-}
-
-tr.draggable-item-selected td:first-child {
- border-left: none;
-}
-
-tr.draggable-item-selected td:last-child {
- border-right: none;
-}
-
-.table-stripped tr.draggable-item-hover,
-tr.draggable-item-hover {
- background: #FEFFF2;
-}
-