Renaming course_list_table.css to reflect more general nature.
authorBryan <btbonval@gmail.com>
Fri, 21 Feb 2014 06:46:10 +0000 (01:46 -0500)
committerBryan <btbonval@gmail.com>
Fri, 21 Feb 2014 06:46:10 +0000 (01:46 -0500)
karmaworld/assets/css/course_list_table.css [deleted file]
karmaworld/assets/css/data_table_list.css [new file with mode: 0644]
karmaworld/templates/courses/course_detail.html
karmaworld/templates/courses/course_list.html
karmaworld/templates/notes/search_results.html

diff --git a/karmaworld/assets/css/course_list_table.css b/karmaworld/assets/css/course_list_table.css
deleted file mode 100644 (file)
index f3f9042..0000000
+++ /dev/null
@@ -1,196 +0,0 @@
-table#data_table_list
-{
-  margin:14px auto;
-}
-a {
-  color:black;
-}
-a:hover {
-  color:#f05a28;
-}
-
-
-/***************
-Search Bar
-***************/
-#data_table_list_filter {
-  /* pulled out of global.css */
-  margin: 0;
-}
-
-#data_table_list_filter input {
-  font: 22px/1em "MuseoSlab-300";
-  margin-top: 20px;
-  margin-bottom: 20px;
-  border-style: solid;
-  border-color: black;
-  border-width: 1px;
-  padding-left: 32px; /* move the placeholder text to the right of the search icon*/
-  background-image: url(../img/lightbox_search_icon.png);
-  background-position: 8px 50%;
-  background-repeat: no-repeat;
-}
-
-
-/***************
-Table Headers
-***************/
-table.dataTable thead th {
-  padding: 3px 18px 3px 10px;
-  cursor: pointer;
-  *cursor: hand;
-}
-
-table.dataTable thead th.sort-by {
-  padding-right: 0px;
-}
-
-table#data_table_list thead tr
-{
-  height: 50px;
-}
-
-table#data_table_list th
-{
-  float:left;
-  font-family: "MuseoSlab-300";
-  font-size: 12px;
-  font-weight: normal;
-}
-
-th.sorting_asc, th.sorting_desc {
-  text-decoration: underline;
-}
-
-th.no-display {
-  display: none;
-}
-
-
-/***************
-Table Data 
-***************/
-table#data_table_list {
-  /*border-collapse: collapse;*/
-}
-
-tr.course-row {
-  border-color: white;
-  border-style: dotted none; 
-  border-width: 2px;
-}
-
-tr.course-row:hover {
-  border-color: gray;
-  border-style: dotted none;
-}
-
-.table-font {
-  font-family: "MuseoSlab-300";
-  font-size: 12px;
-  font-style: italic;
-}
-
-td.slim * {
-  /* all children of a td with a slim class
-   * used to not set font-size on foundation size tags */
-  font-family: "MuseoSlab-300";
-  font-size: 12px;
-  height: 20px; /* required for :hover on Table Rows  (when floating td elements) */
-}
-
-td.no-display {
-  display: none;
-}
-
-table#data_table_list tr:nth-child(even)
-{
-  /*background: url(../img/dashboard_activity_alt_on_bg.gif);*/
-}
-
-/* underline all links in the table body */
-table#data_table_list tbody td a {
-  text-decoration: underline;
-}
-
-/* rows of course data */
-table#data_table_list tbody tr {
-  width: 840px;
-}
-
-
-/***************
-Slim Row
-***************/
-table.dataTable td.sort-by {
-  /* hack - Provide positioning for the "sort by text" */
-  display:none;
-}
-
-td.note-count * {
-  font-size: 12px;
-  /*width: 400px; [> 100% minus td.date width -- make sure the next line wraps <]*/
-}
-
-
-/***************
-Fat Row
-***************/
-td.course-name * {
-  font-family: "MuseoSlab-300";
-  font-size: 18px;
-}
-
-table#data_table_list td div.upload {
-  width: 45px;
-  height: 45px;
-  visibility: hidden;
-  font-size: 34px;
-  text-align: center;
-  vertical-align: middle;
-  margin-top: -8px;
-}
-
-table#data_table_list td div.upload i {
-  display: block;
-  cursor: pointer;
-}
-
-table#data_table_list td div.upload a {
-  text-decoration: none;
-}
-
-table#data_table_list tr:hover td div.upload {
-  visibility: visible;
-}
-
-/* OPENTIP configuration */
-.ot-content {
-  font-family: "MuseoSlab-300";
-  font-size: 18px;
-}
-
-/* CSS HACKS */
-/* Makes lines look better */
-td.columns {
-  line-height: 1.5em;
-}
-
-table#data_table_list tr td:last-child {
-  margin-bottom: 20px;
-}
-
-@media only screen and (min-width: 768px) {
-  /* pulled out of global.css */
-
-  table#data_table_list .table-font {
-    font-family: "MuseoSlab-300";
-    font-size: 18px;
-    font-style: normal;
-  }
-
-  table#data_table_list tr td:last-child {
-    /* override some vrtial margin spacing for the front page table */
-    margin-bottom: 0;
-  }
-}
diff --git a/karmaworld/assets/css/data_table_list.css b/karmaworld/assets/css/data_table_list.css
new file mode 100644 (file)
index 0000000..f3f9042
--- /dev/null
@@ -0,0 +1,196 @@
+table#data_table_list
+{
+  margin:14px auto;
+}
+a {
+  color:black;
+}
+a:hover {
+  color:#f05a28;
+}
+
+
+/***************
+Search Bar
+***************/
+#data_table_list_filter {
+  /* pulled out of global.css */
+  margin: 0;
+}
+
+#data_table_list_filter input {
+  font: 22px/1em "MuseoSlab-300";
+  margin-top: 20px;
+  margin-bottom: 20px;
+  border-style: solid;
+  border-color: black;
+  border-width: 1px;
+  padding-left: 32px; /* move the placeholder text to the right of the search icon*/
+  background-image: url(../img/lightbox_search_icon.png);
+  background-position: 8px 50%;
+  background-repeat: no-repeat;
+}
+
+
+/***************
+Table Headers
+***************/
+table.dataTable thead th {
+  padding: 3px 18px 3px 10px;
+  cursor: pointer;
+  *cursor: hand;
+}
+
+table.dataTable thead th.sort-by {
+  padding-right: 0px;
+}
+
+table#data_table_list thead tr
+{
+  height: 50px;
+}
+
+table#data_table_list th
+{
+  float:left;
+  font-family: "MuseoSlab-300";
+  font-size: 12px;
+  font-weight: normal;
+}
+
+th.sorting_asc, th.sorting_desc {
+  text-decoration: underline;
+}
+
+th.no-display {
+  display: none;
+}
+
+
+/***************
+Table Data 
+***************/
+table#data_table_list {
+  /*border-collapse: collapse;*/
+}
+
+tr.course-row {
+  border-color: white;
+  border-style: dotted none; 
+  border-width: 2px;
+}
+
+tr.course-row:hover {
+  border-color: gray;
+  border-style: dotted none;
+}
+
+.table-font {
+  font-family: "MuseoSlab-300";
+  font-size: 12px;
+  font-style: italic;
+}
+
+td.slim * {
+  /* all children of a td with a slim class
+   * used to not set font-size on foundation size tags */
+  font-family: "MuseoSlab-300";
+  font-size: 12px;
+  height: 20px; /* required for :hover on Table Rows  (when floating td elements) */
+}
+
+td.no-display {
+  display: none;
+}
+
+table#data_table_list tr:nth-child(even)
+{
+  /*background: url(../img/dashboard_activity_alt_on_bg.gif);*/
+}
+
+/* underline all links in the table body */
+table#data_table_list tbody td a {
+  text-decoration: underline;
+}
+
+/* rows of course data */
+table#data_table_list tbody tr {
+  width: 840px;
+}
+
+
+/***************
+Slim Row
+***************/
+table.dataTable td.sort-by {
+  /* hack - Provide positioning for the "sort by text" */
+  display:none;
+}
+
+td.note-count * {
+  font-size: 12px;
+  /*width: 400px; [> 100% minus td.date width -- make sure the next line wraps <]*/
+}
+
+
+/***************
+Fat Row
+***************/
+td.course-name * {
+  font-family: "MuseoSlab-300";
+  font-size: 18px;
+}
+
+table#data_table_list td div.upload {
+  width: 45px;
+  height: 45px;
+  visibility: hidden;
+  font-size: 34px;
+  text-align: center;
+  vertical-align: middle;
+  margin-top: -8px;
+}
+
+table#data_table_list td div.upload i {
+  display: block;
+  cursor: pointer;
+}
+
+table#data_table_list td div.upload a {
+  text-decoration: none;
+}
+
+table#data_table_list tr:hover td div.upload {
+  visibility: visible;
+}
+
+/* OPENTIP configuration */
+.ot-content {
+  font-family: "MuseoSlab-300";
+  font-size: 18px;
+}
+
+/* CSS HACKS */
+/* Makes lines look better */
+td.columns {
+  line-height: 1.5em;
+}
+
+table#data_table_list tr td:last-child {
+  margin-bottom: 20px;
+}
+
+@media only screen and (min-width: 768px) {
+  /* pulled out of global.css */
+
+  table#data_table_list .table-font {
+    font-family: "MuseoSlab-300";
+    font-size: 18px;
+    font-style: normal;
+  }
+
+  table#data_table_list tr td:last-child {
+    /* override some vrtial margin spacing for the front page table */
+    margin-bottom: 0;
+  }
+}
index 049f67e239289c3ea073cd7211cea088c98fe0e2..4b5d0aa61f5cf25a6f33510eb122c6407e03d780 100644 (file)
@@ -89,7 +89,7 @@
 
 {% block pagestyle %}
   <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/note_course_pages.css">
-  <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/course_list_table.css">
+  <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/data_table_list.css">
   <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/datatables-css/jquery.dataTables.css">
 {% endblock %}
 
index 8c145d21e1ba8c5385b8b9ff31a3139c71482e55..45a2ccc46d2093ba3eb3d7605519864b1dd9e825 100644 (file)
@@ -8,7 +8,7 @@
 {% block pagestyle %}
 <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/home.css">
 <!-- <link rel="stylesheet" href="{{ STATIC_URL }}css/responsive-tables.css"> -->
-<link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/course_list_table.css">
+<link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/data_table_list.css">
 <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/datatables-css/jquery.dataTables.css">
 {% endblock %}
 
index 3a8b7b0888b66fa94bfe9b39f4836c88c31e7f2c..89cf619f9adcc5415b5afc9be25bc55a2ab5c9be 100644 (file)
@@ -7,7 +7,7 @@
 
 {% block pagestyle %}
   <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/search.css">
-  <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/course_list_table.css">
+  <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/data_table_list.css">
   <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/datatables-css/jquery.dataTables.css">
 {% endblock %}