fix(ui/browser): fixed border not showing in safari, fixes #6530

This commit is contained in:
Torkel Ödegaard 2016-11-10 11:31:14 +01:00
parent 70b9ba2573
commit 316d754a21
2 changed files with 6 additions and 2 deletions

View File

@ -2,6 +2,7 @@
### Bugfixes ### Bugfixes
* **Graph Panel**: Bar width if bars was only used in series override, [#6528](https://github.com/grafana/grafana/issues/6528) * **Graph Panel**: Bar width if bars was only used in series override, [#6528](https://github.com/grafana/grafana/issues/6528)
* **UI/Browser**: Fixed issue with page/view header gradient border not showing in Safari, [#6530](https://github.com/grafana/grafana/issues/6530)
# 4.0-beta1 (2016-11-09) # 4.0-beta1 (2016-11-09)

View File

@ -335,21 +335,24 @@
} }
@mixin left-brand-border-gradient() { @mixin left-brand-border-gradient() {
border: none;
border-image: linear-gradient(rgba(255,213,0,1) 0%, rgba(255,68,0,1) 99%, rgba(255,68,0,1) 100%); border-image: linear-gradient(rgba(255,213,0,1) 0%, rgba(255,68,0,1) 99%, rgba(255,68,0,1) 100%);
border-image-slice: 1; border-image-slice: 1;
border-style: solid;
border-top: 0; border-top: 0;
border-right: 0; border-right: 0;
border-bottom: 0; border-bottom: 0;
border-left: 2px solid transparent; border-left-width: 2px;
} }
@mixin brand-bottom-border() { @mixin brand-bottom-border() {
border-image: $brand-gradient; border-image: $brand-gradient;
border-image-slice: 1; border-image-slice: 1;
border-style: solid;
border-top: 0; border-top: 0;
border-right: 0; border-right: 0;
border-left: 0; border-left: 0;
border-bottom: 1px solid transparent; border-bottom-width: 1px;
} }