(css) Fix glitches in Month view with Firefox

pull/232/head
Francis Lachapelle 2017-01-16 16:30:24 -05:00
parent 5f2a6c53c4
commit 936b21b8c0
4 changed files with 11 additions and 4 deletions

1
NEWS
View File

@ -3,6 +3,7 @@
Enhancements Enhancements
- [web] show locale codes beside language names in Preferences module - [web] show locale codes beside language names in Preferences module
- [web] fixed visual glitches in Month view with Firefox
Bug fixes Bug fixes
- [core] remove all alarms before sending IMIP replies (#3925) - [core] remove all alarms before sending IMIP replies (#3925)

View File

@ -337,7 +337,8 @@
</md-sidenav> </md-sidenav>
<!-- Main section --> <!-- Main section -->
<section layout="column" layout-fill="layout-fill" <section class="view-main"
layout="column"
ng-controller="CalendarListController as list"> ng-controller="CalendarListController as list">
<md-toolbar class="toolbar-main" flex-none="flex-none" layout="row" layout-align="space-between center"> <md-toolbar class="toolbar-main" flex-none="flex-none" layout="row" layout-align="space-between center">
<var:component className="UIxTopnavToolbar"/> <var:component className="UIxTopnavToolbar"/>

View File

@ -259,6 +259,7 @@ $quarter_height: 10px;
font-size: $sg-font-size-2; font-size: $sg-font-size-2;
font-weight: $sg-font-medium; font-weight: $sg-font-medium;
border-radius: $block_radius; border-radius: $block_radius;
//overflow: hidden;
position: absolute; position: absolute;
left: 0; left: 0;
right: 0; right: 0;
@ -371,11 +372,11 @@ $quarter_height: 10px;
&:hover { &:hover {
.dragGrip { .dragGrip {
&-top, &-bottom { &-top, &-bottom {
display: block; opacity: 1;
cursor: ns-resize; cursor: ns-resize;
} }
&-left, &-right { &-left, &-right {
display: block; opacity: 1;
cursor: ew-resize; cursor: ew-resize;
} }
} }
@ -383,7 +384,7 @@ $quarter_height: 10px;
.dragGrip { .dragGrip {
&-top, &-bottom, &-left, &-right { &-top, &-bottom, &-left, &-right {
display: none; opacity: 0;
position: absolute; position: absolute;
} }

View File

@ -13,6 +13,10 @@
max-height: 100%; max-height: 100%;
} }
.view-main {
width: 100%;
}
body { body {
&.popup { &.popup {
.viewer { .viewer {