summaryrefslogtreecommitdiff
path: root/assets/css/src/table.css
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-01-25 13:09:54 -0500
committerFrederic Guillot <fred@kanboard.net>2015-01-25 13:09:54 -0500
commit746a3f8d235c073abba401f25ca9a379264d2b16 (patch)
treecb234239027f227e03001ef50963f28aa96e512e /assets/css/src/table.css
parent0812ceedde2f89a8e4b391e58d6463f832ecec8e (diff)
Move assets to seperate subfolders
Diffstat (limited to 'assets/css/src/table.css')
-rw-r--r--assets/css/src/table.css103
1 files changed, 103 insertions, 0 deletions
diff --git a/assets/css/src/table.css b/assets/css/src/table.css
new file mode 100644
index 00000000..9bc0c712
--- /dev/null
+++ b/assets/css/src/table.css
@@ -0,0 +1,103 @@
+/* tables */
+table {
+ width: 100%;
+ border-collapse: collapse;
+ border-spacing: 0;
+ margin-bottom: 20px;
+ font-size: 0.95em;
+}
+
+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;
+}
+
+.column-5 {
+ width: 5%;
+}
+
+.column-8 {
+ width: 7.5%;
+}
+
+.column-10 {
+ width: 10%;
+}
+
+.column-15 {
+ width: 15%;
+}
+
+.column-20 {
+ width: 20%;
+}
+
+.column-30 {
+ width: 30%;
+}
+
+.column-35 {
+ width: 35%;
+}
+
+.column-40 {
+ width: 40%;
+}
+
+.column-50 {
+ width: 50%;
+}
+
+.column-60 {
+ width: 60%;
+}
+
+.column-70 {
+ width: 70%;
+} \ No newline at end of file