Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Changed to exact values and various fixes
  • Loading branch information
skjnldsv committed Oct 8, 2016
commit 8e68407ba33bab24b8b1bf7425129ef7a46457b4
4 changes: 2 additions & 2 deletions apps/files/css/files.css
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
#filestable tbody tr.searchresult,
table tr.mouseOver td {
transition: background-color 0.3s ease;
background-color: rgba(0,0,0,0.08);
background-color: rgba(0,0,0,0.027);
}
tbody a { color:#000; }
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't need to redefine the a colors since it's already set on core/styles.css


Expand Down Expand Up @@ -213,7 +213,7 @@ table th:focus .sort-indicator.hidden {

table th,
table td {
border-bottom: 1px solid rgba(0,0,0,0.08);
border-bottom: 1px solid rgba(0,0,0,0.066);
text-align: left;
font-weight: normal;
}
Expand Down
1 change: 0 additions & 1 deletion apps/files_trashbin/css/trash.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
position: fixed !important;
bottom: 44px;
width: inherit !important;
border-right: 1px solid rgba(0,0,0,0.08);
}
/* double padding to account for Deleted files entry, issue with Firefox */
.app-files #app-navigation > ul li:nth-last-child(2) {
Expand Down
8 changes: 2 additions & 6 deletions core/css/apps.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border-right: 1px solid rgba(0,0,0,0.08);
border-right: 1px solid rgba(0,0,0,0.066);
}
#app-navigation > ul {
position: relative;
Expand Down Expand Up @@ -438,7 +438,7 @@
width: 27%;
min-width: 300px;
display: block;
border-left: 1px solid rgba(0,0,0,0.08);
border-left: 1px solid rgba(0,0,0,0.066);
-webkit-transition: margin-right 300ms;
transition: margin-right 300ms;
overflow-x: hidden;
Expand Down Expand Up @@ -478,10 +478,6 @@
max-height: 300px;
overflow-y: auto;
}
#app-settings-content,
#app-settings-header {
border-right: 1px solid rgba(0,0,0,0.08);
}

/* display input fields at full width */
#app-settings-content input[type='text'] {
Expand Down
2 changes: 1 addition & 1 deletion core/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ code { font-family:"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono
}
#quota div {
padding: 0;
background-color: rgb(220,220,220);
background-color: rgba(0,0,0,0.137);
font-weight: normal;
white-space: nowrap;
border-bottom-left-radius: 3px;
Expand Down