style.css

  1. 6.x themes/fp6_clean/style.css
  2. 6.x modules/engagements/css/style.css
  3. 6.x modules/alerts/css/style.css
  4. 6.x modules/system/css/style.css
  5. 6.x modules/calendar/css/style.css
  6. 6.x modules/student_profile/css/style.css
  7. 6.x modules/schools/css/style.css
  8. 4.x themes/classic/style.css
  9. 4.x modules/system/css/style.css
  10. 5.x themes/basic/style.css
  11. 5.x themes/fp5_clean/style.css
  12. 5.x themes/classic/style.css
  13. 5.x modules/system/css/style.css
___student_profile_page {}


.student-profile-header-full {
  border-bottom: 1px solid #ddd;
}

.student-profile-header-full .header-profile-image {
  width: 180px;
  height: 250px;
  margin-bottom: 10px;
}

.priority-high {
    background-color: red;
}

.priority-normal {
  background-color: green;
}

.priority-medium {
  background-color: orange;
}

.profile-priority-bar {
    display: inline-block;
    min-width: 100px;
    padding: 0 3px 0 3px;
    text-align: center;
    font-weight: bold;
    font-size: 0.9em;
    color: white;
    border-radius: 5px;
}

table.student-alerts {
  width: 100%;  
  border-collapse:collapse;
}

table.student-alerts td, table.student-alerts th {
  padding: 0;
  margin: 0;
}

table.student-alerts tr {
  line-height: 35px;
}

table.student-alerts td {
  padding: 5px;
}

table.student-alerts tr:nth-child(even) {
  background-color: #f8f8f8;
}

table.student-alerts tr.closed {
  font-style: italic;
}


.test-more-toggle {
  font-size: 1.6em;
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}

.test-extra {
  padding-left: 20px;
  padding-top: 10px;
  font-size: 0.9em;
}

.student-mini-profile a.grade-percent-link {
  
  color: #0095ff;
}

.student-mini-profile a.grade-percent-link:hover {
  color: lightskyblue;
}


.db-course-record {
  font-family: 'Courier New', Courier, monospace;
}

table.calc-tests-table {
  background: #ececec;
  border: 1px solid #bbbbbb;

}

table.calc-tests-table th {
  background-color: #999;
  border-right: 1px solid #c8c7c7;
  color: #fff;
  padding: 10px;
  font-weight: bold;
}

table.calc-tests-table td {
  background: #FFF;
  color: #747474;
  text-align: left;
  padding: 10px;
  border: 1px solid #DBDBDB;
}


.tests-expand-link {
  font-size: 0.85em;
}

.student-profile-add-new-alert-button {
  float: right;  
}



File

modules/student_profile/css/style.css
View source
  1. ___student_profile_page {}
  2. .student-profile-header-full {
  3. border-bottom: 1px solid #ddd;
  4. }
  5. .student-profile-header-full .header-profile-image {
  6. width: 180px;
  7. height: 250px;
  8. margin-bottom: 10px;
  9. }
  10. .priority-high {
  11. background-color: red;
  12. }
  13. .priority-normal {
  14. background-color: green;
  15. }
  16. .priority-medium {
  17. background-color: orange;
  18. }
  19. .profile-priority-bar {
  20. display: inline-block;
  21. min-width: 100px;
  22. padding: 0 3px 0 3px;
  23. text-align: center;
  24. font-weight: bold;
  25. font-size: 0.9em;
  26. color: white;
  27. border-radius: 5px;
  28. }
  29. table.student-alerts {
  30. width: 100%;
  31. border-collapse:collapse;
  32. }
  33. table.student-alerts td, table.student-alerts th {
  34. padding: 0;
  35. margin: 0;
  36. }
  37. table.student-alerts tr {
  38. line-height: 35px;
  39. }
  40. table.student-alerts td {
  41. padding: 5px;
  42. }
  43. table.student-alerts tr:nth-child(even) {
  44. background-color: #f8f8f8;
  45. }
  46. table.student-alerts tr.closed {
  47. font-style: italic;
  48. }
  49. .test-more-toggle {
  50. font-size: 1.6em;
  51. display: inline-block;
  52. float: right;
  53. margin-right: 10px;
  54. margin-left: 10px;
  55. }
  56. .test-extra {
  57. padding-left: 20px;
  58. padding-top: 10px;
  59. font-size: 0.9em;
  60. }
  61. .student-mini-profile a.grade-percent-link {
  62. color: #0095ff;
  63. }
  64. .student-mini-profile a.grade-percent-link:hover {
  65. color: lightskyblue;
  66. }
  67. .db-course-record {
  68. font-family: 'Courier New', Courier, monospace;
  69. }
  70. table.calc-tests-table {
  71. background: #ececec;
  72. border: 1px solid #bbbbbb;
  73. }
  74. table.calc-tests-table th {
  75. background-color: #999;
  76. border-right: 1px solid #c8c7c7;
  77. color: #fff;
  78. padding: 10px;
  79. font-weight: bold;
  80. }
  81. table.calc-tests-table td {
  82. background: #FFF;
  83. color: #747474;
  84. text-align: left;
  85. padding: 10px;
  86. border: 1px solid #DBDBDB;
  87. }
  88. .tests-expand-link {
  89. font-size: 0.85em;
  90. }
  91. .student-profile-add-new-alert-button {
  92. float: right;
  93. }