Browse Source

Merge pull request #8650 from nextcloud/fix-ie11-datepicker-display

Fixed date/time picker on IE11
pull/8666/head
Morris Jobke 8 years ago
committed by GitHub
parent
commit
f72e9ae8a6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      core/css/styles.scss

7
core/css/styles.scss

@ -1033,6 +1033,8 @@ code {
font-weight: normal;
color: nc-lighten($color-main-text, 33%);
opacity: .8;
width: 26px;
padding: 2px;
}
tr:hover {
background-color: inherit;
@ -1140,10 +1142,11 @@ code {
flex-wrap: nowrap;
justify-content: space-between;
td {
display: block;
flex: 1 1;
flex: 1 1 auto;
margin: 0;
padding: 2px;
height: 26px;
width: 26px;
display: flex;
align-items: center;
justify-content: center;

Loading…
Cancel
Save