Skip to content

Commit 316d754

Browse files
committed
fix(ui/browser): fixed border not showing in safari, fixes grafana#6530
1 parent 70b9ba2 commit 316d754

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
### Bugfixes
44
* **Graph Panel**: Bar width if bars was only used in series override, [#6528](https://github.com/grafana/grafana/issues/6528)
5+
* **UI/Browser**: Fixed issue with page/view header gradient border not showing in Safari, [#6530](https://github.com/grafana/grafana/issues/6530)
56

67
# 4.0-beta1 (2016-11-09)
78

public/sass/mixins/_mixins.scss

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,21 +335,24 @@
335335
}
336336

337337
@mixin left-brand-border-gradient() {
338+
border: none;
338339
border-image: linear-gradient(rgba(255,213,0,1) 0%, rgba(255,68,0,1) 99%, rgba(255,68,0,1) 100%);
339340
border-image-slice: 1;
341+
border-style: solid;
340342
border-top: 0;
341343
border-right: 0;
342344
border-bottom: 0;
343-
border-left: 2px solid transparent;
345+
border-left-width: 2px;
344346
}
345347

346348
@mixin brand-bottom-border() {
347349
border-image: $brand-gradient;
348350
border-image-slice: 1;
351+
border-style: solid;
349352
border-top: 0;
350353
border-right: 0;
351354
border-left: 0;
352-
border-bottom: 1px solid transparent;
355+
border-bottom-width: 1px;
353356
}
354357

355358

0 commit comments

Comments
 (0)