Browse Source

some issues resolved

1)  A more better colour that will suit the display of various devices is chosen recent colour blows into white for some devices due to resolution limits.
2) padding of 18px will suit more appropriately
3)  when left ,top were set to 0px  each it may cause sometimes crashing issues.
pull/1296/head
anishagg17 5 years ago
committed by GitHub
parent
commit
4177b646c7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      web_timeline/static/src/css/web_timeline.css

8
web_timeline/static/src/css/web_timeline.css

@ -6,7 +6,7 @@
/* very light gray background in weekends */
.vis-timeline .vis-grid.vis-saturday,
.vis-timeline .vis-grid.vis-sunday {
background: #DCDCDC;
background: #e7e7e7;
}
.vis-item .vis-item-overflow {
@ -14,7 +14,7 @@
}
.oe_chatter_toggle {
padding: 15px;
padding: 18px;
}
.oe_timeline_view .vlabel .inner:hover{
@ -26,6 +26,6 @@
width: 100%;
height: 100%;
position: absolute;
left: 0px;
top: 0px;
left: 5px;
top: 5px;
}
Loading…
Cancel
Save