app/assets/stylesheets/sufia/_dashboard.scss in sufia-7.1.0 vs app/assets/stylesheets/sufia/_dashboard.scss in sufia-7.2.0
- old
+ new
@@ -1,32 +1,39 @@
.dashboard {
.user-info {
padding-left: 0;
}
- .sort-toggle, #documents, .batch-toggle {
+
+ .sort-toggle,
+ #documents,
+ .batch-toggle {
border-left: 1px solid $dashboard-border-color;
border-right: 1px solid $dashboard-border-color;
}
}
.heading-tile {
- border: none;
+ border: 0;
}
+
.heading-row {
- border: none;
+ border: 0;
}
#content-header .heading-row:nth-child(2) {
padding-top: .5em;
- a:link, a:visited {
+ a:link,
+ a:visited {
color: $icon-link-color;
text-decoration: none;
transition-property: background-color, color;
transition-duration: .35s;
transition-timing-function: ease-out;
}
- a:hover, a:focus {
+
+ a:hover,
+ a:focus {
color: $icon-link-hover-color;
transition-property: background-color, color;
transition-duration: .35s;
transition-timing-function: ease-out;
}
@@ -77,23 +84,25 @@
margin-top: 8px;
}
// making sure the tables that still exist in the system do not overflow thier bounds
#notifications_table {
- table-layout:fixed;
+ table-layout: fixed;
column-width: auto;
- word-wrap:break-word
+ word-wrap: break-word;
+ th:nth-child(1) {
+ width: 10%
+ }
+
+ th:nth-child(2) {
+ width: 20%
+ }
+
+ th:nth-child(3) {
+ width: 60%
+ }
}
-#notifications_table th:nth-child(1){
- width: 10%
-}
-#notifications_table th:nth-child(2){
- width: 20%
-}
-#notifications_table th:nth-child(3){
- width: 60%
-}
#activity .panel-body{
overflow: scroll;
max-height: 20em;
}
@@ -106,9 +115,8 @@
word-break: break-word;
}
#user_info {
dt {
- margin-top:$padding-small-vertical;
+ margin-top: $padding-small-vertical;
}
-
-}
\ No newline at end of file
+}